diff --git a/.github/workflows/issue_bot.yml b/.github/workflows/issue_bot.yml index 21ab4119f..88d36d264 100644 --- a/.github/workflows/issue_bot.yml +++ b/.github/workflows/issue_bot.yml @@ -19,6 +19,7 @@ jobs: stale-issue-label: 'stale' stale-issue-message: 'As this issue is marked as “wait 4 close” and there was no activity for 5 days, it is now marked as “stale.” It will be automatically closed in 3 more days.' close-issue-message: 'This issue was closed because it had been inactive for 3 days since being marked as "stale".' + close-issue-reason: 'completed' days-before-pr-stale: -1 days-before-pr-close: -1 repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/README.md b/README.md index 04c040620..ae073f115 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,6 @@ https://demo.wavelog.org Notes * If you want to log microwave QSOs you will need to use a 64bit operating system. -* We do not provide Docker support, however you are free to use it if you wish but we will not handle support. ## Setup @@ -53,11 +52,11 @@ 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) +[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) Translators: -[Ondřej Koloničný (OK1CDJ)](https://translate.wavelog.org/user/ok1cdj/), [Michael Skolsky (R1BLH)](https://translate.wavelog.org/user/R1BLH/), [Karuru (BG2ELG)](https://translate.wavelog.org/user/viola/), [Byt3](https://translate.wavelog.org/user/205er/), [BG6HJE](https://translate.wavelog.org/user/BG6HJE/), [Francisco (F4VSE)](https://translate.wavelog.org/user/kikosgc/), [Kim (DG9VH)](https://translate.wavelog.org/user/dg9vh/), [Casper van Lieburg (PA7DX)](https://translate.wavelog.org/user/pa7dx/), [Halil AYYILDIZ (TA2LG)](https://translate.wavelog.org/user/TA2LG/), [Michal Šiman](https://translate.wavelog.org/user/michalsiman/), [DN4BS](https://github.com/dn4bs) +[Ondřej Koloničný (OK1CDJ)](https://translate.wavelog.org/user/ok1cdj/), [Michael Skolsky (R1BLH)](https://translate.wavelog.org/user/R1BLH/), [Karuru (BG2ELG)](https://translate.wavelog.org/user/viola/), [Byt3](https://translate.wavelog.org/user/205er/), [BG6HJE](https://translate.wavelog.org/user/BG6HJE/), [Francisco (F4VSE)](https://translate.wavelog.org/user/kikosgc/), [Kim (DG9VH)](https://translate.wavelog.org/user/dg9vh/), [Casper van Lieburg (PA7DX)](https://translate.wavelog.org/user/pa7dx/), [Halil AYYILDIZ (TA2LG)](https://translate.wavelog.org/user/TA2LG/), [Michal Šiman](https://translate.wavelog.org/user/michalsiman/), [DN4BS](https://github.com/dn4bs), [Luca (IU2FRL)](https://translate.wavelog.org/user/iu2frl/), [Dragan Đorđević (4O4A)](https://translate.wavelog.org/user/4o4a/), [Dren Imeraj (Z63DRI)](https://translate.wavelog.org/user/Dren/), [Filip Melik (OK1GOD)](https://translate.wavelog.org/user/filipmelik/), [Petr (OK1PTR)](https://translate.wavelog.org/user/OK1PTR/), [Stefan (DB4SCW)](https://translate.wavelog.org/user/DB4SCW/), [F4JSU](https://translate.wavelog.org/user/F4JSU/), [Maciej](https://translate.wavelog.org/user/maciejla/) If you would like to contribute in any way to Wavelog, it is most appreciated. This has been developed in free time, help coding new features or writing documentation is always useful. diff --git a/application/config/config.sample.php b/application/config/config.sample.php index bc1827e54..335522087 100644 --- a/application/config/config.sample.php +++ b/application/config/config.sample.php @@ -669,4 +669,30 @@ $config['disable_oqrs'] = false; $config['special_callsign'] = false; // hides the usermenu; takes action only if "special_callsign" is true -$config['sc_hide_usermenu'] = true; \ No newline at end of file +$config['sc_hide_usermenu'] = true; + + +/* +|-------------------------------------------------------------------------- +| Impersonate +|-------------------------------------------------------------------------- +| +| This config switch disables the impersonate feature. This feauture is used to impersonate another user. +| Impersonate is enabled by default. To disable it, set the value to false. +| +*/ + +$config['disable_impersonate'] = false; + + +/* +|-------------------------------------------------------------------------- +| Cronmanager Allow Insecure +|-------------------------------------------------------------------------- +| +| The cronmanager needs http or https with a valid certificate to work. +| If you want to use it with https and a self-signed certificate, you need to set this to true. +| +*/ + +$config['cron_allow_insecure'] = false; \ No newline at end of file diff --git a/application/config/gettext.php b/application/config/gettext.php index 120742dec..43d0bfcea 100644 --- a/application/config/gettext.php +++ b/application/config/gettext.php @@ -61,6 +61,26 @@ $config['gettext_domain'] = NULL; */ $config['languages'] = array( + 'albanian' => array( + 'name' => 'Shqip', + 'name_en' => 'Albanian', + 'folder' => 'albanian', + 'locale' => 'sq', + 'gettext' => 'sq', + 'direction' => 'ltr', + 'code' => 'sq', + 'flag' => 'al', + ), + 'bosnian' => array( + 'name' => 'Bosanski', + 'name_en' => 'Bosnian', + 'folder' => 'bosnian', + 'locale' => 'bs', + 'gettext' => 'bs', + 'direction' => 'ltr', + 'code' => 'bs', + 'flag' => 'ba', + ), 'bulgarian' => array( 'name' => 'Български', 'name_en' => 'Bulgarian', @@ -81,6 +101,16 @@ $config['languages'] = array( 'code' => 'zh-Hans', 'flag' => 'cn', ), + 'croatian' => array( + 'name' => 'Hrvatski', + 'name_en' => 'Croatian', + 'folder' => 'croatian', + 'locale' => 'hr', + 'gettext' => 'hr', + 'direction' => 'ltr', + 'code' => 'hr', + 'flag' => 'hr', + ), 'czech' => array( 'name' => 'Čeština', 'name_en' => 'Czech', @@ -161,6 +191,16 @@ $config['languages'] = array( 'code' => 'it', 'flag' => 'it', ), + 'montenegrin' => array( + 'name' => 'Crnogorski', + 'name_en' => 'Montenegrin', + 'folder' => 'montenegrin', + 'locale' => 'cnr', + 'gettext' => 'cnr', + 'direction' => 'ltr', + 'code' => 'cnr', + 'flag' => 'me', + ), 'polish' => array( 'name' => 'Polski', 'name_en' => 'Polish', @@ -191,6 +231,16 @@ $config['languages'] = array( 'code' => 'ru', 'flag' => 'ru', ), + 'serbian' => array( + 'name' => 'Srpski', + 'name_en' => 'Serbian', + 'folder' => 'serbian', + 'locale' => 'sr', + 'gettext' => 'sr', + 'direction' => 'ltr', + 'code' => 'sr', + 'flag' => 'rs', + ), 'spanish' => array( 'name' => 'Español', 'name_en' => 'Spanish', diff --git a/application/config/migration.php b/application/config/migration.php index 4b866b010..d15efc4d6 100644 --- a/application/config/migration.php +++ b/application/config/migration.php @@ -22,7 +22,7 @@ $config['migration_enabled'] = TRUE; | */ -$config['migration_version'] = 214; +$config['migration_version'] = 218; /* |-------------------------------------------------------------------------- diff --git a/application/controllers/Accumulated.php b/application/controllers/Accumulated.php index 3f024d14b..97be191a8 100644 --- a/application/controllers/Accumulated.php +++ b/application/controllers/Accumulated.php @@ -4,50 +4,69 @@ defined('BASEPATH') or exit('No direct script access allowed'); class Accumulated extends CI_Controller { - function __construct() - { + function __construct() { parent::__construct(); $this->load->model('user_model'); if (!$this->user_model->authorize(2)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } - public function index() - { - // Render Page - $data['page_title'] = __("Accumulated Statistics"); + public function index() { + // Render Page + $data['page_title'] = __("Accumulated Statistics"); - $this->load->model('bands'); + $this->load->model('bands'); - $data['worked_bands'] = $this->bands->get_worked_bands(); // Used in the view for band select + $data['worked_bands'] = $this->bands->get_worked_bands(); // Used in the view for band select - $this->load->model('modes'); + $this->load->model('modes'); - $data['modes'] = $this->modes->active(); + if (($this->input->post('Propmode') != NULL) && ($this->input->post('Propmode') != '0')) { // Set, but not "All" + $data['propmode'] = $this->security->xss_clean($this->input->post('Propmode')); + } else { + if (($this->session->userdata('user_default_band') == 'SAT') && ($this->input->post('propmode') == NULL)){ // Not set, and empty and default is SAT? + $data['propmode']='SAT'; + } else { // Not set and empty and no SAT as default? + $data['propmode'] = 'All'; + } + } - $this->load->view('interface_assets/header', $data); - $this->load->view('accumulate/index'); - $this->load->view('interface_assets/footer'); + + $data['modes'] = $this->modes->active(); + + $this->load->view('interface_assets/header', $data); + $this->load->view('accumulate/index'); + $this->load->view('interface_assets/footer'); } /* * Used for ajax-call in javascript to fetch the data and insert into table and chart */ - public function get_accumulated_data() - { - //load model - $this->load->model('accumulate_model'); - $band = $this->input->post('Band'); - $award = $this->input->post('Award'); - $mode = $this->input->post('Mode'); - $period = $this->input->post('Period'); + public function get_accumulated_data() { - // get data - $data = $this->accumulate_model->get_accumulated_data($band, $award, $mode, $period); - header('Content-Type: application/json'); - echo json_encode($data); + if (($this->input->post('Propmode') != NULL) && ($this->input->post('Propmode') != '0')) { // Set, but not "All" + $propmode = $this->security->xss_clean($this->input->post('Propmode')); + } else { + if (($this->session->userdata('user_default_band') == 'SAT') && ($this->input->post('Propmode') == NULL)){ // Not set, and empty and default is SAT? + $propmode='SAT'; + } else { // Not set and empty and no SAT as default? + $propmode = 'All'; + } + } + + //load model + $this->load->model('accumulate_model'); + $band = xss_clean($this->input->post('Band')); + $award = xss_clean($this->input->post('Award')); + $mode = xss_clean($this->input->post('Mode')); + $period = xss_clean($this->input->post('Period')); + + // get data + $data = $this->accumulate_model->get_accumulated_data($band, $award, $mode, $propmode, $period); + header('Content-Type: application/json'); + echo json_encode($data); } } diff --git a/application/controllers/Activators.php b/application/controllers/Activators.php index f50ce1c21..652833dc6 100644 --- a/application/controllers/Activators.php +++ b/application/controllers/Activators.php @@ -10,7 +10,7 @@ class Activators extends CI_Controller $this->load->model('user_model'); if (!$this->user_model->authorize(2)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } @@ -30,7 +30,7 @@ class Activators extends CI_Controller if ($this->input->post('mincount') != NULL) { // mincount is not set when page first loads. $mincount = $this->input->post('mincount'); } else { - $mincount = 2; + $mincount = 2; } if ($this->input->post('leogeo') != NULL) { // orbit is not set when page first loads. @@ -46,7 +46,6 @@ class Activators extends CI_Controller $data['maxactivatedgrids'] = $this->Activators_model->get_max_activated_grids(); $data['orbit'] = $orbit; $data['activators_array'] = $this->Activators_model->get_activators($band, $mincount, $orbit); - $data['activators_vucc_array'] = $this->Activators_model->get_activators_vucc($band, $orbit); $data['bandselect'] = $band; $footerData = []; diff --git a/application/controllers/Activatorsmap.php b/application/controllers/Activatorsmap.php index 1399f4d0f..288527c7c 100644 --- a/application/controllers/Activatorsmap.php +++ b/application/controllers/Activatorsmap.php @@ -10,7 +10,7 @@ class Activatorsmap extends CI_Controller { parent::__construct(); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } public function index() { diff --git a/application/controllers/Adif.php b/application/controllers/Adif.php index 4b83bc15e..d23170830 100644 --- a/application/controllers/Adif.php +++ b/application/controllers/Adif.php @@ -10,7 +10,7 @@ class adif extends CI_Controller { $this->load->helper(array('form', 'url')); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } public function test() { @@ -233,7 +233,16 @@ class adif extends CI_Controller { array_push($alladif,$record); }; $record=''; // free memory - $custom_errors = $this->logbook_model->import_bulk($alladif, $this->input->post('station_profile'), $this->input->post('skipDuplicate'), $this->input->post('markClublog'),$this->input->post('markLotw'), $this->input->post('dxccAdif'), $this->input->post('markQrz'), $this->input->post('markHrd'), true, $this->input->post('operatorName'), false, $this->input->post('skipStationCheck')); + try { + $custom_errors = $this->logbook_model->import_bulk($alladif, $this->input->post('station_profile'), $this->input->post('skipDuplicate'), $this->input->post('markClublog'),$this->input->post('markLotw'), $this->input->post('dxccAdif'), $this->input->post('markQrz'), $this->input->post('markEqsl'), $this->input->post('markHrd'), true, $this->input->post('operatorName'), false, $this->input->post('skipStationCheck')); + } catch (Exception $e) { + log_message('error', 'Import error: '.$e->getMessage()); + $data['page_title'] = __("ADIF Import failed!"); + $this->load->view('interface_assets/header', $data); + $this->load->view('adif/import_failed'); + $this->load->view('interface_assets/footer'); + return; + } } else { // Failure, if no ADIF inside ZIP $data['max_upload'] = ini_get('upload_max_filesize'); $this->load->view('interface_assets/header', $data); diff --git a/application/controllers/Api.php b/application/controllers/Api.php index a2bdd5a83..3112c808e 100644 --- a/application/controllers/Api.php +++ b/application/controllers/Api.php @@ -115,13 +115,13 @@ class API extends CI_Controller { function auth($key) { $this->load->model('api_model'); header("Content-type: text/xml"); - if($this->api_model->access($key) == __("No Key Found") || $this->api_model->access($key) == __("Key Disabled")) { + if($this->api_model->access($key) == "No Key Found" || $this->api_model->access($key) == "Key Disabled") { echo ""; - echo "" . __("Key Invalid - either not found or disabled") . ""; + echo "Key Invalid - either not found or disabled"; echo ""; } else { echo ""; - echo "" . __("Valid") . ""; + echo "Valid"; echo "".$this->api_model->access($key).""; echo ""; $this->api_model->update_last_used($key); @@ -223,7 +223,7 @@ class API extends CI_Controller { }; $record=''; // free memory gc_collect_cycles(); - $custom_errors = $this->logbook_model->import_bulk($alladif, $obj['station_profile_id'], false, false, false, false, false, false, true, false, true, false); + $custom_errors = $this->logbook_model->import_bulk($alladif, $obj['station_profile_id'], false, false, false, false, false, false, false, true, false, true, false); $alladif=[]; $return_msg[]=''; } else { diff --git a/application/controllers/Awards.php b/application/controllers/Awards.php index 754fceda5..e9bc2085a 100644 --- a/application/controllers/Awards.php +++ b/application/controllers/Awards.php @@ -13,7 +13,7 @@ class Awards extends CI_Controller { parent::__construct(); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } public function index() @@ -451,7 +451,7 @@ class Awards extends CI_Controller { // Render Page $data['page_title'] = __("Log View")." - " . $type; - $data['filter'] = $type." ".$searchphrase." and band ".$band; + $data['filter'] = $type." ".$searchphrase.__(" and band ").$band; if ($band == 'SAT') { if ($sat != 'All' && $sat != null) { $data['filter'] .= __(" and sat ").$sat; @@ -783,6 +783,15 @@ class Awards extends CI_Controller { $this->load->model('iota'); $this->load->model('modes'); $this->load->model('bands'); + $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)."'"; $data['worked_bands'] = $this->bands->get_worked_bands('iota'); // Used in the view for band select @@ -839,9 +848,9 @@ class Awards extends CI_Controller { $postdata['mode'] = 'All'; } - $iotalist = $this->iota->fetchIota($postdata); - $data['iota_array'] = $this->iota->get_iota_array($iotalist, $bands, $postdata); - $data['iota_summary'] = $this->iota->get_iota_summary($bands, $postdata); + $iotalist = $this->iota->fetchIota($postdata, $location_list); + $data['iota_array'] = $this->iota->get_iota_array($iotalist, $bands, $postdata, $location_list); + $data['iota_summary'] = $this->iota->get_iota_summary($bands, $postdata, $location_list); // Render Page $data['page_title'] = sprintf(__("Awards - %s"), __("IOTA (Island On The Air)")); @@ -948,17 +957,20 @@ class Awards extends CI_Controller { $footerData = []; $footerData['scripts']= [ - 'assets/js/leaflet/geocoding.js', - 'assets/js/leaflet/L.MaidenheadColouredGridmasterMap.js', - 'assets/js/sections/ffma.js' + 'assets/js/leaflet/geocoding.js', + 'assets/js/leaflet/L.MaidenheadColouredGridmasterMap.js', + 'assets/js/sections/ffma.js' ]; $this->load->view('interface_assets/header',$data); $this->load->view('awards/ffma/index'); $this->load->view('interface_assets/footer',$footerData); - } + } public function getFfmaGridsjs() { + $this->load->model('logbooks_model'); + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + $location_list = "'".implode("','",$logbooks_locations_array)."'"; $this->load->model('ffma_model'); $array_grid_4char = array(); @@ -968,7 +980,7 @@ class Awards extends CI_Controller { $grid_4char = ""; $grid_4char_lotw = ""; - $query = $this->ffma_model->get_lotw(); + $query = $this->ffma_model->get_lotw($location_list); if ($query && $query->num_rows() > 0) { foreach ($query->result() as $row) { $grid_4char_lotw = strtoupper(substr($row->GRID_SQUARES,0,4)); @@ -978,7 +990,7 @@ class Awards extends CI_Controller { } } - $query = $this->ffma_model->get_paper(); + $query = $this->ffma_model->get_paper($location_list); if ($query && $query->num_rows() > 0) { foreach ($query->result() as $row) { $grid_4char_paper = strtoupper(substr($row->GRID_SQUARES,0,4)); @@ -988,7 +1000,7 @@ class Awards extends CI_Controller { } } - $query = $this->ffma_model->get_worked(); + $query = $this->ffma_model->get_worked($location_list); if ($query && $query->num_rows() > 0) { foreach ($query->result() as $row) { $grid_four = strtoupper(substr($row->GRID_SQUARES,0,4)); @@ -998,7 +1010,7 @@ class Awards extends CI_Controller { } } - $vucc_grids = $this->ffma_model->get_vucc_lotw(); + $vucc_grids = $this->ffma_model->get_vucc_lotw($location_list); foreach($vucc_grids as $key) { $grid_four_lotw = strtoupper(substr($key,0,4)); if(!in_array($grid_four_lotw, $array_grid_4char_lotw)){ @@ -1006,7 +1018,7 @@ class Awards extends CI_Controller { } } - $vucc_grids = $this->ffma_model->get_vucc_paper(); + $vucc_grids = $this->ffma_model->get_vucc_paper($location_list); foreach($vucc_grids as $key) { $grid_four_paper = strtoupper(substr($key,0,4)); if(!in_array($grid_four_paper, $array_grid_4char_paper)){ @@ -1014,7 +1026,7 @@ class Awards extends CI_Controller { } } - $vucc_grids = $this->ffma_model->get_vucc_worked(); + $vucc_grids = $this->ffma_model->get_vucc_worked($location_list); foreach($vucc_grids as $key) { $grid_four = strtoupper(substr($key,0,4)); if(!in_array($grid_four, $array_grid_4char)){ @@ -1033,6 +1045,9 @@ class Awards extends CI_Controller { } public function getGridmasterGridsjs($dxcc) { + $this->load->model('logbooks_model'); + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + $location_list = "'".implode("','",$logbooks_locations_array)."'"; $this->load->model('gridmaster_model'); $dxcc = $this->security->xss_clean($dxcc); @@ -1044,7 +1059,7 @@ class Awards extends CI_Controller { $grid_4char = ""; $grid_4char_lotw = ""; - $query = $this->gridmaster_model->get_lotw($dxcc); + $query = $this->gridmaster_model->get_lotw($dxcc, $location_list); if ($query && $query->num_rows() > 0) { foreach ($query->result() as $row) { $grid_4char_lotw = strtoupper(substr($row->GRID_SQUARES,0,4)); @@ -1054,7 +1069,7 @@ class Awards extends CI_Controller { } } - $query = $this->gridmaster_model->get_paper($dxcc); + $query = $this->gridmaster_model->get_paper($dxcc, $location_list); if ($query && $query->num_rows() > 0) { foreach ($query->result() as $row) { $grid_4char_paper = strtoupper(substr($row->GRID_SQUARES,0,4)); @@ -1064,7 +1079,7 @@ class Awards extends CI_Controller { } } - $query = $this->gridmaster_model->get_worked($dxcc); + $query = $this->gridmaster_model->get_worked($dxcc, $location_list); if ($query && $query->num_rows() > 0) { foreach ($query->result() as $row) { $grid_four = strtoupper(substr($row->GRID_SQUARES,0,4)); @@ -1074,7 +1089,7 @@ class Awards extends CI_Controller { } } - $vucc_grids = $this->gridmaster_model->get_vucc_lotw($dxcc); + $vucc_grids = $this->gridmaster_model->get_vucc_lotw($dxcc, $location_list); foreach($vucc_grids as $key) { $grid_four_lotw = strtoupper(substr($key,0,4)); if(!in_array($grid_four_lotw, $array_grid_4char_lotw)){ @@ -1082,7 +1097,7 @@ class Awards extends CI_Controller { } } - $vucc_grids = $this->gridmaster_model->get_vucc_paper($dxcc); + $vucc_grids = $this->gridmaster_model->get_vucc_paper($dxcc, $location_list); foreach($vucc_grids as $key) { $grid_four_paper = strtoupper(substr($key,0,4)); if(!in_array($grid_four_paper, $array_grid_4char_paper)){ @@ -1090,7 +1105,7 @@ class Awards extends CI_Controller { } } - $vucc_grids = $this->gridmaster_model->get_vucc_worked($dxcc); + $vucc_grids = $this->gridmaster_model->get_vucc_worked($dxcc, $location_list); foreach($vucc_grids as $key) { $grid_four = strtoupper(substr($key,0,4)); if(!in_array($grid_four, $array_grid_4char)){ @@ -1534,6 +1549,15 @@ class Awards extends CI_Controller { public function iota_map() { $this->load->model('iota'); $this->load->model('bands'); + $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)."'"; + $bands[] = $this->security->xss_clean($this->input->post('band')); @@ -1553,9 +1577,9 @@ class Awards extends CI_Controller { $postdata['Oceania'] = $this->input->post('Oceania') == 0 ? NULL: 1; $postdata['Antarctica'] = $this->input->post('Antarctica') == 0 ? NULL: 1; - $iotalist = $this->iota->fetchIota($postdata); + $iotalist = $this->iota->fetchIota($postdata, $location_list); - $iota_array = $this->iota->get_iota_array($iotalist, $bands, $postdata); + $iota_array = $this->iota->get_iota_array($iotalist, $bands, $postdata, $location_list); $i = 0; @@ -1814,4 +1838,77 @@ class Awards extends CI_Controller { echo json_encode($zones); } + public function wac() { + $this->load->model('logbooks_model'); + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + + $this->load->model('wac'); + $this->load->model('modes'); + $this->load->model('bands'); + + $data['worked_bands'] = $this->bands->get_worked_bands(); + $data['modes'] = $this->modes->active(); // Used in the view for mode select + + $data['orbits'] = $this->bands->get_worked_orbits(); + $data['sats_available'] = $this->bands->get_worked_sats(); + $data['user_default_band'] = $this->session->userdata('user_default_band'); + + if ($this->input->post('band') != NULL) { // Band is not set when page first loads. + if ($this->input->post('band') == 'All') { // Did the user specify a band? If not, use all bands + $bands = $data['worked_bands']; + } + else { + $bands[] = $this->input->post('band'); + } + } + else { + $bands = $data['worked_bands']; + } + + $data['bands'] = $bands; // Used for displaying selected band(s) in the table in the view + + if($this->input->method() === 'post') { + $postdata['qsl'] = $this->security->xss_clean($this->input->post('qsl')); + $postdata['lotw'] = $this->security->xss_clean($this->input->post('lotw')); + $postdata['eqsl'] = $this->security->xss_clean($this->input->post('eqsl')); + $postdata['qrz'] = $this->security->xss_clean($this->input->post('qrz')); + $postdata['worked'] = $this->security->xss_clean($this->input->post('worked')); + $postdata['confirmed'] = $this->security->xss_clean($this->input->post('confirmed')); + $postdata['notworked'] = $this->security->xss_clean($this->input->post('notworked')); + $postdata['band'] = $this->security->xss_clean($this->input->post('band')); + $postdata['mode'] = $this->security->xss_clean($this->input->post('mode')); + $postdata['sat'] = $this->security->xss_clean($this->input->post('sats')); + $postdata['orbit'] = $this->security->xss_clean($this->input->post('orbits')); + } + else { // Setting default values at first load of page + $postdata['qsl'] = 1; + $postdata['lotw'] = 1; + $postdata['eqsl'] = 0; + $postdata['qrz'] = 0; + $postdata['worked'] = 1; + $postdata['confirmed'] = 1; + $postdata['notworked'] = 1; + $postdata['band'] = 'All'; + $postdata['mode'] = 'All'; + $postdata['sat'] = 'All'; + $postdata['orbit'] = 'All'; + } + + if ($logbooks_locations_array) { + $location_list = "'".implode("','",$logbooks_locations_array)."'"; + $data['wac_array'] = $this->wac->get_wac_array($bands, $postdata, $location_list); + $data['wac_summary'] = $this->wac->get_wac_summary($bands, $postdata, $location_list); + } else { + $location_list = null; + $data['wac_array'] = null; + $data['wac_summary'] = null; + } + + // Render page + $data['page_title'] = sprintf(__("Awards - %s"), __("Worked All Continents (WAC)")); + $this->load->view('interface_assets/header', $data); + $this->load->view('awards/wac/index'); + $this->load->view('interface_assets/footer'); + } + } diff --git a/application/controllers/Backup.php b/application/controllers/Backup.php index ddd78b15e..5c65e2028 100644 --- a/application/controllers/Backup.php +++ b/application/controllers/Backup.php @@ -10,7 +10,7 @@ class Backup extends CI_Controller { public function index() { $this->load->model('user_model'); - if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $data['page_title'] = __("Backup"); @@ -23,16 +23,18 @@ class Backup extends CI_Controller { public function adif($key = null){ if ($key == null) { $this->load->model('user_model'); - if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } + $clean_key = $this->security->xss_clean($key); + $this->load->helper('file'); // Set memory limit to unlimited to allow heavy usage ini_set('memory_limit', '-1'); $this->load->model('adif_data'); - $data['qsos'] = $this->adif_data->export_all($key); + $data['qsos'] = $this->adif_data->export_all($clean_key); $data['filename'] = 'backup/logbook'. date('_Y_m_d_H_i_s') .'.adi'; @@ -58,13 +60,15 @@ class Backup extends CI_Controller { public function notes($key = null) { if ($key == null) { $this->load->model('user_model'); - if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } + $clean_key = $this->security->xss_clean($key); + $this->load->helper('file'); $this->load->model('note'); - $data['list_note'] = $this->note->list_all($key); + $data['list_note'] = $this->note->list_all($clean_key); $data['filename'] = 'backup/notes'. date('_Y_m_d_H_i_s') .'.xml'; diff --git a/application/controllers/Band.php b/application/controllers/Band.php index 052114aab..121c10803 100644 --- a/application/controllers/Band.php +++ b/application/controllers/Band.php @@ -12,7 +12,7 @@ class Band extends CI_Controller { $this->load->helper(array('form', 'url')); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } public function index() diff --git a/application/controllers/Bandmap.php b/application/controllers/Bandmap.php index 55c7fef4c..8145030ca 100644 --- a/application/controllers/Bandmap.php +++ b/application/controllers/Bandmap.php @@ -6,7 +6,7 @@ class Bandmap extends CI_Controller { parent::__construct(); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $this->load->model('bands'); } diff --git a/application/controllers/Cabrillo.php b/application/controllers/Cabrillo.php index a8b77cf88..062c079ee 100644 --- a/application/controllers/Cabrillo.php +++ b/application/controllers/Cabrillo.php @@ -13,7 +13,7 @@ class Cabrillo extends CI_Controller { parent::__construct(); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } public function index() { @@ -50,7 +50,7 @@ class Cabrillo extends CI_Controller { header('Content-Type: application/json'); echo json_encode($result); } else { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } @@ -77,7 +77,7 @@ class Cabrillo extends CI_Controller { header('Content-Type: application/json'); echo json_encode($result); } else { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } @@ -132,7 +132,7 @@ class Cabrillo extends CI_Controller { $this->load->view('cabrillo/export', $data); }else { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } } diff --git a/application/controllers/Calltester.php b/application/controllers/Calltester.php index 84afaa8b3..f5baad08e 100644 --- a/application/controllers/Calltester.php +++ b/application/controllers/Calltester.php @@ -8,7 +8,7 @@ class Calltester extends CI_Controller { parent::__construct(); $this->load->model('user_model'); - if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } diff --git a/application/controllers/Cfdexport.php b/application/controllers/Cfdexport.php index 9e40c792d..4d15bff2b 100644 --- a/application/controllers/Cfdexport.php +++ b/application/controllers/Cfdexport.php @@ -15,7 +15,7 @@ class Cfdexport extends CI_Controller { $this->load->model('logbook_model'); $this->load->model('bands'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $data['page_title'] = __("CFD Export"); @@ -26,7 +26,7 @@ class Cfdexport extends CI_Controller { public function export() { $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $this->load->model('logbook_model'); $this->load->model('dxcc'); diff --git a/application/controllers/Components.php b/application/controllers/Components.php index 63d807188..283700e03 100644 --- a/application/controllers/Components.php +++ b/application/controllers/Components.php @@ -10,7 +10,7 @@ class Components extends CI_Controller { parent::__construct(); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } public function index() { diff --git a/application/controllers/Contestcalendar.php b/application/controllers/Contestcalendar.php index 421b42dab..7eebe29c9 100644 --- a/application/controllers/Contestcalendar.php +++ b/application/controllers/Contestcalendar.php @@ -12,7 +12,7 @@ class Contestcalendar extends CI_Controller { public function index() { $this->load->model('user_model'); if (!$this->user_model->authorize(2)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } @@ -72,7 +72,6 @@ class Contestcalendar extends CI_Controller { return $rssData; } - private function parseTimeRange($string) { $timeData = array(); @@ -86,7 +85,19 @@ class Contestcalendar extends CI_Controller { // create proper dateTime $timeData['start'] = DateTime::createFromFormat('Hi\Z, M d', $start); + + if (!$timeData['start']) { + // If the first format didn't match, try the format without the comma + $timeData['start'] = DateTime::createFromFormat('Hi\Z M d', $start); + } + $timeData['end'] = DateTime::createFromFormat('Hi\Z, M d', $end); + + if (!$timeData['end']) { + // If the first format didn't match, try the format without the comma + $timeData['end'] = DateTime::createFromFormat('Hi\Z M d', $end); + } + } else { // split in start and end time @@ -144,8 +155,8 @@ class Contestcalendar extends CI_Controller { continue; } - $start = date('Y-m-d', strtotime($contest['start']->format('Y-m-d'))); - $end = date('Y-m-d', strtotime($contest['end']->format('Y-m-d'))); + $start = $contest['start'] == '' ? '' : date('Y-m-d', strtotime($contest['start']->format('Y-m-d'))); + $end = $contest['end'] == '' ? '' : date('Y-m-d', strtotime($contest['end']->format('Y-m-d'))); if ($start <= $this->today && $end >= $this->today) { $contestsToday[] = $contest; @@ -175,8 +186,8 @@ class Contestcalendar extends CI_Controller { continue; } - $start = date('Y-m-d', strtotime($contest['start']->format('Y-m-d'))); - $end = date('Y-m-d', strtotime($contest['end']->format('Y-m-d'))); + $start = $contest['start'] == '' ? '' : date('Y-m-d', strtotime($contest['start']->format('Y-m-d'))); + $end = $contest['end'] == '' ? '' : date('Y-m-d', strtotime($contest['end']->format('Y-m-d'))); if ($start >= $nextFriday && $start <= $nextSunday && $start >= $this->today) { $contestsNextWeekend[] = $contest; diff --git a/application/controllers/Contesting.php b/application/controllers/Contesting.php index b0dac9839..3a30990a1 100644 --- a/application/controllers/Contesting.php +++ b/application/controllers/Contesting.php @@ -11,7 +11,7 @@ class Contesting extends CI_Controller { parent::__construct(); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } public function index() { @@ -24,7 +24,7 @@ class Contesting extends CI_Controller { // Getting the live/post mode from GET command // 0 = live // 1 = post (manual) - $get_manual_mode = $this->security->xss_clean($this->input->get('manual')); + $get_manual_mode = $this->input->get('manual', true); if ($get_manual_mode == '0' || $get_manual_mode == '1') { $data['manual_mode'] = $get_manual_mode; } else { @@ -55,7 +55,7 @@ class Contesting extends CI_Controller { session_write_close(); $this->load->model('Contesting_model'); - $qso = $this->input->post('qso'); + $qso = $this->input->post('qso', true); header('Content-Type: application/json'); echo json_encode($this->Contesting_model->getSessionQsos($qso)); @@ -72,7 +72,7 @@ class Contesting extends CI_Controller { public function deleteSession() { $this->load->model('Contesting_model'); - $qso = $this->input->post('qso'); + $qso = $this->input->post('qso', true); $data = $this->Contesting_model->deleteSession($qso); @@ -83,7 +83,8 @@ class Contesting extends CI_Controller { $this->load->model('Contesting_model'); $this->Contesting_model->setSession(); - $this->session->set_userdata('radio', $this->input->post('radio')); + $this->session->set_userdata('radio', $this->input->post('radio', true)); + header('Content-Type: application/json'); echo json_encode($this->Contesting_model->getSession()); } @@ -145,13 +146,13 @@ class Contesting extends CI_Controller { } public function delete() { - $id = $this->input->post('id'); + $id = $this->input->post('id', true); $this->load->model('Contesting_model'); $this->Contesting_model->delete($id); } public function activate() { - $id = $this->input->post('id'); + $id = $this->input->post('id', true); $this->load->model('Contesting_model'); $this->Contesting_model->activate($id); header('Content-Type: application/json'); @@ -160,7 +161,7 @@ class Contesting extends CI_Controller { } public function deactivate() { - $id = $this->input->post('id'); + $id = $this->input->post('id', true); $this->load->model('Contesting_model'); $this->Contesting_model->deactivate($id); header('Content-Type: application/json'); @@ -189,10 +190,10 @@ class Contesting extends CI_Controller { */ public function checkIfWorkedBefore() { session_write_close(); - $call = $this->input->post('call'); - $band = $this->input->post('band'); - $mode = $this->input->post('mode'); - $contest = $this->input->post('contest'); + $call = $this->input->post('call', true); + $band = $this->input->post('band', true); + $mode = $this->input->post('mode', true); + $contest = $this->input->post('contest', true); $this->load->model('Contesting_model'); diff --git a/application/controllers/Cron.php b/application/controllers/Cron.php index a122876c1..3cb7c464f 100644 --- a/application/controllers/Cron.php +++ b/application/controllers/Cron.php @@ -23,7 +23,7 @@ class cron extends CI_Controller { $this->load->model('user_model'); if (!$this->user_model->authorize(99)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } @@ -37,6 +37,7 @@ class cron extends CI_Controller { $data['page_title'] = __("Cron Manager"); $data['crons'] = $this->cron_model->get_crons(); + $data['cron_allow_insecure'] = $this->config->item('cron_allow_insecure') ?? false; $mastercron = array(); $mastercron = $this->get_mastercron_status(); @@ -62,6 +63,8 @@ class cron extends CI_Controller { $status = 'pending'; foreach ($crons as $cron) { + // Set the status to false by default + $set_status = false; if ($cron->enabled == 1) { // calculate the crons expression @@ -74,6 +77,8 @@ class cron extends CI_Controller { $cronjob = $this->cronexpression; $dt = new DateTime(); $isdue = $cronjob->isMatching($dt); + // Set the status to true, if the cron is enabled by default + $set_status = true; $next_run = $cronjob->getNext(); $next_run_date = date('Y-m-d H:i:s', $next_run); @@ -87,13 +92,19 @@ class cron extends CI_Controller { echo "CRON: " . $cron->id . " -> is due: " . $isdue_result . "\n"; echo "CRON: " . $cron->id . " -> RUNNING...\n"; - $url = base_url() . $cron->function; + $url = local_url() . $cron->function; + if (ENVIRONMENT == "development") { + echo "CRON: " . $cron->id . " -> URL: " . $url . "\n"; + } $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_USERAGENT, 'Wavelog Updater'); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); + if ($this->config->item('cron_allow_insecure') ?? false == true) { + curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); + } $crun = curl_exec($ch); curl_close($ch); @@ -101,22 +112,28 @@ class cron extends CI_Controller { echo "CRON: " . $cron->id . " -> CURL Result: " . $crun . "\n"; $status = 'healthy'; } else { - echo "ERROR: Something went wrong with " . $cron->id . "\n"; + echo "ERROR: Something went wrong with " . $cron->id . "; Message: " . $crun . "\n"; $status = 'failed'; } } else { $isdue_result = 'false'; echo "CRON: " . $cron->id . " -> is due: " . $isdue_result . " -> Next Run: " . $next_run_date . "\n"; $status = 'healthy'; + // Don't set the status as the cronjob is not due + $set_status = false; } } else { echo 'CRON: ' . $cron->id . " is disabled. skipped..\n"; $status = 'disabled'; + // Set the status if the cron needs to be disabled. + $set_status = true; // Set the next_run timestamp to null to indicate in the view/database that this cron is disabled $this->cron_model->set_next_run($cron->id, null); } - $this->cron_model->set_status($cron->id, $status); + if ($set_status == true) { + $this->cron_model->set_status($cron->id, $status); + } $this->cronexpression = null; } @@ -142,7 +159,7 @@ class cron extends CI_Controller { public function edit() { $this->load->model('user_model'); if (!$this->user_model->authorize(99)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } @@ -254,19 +271,19 @@ class cron extends CI_Controller { $diff = $now->getTimestamp() - $timestamp_last_run->getTimestamp(); if ($diff >= 0 && $diff <= $warning_timelimit_seconds) { - $result['status'] = 'OK'; + $result['status'] = __("OK"); $result['status_class'] = 'success'; } else { if ($diff <= $error_timelimit_seconds) { - $result['status'] = 'Last run occurred more than ' . $warning_timelimit_seconds . ' seconds ago.
Please check your master cron! It should run every minute (* * * * *).'; + $result['status'] = sprintf(__("Last run occurred more than %s seconds ago.%sPlease check your master cron! It should run every minute (* * * * *)."), $warning_timelimit_seconds, '
'); $result['status_class'] = 'warning'; } else { - $result['status'] = 'Last run occurred more than ' . ($error_timelimit_seconds / 60) . ' minutes ago.
Seems like your Mastercron isn\'t running!
It should run every minute (* * * * *).'; + $result['status'] = sprintf(__("Last run occurred more than %s minutes ago.%sSeems like your Mastercron isn't running!%sIt should run every minute (* * * * *)."), ($error_timelimit_seconds / 60), '
', '
'); $result['status_class'] = 'danger'; } } } else { - $result['status'] = 'Not running'; + $result['status'] = _pgettext("Master Cron", "Not running"); $result['status_class'] = 'danger'; } diff --git a/application/controllers/Csv.php b/application/controllers/Csv.php index 9b7c4b7dd..037de83cb 100644 --- a/application/controllers/Csv.php +++ b/application/controllers/Csv.php @@ -5,7 +5,7 @@ class Csv extends CI_Controller { public function index() { $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $this->load->model('modes'); $this->load->model('logbook_model'); @@ -28,7 +28,7 @@ class Csv extends CI_Controller { public function export() { $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $this->load->model('csv_model'); // Parameters diff --git a/application/controllers/Dashboard.php b/application/controllers/Dashboard.php index a7231554d..180182729 100644 --- a/application/controllers/Dashboard.php +++ b/application/controllers/Dashboard.php @@ -25,6 +25,18 @@ class Dashboard extends CI_Controller $this->load->model('logbooks_model'); $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + + if (($logbooks_locations_array[0]>-1) && (!(in_array($this->stations->find_active(),$logbooks_locations_array)))) { + $data['active_not_linked']=true; + } else { + $data['active_not_linked']=false; + } + + if ($logbooks_locations_array[0] == -1) { + $data['linkedCount']=0; + } else { + $data['linkedCount']=sizeof($logbooks_locations_array); + } // Calculate Lat/Lng from Locator to use on Maps if ($this->session->userdata('user_locator')) { if(!$this->load->is_loaded('Qra')) { @@ -43,6 +55,9 @@ class Dashboard extends CI_Controller $data['qra'] = "none"; } + // We need the form_helper for the layout/messages + $this->load->helper('form'); + $this->load->model('stations'); $this->load->model('setup_model'); diff --git a/application/controllers/Dayswithqso.php b/application/controllers/Dayswithqso.php index 9e1bb0862..c82567b55 100644 --- a/application/controllers/Dayswithqso.php +++ b/application/controllers/Dayswithqso.php @@ -8,7 +8,7 @@ class Dayswithqso extends CI_Controller { parent::__construct(); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } public function index() diff --git a/application/controllers/Debug.php b/application/controllers/Debug.php index e9af0827a..c2c377e41 100644 --- a/application/controllers/Debug.php +++ b/application/controllers/Debug.php @@ -7,7 +7,7 @@ class Debug extends CI_Controller $this->load->model('user_model'); if (!$this->user_model->authorize(2)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } diff --git a/application/controllers/Distancerecords.php b/application/controllers/Distancerecords.php new file mode 100644 index 000000000..54711d2dc --- /dev/null +++ b/application/controllers/Distancerecords.php @@ -0,0 +1,65 @@ +load->model('user_model'); + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } + } + + public function index() { + + $this->load->model('distancerecords_model'); + + if($this->session->userdata('user_date_format')) { + $custom_date_format = $this->session->userdata('user_date_format'); + } else { + $custom_date_format = $this->config->item('qso_date_format'); + } + + switch ($custom_date_format) { + case 'd/m/y': $usethisformat = 'D/MM/YY';break; + case 'd/m/Y': $usethisformat = 'D/MM/YYYY';break; + case 'm/d/y': $usethisformat = 'MM/D/YY';break; + case 'm/d/Y': $usethisformat = 'MM/D/YYYY';break; + case 'd.m.Y': $usethisformat = 'D.MM.YYYY';break; + case 'y/m/d': $usethisformat = 'YY/MM/D';break; + case 'Y-m-d': $usethisformat = 'YYYY-MM-D';break; + case 'M d, Y': $usethisformat = 'MMM D, YYYY';break; + case 'M d, y': $usethisformat = 'MMM D, YY';break; + } + + $data['scripts'] = [ + 'assets/js/sections/distancerecords.js', + ]; + + // Render Page + $data['custom_date_format'] = $custom_date_format; + $data['page_title'] = __("Satellite Distance Records"); + $data['distances'] = $this->distancerecords_model->get_records(); + + $footerData['usethisformat'] = $usethisformat; + + $this->load->view('interface_assets/header', $data); + $this->load->view('distancerecords/index'); + $this->load->view('interface_assets/footer', $footerData); + } + + public function sat_records_ajax() { + $this->load->model('distancerecords_model'); + + $sat = str_replace('"', "", $this->security->xss_clean($this->input->post("Sat"))); + $searchmode = $this->input->post('searchmode') == null ? '' : $this->security->xss_clean($this->input->post('searchmode')); + $data['results'] = $this->distancerecords_model->sat_distances($sat); + + $data['page_title'] = __("Log View")." - " . __("Satellite Distance Records"); + $data['filter'] = $sat; + + $this->load->view('distancerecords/details', $data); + } + +} diff --git a/application/controllers/Distances.php b/application/controllers/Distances.php index f68287ca1..af4957501 100644 --- a/application/controllers/Distances.php +++ b/application/controllers/Distances.php @@ -8,7 +8,7 @@ class Distances extends CI_Controller { parent::__construct(); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } public function index() @@ -74,12 +74,13 @@ class Distances extends CI_Controller { $distance = $this->security->xss_clean($this->input->post('distance')); $band = $this->security->xss_clean($this->input->post('band')); $sat = $this->security->xss_clean($this->input->post('sat')); + $propagation = $this->security->xss_clean($this->input->post('propagation')); - $data['results'] = $this->distances_model->qso_details($distance, $band, $sat); + $data['results'] = $this->distances_model->qso_details($distance, $band, $sat, $propagation); // Render Page $data['page_title'] = "Log View - " . $distance; - $data['filter'] = __("QSOs with") . " " . $distance . " " . __("and band"). " " . $band; + $data['filter'] = __("QSOs with") . " " . $distance . " " . __("and band"). " " . $band. __("and propagation"). " " . $propagation; $this->load->view('awards/details', $data); } } diff --git a/application/controllers/Dxatlas.php b/application/controllers/Dxatlas.php index 48cbf81bf..dc10fa4f9 100644 --- a/application/controllers/Dxatlas.php +++ b/application/controllers/Dxatlas.php @@ -4,7 +4,7 @@ class Dxatlas extends CI_Controller { public function index() { $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $this->load->model('modes'); $this->load->model('logbook_model'); @@ -26,7 +26,7 @@ class Dxatlas extends CI_Controller { public function export() { $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $this->load->model('dxatlas_model'); @@ -48,7 +48,7 @@ class Dxatlas extends CI_Controller { function generateFiles($wkdArray, $cfmArray, $band) { $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $gridCfmArray = []; $gridWkdArray = []; @@ -105,7 +105,7 @@ class Dxatlas extends CI_Controller { function makeZip($gridWkdString, $gridCfmString, $band) { $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $zipFileName = 'dxatlas_gridsquares_'. $band . '.zip'; // Prepare File $file = tempnam(".", "zip"); diff --git a/application/controllers/Dxcalendar.php b/application/controllers/Dxcalendar.php index 9a4029702..a9281c925 100644 --- a/application/controllers/Dxcalendar.php +++ b/application/controllers/Dxcalendar.php @@ -5,7 +5,7 @@ class Dxcalendar extends CI_Controller { public function index() { $this->load->model('user_model'); $this->load->model('logbook_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $data['page_title'] = __("DX Calendar"); diff --git a/application/controllers/Dxcluster.php b/application/controllers/Dxcluster.php index 3a642256c..4414873f5 100644 --- a/application/controllers/Dxcluster.php +++ b/application/controllers/Dxcluster.php @@ -6,7 +6,7 @@ class Dxcluster extends CI_Controller { { parent::__construct(); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $this->load->model('dxcluster_model'); } diff --git a/application/controllers/Eqsl.php b/application/controllers/Eqsl.php index 6c70c9eee..98eae0ac3 100644 --- a/application/controllers/Eqsl.php +++ b/application/controllers/Eqsl.php @@ -20,7 +20,7 @@ class eqsl extends CI_Controller { $this->load->model('user_model'); if (!$this->user_model->authorize(2)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } @@ -44,7 +44,7 @@ class eqsl extends CI_Controller { public function import() { $this->load->model('user_model'); if (!$this->user_model->authorize(2)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } @@ -141,7 +141,7 @@ class eqsl extends CI_Controller { public function export() { $this->load->model('user_model'); if (!$this->user_model->authorize(2)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } @@ -220,7 +220,7 @@ class eqsl extends CI_Controller { function generateResultTable($custom_date_format, $rows) { $this->load->model('user_model'); if (!$this->user_model->authorize(2)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } @@ -244,7 +244,7 @@ class eqsl extends CI_Controller { function writeEqslNotSent($qslsnotsent, $custom_date_format) { $this->load->model('user_model'); if (!$this->user_model->authorize(2)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $table = ''; @@ -283,7 +283,7 @@ class eqsl extends CI_Controller { function image($id) { $this->load->model('user_model'); if (!$this->user_model->authorize(2)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $this->load->library('electronicqsl'); @@ -318,7 +318,12 @@ class eqsl extends CI_Controller { $images = $dom->getElementsByTagName('img'); if (!isset($images) || count($images) == 0) { - echo "Rate Limited"; + $h3 = $dom->getElementsByTagName('h3'); + if (isset($h3)) { + echo $h3->item(0)->nodeValue; + } else { + echo "Rate Limited"; + } exit; } @@ -345,10 +350,9 @@ class eqsl extends CI_Controller { function bulk_download_image($id) { $this->load->model('user_model'); if (!$this->user_model->authorize(2)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } - $this->load->library('electronicqsl'); $this->load->model('Eqsl_images'); $this->load->model('logbook_model'); @@ -384,10 +388,16 @@ class eqsl extends CI_Controller { $images = $dom->getElementsByTagName('img'); if (!isset($images) || count($images) == 0) { - $error = "Rate Limited"; + $h3 = $dom->getElementsByTagName('h3'); + if (isset($h3)) { + $error = $h3->item(0)->nodeValue; + } else { + $error = "Rate Limited"; + } return $error; } + session_write_close(); foreach ($images as $image) { $content = file_get_contents("https://www.eqsl.cc" . $image->getAttribute('src')); if ($content === false) { @@ -401,14 +411,13 @@ class eqsl extends CI_Controller { } } } - return $error; } public function tools() { // Check logged in $this->load->model('user_model'); if (!$this->user_model->authorize(2)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } @@ -424,10 +433,11 @@ class eqsl extends CI_Controller { // Check logged in $this->load->model('user_model'); if (!$this->user_model->authorize(2)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $errors = 0; + $this->load->library('electronicqsl'); if ($this->input->post('eqsldownload') == 'download') { $i = 0; @@ -484,7 +494,7 @@ class eqsl extends CI_Controller { // Check logged in $this->load->model('user_model'); if (!$this->user_model->authorize(2)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } diff --git a/application/controllers/Hamsat.php b/application/controllers/Hamsat.php index ae9516f99..4d25a4457 100644 --- a/application/controllers/Hamsat.php +++ b/application/controllers/Hamsat.php @@ -10,7 +10,7 @@ class Hamsat extends CI_Controller { parent::__construct(); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } public function index() { diff --git a/application/controllers/Kmlexport.php b/application/controllers/Kmlexport.php index 7ef266e35..dcc5772eb 100644 --- a/application/controllers/Kmlexport.php +++ b/application/controllers/Kmlexport.php @@ -15,7 +15,7 @@ class Kmlexport extends CI_Controller { $this->load->model('logbook_model'); $this->load->model('bands'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $data['worked_bands'] = $this->bands->get_worked_bands(); // Used in the view for band select $data['modes'] = $this->modes->active(); // Used in the view for mode select @@ -30,7 +30,7 @@ class Kmlexport extends CI_Controller { public function export() { $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } // Load Libraries if(!$this->load->is_loaded('Qra')) { $this->load->library('Qra'); diff --git a/application/controllers/Labels.php b/application/controllers/Labels.php index 42f75fe7f..2f8305913 100644 --- a/application/controllers/Labels.php +++ b/application/controllers/Labels.php @@ -23,7 +23,7 @@ class Labels extends CI_Controller { $this->load->helper(array('form', 'url', 'psr4_autoloader')); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } @@ -345,13 +345,17 @@ class Labels extends CI_Controller { function generateLabel($pdf, $current_callsign, $tableData,$numofqsos,$qso,$orientation,$grid=true, $via=false, $reference = false){ $builder = new \AsciiTable\Builder(); $builder->addRows($tableData); - $text = "Confirming QSO".($numofqsos>1 ? 's' : '')." with "; - $text .= $current_callsign; + $toradio = "To Radio: "; + $toradio .= $current_callsign; if (($via) && ($qso['via'] ?? '' != '')) { - $text.=' via '.substr($qso['via'],0,8); + $toradio.=' via '.substr($qso['via'],0,8); } - $text .= "\n"; - $text .= $builder->renderTable(); + $builder->setTitle($toradio); + + $additionalText = "Confirming QSO".($numofqsos>1 ? 's' : ''); + $builder->setAdditionalText($additionalText); + + $text = $builder->renderTable(); if($qso['sat'] != "") { if (($qso['sat_mode'] == '') && ($qso['sat_band_rx'] !== '')) { $text .= "\n".'Satellite: '.$qso['sat'].' Band RX: '.$qso['sat_band_rx']; diff --git a/application/controllers/Logbook.php b/application/controllers/Logbook.php index 6f3f77b0a..8a2d61c68 100644 --- a/application/controllers/Logbook.php +++ b/application/controllers/Logbook.php @@ -114,6 +114,8 @@ class Logbook extends CI_Controller { "callsign_iota" => "", "callsign_state" => "", "callsign_us_county" => "", + "callsign_ituz" => "", + "callsign_cqz" => "", "qsl_manager" => "", "bearing" => "", "workedBefore" => false, @@ -139,12 +141,14 @@ class Logbook extends CI_Controller { $return['callsign_name'] = $this->nval($callbook['name'] ?? '', $this->logbook_model->call_name($callsign)); $return['callsign_qra'] = $this->nval($callbook['gridsquare'] ?? '', $this->logbook_model->call_qra($callsign)); - $return['callsign_distance'] = $this->distance($return['callsign_qra']); + $return['callsign_distance'] = $this->distance($return['callsign_qra'], $station_id); $return['callsign_qth'] = $this->nval($callbook['city'] ?? '', $this->logbook_model->call_qth($callsign)); $return['callsign_iota'] = $this->nval($callbook['iota'] ?? '', $this->logbook_model->call_iota($callsign)); $return['qsl_manager'] = $this->nval($callbook['qslmgr'] ?? '', $this->logbook_model->call_qslvia($callsign)); $return['callsign_state'] = $this->nval($callbook['state'] ?? '', $this->logbook_model->call_state($callsign)); $return['callsign_us_county'] = $this->nval($callbook['us_county'] ?? '', $this->logbook_model->call_us_county($callsign)); + $return['callsign_ituz'] = $this->nval($callbook['ituz'] ?? '', $this->logbook_model->call_ituzone($callsign)); + $return['callsign_cqz'] = $this->nval($callbook['cqz'] ?? '', $this->logbook_model->call_cqzone($callsign)); $return['workedBefore'] = $this->worked_grid_before($return['callsign_qra'], $band, $mode); $return['confirmed'] = $this->confirmed_grid_before($return['callsign_qra'], $band, $mode); $return['timesWorked'] = $this->logbook_model->times_worked($lookupcall); @@ -681,9 +685,9 @@ class Logbook extends CI_Controller { } foreach ($query->result() as $row) { - $timestamp = strtotime($row->COL_TIME_ON); + $timestamp = strtotime($row->COL_TIME_ON ?? '1970-01-01 00:00:00'); $html .= ""; - $html .= ""; + $html .= ""; $html .= ""; $html .= $this->part_table_col($row, $this->session->userdata('user_column1')==""?'Mode':$this->session->userdata('user_column1')); $html .= $this->part_table_col($row, $this->session->userdata('user_column2')==""?'RSTS':$this->session->userdata('user_column2')); @@ -1047,7 +1051,11 @@ class Logbook extends CI_Controller { } function search_incorrect_cq_zones($station_id) { - $station_id = $this->security->xss_clean($station_id); + $clean_station_id = $this->security->xss_clean($station_id); + + if (!is_numeric($clean_station_id) && $clean_station_id !== 'All') { + show_404(); + } $this->load->model('user_model'); @@ -1067,11 +1075,14 @@ class Logbook extends CI_Controller { and not exists (select 1 from dxcc_master where countrycode = thcv.col_dxcc and cqzone = col_cqz) and col_dxcc > 0 '; - if ($station_id != 'All') { - $sql .= ' and station_profile.station_id = ' . $station_id; + $params = []; + + if ($clean_station_id != 'All') { + $sql .= ' and station_profile.station_id = ?'; + $params[] = $clean_station_id; } - $query = $this->db->query($sql); + $query = $this->db->query($sql, $params); $data['qsos'] = $query; @@ -1312,7 +1323,7 @@ class Logbook extends CI_Controller { case 'Grid': $ret.= ''; break; case 'Distance': $ret.= ''; break; case 'Band': $ret.= ''; } else { $ret.= strtolower($row->COL_BAND); } $ret.= ''; break; - case 'Frequency': $ret.= ''; } else { if($row->COL_FREQ != null) { $ret.= $this->frequency->hz_to_mhz($row->COL_FREQ); } else { $ret.= strtolower($row->COL_BAND); } } $ret.= ''; break; + case 'Frequency': $ret.= ''; } else { if($row->COL_FREQ != null) { $ret.= $this->frequency->qrg_conversion($row->COL_FREQ); } else { $ret.= strtolower($row->COL_BAND); } } $ret.= ''; break; case 'State': $ret.= ''; break; case 'Operator': $ret.= ''; break; } diff --git a/application/controllers/Logbookadvanced.php b/application/controllers/Logbookadvanced.php index f7d5d6b02..ad6448f3a 100644 --- a/application/controllers/Logbookadvanced.php +++ b/application/controllers/Logbookadvanced.php @@ -13,7 +13,7 @@ class Logbookadvanced extends CI_Controller { $this->load->model('user_model'); if (!$this->user_model->authorize(2)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } @@ -143,6 +143,8 @@ class Logbookadvanced extends CI_Controller { 'dupes' => xss_clean($this->input->post('dupes')), 'operator' => xss_clean($this->input->post('operator')), 'contest' => xss_clean($this->input->post('contest')), + 'invalid' => xss_clean($this->input->post('invalid')), + 'continent' => xss_clean($this->input->post('continent')), ); $qsos = []; @@ -357,6 +359,7 @@ class Logbookadvanced extends CI_Controller { 'operator' => xss_clean($this->input->post('operator')), 'contest' => xss_clean($this->input->post('contest')), 'qslimages' => xss_clean($this->input->post('qslimages')), + 'continent' => xss_clean($this->input->post('continent')), ); $result = $this->logbookadvanced_model->getSearchResultArray($searchCriteria); @@ -521,6 +524,7 @@ class Logbookadvanced extends CI_Controller { $json_string['dok']['show'] = $this->input->post('dok'); $json_string['sig']['show'] = $this->input->post('sig'); $json_string['wwff']['show'] = $this->input->post('wwff'); + $json_string['continent']['show'] = $this->input->post('continent'); $obj['column_settings']= json_encode($json_string); diff --git a/application/controllers/Lookup.php b/application/controllers/Lookup.php index cc0a9b7a4..88fe726eb 100644 --- a/application/controllers/Lookup.php +++ b/application/controllers/Lookup.php @@ -14,7 +14,7 @@ class Lookup extends CI_Controller { parent::__construct(); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } public function index() @@ -65,9 +65,7 @@ class Lookup extends CI_Controller { public function scp() { session_write_close(); - if($_POST['callsign']) { - $uppercase_callsign = strtoupper($_POST['callsign']); - } + $uppercase_callsign = strtoupper($this->input->post('callsign', TRUE) ?? ''); // SCP results from logbook $this->load->model('logbook_model'); diff --git a/application/controllers/Lotw.php b/application/controllers/Lotw.php index 3c4412e23..e92432418 100644 --- a/application/controllers/Lotw.php +++ b/application/controllers/Lotw.php @@ -42,7 +42,7 @@ class Lotw extends CI_Controller { public function index() { $this->load->library('Permissions'); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } // Load required models for page generation $this->load->model('Lotw_model'); @@ -74,7 +74,7 @@ class Lotw extends CI_Controller { public function cert_upload() { $this->load->model('user_model'); $this->load->model('dxcc'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } // Load DXCC Countrys List $data['dxcc_list'] = $this->dxcc->list(); @@ -101,7 +101,7 @@ class Lotw extends CI_Controller { { $this->load->model('user_model'); $this->load->model('dxcc'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } // create folder to store certs while processing if (!file_exists('./uploads/lotw/certs')) { @@ -149,14 +149,14 @@ class Lotw extends CI_Controller { $this->Lotw_model->store_certificate($this->session->userdata('user_id'), $info['issued_callsign'], $info['dxcc-id'], $info['validFrom'], $info['validTo_Date'], $info['qso-first-date'], $info['qso-end-date'], $info['pem_key'], $info['general_cert']); // Cert success flash message - $this->session->set_flashdata('Success', $info['issued_callsign'].' Certificate Imported.'); + $this->session->set_flashdata('success', $info['issued_callsign'] . ' ' . __("Certificate Imported.")); } else { // Certificate is in the system time to update $this->Lotw_model->update_certificate($this->session->userdata('user_id'), $info['issued_callsign'], $info['dxcc-id'], $info['validFrom'], $info['validTo_Date'], $info['qso-first-date'], $info['qso-end-date'], $info['pem_key'], $info['general_cert']); // Cert success flash message - $this->session->set_flashdata('Success', $info['issued_callsign'].' Certificate Updated.'); + $this->session->set_flashdata('success', $info['issued_callsign'] . ' ' . __("Certificate Updated.")); } @@ -375,15 +375,15 @@ class Lotw extends CI_Controller { */ public function delete_cert($cert_id) { $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $this->load->model('Lotw_model'); $this->Lotw_model->delete_certificate($this->session->userdata('user_id'), $cert_id); - $this->session->set_flashdata('Success', 'Certificate Deleted.'); + $this->session->set_flashdata('success', __("Certificate Deleted.")); - redirect('/lotw/'); + redirect('lotw'); } @@ -398,14 +398,21 @@ class Lotw extends CI_Controller { */ public function decrypt_key($file, $password = "") { $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $results = array(); $password = $password; // Only needed if 12 has a password set $filename = file_get_contents('file://'.$file); $worked = openssl_pkcs12_read($filename, $results, $password); - $data['general_cert'] = $results['cert']; + if ($results['cert']) { + $data['general_cert'] = $results['cert']; + } else { + log_message('error', 'Found no certificate in file '.$file); + unlink($file); + $this->session->set_flashdata('warning', sprintf(__("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."), basename($file))); + redirect('lotw'); + } if($worked) { @@ -422,16 +429,16 @@ class Lotw extends CI_Controller { log_message('error', openssl_error_string()); // Set warning message redirect to LoTW main page - $this->session->set_flashdata('Warning', openssl_error_string()); - redirect('/lotw/'); + $this->session->set_flashdata('warning', openssl_error_string()); + redirect('lotw'); } } else { // Reading p12 failed log error message log_message('error', openssl_error_string()); // Set warning message redirect to LoTW main page - $this->session->set_flashdata('Warning', openssl_error_string()); - redirect('/lotw/'); + $this->session->set_flashdata('warning', openssl_error_string()); + redirect('lotw'); } // Read Cert Data @@ -527,7 +534,7 @@ class Lotw extends CI_Controller { // Present only if the QSLing station specified a single valid grid square value in its station location uploaded to LoTW. $qsl_gridsquare = ""; if (isset($record['gridsquare'])) { - if (strlen($record['gridsquare']) > strlen($status[2]) || substr(strtoupper($status[2]), 0, 4) != substr(strtoupper($record['gridsquare']), 0, 4)) { + if (strlen($record['gridsquare']) > strlen($status[2] ?? '') || substr(strtoupper($status[2] ?? ''), 0, 4) != substr(strtoupper($record['gridsquare']), 0, 4)) { $qsl_gridsquare = $record['gridsquare']; } } @@ -709,7 +716,7 @@ class Lotw extends CI_Controller { public function import() { // Is only called via frontend. Cron uses "upload". within download the download is called $this->load->model('user_model'); if(!$this->user_model->authorize(2)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); exit(); } @@ -742,7 +749,7 @@ class Lotw extends CI_Controller { // TODO: We don't actually see the error message if ($data['user_lotw_name'] == '' || $data['user_lotw_password'] == '') { - $this->session->set_flashdata('warning', 'You have not defined your ARRL LoTW credentials!'); redirect('lotw/import'); + $this->session->set_flashdata('warning', __("You have not defined your ARRL LoTW credentials!")); redirect('lotw/import'); } $customDate = $this->input->post('from'); @@ -817,7 +824,7 @@ class Lotw extends CI_Controller { } } } else { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); exit(); } @@ -825,7 +832,7 @@ class Lotw extends CI_Controller { public function export() { $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $data['page_title'] = __("LoTW .TQ8 Upload"); @@ -860,7 +867,7 @@ class Lotw extends CI_Controller { if ($fields['login'] == '' || $fields['password'] == '') { - $this->session->set_flashdata('warning', 'You have not defined your ARRL LoTW credentials!'); redirect('lotw/status'); + $this->session->set_flashdata('warning', __("You have not defined your ARRL LoTW credentials!")); redirect('lotw/status'); } // Curl stuff goes here @@ -905,7 +912,7 @@ class Lotw extends CI_Controller { $result = curl_exec($ch); if (stristr($result, "Username/password incorrect")) { - $this->session->set_flashdata('warning', 'Your ARRL username and/or password is incorrect.'); redirect('lotw/status'); + $this->session->set_flashdata('warning', __("Your ARRL username and/or password is incorrect.")); redirect('lotw/status'); } diff --git a/application/controllers/Mode.php b/application/controllers/Mode.php index d0f61c120..865243d84 100644 --- a/application/controllers/Mode.php +++ b/application/controllers/Mode.php @@ -12,7 +12,7 @@ class Mode extends CI_Controller { $this->load->helper(array('form', 'url')); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } public function index() diff --git a/application/controllers/Notes.php b/application/controllers/Notes.php index 580515390..ba27c2a00 100644 --- a/application/controllers/Notes.php +++ b/application/controllers/Notes.php @@ -7,13 +7,12 @@ class Notes extends CI_Controller { parent::__construct(); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } /* Displays all notes in a list */ - public function index() - { + public function index() { $this->load->model('note'); $data['notes'] = $this->note->list_all(); $data['page_title'] = __("Notes"); @@ -50,9 +49,16 @@ class Notes extends CI_Controller { /* View Notes */ function view($id) { + + $clean_id = $this->security->xss_clean($id); + + if (! is_numeric($clean_id)) { + show_404(); + } + $this->load->model('note'); - $data['note'] = $this->note->view($id); + $data['note'] = $this->note->view($clean_id); // Display $data['page_title'] = __("Note"); @@ -63,10 +69,17 @@ class Notes extends CI_Controller { /* Edit Notes */ function edit($id) { + + $clean_id = $this->security->xss_clean($id); + + if (! is_numeric($clean_id)) { + show_404(); + } + $this->load->model('note'); - $data['id'] = $id; + $data['id'] = $clean_id; - $data['note'] = $this->note->view($id); + $data['note'] = $this->note->view($clean_id); $this->load->library('form_validation'); @@ -91,8 +104,15 @@ class Notes extends CI_Controller { /* Delete Note */ function delete($id) { + + $clean_id = $this->security->xss_clean($id); + + if (! is_numeric($clean_id)) { + show_404(); + } + $this->load->model('note'); - $this->note->delete($id); + $this->note->delete($clean_id); redirect('notes'); } diff --git a/application/controllers/Options.php b/application/controllers/Options.php index 9a3f5469a..2ecd8eed1 100644 --- a/application/controllers/Options.php +++ b/application/controllers/Options.php @@ -12,7 +12,7 @@ class Options extends CI_Controller { $this->load->helper(array('form', 'url')); $this->load->model('user_model'); - if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } @@ -126,6 +126,14 @@ class Options extends CI_Controller { $this->session->set_flashdata('success', __("Options saved")); } + // Update public login button within the options system + $public_login_button_update_status = $this->optionslib->update('public_login_button', $this->input->post('publicLoginButton'), 'yes'); + + // If the option was saved successfully set a flashsession with success note + if($public_login_button_update_status == TRUE) { + $this->session->set_flashdata('success', __("Options saved")); + } + // Redirect back to /appearance redirect('/options/appearance'); } diff --git a/application/controllers/Oqrs.php b/application/controllers/Oqrs.php index 52ba6d31a..2f3c8a920 100644 --- a/application/controllers/Oqrs.php +++ b/application/controllers/Oqrs.php @@ -11,13 +11,37 @@ class Oqrs extends CI_Controller { parent::__construct(); // Commented out to get public access // $this->load->model('user_model'); - // if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } - if (($this->config->item('disable_oqrs') ?? false)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + // if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } + if (($this->config->item('disable_oqrs') ?? false)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } - public function index() { - $this->load->model('oqrs_model'); + function _remap($method) { + $class = new ReflectionClass('Oqrs'); + $methods = $class->getMethods(ReflectionMethod::IS_PUBLIC); + $found = false; + foreach ($methods as $m) { + if ($m->name == $method) { + $found = true; + $this->{$m->name}(); + break; // Exit the loop once the method is called + } + } + + if (!$found) { + $this->index($method); + } + } + + public function index($public_slug = NULL) { + $this->load->model('oqrs_model'); + $this->load->model('publicsearch'); + + $slug = $this->security->xss_clean($public_slug); + $data['slug'] = $slug; + $data['oqrs_enabled'] = $this->oqrs_model->oqrs_enabled($slug); + $data['public_search_enabled'] = $this->publicsearch->public_search_enabled($slug); + $data['disable_oqrs'] = $this->config->item('disable_oqrs'); $data['stations'] = $this->oqrs_model->get_oqrs_stations(); $data['page_title'] = __("Log Search & OQRS"); $data['global_oqrs_text'] = $this->optionslib->get_option('global_oqrs_text'); @@ -30,7 +54,7 @@ class Oqrs extends CI_Controller { public function get_station_info() { $this->load->model('oqrs_model'); - $result = $this->oqrs_model->get_station_info($this->input->post('station_id')); + $result = $this->oqrs_model->get_station_info($this->input->post('station_id', TRUE)); header('Content-Type: application/json'); echo json_encode($result); @@ -38,11 +62,11 @@ class Oqrs extends CI_Controller { public function get_qsos() { $this->load->model('bands'); - $data['bands'] = $this->bands->get_worked_bands_oqrs($this->security->xss_clean($this->input->post('station_id'))); + $data['bands'] = $this->bands->get_worked_bands_oqrs($this->input->post('station_id', TRUE)); $this->load->model('oqrs_model'); - $result = $this->oqrs_model->get_qsos($this->input->post('station_id'), $this->input->post('callsign'), $data['bands']); - $data['callsign'] = $this->security->xss_clean($this->input->post('callsign')); + $result = $this->oqrs_model->get_qsos($this->input->post('station_id', TRUE), $this->input->post('callsign', TRUE), $data['bands']); + $data['callsign'] = $this->input->post('callsign', TRUE); $data['result'] = $result['qsoarray']; $data['qsocount'] = $result['qsocount']; @@ -51,9 +75,9 @@ class Oqrs extends CI_Controller { public function get_qsos_grouped() { $this->load->model('oqrs_model'); - $data['result'] = $this->oqrs_model->getQueryDataGrouped($this->input->post('callsign')); - $data['callsign'] = $this->security->xss_clean($this->input->post('callsign')); - + $data['result'] = $this->oqrs_model->getQueryDataGrouped($this->input->post('callsign', TRUE)); + $data['callsign'] = $this->input->post('callsign', TRUE); + if($this->input->post('widget') != 'true') { $this->load->view('oqrs/request_grouped', $data); } else { @@ -73,7 +97,6 @@ class Oqrs extends CI_Controller { $data['page_title'] = __("Log Search & OQRS"); $this->load->model('bands'); - // $data['bands'] = $this->bands->get_worked_bands_oqrs($this->security->xss_clean($this->input->post('station_id'))); $this->load->view('oqrs/notinlogform', $data); } @@ -81,10 +104,10 @@ class Oqrs extends CI_Controller { public function save_not_in_log() { $station_ids = array(); - $postdata = $this->input->post(); + $postdata = $this->input->post(NULL, TRUE); // index is null means we get all postdata, TRUE means we XSS clean everything $this->load->model('oqrs_model'); $this->oqrs_model->save_not_in_log($postdata); - array_push($station_ids, xss_clean($this->input->post('station_id'))); + array_push($station_ids, $this->input->post('station_id', TRUE)); $this->alert_oqrs_request($postdata, $station_ids); } @@ -93,9 +116,9 @@ class Oqrs extends CI_Controller { */ public function request_form() { $this->load->model('oqrs_model'); - $data['result'] = $this->oqrs_model->getQueryData($this->input->post('station_id'), $this->input->post('callsign')); - $data['callsign'] = $this->security->xss_clean($this->input->post('callsign')); - $data['qslinfo'] = $this->oqrs_model->getQslInfo($this->input->post('station_id')); + $data['result'] = $this->oqrs_model->getQueryData($this->input->post('station_id', TRUE), $this->input->post('callsign', TRUE)); + $data['callsign'] = $this->input->post('callsign', TRUE); + $data['qslinfo'] = $this->oqrs_model->getQslInfo($this->input->post('station_id', TRUE)); $this->load->view('oqrs/request', $data); } @@ -122,40 +145,40 @@ class Oqrs extends CI_Controller { } public function save_oqrs_request() { - $postdata = $this->input->post(); + $postdata = $this->input->post(NULL, TRUE); // index is null means we get all postdata, TRUE means we XSS clean everything $this->load->model('oqrs_model'); $station_ids = $this->oqrs_model->save_oqrs_request($postdata); $this->alert_oqrs_request($postdata, $station_ids); } public function save_oqrs_request_grouped() { - $postdata = $this->input->post(); + $postdata = $this->input->post(NULL, TRUE); // index is null means we get all postdata, TRUE means we XSS clean everything $this->load->model('oqrs_model'); $station_ids = $this->oqrs_model->save_oqrs_request_grouped($postdata); $this->alert_oqrs_request($postdata, $station_ids); } public function delete_oqrs_line() { - $id = $this->input->post('id'); + $id = $this->input->post('id', TRUE); $this->load->model('oqrs_model'); $this->oqrs_model->delete_oqrs_line($id); } public function search_log() { $this->load->model('oqrs_model'); - $callsign = $this->input->post('callsign'); + $callsign = $this->input->post('callsign', TRUE); - $data['qsos'] = $this->oqrs_model->search_log($this->security->xss_clean($callsign)); + $data['qsos'] = $this->oqrs_model->search_log($callsign); $this->load->view('qslprint/qsolist', $data); } public function search_log_time_date() { $this->load->model('oqrs_model'); - $time = $this->security->xss_clean($this->input->post('time')); - $date = $this->security->xss_clean($this->input->post('date')); - $mode = $this->security->xss_clean($this->input->post('mode')); - $band = $this->security->xss_clean($this->input->post('band')); + $time = $this->input->post('time', TRUE); + $date = $this->input->post('date', TRUE); + $mode = $this->input->post('mode', TRUE); + $band = $this->input->post('band', TRUE); $data['qsos'] = $this->oqrs_model->search_log_time_date($time, $date, $band, $mode); @@ -214,7 +237,7 @@ class Oqrs extends CI_Controller { public function mark_oqrs_line_as_done() { $this->load->model('oqrs_model'); - $id = $this->security->xss_clean($this->input->post('id')); + $id = $this->input->post('id', TRUE); $this->oqrs_model->mark_oqrs_line_as_done($id); } @@ -224,10 +247,10 @@ class Oqrs extends CI_Controller { $searchCriteria = array( 'user_id' => (int)$this->session->userdata('user_id'), - 'de' => xss_clean($this->input->post('de')), - 'dx' => xss_clean($this->input->post('dx')), - 'status' => xss_clean($this->input->post('status')), - 'oqrsResults' => xss_clean($this->input->post('oqrsResults')), + 'de' => $this->input->post('de', TRUE), + 'dx' => $this->input->post('dx', TRUE), + 'status' => $this->input->post('status', TRUE), + 'oqrsResults' => $this->input->post('oqrsResults', TRUE), ); $qsos = $this->oqrs_model->searchOqrs($searchCriteria); @@ -235,4 +258,5 @@ class Oqrs extends CI_Controller { header("Content-Type: application/json"); print json_encode($qsos); } + } diff --git a/application/controllers/Qrbcalc.php b/application/controllers/Qrbcalc.php index 7ac4499cc..247b492e6 100644 --- a/application/controllers/Qrbcalc.php +++ b/application/controllers/Qrbcalc.php @@ -10,7 +10,7 @@ class Qrbcalc extends CI_Controller { parent::__construct(); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } public function index() { @@ -23,8 +23,13 @@ class Qrbcalc extends CI_Controller { } public function calculate() { - $locator1 = $this->input->post("locator1"); - $locator2 = $this->input->post("locator2"); + + if(!$this->load->is_loaded('Qra')) { + $this->load->library('Qra'); + } + + $locator1 = strtoupper($this->input->post("locator1", TRUE)); + $locator2 = strtoupper($this->input->post("locator2", TRUE)); if ($this->session->userdata('user_measurement_base') == NULL) { $measurement_base = $this->config->item('measurement_base'); @@ -33,34 +38,39 @@ class Qrbcalc extends CI_Controller { $measurement_base = $this->session->userdata('user_measurement_base'); } - switch ($measurement_base) { - case 'M': - $var_dist = " miles"; - break; - case 'N': - $var_dist = " nautic miles"; - break; - case 'K': - $var_dist = " kilometers"; - break; - } - - if(!$this->load->is_loaded('Qra')) { - $this->load->library('Qra'); - } - - $data['result'] = $this->qra->bearing($locator1, $locator2, $measurement_base); - $data['distance'] = $this->qra->distance($locator1, $locator2, $measurement_base) . $var_dist; - $data['bearing'] = $this->qra->get_bearing($locator1, $locator2) . "º"; $latlng1 = $this->qra->qra2latlong($locator1); $latlng2 = $this->qra->qra2latlong($locator2); $latlng1[0] = number_format((float)$latlng1[0], 3, '.', '');; $latlng1[1] = number_format((float)$latlng1[1], 3, '.', '');; $latlng2[0] = number_format((float)$latlng2[0], 3, '.', '');; $latlng2[1] = number_format((float)$latlng2[1], 3, '.', '');; + $distance = $this->qra->distance($locator1, $locator2, $measurement_base); + $text_latlng1 = $locator1 . ' ' . sprintf(__("Latitude: %s, Longitude: %s"), $latlng1[0], $latlng1[1]); + $text_latlng2 = $locator2 . ' ' . sprintf(__("Latitude: %s, Longitude: %s"), $latlng2[0], $latlng2[1]); + + switch ($measurement_base) { + case 'M': + $var_dist = sprintf(_ngettext("The distance between %s and %s is %s mile.", "The distance between %s and %s is %s miles.", intval($distance)), $locator1, $locator2, $distance); + break; + case 'N': + $var_dist = sprintf(_ngettext("The distance between %s and %s is %s nautical mile.", "The distance between %s and %s is %s nautical miles.", intval($distance)), $locator1, $locator2, $distance); + break; + case 'K': + $var_dist = sprintf(_ngettext("The distance between %s and %s is %s kilometer.", "The distance between %s and %s is %s kilometers.", intval($distance)), $locator1, $locator2, $distance); + break; + } + + $data['result'] = $this->qra->bearing($locator1, $locator2, $measurement_base); + $data['distance'] = $var_dist; + $data['bearing'] = sprintf(__("The bearing is %s."), $this->qra->get_bearing($locator1, $locator2) . "º"); $data['latlng1'] = $latlng1; + $data['text_latlng1'] = $text_latlng1; + $data['text_latlng2'] = $text_latlng2; $data['latlng2'] = $latlng2; + + $data['latlong_info_text'] = __("Negative latitudes are south of the equator, negative longitudes are west of Greenwich."); + header('Content-Type: application/json'); echo json_encode($data); } diff --git a/application/controllers/Qrz.php b/application/controllers/Qrz.php index 94d5500a5..965489808 100644 --- a/application/controllers/Qrz.php +++ b/application/controllers/Qrz.php @@ -248,7 +248,7 @@ class Qrz extends CI_Controller { public function import_qrz() { $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $data['page_title'] = __("QRZ QSL Import"); diff --git a/application/controllers/Qsl.php b/application/controllers/Qsl.php index 68aff8681..59177e8ad 100644 --- a/application/controllers/Qsl.php +++ b/application/controllers/Qsl.php @@ -9,8 +9,8 @@ class Qsl extends CI_Controller { function __construct() { parent::__construct(); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } - if(($this->config->item('disable_qsl') ?? false)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); exit; } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } + if(($this->config->item('disable_qsl') ?? false)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); exit; } } // Default view when loading controller. @@ -41,7 +41,7 @@ class Qsl extends CI_Controller { // Deletes QSL Card public function delete() { $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $id = $this->input->post('id'); $this->load->model('Qsl_model'); $this->Qsl_model->deleteQsl($id); @@ -49,7 +49,7 @@ class Qsl extends CI_Controller { public function uploadqsl() { $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $qsoid = $this->input->post('qsoid'); diff --git a/application/controllers/Qslprint.php b/application/controllers/Qslprint.php index 81392bef3..1491e160e 100644 --- a/application/controllers/Qslprint.php +++ b/application/controllers/Qslprint.php @@ -144,7 +144,7 @@ class QSLPrint extends CI_Controller { $this->load->model('qslprint_model'); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } // Update Logbook to Mark Paper Card Sent diff --git a/application/controllers/Qso.php b/application/controllers/Qso.php index e4c8b0b9e..4019c2ae3 100644 --- a/application/controllers/Qso.php +++ b/application/controllers/Qso.php @@ -6,7 +6,7 @@ class QSO extends CI_Controller { { parent::__construct(); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } public function index() { @@ -16,12 +16,12 @@ class QSO extends CI_Controller { $this->load->model('user_model'); $this->load->model('modes'); $this->load->model('bands'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } // Getting the live/post mode from GET command // 0 = live // 1 = post (manual) - $get_manual_mode = $this->security->xss_clean($this->input->get('manual')); + $get_manual_mode = $this->input->get('manual', TRUE); if ($get_manual_mode == '0' || $get_manual_mode == '1') { $data['manual_mode'] = $get_manual_mode; } else { @@ -33,7 +33,7 @@ class QSO extends CI_Controller { $data['notice'] = false; $data['stations'] = $this->stations->all_of_user(); $data['radios'] = $this->cat->radios(); - $data['radio_last_updated'] = $this->cat->last_updated()->row(); + $data['radio_last_updated'] = $this->cat->last_updated()->row(); $data['query'] = $this->logbook_model->last_custom('5'); $data['dxcc'] = $this->logbook_model->fetchDxcc(); $data['iota'] = $this->logbook_model->fetchIota(); @@ -116,29 +116,29 @@ class QSO extends CI_Controller { // $qso_data = [ // 18-Jan-2016 - make php v5.3 friendly! $qso_data = array( - 'start_date' => $this->input->post('start_date'), - 'start_time' => $this->input->post('start_time'), + 'start_date' => $this->input->post('start_date', TRUE), + 'start_time' => $this->input->post('start_time', TRUE), 'end_time' => $this->input->post('end_time'), 'time_stamp' => time(), - 'band' => $this->input->post('band'), - 'band_rx' => $this->input->post('band_rx'), - 'freq' => $this->input->post('freq_display'), - 'freq_rx' => $this->input->post('freq_display_rx'), - 'mode' => $this->input->post('mode'), - 'sat_name' => $this->input->post('sat_name'), - 'sat_mode' => $this->input->post('sat_mode'), - 'prop_mode' => $this->input->post('prop_mode'), - 'radio' => $this->input->post('radio'), - 'station_profile_id' => $this->input->post('station_profile'), - 'operator_callsign' => $this->input->post('operator_callsign'), - 'transmit_power' => $this->input->post('transmit_power') + 'band' => $this->input->post('band', TRUE), + 'band_rx' => $this->input->post('band_rx', TRUE), + 'freq' => $this->input->post('freq_display', TRUE), + 'freq_rx' => $this->input->post('freq_display_rx', TRUE), + 'mode' => $this->input->post('mode', TRUE), + 'sat_name' => $this->input->post('sat_name', TRUE), + 'sat_mode' => $this->input->post('sat_mode', TRUE), + 'prop_mode' => $this->input->post('prop_mode', TRUE), + 'radio' => $this->input->post('radio', TRUE), + 'station_profile_id' => $this->input->post('station_profile', TRUE), + 'operator_callsign' => $this->input->post('operator_callsign', TRUE), + 'transmit_power' => $this->input->post('transmit_power', TRUE) ); // ]; $this->session->set_userdata($qso_data); // If SAT name is set make it session set to sat - if($this->input->post('sat_name')) { + if($this->input->post('sat_name', TRUE)) { $this->session->set_userdata('prop_mode', 'SAT'); } @@ -147,16 +147,16 @@ class QSO extends CI_Controller { //change to create_qso function as add and create_qso duplicate functionality $this->logbook_model->create_qso(); - $retuner=[]; - $actstation=$this->stations->find_active() ?? ''; - $returner['activeStationId'] = $actstation; - $profile_info = $this->stations->profile($actstation)->row(); - $returner['activeStationTXPower'] = xss_clean($profile_info->station_power); - $returner['activeStationOP'] = xss_clean($this->session->userdata('operator_callsign')); + $returner=[]; + $actstation=$this->stations->find_active() ?? ''; + $returner['activeStationId'] = $actstation; + $profile_info = $this->stations->profile($actstation)->row(); + $returner['activeStationTXPower'] = xss_clean($profile_info->station_power); + $returner['activeStationOP'] = xss_clean($this->session->userdata('operator_callsign')); $returner['message']='success'; // Get last 5 qsos - echo json_encode($returner); + echo json_encode($returner); } } @@ -173,7 +173,7 @@ class QSO extends CI_Controller { $this->load->model('logbook_model'); $this->load->model('user_model'); $this->load->model('modes'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $query = $this->logbook_model->qso_info($this->uri->segment(3)); $this->load->library('form_validation'); @@ -205,35 +205,31 @@ class QSO extends CI_Controller { $this->load->model('winkey'); // call settings from model winkey - $data['result'] = $this->winkey->settings($this->session->userdata('user_id'), $this->session->userdata('station_profile_id')); + $data['result'] = $this->winkey->settings($this->session->userdata('user_id'), $this->stations->find_active()); - if ($data['result'] == false) { - $this->load->view('qso/components/winkeysettings', $data); - } else { - $this->load->view('qso/components/winkeysettings_results', $data); - } + $this->load->view('qso/components/winkeysettings', $data); } function cwmacrosave(){ // Get the data from the form - $function1_name = xss_clean($this->input->post('function1_name')); - $function1_macro = xss_clean($this->input->post('function1_macro')); + $function1_name = $this->input->post('function1_name', TRUE); + $function1_macro = $this->input->post('function1_macro', TRUE); - $function2_name = xss_clean($this->input->post('function2_name')); - $function2_macro = xss_clean($this->input->post('function2_macro')); + $function2_name = $this->input->post('function2_name', TRUE); + $function2_macro = $this->input->post('function2_macro', TRUE); - $function3_name = xss_clean($this->input->post('function3_name')); - $function3_macro = xss_clean($this->input->post('function3_macro')); + $function3_name = $this->input->post('function3_name', TRUE); + $function3_macro = $this->input->post('function3_macro', TRUE); - $function4_name = xss_clean($this->input->post('function4_name')); - $function4_macro = xss_clean($this->input->post('function4_macro')); + $function4_name = $this->input->post('function4_name', TRUE); + $function4_macro = $this->input->post('function4_macro', TRUE); - $function5_name = xss_clean($this->input->post('function5_name')); - $function5_macro = xss_clean($this->input->post('function5_macro')); + $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->session->userdata('station_profile_id'), + 'station_location_id' => $this->stations->find_active(), 'function1_name' => $function1_name, 'function1_macro' => $function1_macro, 'function2_name' => $function2_name, @@ -262,7 +258,7 @@ class QSO extends CI_Controller { header('Content-Type: application/json; charset=utf-8'); // Call settings_json from model winkey - echo $this->winkey->settings_json($this->session->userdata('user_id'), $this->session->userdata('station_profile_id')); + echo $this->winkey->settings_json($this->session->userdata('user_id'), $this->stations->find_active()); } function edit_ajax() { @@ -271,15 +267,15 @@ class QSO extends CI_Controller { $this->load->model('user_model'); $this->load->model('modes'); $this->load->model('bands'); - $this->load->model('contesting_model'); + $this->load->model('contesting_model'); $this->load->library('form_validation'); if(!$this->user_model->authorize(2)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } - $id = str_replace('"', "", $this->input->post("id")); + $id = str_replace('"', "", $this->input->post("id", TRUE)); $query = $this->logbook_model->qso_info($id); $data['qso'] = $query->row(); @@ -296,7 +292,7 @@ class QSO extends CI_Controller { $this->load->model('logbook_model'); $this->load->model('user_model'); if(!$this->user_model->authorize(2)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $this->logbook_model->edit(); @@ -305,7 +301,7 @@ class QSO extends CI_Controller { function qsl_rcvd($id, $method) { $this->load->model('logbook_model'); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } // Update Logbook to Mark Paper Card Received @@ -317,8 +313,8 @@ class QSO extends CI_Controller { } function qsl_rcvd_ajax() { - $id = str_replace('"', "", $this->input->post("id")); - $method = str_replace('"', "", $this->input->post("method")); + $id = str_replace('"', "", $this->input->post("id", TRUE)); + $method = str_replace('"', "", $this->input->post("method", TRUE)); $this->load->model('logbook_model'); $this->load->model('user_model'); @@ -338,29 +334,29 @@ class QSO extends CI_Controller { } function qsl_sent_ajax() { - $id = str_replace('"', "", $this->input->post("id")); - $method = str_replace('"', "", $this->input->post("method")); - + $id = str_replace('"', "", $this->input->post("id", TRUE)); + $method = str_replace('"', "", $this->input->post("method", TRUE)); + $this->load->model('logbook_model'); $this->load->model('user_model'); - + header('Content-Type: application/json'); - + if(!$this->user_model->authorize(2)) { echo json_encode(array('message' => 'Error')); - + } else { // Update Logbook to Mark Paper Card Sent $this->logbook_model->paperqsl_update_sent($id, $method); - + echo json_encode(array('message' => 'OK')); } } function qsl_requested_ajax() { - $id = str_replace('"', "", $this->input->post("id")); - $method = str_replace('"', "", $this->input->post("method")); + $id = str_replace('"', "", $this->input->post("id", TRUE)); + $method = str_replace('"', "", $this->input->post("method", TRUE)); $this->load->model('logbook_model'); $this->load->model('user_model'); @@ -380,8 +376,8 @@ class QSO extends CI_Controller { } function qsl_ignore_ajax() { - $id = str_replace('"', "", $this->input->post("id")); - $method = str_replace('"', "", $this->input->post("method")); + $id = str_replace('"', "", $this->input->post("id", TRUE)); + $method = str_replace('"', "", $this->input->post("method", TRUE)); $this->load->model('logbook_model'); $this->load->model('user_model'); @@ -420,7 +416,7 @@ class QSO extends CI_Controller { /* Delete QSO */ function delete_ajax() { - $id = str_replace('"', "", $this->input->post("id")); + $id = str_replace('"', "", $this->input->post("id", TRUE)); $this->load->model('logbook_model'); if ($this->logbook_model->check_qso_is_accessible($id)) { @@ -450,10 +446,8 @@ class QSO extends CI_Controller { $this->load->library('sota'); $json = []; - if (!empty($this->security->xss_clean($this->input->get("query")))) { - $query = $_GET['query'] ?? FALSE; - $json = $this->sota->get($query); - } + $query = $this->input->get('query', TRUE) ?? FALSE; + $json = $this->sota->get($query); header('Content-Type: application/json'); echo json_encode($json); @@ -462,32 +456,30 @@ class QSO extends CI_Controller { public function get_wwff() { $json = []; - if (!empty($this->security->xss_clean($this->input->get("query")))) { - $query = isset($_GET['query']) ? $_GET['query'] : FALSE; - $wwff = strtoupper($query); + $query = $this->input->get('query', TRUE) ?? FALSE; + $wwff = strtoupper($query); - $file = 'updates/wwff.txt'; + $file = 'updates/wwff.txt'; - if (is_readable($file)) { - $lines = file($file, FILE_IGNORE_NEW_LINES); - $input = preg_quote($wwff, '~'); - $reg = '~^'. $input .'(.*)$~'; - $result = preg_grep($reg, $lines); - $json = []; - $i = 0; - foreach ($result as &$value) { - // Limit to 100 as to not slowdown browser too much - if (count($json) <= 100) { - $json[] = ["name"=>$value]; - } + if (is_readable($file)) { + $lines = file($file, FILE_IGNORE_NEW_LINES); + $input = preg_quote($wwff, '~'); + $reg = '~^'. $input .'(.*)$~'; + $result = preg_grep($reg, $lines); + $json = []; + $i = 0; + foreach ($result as &$value) { + // Limit to 100 as to not slowdown browser too much + if (count($json) <= 100) { + $json[] = ["name"=>$value]; } + } + } else { + $src = 'assets/resources/wwff.txt'; + if (copy($src, $file)) { + $this->get_wwff(); } else { - $src = 'assets/resources/wwff.txt'; - if (copy($src, $file)) { - $this->get_wwff(); - } else { - log_message('error', 'Failed to copy source file ('.$src.') to new location. Check if this path has the right permission: '.$file); - } + log_message('error', 'Failed to copy source file ('.$src.') to new location. Check if this path has the right permission: '.$file); } } @@ -498,32 +490,30 @@ class QSO extends CI_Controller { public function get_pota() { $json = []; - if (!empty($this->security->xss_clean($this->input->get("query")))) { - $query = isset($_GET['query']) ? $_GET['query'] : FALSE; - $pota = strtoupper($query); + $query = $this->input->get('query', TRUE) ?? FALSE; + $pota = strtoupper($query); - $file = 'updates/pota.txt'; + $file = 'updates/pota.txt'; - if (is_readable($file)) { - $lines = file($file, FILE_IGNORE_NEW_LINES); - $input = preg_quote($pota, '~'); - $reg = '~^'. $input .'(.*)$~'; - $result = preg_grep($reg, $lines); - $json = []; - $i = 0; - foreach ($result as &$value) { - // Limit to 100 as to not slowdown browser too much - if (count($json) <= 100) { - $json[] = ["name"=>$value]; - } + if (is_readable($file)) { + $lines = file($file, FILE_IGNORE_NEW_LINES); + $input = preg_quote($pota, '~'); + $reg = '~^'. $input .'(.*)$~'; + $result = preg_grep($reg, $lines); + $json = []; + $i = 0; + foreach ($result as &$value) { + // Limit to 100 as to not slowdown browser too much + if (count($json) <= 100) { + $json[] = ["name"=>$value]; } + } + } else { + $src = 'assets/resources/pota.txt'; + if (copy($src, $file)) { + $this->get_pota(); } else { - $src = 'assets/resources/pota.txt'; - if (copy($src, $file)) { - $this->get_pota(); - } else { - log_message('error', 'Failed to copy source file ('.$src.') to new location. Check if this path has the right permission: '.$file); - } + log_message('error', 'Failed to copy source file ('.$src.') to new location. Check if this path has the right permission: '.$file); } } @@ -537,32 +527,30 @@ class QSO extends CI_Controller { public function get_dok() { $json = []; - if (!empty($this->security->xss_clean($this->input->get("query")))) { - $query = isset($_GET['query']) ? $_GET['query'] : FALSE; - $dok = strtoupper($query); + $query = $this->input->get('query', TRUE) ?? FALSE; + $dok = strtoupper($query); - $file = 'updates/dok.txt'; + $file = 'updates/dok.txt'; - if (is_readable($file)) { - $lines = file($file, FILE_IGNORE_NEW_LINES); - $input = preg_quote($dok, '~'); - $reg = '~^'. $input .'(.*)$~'; - $result = preg_grep($reg, $lines); - $json = []; - $i = 0; - foreach ($result as &$value) { - // Limit to 100 as to not slowdown browser too much - if (count($json) <= 100) { - $json[] = ["name"=>$value]; - } + if (is_readable($file)) { + $lines = file($file, FILE_IGNORE_NEW_LINES); + $input = preg_quote($dok, '~'); + $reg = '~^'. $input .'(.*)$~'; + $result = preg_grep($reg, $lines); + $json = []; + $i = 0; + foreach ($result as &$value) { + // Limit to 100 as to not slowdown browser too much + if (count($json) <= 100) { + $json[] = ["name"=>$value]; } + } + } else { + $src = 'assets/resources/dok.txt'; + if (copy($src, $file)) { + $this->get_dok(); } else { - $src = 'assets/resources/dok.txt'; - if (copy($src, $file)) { - $this->get_dok(); - } else { - log_message('error', 'Failed to copy source file ('.$src.') to new location. Check if this path has the right permission: '.$file); - } + log_message('error', 'Failed to copy source file ('.$src.') to new location. Check if this path has the right permission: '.$file); } } @@ -573,7 +561,7 @@ class QSO extends CI_Controller { public function get_sota_info() { $this->load->library('sota'); - $sota = xss_clean($this->input->post('sota')); + $sota = $this->input->post('sota', TRUE); header('Content-Type: application/json'); echo $this->sota->info($sota); @@ -582,7 +570,7 @@ class QSO extends CI_Controller { public function get_wwff_info() { $this->load->library('wwff'); - $wwff = xss_clean($this->input->post('wwff')); + $wwff = $this->input->post('wwff', TRUE); header('Content-Type: application/json'); echo $this->wwff->info($wwff); @@ -591,7 +579,7 @@ class QSO extends CI_Controller { public function get_pota_info() { $this->load->library('pota'); - $pota = xss_clean($this->input->post('pota')); + $pota = $this->input->post('pota', TRUE); header('Content-Type: application/json'); echo $this->pota->info($pota); @@ -599,7 +587,7 @@ class QSO extends CI_Controller { public function get_station_power() { $this->load->model('stations'); - $stationProfile = xss_clean($this->input->post('stationProfile')); + $stationProfile = $this->input->post('stationProfile', TRUE); $data = array('station_power' => $this->stations->get_station_power($stationProfile)); header('Content-Type: application/json'); @@ -608,19 +596,20 @@ class QSO extends CI_Controller { // Return Previous QSOs Made in the active logbook public function component_past_contacts() { - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } - $this->load->model('logbook_model'); - session_write_close(); + $this->load->library('Qra'); + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } + $this->load->model('logbook_model'); + session_write_close(); - $data['query'] = $this->logbook_model->last_custom('5'); + $data['query'] = $this->logbook_model->last_custom('5'); - // Load view - $this->load->view('qso/components/previous_contacts', $data); + // Load view + $this->load->view('qso/components/previous_contacts', $data); } public function get_eqsl_default_qslmsg() { // Get ONLY Default eQSL-Message with this function. This is ONLY for QSO relevant! $return_json = array(); - $option_key = $this->input->post('option_key'); + $option_key = $this->input->post('option_key', TRUE); if ($option_key > 0) { $options_object = $this->user_options_model->get_options('eqsl_default_qslmsg', array('option_name' => 'key_station_id', 'option_key' => $option_key))->result(); $return_json['eqsl_default_qslmsg'] = (isset($options_object[0]->option_value)) ? $options_object[0]->option_value : ''; @@ -634,7 +623,7 @@ class QSO extends CI_Controller { } function check_locator($grid) { - $grid = $this->input->post('locator'); + $grid = $this->input->post('locator', TRUE); // Allow empty locator if (preg_match('/^$/', $grid)) return true; // Allow 6-digit locator diff --git a/application/controllers/Radio.php b/application/controllers/Radio.php index 577cded5a..e58673a43 100644 --- a/application/controllers/Radio.php +++ b/application/controllers/Radio.php @@ -59,9 +59,9 @@ class Radio extends CI_Controller { if (empty($row->frequency) || $row->frequency == "0") { echo ""; } elseif (empty($row->frequency_rx) || $row->frequency_rx == "0") { - echo ""; + echo ""; } else { - echo ""; + echo ""; } if (empty($row->mode) || $row->mode == "non") { @@ -197,8 +197,10 @@ class Radio extends CI_Controller { // Return Json data $a_ret['frequency'] = $frequency; + $a_ret['frequency_formatted'] = $this->frequency->qrg_conversion($frequency); if (isset($frequency_rx) && ($frequency_rx != null)) { $a_ret['frequency_rx'] = $frequency_rx; + $a_ret['frequency_rx_formatted'] = $this->frequency->qrg_conversion($frequency_rx); } if (isset($mode) && ($mode != null)) { $a_ret['mode'] = $mode; @@ -256,7 +258,7 @@ class Radio extends CI_Controller { // Check Auth $this->load->model('user_model'); if (!$this->user_model->authorize(3)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } @@ -282,7 +284,7 @@ class Radio extends CI_Controller { // Check Auth $this->load->model('user_model'); if (!$this->user_model->authorize(3)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } @@ -298,7 +300,7 @@ class Radio extends CI_Controller { // Check Auth $this->load->model('user_model'); if (!$this->user_model->authorize(3)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } diff --git a/application/controllers/Reg1test.php b/application/controllers/Reg1test.php new file mode 100644 index 000000000..242ffdbe2 --- /dev/null +++ b/application/controllers/Reg1test.php @@ -0,0 +1,221 @@ +load->model('user_model'); + if (!$this->user_model->authorize(2)) { + $this->session->set_flashdata('error', __("You're not allowed to do that!")); + redirect('dashboard'); + } + } + + public function index() { + //define Page title + $data['page_title'] = __("Export EDI"); + + //Load models + $this->load->model('Contesting_model'); + $this->load->model('stations'); + + //get station profile + $data['station_profile'] = $this->stations->all_of_user(); + $active_station_id = $this->stations->find_active(); + $station_profile = $this->stations->profile($active_station_id); + + //set station profile to view data + $data['active_station_info'] = $station_profile->row(); + + //provide REG1TEST JS + $footerData = []; + $footerData['scripts'] = [ + 'assets/js/sections/reg1test.js' + ]; + + //load view + $this->load->view('interface_assets/header', $data); + $this->load->view('reg1test/index'); + $this->load->view('interface_assets/footer', $footerData); + } + + public function getContests() { + + //load models + $this->load->model('Contesting_model'); + $this->load->model('stations'); + + //get cleaned station id and year + $station_id = $this->input->post('station_id', true); + $year = $this->input->post('year', true); + + //deny acccess if station is not accessible + if (!$this->stations->check_station_is_accessible($station_id)) { + $this->session->set_flashdata('error', __("You're not allowed to do that!")); + redirect('dashboard'); + return; + } + + //get logged contests for station + $result = $this->Contesting_model->get_logged_contests($station_id, $year); + + //return result as json + header('Content-Type: application/json'); + echo json_encode($result); + } + + public function getYears() { + + //load model + $this->load->model('Contesting_model'); + + //get cleaned station id + $station_id = $this->input->post('station_id', true); + + //get logged year for station id + $result = $this->Contesting_model->get_logged_years($station_id); + + //return result as json + header('Content-Type: application/json'); + echo json_encode($result); + } + + public function getContestDates() { + //load models + $this->load->model('Contesting_model'); + $this->load->model('stations'); + + //get cleaned station id + $station_id = $this->input->post('station_id', true); + + //deny access if station is not accessible + if (!$this->stations->check_station_is_accessible($station_id)) { + $this->session->set_flashdata('error', __("You're not allowed to do that!")); + redirect('dashboard'); + return; + } + + //get cleaned year, contest id, from and to values + $year = $this->input->post('year', true); + $contestid = $this->input->post('contestid', true); + + //get contestdates from database + $result = $this->Contesting_model->get_contest_dates($station_id, $year, $contestid); + + //return result as json + header('Content-Type: application/json'); + echo json_encode($result); + } + + public function getContestBands() { + + //load models + $this->load->model('Contesting_model'); + $this->load->model('stations'); + + //get cleaned station id + $station_id = $this->input->post('station_id', true); + + //deny access if station is not accessible + if (!$this->stations->check_station_is_accessible($station_id)) { + $this->session->set_flashdata('error', __("You're not allowed to do that!")); + redirect('dashboard'); + return; + } + + //get cleaned contest id, from and to values + $contestid = $this->input->post('contestid', true); + $from = $this->input->post('contestdatesfrom', true); + $to = $this->input->post('contestdatesto', true); + + //get contestdates from database + $result = $this->Contesting_model->get_contest_bands($station_id, $contestid, $from, $to); + + //return result as json + header('Content-Type: application/json'); + echo json_encode($result); + } + + public function export() { + // Set memory limit to unlimited to allow heavy usage + ini_set('memory_limit', '-1'); + + //load models + $this->load->model('Contesting_model'); + $this->load->model('stations'); + $this->load->model('user_model'); + + //Load distance calculator + $this->load->library('Qra'); + + //deny access if station is not accessible + $station_id = $this->input->post('station_id', true); + + if (!$this->stations->check_station_is_accessible($station_id)) { + $this->session->set_flashdata('error', __("You're not allowed to do that!")); + redirect('dashboard'); + return; + } + + //get user input to define the export parameters + $contest_id = $this->input->post('contestid', true); + $from = $this->input->post('contestdatesfrom', true); + $to = $this->input->post('contestdatesto', true); + $band = $this->input->post('contestband', true); + + //load station + $station = $this->stations->profile($station_id); + $station = $station->row(); + + //load userinfo + $userinfo = $this->user_model->get_by_id($this->session->userdata('user_id')); + $userinfo = $userinfo->row(); + + //get qsos and set qso data for export + $data['qsos'] = $this->Contesting_model->export_custom($from, $to, $contest_id, $station_id, $band); + + //set contest header data for export + $data['band'] = $band; + $data['qso_count'] = count($data['qsos']->result()); + $data['sentexchange'] = $this->input->post('sentexchange', true); + $data['contest_id'] = $contest_id; + $data['from'] = $from; + $data['to'] = $to; + $data['callsign'] = $station->station_callsign; + $data['gridlocator'] = $station->station_gridsquare; + $data['contestaddress1'] = $this->input->post('contestaddress1', true); + $data['contestaddress2'] = $this->input->post('contestaddress2', true); + $data['categoryoperator'] = $this->input->post('categoryoperator', true); + $data['club'] = $this->input->post('club', true); + $data['name'] = $userinfo->user_firstname . ' ' . $userinfo->user_lastname; + $data['responsible_operator'] = $this->input->post('responsible_operator', true); + $data['address1'] = $this->input->post('address1', true); + $data['address2'] = $this->input->post('address2', true); + $data['addresspostalcode'] = $this->input->post('addresspostalcode', true); + $data['addresscity'] = $this->input->post('addresscity', true); + $data['addresscountry'] = $this->input->post('addresscountry', true); + $data['operatorphone'] = $this->input->post('operatorphone', true); + $data['operators'] = $this->input->post('operators', true); + $data['txequipment'] = $this->input->post('txequipment', true); + $data['power'] = $this->input->post('power', true); + $data['rxequipment'] = $this->input->post('rxequipment', true); + $data['antenna'] = $this->input->post('antenna', true); + $data['antennaheight'] = $this->input->post('antennaheight', true); + $data['maxdistanceqso'] = $this->qra->getMaxDistanceQSO($station->station_gridsquare, $data['qsos'], "K"); + $data['bandmultiplicator'] = $this->input->post('bandmultiplicator', true); + + $data['soapbox'] = $this->input->post('soapbox', true); + + //load view for export + $this->load->view('reg1test/export', $data); + } +} diff --git a/application/controllers/Satellite.php b/application/controllers/Satellite.php index 1c94fd5f1..04e26a918 100644 --- a/application/controllers/Satellite.php +++ b/application/controllers/Satellite.php @@ -10,13 +10,13 @@ class Satellite extends CI_Controller { { parent::__construct(); $this->load->helper(array('form', 'url')); - $this->load->model('user_model'); - if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } } public function index() { + if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } + $this->load->model('satellite_model'); $pageData['satellites'] = $this->satellite_model->get_all_satellites(); @@ -34,11 +34,15 @@ class Satellite extends CI_Controller { } public function create() { + if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } + $data['page_title'] = __("Create Satellite"); $this->load->view('satellite/create', $data); } public function createSatellite() { + if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } + $this->load->model('satellite_model'); $this->satellite_model->add(); @@ -46,6 +50,8 @@ class Satellite extends CI_Controller { public function edit() { + if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } + $this->load->model('satellite_model'); $item_id_clean = $this->security->xss_clean($this->input->post('id')); @@ -63,6 +69,8 @@ class Satellite extends CI_Controller { } public function saveupdatedSatellite() { + if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } + $this->load->model('satellite_model'); $id = $this->security->xss_clean($this->input->post('id', true)); @@ -76,18 +84,24 @@ class Satellite extends CI_Controller { } public function delete() { + if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } + $id = $this->input->post('id'); $this->load->model('satellite_model'); $this->satellite_model->delete($id); } public function deleteSatMode() { + if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } + $id = $this->input->post('id'); $this->load->model('satellite_model'); $this->satellite_model->deleteSatMode($id); } public function saveSatellite() { + if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } + $id = $this->security->xss_clean($this->input->post('id')); $satellite['name'] = $this->security->xss_clean($this->input->post('name')); @@ -100,6 +114,8 @@ class Satellite extends CI_Controller { } public function saveSatModeChanges() { + if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } + $id = $this->security->xss_clean($this->input->post('id')); $satmode['name'] = $this->security->xss_clean($this->input->post('name')); $satmode['uplink_mode'] = $this->security->xss_clean($this->input->post('uplink_mode')); @@ -116,6 +132,8 @@ class Satellite extends CI_Controller { } public function addSatMode() { + if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } + $this->load->model('satellite_model'); $inserted_id = $this->satellite_model->insertSatelliteMode(); @@ -125,6 +143,8 @@ class Satellite extends CI_Controller { } public function satellite_data() { + if(!$this->user_model->authorize(3)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } + $this->load->model('satellite_model'); $satellite_data = $this->satellite_model->satellite_data(); $sat_list = array(); @@ -139,6 +159,8 @@ class Satellite extends CI_Controller { } public function flightpath() { + if(!$this->user_model->authorize(3)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } + $this->load->model('satellite_model'); $this->load->model('stations'); @@ -165,6 +187,8 @@ class Satellite extends CI_Controller { } public function get_tle() { + if(!$this->user_model->authorize(3)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } + $sat = $this->security->xss_clean($this->input->post('sat')); $this->load->model('satellite_model'); $satellite_data = $this->satellite_model->get_tle($sat); @@ -174,6 +198,8 @@ class Satellite extends CI_Controller { } public function pass() { + if(!$this->user_model->authorize(3)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } + $this->load->model('satellite_model'); $this->load->model('stations'); $active_station_id = $this->stations->find_active(); @@ -194,6 +220,8 @@ class Satellite extends CI_Controller { } public function searchpasses() { + if(!$this->user_model->authorize(3)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } + try { $result = $this->get_tle_for_predict(); $this->calcpass($result); @@ -205,17 +233,21 @@ class Satellite extends CI_Controller { } public function get_tle_for_predict() { + if(!$this->user_model->authorize(3)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } + $sat = $this->security->xss_clean($this->input->post('sat')); $this->load->model('satellite_model'); return $this->satellite_model->get_tle($sat); } function calcpass($sat_tle) { - require_once realpath(__DIR__ . "/../../predict/Predict.php"); - require_once realpath(__DIR__ . "/../../predict/Predict/Sat.php"); - require_once realpath(__DIR__ . "/../../predict/Predict/QTH.php"); - require_once realpath(__DIR__ . "/../../predict/Predict/Time.php"); - require_once realpath(__DIR__ . "/../../predict/Predict/TLE.php"); + if(!$this->user_model->authorize(3)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } + + require_once "./src/predict/Predict.php"; + require_once "./src/predict/Predict/Sat.php"; + require_once "./src/predict/Predict/QTH.php"; + require_once "./src/predict/Predict/Time.php"; + require_once "./src/predict/Predict/TLE.php"; // The observer or groundstation is called QTH in ham radio terms $predict = new Predict(); @@ -262,7 +294,17 @@ class Satellite extends CI_Controller { $filtered = $predict->filterVisiblePasses($results); $zone = $this->security->xss_clean($this->input->post('timezone')); - $format = 'm-d-Y H:i:s'; // Time format from PHP's date() function + + // Get Date format + if ($this->session->userdata('user_date_format')) { + // If Logged in and session exists + $custom_date_format = $this->session->userdata('user_date_format'); + } else { + // Get Default date format from /config/wavelog.php + $custom_date_format = $this->config->item('qso_date_format'); + } + + $format = $custom_date_format . ' H:i:s'; $data['filtered'] = $filtered; $data['zone'] = $zone; diff --git a/application/controllers/Sattimers.php b/application/controllers/Sattimers.php index dcd1a6127..053c26e3b 100644 --- a/application/controllers/Sattimers.php +++ b/application/controllers/Sattimers.php @@ -6,7 +6,7 @@ class Sattimers extends CI_Controller { parent::__construct(); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } public function index() { diff --git a/application/controllers/Search.php b/application/controllers/Search.php index be59f4df6..614bd6ae2 100644 --- a/application/controllers/Search.php +++ b/application/controllers/Search.php @@ -10,7 +10,7 @@ class Search extends CI_Controller { $this->load->helper(array('form', 'url')); if($this->optionslib->get_option('global_search') != "true") { $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } } @@ -75,10 +75,8 @@ class Search extends CI_Controller { } function json_result() { - if(isset($_POST['search'])) { - $result = $this->fetchQueryResult($_POST['search'], false); - echo json_encode($result->result_array()); - } + $result = $this->fetchQueryResult(($this->input->post('search', TRUE) ?? ''), FALSE); + echo json_encode($result->result_array()); } function get_stored_queries() { @@ -88,17 +86,13 @@ class Search extends CI_Controller { } function search_result() { - if(isset($_POST['search'])) { - $data['results'] = $this->fetchQueryResult($_POST['search'], false); - $this->load->view('search/search_result_ajax', $data); - } + $data['results'] = $this->fetchQueryResult(($this->input->post('search', TRUE) ?? ''), FALSE); + $this->load->view('search/search_result_ajax', $data); } function export_to_adif() { - if(isset($_POST['search'])) { - $data['qsos'] = $this->fetchQueryResult($_POST['search'], false); - $this->load->view('adif/data/exportall', $data); - } + $data['qsos'] = $this->fetchQueryResult(($this->input->post('search', TRUE) ?? ''), FALSE); + $this->load->view('adif/data/exportall', $data); } function export_stored_query_to_adif() { @@ -122,20 +116,21 @@ class Search extends CI_Controller { } function save_query() { - if(isset($_POST['search'])) { - $query = $this->fetchQueryResult($_POST['search'], true); + $search_param = $this->input->post('search', TRUE); + $description = $this->input->post('description', TRUE); - $data = array( - 'userid' => xss_clean($this->session->userdata('user_id')), - 'query' => $query, - 'description' => xss_clean($_POST['description']) - ); + $query = $this->fetchQueryResult($search_param, TRUE); - $this->db->insert('queries', $data); - $last_id = $this->db->insert_id(); - header('Content-Type: application/json'); - echo json_encode(array('id' => $last_id, 'description' => xss_clean($_POST['description']))); - } + $data = array( + 'userid' => xss_clean($this->session->userdata('user_id')), + 'query' => $query, + 'description' => $description + ); + + $this->db->insert('queries', $data); + $last_id = $this->db->insert_id(); + header('Content-Type: application/json'); + echo json_encode(array('id' => $last_id, 'description' => $description)); } function delete_query() { diff --git a/application/controllers/Simplefle.php b/application/controllers/Simplefle.php index d0859fcd7..b090e9afa 100644 --- a/application/controllers/Simplefle.php +++ b/application/controllers/Simplefle.php @@ -4,7 +4,7 @@ class SimpleFLE extends CI_Controller { public function index() { $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $this->load->model('stations'); diff --git a/application/controllers/Station.php b/application/controllers/Station.php index 427d94665..6ac978521 100644 --- a/application/controllers/Station.php +++ b/application/controllers/Station.php @@ -14,30 +14,11 @@ class Station extends CI_Controller $this->load->model('user_model'); if (!$this->user_model->authorize(2)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } - public function index() - { - $this->load->model('stations'); - $this->load->model('Logbook_model'); - $this->load->model('user_model'); - - $data['is_admin'] = ($this->user_model->authorize(99)); - - $data['stations'] = $this->stations->all_with_count(); - $data['current_active'] = $this->stations->find_active(); - $data['is_there_qsos_with_no_station_id'] = $this->Logbook_model->check_for_station_id(); - - // Render Page - $data['page_title'] = __("Station Location"); - $this->load->view('interface_assets/header', $data); - $this->load->view('station_profile/index'); - $this->load->view('interface_assets/footer'); - } - public function create() { $this->load->model('stations'); diff --git a/application/controllers/Stationsetup.php b/application/controllers/Stationsetup.php index 40ef64be3..1c4afd6b0 100644 --- a/application/controllers/Stationsetup.php +++ b/application/controllers/Stationsetup.php @@ -12,7 +12,7 @@ class Stationsetup extends CI_Controller { $this->load->helper(array('form', 'url')); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } public function index() { diff --git a/application/controllers/Statistics.php b/application/controllers/Statistics.php index e4cb203e9..5a1014015 100644 --- a/application/controllers/Statistics.php +++ b/application/controllers/Statistics.php @@ -232,7 +232,7 @@ class Statistics extends CI_Controller { $data['page_title'] = __("QSL Statistics"); // Load Views - $this->load->view('interface_assets/header'); + $this->load->view('interface_assets/header', $data); $this->load->view('statistics/qsltable', $total_qsos); $this->load->view('interface_assets/footer'); } diff --git a/application/controllers/Themes.php b/application/controllers/Themes.php index ba032823a..6b52aa4e7 100644 --- a/application/controllers/Themes.php +++ b/application/controllers/Themes.php @@ -14,7 +14,7 @@ class Themes extends CI_Controller { parent::__construct(); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } public function index() diff --git a/application/controllers/Timeline.php b/application/controllers/Timeline.php index 24e2b78f7..af30bc277 100644 --- a/application/controllers/Timeline.php +++ b/application/controllers/Timeline.php @@ -3,117 +3,130 @@ defined('BASEPATH') OR exit('No direct script access allowed'); class Timeline extends CI_Controller { - function __construct() - { - parent::__construct(); + function __construct() { + parent::__construct(); - $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } - } + $this->load->model('user_model'); + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } + } - public function index() - { - // Render Page - $data['page_title'] = __("Timeline"); + public function index() { + // Render Page + $data['page_title'] = __("Timeline"); - $this->load->model('Timeline_model'); + $this->load->model('Timeline_model'); - if ($this->input->post('band') != NULL) { // Band is not set when page first loads. - $band = $this->input->post('band'); - } - else { - $band = 'All'; - } + if ($this->input->post('band') != NULL) { // Band is not set when page first loads. + $band = $this->security->xss_clean($this->input->post('band')); + } else { + $band = 'All'; + } - if ($this->input->post('mode') != NULL) { - $mode = $this->input->post('mode'); - } - else { - $mode = 'All'; - } + if (($this->input->post('propmode') != NULL) && ($this->input->post('propmode') != '0')) { // Set, but not "All" + $propmode = $this->security->xss_clean($this->input->post('propmode')); + } else { + if (($this->session->userdata('user_default_band') == 'SAT') && ($this->input->post('propmode') == NULL)){ // Not set, and empty and default is SAT? + $propmode='SAT'; + } else { // Not set and empty and no SAT as default? + $propmode = 'All'; + } + } - if ($this->input->post('award') != NULL) { - $award = $this->input->post('award'); - } - else { - $award = 'dxcc'; - } + if ($this->input->post('mode') != NULL) { + $mode = $this->security->xss_clean($this->input->post('mode')); + } else { + $mode = 'All'; + } - if ($this->input->post('qsl') != NULL) { - $qsl = $this->input->post('qsl'); - } - else { - $qsl = '0'; - } + if ($this->input->post('award') != NULL) { + $award = $this->security->xss_clean($this->input->post('award')); + } else { + $award = 'dxcc'; + } - if ($this->input->post('lotw') != NULL) { - $lotw = $this->input->post('lotw'); - } - else { - $lotw = '0'; - } + if ($this->input->post('qsl') != NULL) { + $qsl = $this->security->xss_clean($this->input->post('qsl')); + } else { + $qsl = '0'; + } - if ($this->input->post('eqsl') != NULL) { - $eqsl = $this->input->post('eqsl'); - } - else { - $eqsl = '0'; - } + if ($this->input->post('lotw') != NULL) { + $lotw = $this->security->xss_clean($this->input->post('lotw')); + } else { + $lotw = '0'; + } - $this->load->model('modes'); - $this->load->model('bands'); + if ($this->input->post('clublog') != NULL) { + $clublog = $this->security->xss_clean($this->input->post('clublog')); + } else { + $clublog = '0'; + } - $data['modes'] = $this->modes->active(); + if ($this->input->post('eqsl') != NULL) { + $eqsl = $this->security->xss_clean($this->input->post('eqsl')); + } else { + $eqsl = '0'; + } - $data['timeline_array'] = $this->Timeline_model->get_timeline($band, $mode, $award, $qsl, $lotw, $eqsl); - $data['worked_bands'] = $this->bands->get_worked_bands(); - $data['bandselect'] = $band; - $data['modeselect'] = $mode; + $this->load->model('modes'); + $this->load->model('bands'); - $this->load->view('interface_assets/header', $data); - $this->load->view('timeline/index'); - $this->load->view('interface_assets/footer'); - } + $data['modes'] = $this->modes->active(); - public function details() { - $this->load->model('logbook_model'); - $this->load->model('timeline_model'); + $data['timeline_array'] = $this->Timeline_model->get_timeline($band, $mode, $propmode, $award, $qsl, $lotw, $eqsl, $clublog); + $data['worked_bands'] = $this->bands->get_worked_bands(); + $data['bandselect'] = $band; + $data['modeselect'] = $mode; + $data['propmode'] = $propmode; + $data['user_default_band'] = $this->session->userdata('user_default_band'); - $querystring = str_replace('"', "", $this->input->post("Querystring")); + $footerData['scripts'] = [ 'assets/js/sections/timeline.js?' ]; + $this->load->view('interface_assets/header', $data); + $this->load->view('timeline/index'); + $this->load->view('interface_assets/footer', $footerData); + } - $band = str_replace('"', "", $this->input->post("Band")); - $mode = str_replace('"', "", $this->input->post("Mode")); - $type = str_replace('"', "", $this->input->post("Type")); - $data['results'] = $this->timeline_model->timeline_qso_details($querystring, $band, $mode, $type); + public function details() { + $this->load->model('logbook_model'); + $this->load->model('timeline_model'); + + $querystring = str_replace('"', "", $this->security->xss_clean($this->input->post("Querystring"))); + + $band = str_replace('"', "", $this->security->xss_clean($this->input->post("Band"))); + $mode = str_replace('"', "", $this->security->xss_clean($this->input->post("Mode"))); + $type = str_replace('"', "", $this->security->xss_clean($this->input->post("Type"))); + $propmode = str_replace('"', "", $this->security->xss_clean($this->input->post("Propmode"))); + + $data['results'] = $this->timeline_model->timeline_qso_details($querystring, $band, $propmode, $mode, $type); - switch($type) { - case 'dxcc': $country = $this->logbook_model->get_entity($querystring); - $data['page_title'] = __("Log View")." - DXCC"; - $data['filter'] = "country ". $country['name']; - break; - case 'was' : $data['page_title'] = __("Log View")." - WAS"; - $data['filter'] = "state ". $querystring; - break; - case 'iota': $data['page_title'] = __("Log View")." - IOTA"; - $data['filter'] = "iota ". $querystring; - break; - case 'waz' : $data['page_title'] = __("Log View")." - WAZ"; - $data['filter'] = "CQ zone ". $querystring; - break; - case 'vucc' : $data['page_title'] = __("Log View")." - VUCC"; - $data['filter'] = "Gridsquare ". $querystring; - break; - case 'waja' : $data['page_title'] = __("Log View")." - WAJA"; - $data['filter'] = "WAJA ". $querystring; - break; - } + switch($type) { + case 'dxcc': $country = $this->logbook_model->get_entity($querystring); + $data['page_title'] = __("Log View")." - DXCC"; + $data['filter'] = "country ". $country['name']; + break; + case 'was' : $data['page_title'] = __("Log View")." - WAS"; + $data['filter'] = "state ". $querystring; + break; + case 'iota': $data['page_title'] = __("Log View")." - IOTA"; + $data['filter'] = "iota ". $querystring; + break; + case 'waz' : $data['page_title'] = __("Log View")." - WAZ"; + $data['filter'] = "CQ zone ". $querystring; + break; + case 'vucc' : $data['page_title'] = __("Log View")." - VUCC"; + $data['filter'] = "Gridsquare ". $querystring; + break; + case 'waja' : $data['page_title'] = __("Log View")." - WAJA"; + $data['filter'] = "WAJA ". $querystring; + break; + } - if ($band != "All") { - $data['filter'] .= " and " . $band; - } + if ($band != "All") { + $data['filter'] .= " and " . $band; + } - $this->load->view('timeline/details', $data); - } + $this->load->view('timeline/details', $data); + } } diff --git a/application/controllers/Timeplotter.php b/application/controllers/Timeplotter.php index 9a74eb55d..da550db18 100644 --- a/application/controllers/Timeplotter.php +++ b/application/controllers/Timeplotter.php @@ -8,7 +8,7 @@ class Timeplotter extends CI_Controller { parent::__construct(); $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } public function index() diff --git a/application/controllers/Update.php b/application/controllers/Update.php index 8c1ba2ca9..3cd5d4180 100644 --- a/application/controllers/Update.php +++ b/application/controllers/Update.php @@ -21,7 +21,7 @@ class Update extends CI_Controller { public function index() { $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $data['page_title'] = __("Updates"); $this->load->view('interface_assets/header', $data); @@ -270,7 +270,7 @@ class Update extends CI_Controller { public function check_missing_dxcc($all = false){ $this->load->model('user_model'); if (!$this->user_model->authorize(99)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } @@ -281,7 +281,7 @@ class Update extends CI_Controller { public function check_missing_continent() { $this->load->model('user_model'); if (!$this->user_model->authorize(99)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } @@ -289,21 +289,21 @@ class Update extends CI_Controller { $this->logbook_model->check_missing_continent(); } - public function update_distances() { + public function update_distances($all = false) { $this->load->model('user_model'); if (!$this->user_model->authorize(99)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $this->load->model('logbook_model'); - $this->logbook_model->update_distances(); + $this->logbook_model->update_distances($all); } public function check_missing_grid($all = false){ $this->load->model('user_model'); if (!$this->user_model->authorize(99)) { - $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); + $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } diff --git a/application/controllers/User.php b/application/controllers/User.php index f6345645f..a4e4274bd 100644 --- a/application/controllers/User.php +++ b/application/controllers/User.php @@ -5,20 +5,44 @@ class User extends CI_Controller { public function index() { $this->load->model('user_model'); - if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + + if (!$this->load->is_loaded('encryption')) { + $this->load->library('encryption'); + } + + if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $data['results'] = $this->user_model->users(); + $data['session_uid'] = $this->session->userdata('user_id'); + + // Check if impersonating is disabled in the config + if ($this->config->item('disable_impersonate')) { + $data['disable_impersonate'] = true; + } else { + $data['disable_impersonate'] = false; + } + + // Get Date format + if($this->session->userdata('user_date_format')) { + // If Logged in and session exists + $data['custom_date_format'] = $this->session->userdata('user_date_format'); + } else { + // Get Default date format from /config/wavelog.php + $data['custom_date_format'] = $this->config->item('qso_date_format'); + } + + $data['has_flossie'] = ($this->config->item('encryption_key') == 'flossie1234555541') ? true : false; $data['page_title'] = __("User Accounts"); $this->load->view('interface_assets/header', $data); - $this->load->view('user/main'); + $this->load->view('user/index'); $this->load->view('interface_assets/footer'); } function add() { $this->load->model('user_model'); - if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $data['existing_languages'] = $this->config->item('languages'); @@ -203,8 +227,8 @@ class User extends CI_Controller { function edit() { $this->load->model('user_model'); - if ( ($this->session->userdata('user_id') == '') || ((!$this->user_model->authorize(99)) && ($this->session->userdata('user_id') != $this->uri->segment(3))) ) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } - if ( $this->config->item('special_callsign') && $this->session->userdata('user_type') != '99' && $this->config->item('sc_hide_usermenu') ) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if ( ($this->session->userdata('user_id') == '') || ((!$this->user_model->authorize(99)) && ($this->session->userdata('user_id') != $this->uri->segment(3))) ) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } + if ( $this->config->item('special_callsign') && $this->session->userdata('user_type') != '99' && $this->config->item('sc_hide_usermenu') ) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $query = $this->user_model->get_by_id($this->uri->segment(3)); $data['existing_languages'] = $this->config->item('languages'); @@ -379,7 +403,7 @@ class User extends CI_Controller { $data['user_language'] = $q->user_language; } - + if($this->input->post('user_stylesheet')) { $data['user_stylesheet'] = $this->input->post('user_stylesheet', true); } else { @@ -591,12 +615,12 @@ class User extends CI_Controller { $data['user_map_'.$row->option_key.'_'.$ktype] = $this->input->post('user_map_'.$row->option_key.'_'.$ktype, true); } else { $data['user_map_'.$row->option_key.'_'.$ktype] = $vtype; - } + } } } else { $data['user_map_'.$row->option_name.'_'.$row->option_key] = $row->option_value; } - } + } } else { $data['user_map_qso_icon'] = "fas fa-dot-circle"; $data['user_map_qso_color'] = "#FF0000"; @@ -613,7 +637,7 @@ class User extends CI_Controller { $data['user_locations_quickswitch'] = ($this->user_options_model->get_options('header_menu', array('option_name'=>'locations_quickswitch'), $this->uri->segment(3))->row()->option_value ?? 'false'); $data['user_utc_headermenu'] = ($this->user_options_model->get_options('header_menu', array('option_name'=>'utc_headermenu'), $this->uri->segment(3))->row()->option_value ?? 'false'); - + $this->load->view('interface_assets/header', $data); $this->load->view('user/edit', $data); $this->load->view('interface_assets/footer'); @@ -635,9 +659,9 @@ class User extends CI_Controller { if ($this->session->userdata('user_id') == $this->uri->segment(3)) { // Editing own User? Set cookie! $cookie= array( - 'name' => 'language', + 'name' => $this->config->item('gettext_cookie', 'gettext'), 'value' => $this->input->post('user_language', true), - 'expire' => time()+1000, + 'expire' => 1000, 'secure' => FALSE ); @@ -651,7 +675,7 @@ class User extends CI_Controller { $data_options['user_map_'.$icon.'_color'] = xss_clean($this->input->post('user_map_'.$icon.'_color', true)); } if (!empty($data_options['user_map_qso_icon'])) { - foreach ($array_icon as $icon) { + foreach ($array_icon as $icon) { $json = json_encode(array('icon'=>$data_options['user_map_'.$icon.'_icon'], 'color'=>$data_options['user_map_'.$icon.'_color'])); $this->user_options_model->set_option('map_custom','icon',array($icon=>$json)); } @@ -716,7 +740,7 @@ class User extends CI_Controller { function profile() { $this->load->model('user_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $query = $this->user_model->get_by_id($this->session->userdata('user_id')); $q = $query->row(); $data['page_title'] = __("Profile"); @@ -735,7 +759,7 @@ class User extends CI_Controller { function delete() { $this->load->model('user_model'); - if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $query = $this->user_model->get_by_id($this->uri->segment(3)); $this->load->library('form_validation'); @@ -830,7 +854,7 @@ class User extends CI_Controller { log_message('debug', "User ID: [$uid] Login rejected because of an active maintenance mode (and he is no admin)."); // Delete keep_login cookie - setcookie('keep_login', '', time() - 3600, '/'); + $this->input->set_cookie('keep_login', '', -3600, ''); redirect('user/login'); } @@ -839,7 +863,7 @@ class User extends CI_Controller { log_message('debug', "User ID: [$uid] Login rejected because of non matching hash key ('Keep Login')."); // Delete keep_login cookie - setcookie('keep_login', '', time() - 3600, '/'); + $this->input->set_cookie('keep_login', '', -3600, ''); $this->session->set_flashdata('error', __("Login failed. Try again.")); redirect('user/login'); } @@ -848,12 +872,12 @@ class User extends CI_Controller { log_message('error', "User ID: [".$uid."]; 'Keep Login' failed. Cookie deleted. Message: ".$e); // Delete keep_login cookie - setcookie('keep_login', '', time() - 3600, '/'); + $this->input->set_cookie('keep_login', '', -3600, ''); $this->session->set_flashdata('error', __("Login failed. Try again.")); redirect('user/login'); } - + } if ($this->form_validation->run() == FALSE) { @@ -865,13 +889,12 @@ class User extends CI_Controller { } else { if($this->user_model->login() == 1) { - $this->session->set_flashdata('notice', __("User logged in")); $this->user_model->update_session($data['user']->user_id); $cookie= array( - 'name' => 'language', + 'name' => $this->config->item('gettext_cookie', 'gettext'), 'value' => $data['user']->user_language, - 'expire' => time()+1000, + 'expire' => 1000, 'secure' => FALSE ); @@ -885,7 +908,7 @@ class User extends CI_Controller { $cookie = array( 'name' => 'keep_login', 'value' => $encrypted_string, - 'expire' => '2592000', // 30 days + 'expire' => 2592000, // 30 days 'secure' => TRUE, 'httponly' => TRUE ); @@ -912,7 +935,7 @@ class User extends CI_Controller { $user_name = $this->session->userdata('user_name'); // Delete keep_login cookie - setcookie('keep_login', '', time() - 3600, '/'); + $this->input->set_cookie('keep_login', '', -3600, ''); $this->user_model->clear_session(); @@ -934,7 +957,7 @@ class User extends CI_Controller { redirect('user/login'); } else { - + $this->load->helper(array('form', 'url')); $this->load->library('form_validation'); @@ -1013,13 +1036,13 @@ class User extends CI_Controller { public function admin_send_password_reset() { header('Content-Type: application/json'); - + if ($this->input->is_ajax_request()) { // just additional, to make sure request is from ajax if ($this->input->post('submit_allowed')) { $this->load->model('user_model'); - if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } $query = $this->user_model->get_by_id($this->input->post('user_id')); @@ -1091,8 +1114,7 @@ class User extends CI_Controller { } } - function reset_password($reset_code = NULL) - { + function reset_password($reset_code = NULL) { $data['reset_code'] = $reset_code; if($reset_code != NULL) { $this->load->helper(array('form', 'url')); @@ -1123,38 +1145,118 @@ class User extends CI_Controller { } } - function check_locator($grid) { - $grid = $this->input->post('user_locator'); - // Allow empty locator - if (preg_match('/^$/', $grid)) return true; - // Allow 6-digit locator - if (preg_match('/^[A-Ra-r]{2}[0-9]{2}[A-Za-z]{2}$/', $grid)) return true; - // Allow 4-digit locator - else if (preg_match('/^[A-Ra-r]{2}[0-9]{2}$/', $grid)) return true; - // Allow 4-digit grid line - else if (preg_match('/^[A-Ra-r]{2}[0-9]{2},[A-Ra-r]{2}[0-9]{2}$/', $grid)) return true; - // Allow 4-digit grid corner - else if (preg_match('/^[A-Ra-r]{2}[0-9]{2},[A-Ra-r]{2}[0-9]{2},[A-Ra-r]{2}[0-9]{2},[A-Ra-r]{2}[0-9]{2}$/', $grid)) return true; - // Allow 2-digit locator - else if (preg_match('/^[A-Ra-r]{2}$/', $grid)) return true; - // Allow 8-digit locator - else if (preg_match('/^[A-Ra-r]{2}[0-9]{2}[A-Za-z]{2}[0-9]{2}$/', $grid)) return true; - else { - $this->form_validation->set_message('check_locator', 'Please check value for grid locator ('.strtoupper($grid).').'); - return false; - } - } + function check_locator($grid) { + $grid = $this->input->post('user_locator'); + // Allow empty locator + if (preg_match('/^$/', $grid)) return true; + // Allow 6-digit locator + if (preg_match('/^[A-Ra-r]{2}[0-9]{2}[A-Za-z]{2}$/', $grid)) return true; + // Allow 4-digit locator + else if (preg_match('/^[A-Ra-r]{2}[0-9]{2}$/', $grid)) return true; + // Allow 4-digit grid line + else if (preg_match('/^[A-Ra-r]{2}[0-9]{2},[A-Ra-r]{2}[0-9]{2}$/', $grid)) return true; + // Allow 4-digit grid corner + else if (preg_match('/^[A-Ra-r]{2}[0-9]{2},[A-Ra-r]{2}[0-9]{2},[A-Ra-r]{2}[0-9]{2},[A-Ra-r]{2}[0-9]{2}$/', $grid)) return true; + // Allow 2-digit locator + else if (preg_match('/^[A-Ra-r]{2}$/', $grid)) return true; + // Allow 8-digit locator + else if (preg_match('/^[A-Ra-r]{2}[0-9]{2}[A-Za-z]{2}[0-9]{2}$/', $grid)) return true; + else { + $this->form_validation->set_message('check_locator', 'Please check value for grid locator ('.strtoupper($grid).').'); + return false; + } + } - function https_check() { - if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on') { - return true; + function https_check() { + if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on') { + return true; + } + if (!empty($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') { + return true; + } + if (!empty($_SERVER['HTTP_X_FORWARDED_SSL']) && $_SERVER['HTTP_X_FORWARDED_SSL'] === 'on') { + return true; + } + return false; } - if (!empty($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') { - return true; + + public function impersonate() { + + // Check if impersonating is disabled in the config + if ($this->config->item('disable_impersonate')) { + show_404(); + } + + // Load the encryption library + if (!$this->load->is_loaded('encryption')) { + $this->load->library('encryption'); + } + // Load the user model + $this->load->model('user_model'); + + // Precheck: If the encryption key is still default, we can't impersonate another user for security reasons + if ($this->config->item('encryption_key') == 'flossie1234555541') { + $this->session->set_flashdata('error', __("You currently can't impersonate another user. Please change the encryption_key in your config.php file first!")); + redirect('dashboard'); + } + + // Prepare the hash + $raw_hash = $this->encryption->decrypt($this->input->post('hash', TRUE) ?? ''); + if (!$raw_hash) { + $this->session->set_flashdata('error', __("Invalid Hash")); + redirect('dashboard'); + } + $hash_parts = explode('/', $raw_hash); + $source_uid = $hash_parts[0]; + $target_uid = $hash_parts[1]; + $timestamp = $hash_parts[2]; + + /** + * Security Checks + */ + // make sure the timestamp is not too old + if (time() - $timestamp > 600) { // 10 minutes + $this->session->set_flashdata('error', __("The impersonation hash is too old. Please try again.")); + redirect('dashboard'); + } + + // is the source user still logged in? + // We fetch the source user from database to also make sure the user exists. We could use source_uid directly, but this is more secure + if ($this->session->userdata('user_id') != $this->user_model->get_by_id($source_uid)->row()->user_id) { + $this->session->set_flashdata('error', __("You can't impersonate another user while you're not logged in as the source user")); + redirect('dashboard'); + } + + // in addition to the check if the user is logged in, we also can check if the session id matches the cookie + if ($this->session->session_id != $this->input->cookie($this->config->item('sess_cookie_name'), TRUE)) { + $this->session->set_flashdata('error', __("There was a problem with your session. Please try again.")); + redirect('dashboard'); + } + + // make sure the target user exists + $target_user = $this->user_model->get_by_id($target_uid)->row(); + if (!$target_user) { + $this->session->set_flashdata('error', __("The requested user to impersonate does not exist")); + redirect('dashboard'); + } + + // before we can impersonate a user, we need to make sure the current user is an admin + // TODO: authorize from additional datatable 'impersonators' to allow other user types to impersonate + $source_user = $this->user_model->get_by_id($source_uid)->row(); + if(!$source_user || !$this->user_model->authorize(99)) { + $this->session->set_flashdata('error', __("You're not allowed to do that!")); + redirect('dashboard'); + } + + /** + * Impersonate the user + */ + // Update the session with the new user_id + // TODO: Find a solution for sessiondata 'radio', so a user would be able to use e.g. his own radio while impersonating another user + // Due the fact that the user is now impersonating another user, he can't use his default radio anymore + $this->user_model->update_session($target_uid, null, $impersonate = true); + + // Redirect to the dashboard, the user should now be logged in as the other user + redirect('dashboard'); } - if (!empty($_SERVER['HTTP_X_FORWARDED_SSL']) && $_SERVER['HTTP_X_FORWARDED_SSL'] === 'on') { - return true; - } - return false; -} } diff --git a/application/controllers/User_options.php b/application/controllers/User_options.php index a74cfcec5..3312ea4b5 100644 --- a/application/controllers/User_options.php +++ b/application/controllers/User_options.php @@ -6,7 +6,7 @@ class User_Options extends CI_Controller { parent::__construct(); $this->load->model('user_model'); $this->load->model('user_options_model'); - if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } public function add_edit_fav() { diff --git a/application/controllers/Visitor.php b/application/controllers/Visitor.php index 36dd5eb29..5856285be 100644 --- a/application/controllers/Visitor.php +++ b/application/controllers/Visitor.php @@ -59,14 +59,16 @@ class Visitor extends CI_Controller { $this->load->model('cat'); $this->load->model('logbook_model'); $this->load->model('logbooks_model'); - + $this->load->model('oqrs_model'); + $this->load->model('publicsearch'); + if($this->logbooks_model->public_slug_exists($public_slug)) { // Load the public view $logbook_id = $this->logbooks_model->public_slug_exists_logbook_id($public_slug); - + if($logbook_id != false) { - + // Get associated station locations for mysql queries $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($logbook_id); @@ -132,6 +134,10 @@ class Visitor extends CI_Controller { $data['page_title'] = __("Dashboard"); $data['slug'] = $public_slug; + $data['oqrs_enabled'] = $this->oqrs_model->oqrs_enabled($public_slug); + $data['public_search_enabled'] = $this->publicsearch->public_search_enabled($public_slug); + $data['disable_oqrs'] = $this->config->item('disable_oqrs'); + $this->load->view('visitor/layout/header', $data); $this->load->view('visitor/index'); $this->load->view('visitor/layout/footer'); @@ -180,8 +186,13 @@ class Visitor extends CI_Controller { public function satellites() { + $this->load->model('publicsearch'); + $this->load->model('oqrs_model'); $slug = $this->security->xss_clean($this->uri->segment(3)); $data['slug'] = $slug; + $data['public_search_enabled'] = $this->publicsearch->public_search_enabled($slug); + $data['oqrs_enabled'] = $this->oqrs_model->oqrs_enabled($slug); + $data['disable_oqrs'] = $this->config->item('disable_oqrs'); $this->load->model('logbooks_model'); if($this->logbooks_model->public_slug_exists($slug)) { // Load the public view @@ -224,7 +235,7 @@ class Visitor extends CI_Controller { // Get Confirmed LoTW & Paper Squares (non VUCC) - $query = $this->gridmap_model->get_band_confirmed('SAT', 'All', 'false', 'true', 'false', 'false', 'All', 'All', $logbooks_locations_array); + $query = $this->gridmap_model->get_band_confirmed('SAT', 'All', 'false', 'true', 'false', 'false', 'All', 'All', 'All', $logbooks_locations_array); if ($query && $query->num_rows() > 0) @@ -260,7 +271,7 @@ class Visitor extends CI_Controller { } // Get worked squares - $query = $this->gridmap_model->get_band('SAT', 'All', 'false', 'true', 'false', 'false', 'All', 'All', $logbooks_locations_array); + $query = $this->gridmap_model->get_band('SAT', 'All', 'false', 'true', 'false', 'false', 'All', 'All', 'All', $logbooks_locations_array); if ($query && $query->num_rows() > 0) { @@ -294,7 +305,7 @@ class Visitor extends CI_Controller { } } - $query_vucc = $this->gridmap_model->get_band_worked_vucc_squares('SAT', 'All', 'false', 'true', 'false', 'false', 'All', 'All', $logbooks_locations_array); + $query_vucc = $this->gridmap_model->get_band_worked_vucc_squares('SAT', 'All', 'false', 'true', 'false', 'false', 'All', 'All', 'All', $logbooks_locations_array); if ($query && $query_vucc->num_rows() > 0) { @@ -321,7 +332,7 @@ class Visitor extends CI_Controller { } // Confirmed Squares - $query_vucc = $this->gridmap_model->get_band_confirmed_vucc_squares('SAT', 'All', 'false', 'true', 'false', 'false', 'All', 'All', $logbooks_locations_array); + $query_vucc = $this->gridmap_model->get_band_confirmed_vucc_squares('SAT', 'All', 'false', 'true', 'false', 'false', 'All', 'All', 'All', $logbooks_locations_array); if ($query && $query_vucc->num_rows() > 0) { @@ -383,31 +394,14 @@ class Visitor extends CI_Controller { $this->load->view('visitor/layout/footer'); } - public function oqrs_enabled($slug) { - $this->load->model('oqrs_model'); - $this->load->model('Logbooks_model'); - $logbook_id = $this->Logbooks_model->public_slug_exists_logbook_id($slug); - if (!empty($this->oqrs_model->getOqrsStationsFromSlug($logbook_id))) { - return true; - } else { - return false; - } - } - - public function public_search_enabled($slug) { - $this->load->model('Logbooks_model'); - $logbook_id = $this->Logbooks_model->public_slug_exists_logbook_id($slug); - if ($this->Logbooks_model->public_search_enabled($logbook_id) == 1) { - return true; - } else { - return false; - } - } - public function search() { + $this->load->model('publicsearch'); + $this->load->model('oqrs_model'); $callsign = trim($this->security->xss_clean($this->input->post('callsign'))); $public_slug = $this->security->xss_clean($this->input->post('public_slug')); - $this->load->model('publicsearch'); + $data['public_search_enabled'] = $this->publicsearch->public_search_enabled($public_slug); + $data['oqrs_enabled'] = $this->oqrs_model->oqrs_enabled($public_slug); + $data['disable_oqrs'] = $this->config->item('disable_oqrs'); $data['page_title'] = __("Public Search"); $data['callsign'] = $callsign; $data['slug'] = $public_slug; @@ -570,4 +564,4 @@ class Visitor extends CI_Controller { return ''; } } -} \ No newline at end of file +} diff --git a/application/controllers/Widgets.php b/application/controllers/Widgets.php index c8afd5a09..89d5375d7 100644 --- a/application/controllers/Widgets.php +++ b/application/controllers/Widgets.php @@ -69,7 +69,7 @@ class Widgets extends CI_Controller { $data['theme'] = $this->config->item('option_theme'); } - $data['user_callsign'] = $user_callsign; + $data['user_callsign'] = strtoupper($this->security->xss_clean($user_callsign)); $this->load->view('widgets/oqrs', $data); } } \ No newline at end of file diff --git a/application/hooks/gettext/Gettext.php b/application/hooks/gettext/Gettext.php index 84325d404..212523d03 100644 --- a/application/hooks/gettext/Gettext.php +++ b/application/hooks/gettext/Gettext.php @@ -279,7 +279,7 @@ class Gettext $folder = NULL; // Check if any cookie is set - if ($cookie = $IN->cookie(config_item('cookie_prefix').$this->config['cookie'], TRUE)) + if ($cookie = $IN->cookie($this->config['cookie'], TRUE)) { $folder = $cookie; } @@ -308,7 +308,7 @@ class Gettext // Use cookie if enabled if ( ! empty($this->config['cookie'])) { - $IN->set_cookie($this->config['cookie'], $current['folder'], 2678400); + $IN->set_cookie(str_replace(config_item('cookie_prefix'), '', $this->config['cookie']), $current['folder'], 2678400); } // In case we use session @@ -401,7 +401,7 @@ class Gettext // If the use of cookies is ON if ($this->config['cookie'] !== NULL) { - $IN->set_cookie($this->config['cookie'], $lang['folder'], 2678400); + $IN->set_cookie(str_replace(config_item('cookie_prefix'), '', $this->config['cookie']), $lang['folder'], 2678400); } // In case COOKIE are off but SESSION is on diff --git a/application/hooks/gettext/vendor/php-gettext/gettext.php b/application/hooks/gettext/vendor/php-gettext/gettext.php index abde1b7f7..22fae16dd 100644 --- a/application/hooks/gettext/vendor/php-gettext/gettext.php +++ b/application/hooks/gettext/vendor/php-gettext/gettext.php @@ -211,7 +211,7 @@ function _encode($text) if ($source_encoding != $target_encoding) $text = mb_convert_encoding($text, $target_encoding, $source_encoding); } - return $text; + return htmlentities($text); } // Custom implementation of the standard gettext related functions diff --git a/application/libraries/AdifHelper.php b/application/libraries/AdifHelper.php index 247c61a9a..964ec7380 100644 --- a/application/libraries/AdifHelper.php +++ b/application/libraries/AdifHelper.php @@ -153,21 +153,31 @@ class AdifHelper { $line .= $this->getAdifFieldLine("FREQ_RX", $freq_rx_in_mhz); } - $date_on = strtotime($qso->COL_TIME_ON); - $date_on = date('Ymd', $date_on); - $line .= $this->getAdifFieldLine("QSO_DATE", $date_on); + if (isset($qso->COL_TIME_ON) && (date('YmdHis',strtotime($qso->COL_TIME_ON)) != '-00011130000000')) { + $date_on = strtotime($qso->COL_TIME_ON); + $date_on = date('Ymd', $date_on); + $line .= $this->getAdifFieldLine("QSO_DATE", $date_on); - $time_on = strtotime($qso->COL_TIME_ON); - $time_on = date('His', $time_on); - $line .= $this->getAdifFieldLine("TIME_ON", $time_on); + $time_on = strtotime($qso->COL_TIME_ON); + $time_on = date('His', $time_on); + $line .= $this->getAdifFieldLine("TIME_ON", $time_on); + } else { + $line .= $this->getAdifFieldLine("QSO_DATE", '19700101'); + $line .= $this->getAdifFieldLine("TIME_ON", '000000'); + } - $date_off = strtotime($qso->COL_TIME_OFF); - $date_off = date('Ymd', $date_off); - $line .= $this->getAdifFieldLine("QSO_DATE_OFF", $date_off); + if (isset($qso->COL_TIME_OFF) && (date('YmdHis',strtotime($qso->COL_TIME_OFF)) != '-00011130000000')) { + $date_off = strtotime($qso->COL_TIME_OFF); + $date_off = date('Ymd', $date_off); + $line .= $this->getAdifFieldLine("QSO_DATE_OFF", $date_off); - $time_off = strtotime($qso->COL_TIME_OFF); - $time_off = date('His', $time_off); - $line .= $this->getAdifFieldLine("TIME_OFF", $time_off); + $time_off = strtotime($qso->COL_TIME_OFF); + $time_off = date('His', $time_off); + $line .= $this->getAdifFieldLine("TIME_OFF", $time_off); + } else { + $line .= $this->getAdifFieldLine("QSO_DATE_OFF", '19700101'); + $line .= $this->getAdifFieldLine("TIME_OFF", '000000'); + } // "MY" information $line .= $this->getAdifFieldLine("STATION_CALLSIGN", $qso->station_callsign); diff --git a/application/libraries/Frequency.php b/application/libraries/Frequency.php index 55fa02adf..1690d85e1 100644 --- a/application/libraries/Frequency.php +++ b/application/libraries/Frequency.php @@ -225,9 +225,99 @@ class Frequency { return $Band; } - // converts a frequency in Hz to MHz output - function hz_to_mhz($frequency) { - return number_format(($frequency / 1000 / 1000), 3) . " MHz"; + /** + * Convert a frequency to a specified unit and return it in a specified format. + * + * @param float $frequency The frequency value to be converted. + * + * @param int $r_option (Optional) The result format option. + * 0: Return as a string with just the frequency. + * 1 (default): Return as a string with frequency and unit. + * 2: Return as a string with frequency, unit, and band. + * + * @param string $source_unit (Optional) The source unit of the frequency. + * Possible values: 'Hz', 'kHz', 'MHz', 'GHz'. + * Default is 'Hz'. + * ! If the source unit is not 'Hz', you have to provide the source unit. ! + * + * @param string $target_unit (Optional) The target unit for conversion. + * Possible values: 'Hz', 'kHz', 'MHz', 'GHz'. + * If not provided, the unit is determined based on session data (function qrg_unit()). + * + * @return string The converted frequency in the specified format. + * + * To change the number of decimals shown per unit, add in your config.php + * + * $config['qrg_hz_dec'] = 0; + * $config['qrg_khz_dec'] = 0; + * $config['qrg_mhz_dec'] = 3; + * $config['qrg_ghz_dec'] = 3; + * + * and adjust the values to your needs. + * + */ + function qrg_conversion($frequency, $r_option = 1, $source_unit = 'Hz', $target_unit = NULL) { + + if ($frequency == 0) { + return null; + } + + $CI = &get_instance(); + + // Get the band + $band = $this->GetBand($frequency); + + // Get the target unit + if ($target_unit === NULL) { + $target_unit = $this->qrg_unit($band); + } + + // Convert the frequency to Hz + switch ($source_unit) { + case 'Hz': + break; + case 'kHz': + $frequency *= 1000; + break; + case 'MHz': + $frequency *= 1000000; // 1000 * 1000 + break; + case 'GHz': + $frequency *= 1000000000; // 1000 * 1000 * 1000 + break; + } + + // Convert the frequency to the target unit + switch ($target_unit) { + case 'Hz': + $decimals = $CI->config->item('qrg_hz_dec') ?? 0; + break; + case 'kHz': + $frequency /= 1000; + $decimals = $CI->config->item('qrg_khz_dec') ?? 0; + break; + case 'MHz': + $frequency /= 1000000; // 1000 * 1000 + $decimals = $CI->config->item('qrg_mhz_dec') ?? 3; + break; + case 'GHz': + $frequency /= 1000000000; // 1000 * 1000 * 1000 + $decimals = $CI->config->item('qrg_ghz_dec') ?? 3; + break; + } + + // Return + switch ($r_option) { + case 0: + return number_format($frequency, $decimals, '.', ''); + break; + case 1: + return number_format($frequency, $decimals, '.', '') . ' ' . $target_unit; + break; + case 2: + return number_format($frequency, $decimals, '.', '') . ' ' . $target_unit . ' (' . $band . ')'; + break; + } } function qrg_unit($band) { diff --git a/application/libraries/Genfunctions.php b/application/libraries/Genfunctions.php index ff8938fe5..ee82b2ead 100644 --- a/application/libraries/Genfunctions.php +++ b/application/libraries/Genfunctions.php @@ -41,14 +41,16 @@ class Genfunctions return $sql; } - function addBandToQuery($band) { + function addBandToQuery($band,&$binding) { $sql = ''; if ($band != 'All') { if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; + $sql .= " and col_prop_mode = ?"; + $binding[]=$band; } else { $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; + $sql .= " and col_band = ?"; + $binding[]=$band; } } return $sql; diff --git a/application/libraries/Hamqth.php b/application/libraries/Hamqth.php index 79831f64f..c8d6c71ff 100644 --- a/application/libraries/Hamqth.php +++ b/application/libraries/Hamqth.php @@ -18,7 +18,7 @@ class Hamqth { curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10); - curl_setopt($ch, CURLOPT_TIMEOUT, 10); + curl_setopt($ch, CURLOPT_TIMEOUT, 10); $xml = curl_exec($ch); curl_close($ch); @@ -43,7 +43,7 @@ class Hamqth { curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10); - curl_setopt($ch, CURLOPT_TIMEOUT, 10); + curl_setopt($ch, CURLOPT_TIMEOUT, 10); $xml = curl_exec($ch); curl_close($ch); @@ -69,8 +69,8 @@ class Hamqth { curl_setopt($ch, CURLOPT_URL, $xml_feed_url); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); - curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10); - curl_setopt($ch, CURLOPT_TIMEOUT, 10); + curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10); + curl_setopt($ch, CURLOPT_TIMEOUT, 10); $xml = curl_exec($ch); curl_close($ch); @@ -84,16 +84,18 @@ class Hamqth { // only return certain data of a callsign which does not contain a pre- or suffix (see https://github.com/wavelog/wavelog/issues/452) if ($reduced == false) { - + $data['gridsquare'] = (string)$xml->search->grid; $data['city'] = (string)$xml->search->adr_city; $data['lat'] = (string)$xml->search->latitude; $data['long'] = (string)$xml->search->longitude; - $data['dxcc'] = (string)$xml->search->adif; + $data['dxcc'] = (string)$xml->search->adif; $data['iota'] = (string)$xml->search->iota; $data['image'] = (string)$xml->search->picture; $data['state'] = (string)$xml->search->us_state; $data['error'] = (string)$xml->session->error; + $data['ituz'] = (string)$xml->search->itu; + $data['cqz'] = (string)$xml->search->cq; if ($xml->search->country == "United States") { $data['us_county'] = (string)$xml->search->us_county; @@ -112,6 +114,8 @@ class Hamqth { $data['image'] = (string)$xml->search->picture; $data['state'] = ''; $data['error'] = (string)$xml->session->error; + $data['ituz'] = ''; + $data['cqz'] = ''; $data['us_county'] = ''; diff --git a/application/libraries/Qra.php b/application/libraries/Qra.php index d14e0ceb1..b5654ec73 100644 --- a/application/libraries/Qra.php +++ b/application/libraries/Qra.php @@ -1,4 +1,4 @@ - '53.344104','lng'=>'-6.2674937'); - $coords[]=array('lat' => '51.5081289','lng'=>'-0.128005'); + $coords[]=array('lat' => '51.5081289','lng'=>'-0.128005'); */ function get_midpoint($coords) { $count_coords = count($coords); - $xcos=0.0; - $ycos=0.0; - $zsin=0.0; - - foreach ($coords as $lnglat) - { - $lat = $lnglat['lat'] * pi() / 180; - $lon = $lnglat['lng'] * pi() / 180; - - $acos = cos($lat) * cos($lon); - $bcos = cos($lat) * sin($lon); - $csin = sin($lat); - $xcos += $acos; - $ycos += $bcos; - $zsin += $csin; - } - + $xcos = 0.0; + $ycos = 0.0; + $zsin = 0.0; + + foreach ($coords as $lnglat) { + $lat = $lnglat['lat'] * pi() / 180; + $lon = $lnglat['lng'] * pi() / 180; + + $acos = cos($lat) * cos($lon); + $bcos = cos($lat) * sin($lon); + $csin = sin($lat); + $xcos += $acos; + $ycos += $bcos; + $zsin += $csin; + } + $xcos /= $count_coords; $ycos /= $count_coords; $zsin /= $count_coords; $lon = atan2($ycos, $xcos); $sqrt = sqrt($xcos * $xcos + $ycos * $ycos); $lat = atan2($zsin, $sqrt); - + return array($lat * 180 / pi(), $lon * 180 / pi()); } - function echoQrbCalcLink($mygrid, $grid, $vucc, $isVisitor=false) { + function echoQrbCalcLink($mygrid, $grid, $vucc, $isVisitor = false) { $echo = ""; if (!empty($grid)) { $echo = $grid; - $echo .= (!$isVisitor)?(' '):''; + $echo .= (!$isVisitor) ? (' ') : ''; } else if (!empty($vucc)) { $echo = $vucc; - $echo .= (!$isVisitor)?(' '):''; + $echo .= (!$isVisitor) ? (' ') : ''; } return $echo; } + + /** + * Function to calculate the maximum distance in a bunch of QSOs + * + * @param string $mylocator Maidenhead locator of the station + * @param object $qsos Object of QSOs + * @param string $unit Unit of measurement + * + * @return object $maxdistanceqso Object of the QSO with the maximum distance + * @return float $maxdistance Maximum distance + */ + + function getMaxDistanceQSO($mylocator, $qsos, $unit = "M") { + //return nothing for empty QSO set + if (count($qsos->result()) < 1) { + return null; + } + + //collect maximum data + $maxdistance = 0; + $maxdistanceqso = null; + + //iterate through all qsos + foreach ($qsos->result() as $row) { + + if (empty($row->COL_GRIDSQUARE)) { + continue; + } + + //get distance in kilometers + $distance = $this->distance($mylocator, $row->COL_GRIDSQUARE, $unit); + + //store new highscore if present + if ($distance > $maxdistance) { + $maxdistance = $distance; + $maxdistanceqso = $row; + } + } + + $result = []; + $result['qso'] = $maxdistanceqso; + $result['distance'] = $maxdistance; + + //return findings + return $result; + } } - function distance($lat1, $lon1, $lat2, $lon2, $unit = 'M') { - $theta = $lon1 - $lon2; - $dist = sin(deg2rad($lat1)) * sin(deg2rad($lat2)) + cos(deg2rad($lat1)) * cos(deg2rad($lat2)) * cos(deg2rad($theta)); - $dist = acos($dist); - $dist = rad2deg($dist); - $dist = $dist * 60 * 1.1515; +function calc_distance($lat1, $lon1, $lat2, $lon2, $unit = 'M') { + $theta = $lon1 - $lon2; + $dist = sin(deg2rad($lat1)) * sin(deg2rad($lat2)) + cos(deg2rad($lat1)) * cos(deg2rad($lat2)) * cos(deg2rad($theta)); + $dist = acos($dist); + $dist = rad2deg($dist); + $dist = $dist * 60 * 1.1515; - if ($unit == "K") { - $dist *= 1.609344; - } else if ($unit == "N") { - $dist *= 0.8684; - } - if ((is_nan($dist)) || !(is_numeric($dist))) { // Special-Case, catch same grid and/or Errors - $dist=0; - } - return round($dist, 1); + if ($unit == "K") { + $dist *= 1.609344; + } else if ($unit == "N") { + $dist *= 0.8684; } + if ((is_nan($dist)) || !(is_numeric($dist))) { // Special-Case, catch same grid and/or Errors + $dist = 0; + } + return round($dist, 1); +} - function bearing($lat1, $lon1, $lat2, $lon2, $unit = 'M') { - $dist = distance($lat1, $lon1, $lat2, $lon2, $unit); - $dist = round($dist, 0); +function bearing($lat1, $lon1, $lat2, $lon2, $unit = 'M') { + $dist = calc_distance($lat1, $lon1, $lat2, $lon2, $unit); + $dist = round($dist, 0); - $bearing = get_bearing($lat1, $lon1, $lat2, $lon2); + $bearing = get_bearing($lat1, $lon1, $lat2, $lon2); - $dirs = array("N","E","S","W"); + $dirs = array("N", "E", "S", "W"); - $rounded = round($bearing / 22.5) % 16; - if (($rounded % 4) == 0) { - $dir = $dirs[$rounded / 4]; - } else { - $dir = $dirs[2 * floor(((floor($rounded / 4) + 1) % 4) / 2)]; - $dir .= $dirs[1 + 2 * floor($rounded / 8)]; - #if ($rounded % 2 == 1) - # $dir = $dirs[round_to_int($rounded/4) % 4] . "-" . $dir; + $rounded = round($bearing / 22.5) % 16; + if (($rounded % 4) == 0) { + $dir = $dirs[$rounded / 4]; + } else { + $dir = $dirs[2 * floor(((floor($rounded / 4) + 1) % 4) / 2)]; + $dir .= $dirs[1 + 2 * floor($rounded / 8)]; + #if ($rounded % 2 == 1) + # $dir = $dirs[round_to_int($rounded/4) % 4] . "-" . $dir; + } + $var_dist = ""; + #return $dir; + if (isset($dist)) { + $var_dist = $dist; + switch ($unit) { + case 'M': + $var_dist .= " miles"; + break; + case 'N': + $var_dist .= " nautic miles"; + break; + case 'K': + $var_dist .= " kilometers"; + break; } - $var_dist = ""; - #return $dir; - if (isset($dist)) { - $var_dist = $dist; - switch ($unit) { - case 'M': - $var_dist .= " miles"; - break; - case 'N': - $var_dist .= " nautic miles"; - break; - case 'K': - $var_dist .= " kilometers"; - break; + } + return round($bearing, 0) . "º " . $dir . " " . $var_dist; +} + +function get_bearing($lat1, $lon1, $lat2, $lon2) { + return (int)(rad2deg(atan2(sin(deg2rad($lon2) - deg2rad($lon1)) * cos(deg2rad($lat2)), cos(deg2rad($lat1)) * sin(deg2rad($lat2)) - sin(deg2rad($lat1)) * cos(deg2rad($lat2)) * cos(deg2rad($lon2) - deg2rad($lon1)))) + 360) % 360; +} + +function qra2latlong($strQRA) { + $strQRA = preg_replace('/\s+/', '', $strQRA); + if (substr_count($strQRA, ',') > 0) { + if (substr_count($strQRA, ',') == 3) { + // Handle grid corners + $grids = explode(',', $strQRA); + $gridlengths = array(strlen($grids[0]), strlen($grids[1]), strlen($grids[2]), strlen($grids[3])); + $same = array_count_values($gridlengths); + if (count($same) != 1) { + return false; } - } - return round($bearing, 0)."º ".$dir." ".$var_dist; - } - - function get_bearing($lat1, $lon1, $lat2, $lon2) { - return (int)(rad2deg(atan2(sin(deg2rad($lon2) - deg2rad($lon1)) * cos(deg2rad($lat2)), cos(deg2rad($lat1)) * sin(deg2rad($lat2)) - sin(deg2rad($lat1)) * cos(deg2rad($lat2)) * cos(deg2rad($lon2) - deg2rad($lon1)))) + 360) % 360; - } - - function qra2latlong($strQRA) { - $strQRA=preg_replace('/\s+/', '', $strQRA); - if (substr_count($strQRA, ',') > 0) { - if (substr_count($strQRA, ',') == 3) { - // Handle grid corners - $grids = explode(',', $strQRA); - $gridlengths = array(strlen($grids[0]), strlen($grids[1]), strlen($grids[2]), strlen($grids[3])); - $same = array_count_values($gridlengths); - if (count($same) != 1) { - return false; - } - $coords = array(0, 0); - for($i=0; $i<4; $i++) { - $cornercoords[$i] = qra2latlong($grids[$i]); - $coords[0] += $cornercoords[$i][0]; - $coords[1] += $cornercoords[$i][1]; - } - return array (round($coords[0]/4), round($coords[1]/4)); - } else if (substr_count($strQRA, ',') == 1) { - // Handle grid lines - $grids = explode(',', $strQRA); - if (strlen($grids[0]) != strlen($grids[1])) { - return false; - } - $coords = array(0, 0); - for($i=0; $i<2; $i++) { - $linecoords[$i] = qra2latlong($grids[$i]); - } - if ($linecoords[0][0] != $linecoords[1][0]) { - $coords[0] = round((($linecoords[0][0] + $linecoords[1][0]) / 2),1); - } else { - $coords[0] = round($linecoords[0][0],1); - } - if ($linecoords[0][1] != $linecoords[1][1]) { - $coords[1] = round(($linecoords[0][1] + $linecoords[1][1]) / 2); - } else { - $coords[1] = round($linecoords[0][1]); - } - return $coords; + $coords = array(0, 0); + for ($i = 0; $i < 4; $i++) { + $cornercoords[$i] = qra2latlong($grids[$i]); + $coords[0] += $cornercoords[$i][0]; + $coords[1] += $cornercoords[$i][1]; + } + return array(round($coords[0] / 4), round($coords[1] / 4)); + } else if (substr_count($strQRA, ',') == 1) { + // Handle grid lines + $grids = explode(',', $strQRA); + if (strlen($grids[0]) != strlen($grids[1])) { + return false; + } + $coords = array(0, 0); + for ($i = 0; $i < 2; $i++) { + $linecoords[$i] = qra2latlong($grids[$i]); + } + if ($linecoords[0][0] != $linecoords[1][0]) { + $coords[0] = round((($linecoords[0][0] + $linecoords[1][0]) / 2), 1); } else { - return false; + $coords[0] = round($linecoords[0][0], 1); } - } - - if ((strlen($strQRA) % 2 == 0) && (strlen($strQRA) <= 10)) { // Check if QRA is EVEN (the % 2 does that) and smaller/equal 8 - $strQRA = strtoupper($strQRA); - if (strlen($strQRA) == 4) $strQRA .= "LL"; // Only 4 Chars? Fill with center "LL" as only A-R allowed - if (strlen($strQRA) == 6) $strQRA .= "55"; // Only 6 Chars? Fill with center "55" - if (strlen($strQRA) == 8) $strQRA .= "LL"; // Only 8 Chars? Fill with center "LL" as only A-R allowed - - if (!preg_match('/^[A-R]{2}[0-9]{2}[A-X]{2}[0-9]{2}[A-X]{2}$/', $strQRA)) { - return false; + if ($linecoords[0][1] != $linecoords[1][1]) { + $coords[1] = round(($linecoords[0][1] + $linecoords[1][1]) / 2); + } else { + $coords[1] = round($linecoords[0][1]); } - - list($a, $b, $c, $d, $e, $f, $g, $h, $i, $j) = str_split($strQRA, 1); // Maidenhead is always alternating. e.g. "AA00AA00AA00" - doesn't matter how deep. 2 chars, 2 numbers, etc. - $a = ord($a) - ord('A'); - $b = ord($b) - ord('A'); - $c = ord($c) - ord('0'); - $d = ord($d) - ord('0'); - $e = ord($e) - ord('A'); - $f = ord($f) - ord('A'); - $g = ord($g) - ord('0'); - $h = ord($h) - ord('0'); - $i = ord($i) - ord('A'); - $j = ord($j) - ord('A'); - - $nLong = ($a*20) + ($c*2) + ($e/12) + ($g/120) + ($i/2880) - 180; - $nLat = ($b*10) + $d + ($f/24) + ($h/240) + ($j/5760) - 90; - - $arLatLong = array($nLat, $nLong); - return $arLatLong; + return $coords; } else { - return array(0, 0); + return false; } } + if ((strlen($strQRA) % 2 == 0) && (strlen($strQRA) <= 10)) { // Check if QRA is EVEN (the % 2 does that) and smaller/equal 8 + $strQRA = strtoupper($strQRA); + if (strlen($strQRA) == 4) $strQRA .= "LL"; // Only 4 Chars? Fill with center "LL" as only A-R allowed + if (strlen($strQRA) == 6) $strQRA .= "55"; // Only 6 Chars? Fill with center "55" + if (strlen($strQRA) == 8) $strQRA .= "LL"; // Only 8 Chars? Fill with center "LL" as only A-R allowed + + if (!preg_match('/^[A-R]{2}[0-9]{2}[A-X]{2}[0-9]{2}[A-X]{2}$/', $strQRA)) { + return false; + } + + list($a, $b, $c, $d, $e, $f, $g, $h, $i, $j) = str_split($strQRA, 1); // Maidenhead is always alternating. e.g. "AA00AA00AA00" - doesn't matter how deep. 2 chars, 2 numbers, etc. + $a = ord($a) - ord('A'); + $b = ord($b) - ord('A'); + $c = ord($c) - ord('0'); + $d = ord($d) - ord('0'); + $e = ord($e) - ord('A'); + $f = ord($f) - ord('A'); + $g = ord($g) - ord('0'); + $h = ord($h) - ord('0'); + $i = ord($i) - ord('A'); + $j = ord($j) - ord('A'); + + $nLong = ($a * 20) + ($c * 2) + ($e / 12) + ($g / 120) + ($i / 2880) - 180; + $nLat = ($b * 10) + $d + ($f / 24) + ($h / 240) + ($j / 5760) - 90; + + $arLatLong = array($nLat, $nLong); + return $arLatLong; + } else { + return array(0, 0); + } +} + /* End of file Qra.php */ diff --git a/application/libraries/Qrz.php b/application/libraries/Qrz.php index a666e8ac5..cc51b7b9b 100644 --- a/application/libraries/Qrz.php +++ b/application/libraries/Qrz.php @@ -70,7 +70,7 @@ class Qrz { curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10); - curl_setopt($ch, CURLOPT_TIMEOUT, 10); + curl_setopt($ch, CURLOPT_TIMEOUT, 10); $xml = curl_exec($ch); $httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); @@ -109,6 +109,8 @@ class Qrz { $data['iota'] = (string)$xml->Callsign->iota; $data['qslmgr'] = (string)$xml->Callsign->qslmgr; $data['image'] = (string)$xml->Callsign->image; + $data['ituz'] = (string)$xml->Callsign->ituzone; + $data['cqz'] = (string)$xml->Callsign->cqzone; if ($xml->Callsign->country == "United States") { $data['us_county'] = (string)$xml->Callsign->county; @@ -128,6 +130,8 @@ class Qrz { $data['qslmgr'] = (string)$xml->Callsign->qslmgr; $data['image'] = (string)$xml->Callsign->image; $data['us_county'] = ''; + $data['ituz'] = ''; + $data['cqz'] = ''; } } finally { diff --git a/application/libraries/Reg1testformat.php b/application/libraries/Reg1testformat.php new file mode 100644 index 000000000..9e355fb93 --- /dev/null +++ b/application/libraries/Reg1testformat.php @@ -0,0 +1,206 @@ +reg1testbandstring($band) . "\r\n"; // Band in REG1TEST format + $edi_header .= "PClub=" . strtoupper($club) . "\r\n"; //Club + $edi_header .= "RName=" . $name. "\r\n"; //Name of responsible operator + $edi_header .= "RCall=" . strtoupper($responsible_operator) . "\r\n"; //Callsign of responsible operator, if different from contest callsign + $edi_header .= "RAdr1=" . $address1 . "\r\n"; //Operator Address Line 1 + $edi_header .= "RAdr2=" . $address2 . "\r\n"; //Operator Address Line 2 + $edi_header .= "RPoCo=" . $addresspostalcode . "\r\n"; //Operator Address Postal Code + $edi_header .= "RCity=" . $addresscity . "\r\n"; //Operator Address City + $edi_header .= "RCoun=" . $addresscountry . "\r\n"; //Operator Address Country + $edi_header .= "RPhon=" . $operatorphone . "\r\n"; //Operator Address Phone number + $edi_header .= "RHBBS=" . "\r\n"; //Bulletin board address of operator. Pretty safe to omit in past 2024 + $edi_header .= "MOpe1=" . strtoupper($operators) . "\r\n"; //Operators + $edi_header .= "MOpe2=" . "\r\n"; //Operators line 2. Leave empty. + $edi_header .= "STXEq=" . $txequipment . "\r\n"; //TX Equipment description + $edi_header .= "SPowe=" . $power . "\r\n"; //Power in Watts + $edi_header .= "SRXEq=" . $rxequipment . "\r\n"; //RX Equipment description + $edi_header .= "SAnte=" . $antenna . "\r\n"; //Antenna description + $edi_header .= "SAntH=" . $antennaheight . "\r\n"; //Antenna height above ground + $edi_header .= "CQSOs=" . $qso_count . ';' . $bandmultiplicator . "\r\n"; //Arguments describe the claimed number of valid QSOs and the band multiplier. + $edi_header .= "CQSOP=" . $claimedpoints . "\r\n"; //Argument describes the claimed total number of QSO-points. + $edi_header .= "CWWLs=" . "\r\n"; //Arguments describe the claimed number of WWLs worked, the number of bonus points claimed for each new WWL and the WWL multiplier. Leave empty. + $edi_header .= "CWWLB=" . "\r\n"; //Argument describes the claimed total number of WWL bonus points. Leave empty. + $edi_header .= "CExcs=" . "\r\n"; //Arguments describe the claimed number of Exchanges worked, the number of bonus points claimed for each new Exchange and the Exchange multiplier. Leave empty. + $edi_header .= "CExcB=" . "\r\n"; //Argument describes the claimed total number of Exchange bonus points. Leave empty. + $edi_header .= "CDXCs=" . "\r\n"; //Arguments describe the claimed number of DXCCs worked, the number of bonus points claimed for each new DXCC and the DXCC multiplier. Leave empty. + $edi_header .= "CDXCB=" . "\r\n"; //Argument describes the claimed total number of DXCC bonus points. Leave empty. + $edi_header .= "CToSc=" . "\r\n"; //Argument describes the total claimed score. Leave empty. + + //set QSO info for QSO with max distance only if we can determine it + if(!empty($maxdistanceqso['qso'])){ + $edi_header .= "CODXC=" . strtoupper($maxdistanceqso['qso']->COL_CALL) . ";" . substr(strtoupper($maxdistanceqso['qso']->COL_GRIDSQUARE), 0, 6) . ";" . intval($maxdistanceqso['distance']) . "\r\n"; //Arguments describe the claimed ODX contact call, WWL and distance. + }else{ + $edi_header .= "CODXC=" . "\r\n"; //Arguments describe the claimed ODX contact call, WWL and distance. Leave empty. + } + + $edi_header .= "[Remarks]" . "\r\n" . $soapbox . "\r\n"; //Remarks + $edi_header .= "[QSORecords;" . $qso_count . "]" . "\r\n"; //QSO Header and QSO Count + + //return the header + return $edi_header; + + } + + public function footer() { + //return a newline as the last line for good measure + return "\r\n"; + } + + public function qsos($qsodata, $mylocator, $bandmultiplicator){ + //get codeigniter instance + $CI = &get_instance(); + + //load QRA library + if(!$CI->load->is_loaded('Qra')) { + $CI->load->library('Qra'); + } + + //define helper variables + $locators = []; + $dxccs = []; + $exchanges = []; + + //define result + $result = []; + $result['formatted_qso'] = ""; + $result['claimedpoints'] = 0; + + //iterate through every QSO and construct detail format + foreach ($qsodata->result() as $row) { + + //result string + $qsorow = ""; + + $qsorow .= date('ymd', strtotime($row->COL_TIME_ON)) . ';'; //Date in YYMMDD format + $qsorow .= date('Hi', strtotime($row->COL_TIME_ON)) . ';'; //Time in HHMM format + $qsorow .= substr($row->COL_CALL, 0, 14) . ';'; //Callsign, maximum 14 characters + $qsorow .= $this->reg1testmodecode($row->COL_MODE) . ';'; //Mode-Code in REG1TEST format + $qsorow .= substr($row->COL_RST_SENT, 0, 3) . ';'; //Sent RST, max 3 characters + $qsorow .= substr(str_pad($row->COL_STX ?? "", 3, '0', STR_PAD_LEFT), 0, 4) . ';';; //Sent Number of QSO with 3 digits with leading zeros. If number gets greater than 999, 4 characters are used at maximum + $qsorow .= substr($row->COL_RST_RCVD, 0, 3) . ';'; //Received RST, max 3 characters + $qsorow .= substr(str_pad($row->COL_SRX ?? "", 3, '0', STR_PAD_LEFT), 0, 4) . ';';; //Received Number of QSO with 3 digits with leading zeros. If number gets greater than 999, 4 characters are used at maximum + $qsorow .= substr($row->COL_SRX_STRING ?? "", 0, 6) . ';'; //Received Exchange, max 6 characters + $qsorow .= strtoupper(substr($row->COL_GRIDSQUARE ?? "" , 0, 6)) . ';'; //Gridsquare max 6 characters + + //calculate or get distance in whole kilometers while determening if this is a new locator or not + if (!empty($row->COL_GRIDSQUARE)) { + if(!array_key_exists($row->COL_GRIDSQUARE, $locators)){ + $newlocator = true; + $distance = intval($CI->qra->distance($mylocator, $row->COL_GRIDSQUARE, "K")); + $locators[$row->COL_GRIDSQUARE] = $distance; + }else{ + $newlocator = false; + $distance = $locators[$row->COL_GRIDSQUARE]; + } + } else { + $distance = 0; + $newlocator = false; + } + + //determine QSO points and add those to the total + $qsopoints = intval(round($distance * $bandmultiplicator, 0)); + $result['claimedpoints'] += $qsopoints; + + $qsorow .= $qsopoints . ";"; //qso points = distance * bandmultiplicator + + //determine if the exchange is new or not + if(!in_array($row->COL_SRX_STRING, $exchanges)){ + $newexchange = true; + array_push($exchanges, $row->COL_SRX_STRING); + }else{ + $newexchange = false; + } + + $qsorow .= ($newexchange ? 'N' : '') . ';'; //flag if exchange is new + $qsorow .= ($newlocator ? 'N' : '') . ';'; //flag if locator is new + + //determine if DXCC is new or not + if(!in_array($row->COL_DXCC, $dxccs)){ + $newdxcc = true; + array_push($dxccs, $row->COL_DXCC); + }else{ + $newdxcc = false; + } + + $qsorow .= ($newdxcc ? 'N' : '') . ';'; //flag if DXCC is new + + $qsorow .= ";\r\n"; //flag for duplicate QSO. Leave empty as Wavelog does not have this. + + //add row to overall result + $result['formatted_qso'] .= $qsorow; + + } + + //return QSO detail + return $result; + } + + public function reg1testbandstring($band){ + + //translate wavelogs bands to REG1TEST format + switch ($band) { + case '6m': + return "50 MHz"; + case "4m": + return "70 MHz"; + case "2m": + return "144 MHz"; + case "70cm": + return "432 MHz"; + case "23cm": + return "1,3 GHz"; + case "13cm"; + return "2,3 GHz"; + case "9cm": + return "3,4 GHz"; + case "6cm": + return "5,7 GHz"; + case "3cm": + return "10 GHz"; + case "1.25cm": + return "24 GHz"; + default: + return "invalid"; + } + } + + public function reg1testmodecode($mode){ + switch ($mode) { + case 'SSB': + return 1; + case 'CW': + return 2; + case 'AM': + return 5; + case 'FM': + return 6; + case 'RTTY': + return 7; + case 'SSTV': + return 8; + case 'ATV': + return 9; + default: + return 0; + } + } +} diff --git a/application/libraries/Subdivisions.php b/application/libraries/Subdivisions.php index 5ed40a1bf..7d5ad330a 100644 --- a/application/libraries/Subdivisions.php +++ b/application/libraries/Subdivisions.php @@ -28,7 +28,7 @@ class Subdivisions { case '318': case '375': case '386': - return 'Province'; + return _pgettext("Division Name (States in various countries).", "Province"); case '27': case '15': case '54': @@ -36,37 +36,37 @@ class Subdivisions { case '126': case '151': case '288': - return 'Oblast'; + return _pgettext("Division Name (States in various countries).", "Oblast"); case '112': - return 'Region'; + return _pgettext("Division Name (States in various countries).", "Region"); case '132': case '144': case '227': - return 'Department'; + return _pgettext("Division Name (States in various countries).", "Department"); case '170': - return 'Region'; + return _pgettext("Division Name (States in various countries).", "Region"); case '224': - return 'Municipality'; + return _pgettext("Division Name (States in various countries).", "Municipality"); case '230': - return 'Federal State'; + return _pgettext("Division Name (States in various countries).", "Federal State"); case '239': case '245': case '275': case '497': - return 'County'; + return _pgettext("Division Name (States in various countries).", "County"); case '272': case '503': case '504': - return 'District'; + return _pgettext("Division Name (States in various countries).", "District"); case '287': - return 'Canton'; + return _pgettext("Division Name (States in various countries).", "Canton"); case '291': - return 'US State'; + return _pgettext("Division Name (States in various countries).", "US State"); case '318': case '339': - return 'Prefecture'; + return _pgettext("Division Name (States in various countries).", "Prefecture"); } - return 'State'; + return _pgettext("Division Name (States in various countries).", "State"); } public function get_secondary_subdivision_name($dxcc) { @@ -75,23 +75,23 @@ class Subdivisions { case '6': case '110': case '291': - return 'US County'; + return _pgettext("Division Name (States in various countries).", "US County"); case '15': case '54': case '61': case '126': case '151': case '288': - return 'District'; + return _pgettext("Division Name (States in various countries).", "District"); case '21': case '29': case '32': case '281': - return 'DME'; + return _pgettext("Division Name (States in various countries).", "DME"); case '339': - return 'City / Ku / Gun'; + return _pgettext("Division Name (States in various countries).", "City / Ku / Gun"); } - return 'County'; + return _pgettext("Division Name (States in various countries).", "County"); } public function get_state_list($dxcc) { diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.mo b/application/locale/bg_BG/LC_MESSAGES/messages.mo index 9b0d1406b..8c8db019d 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 18e75ad6b..28fc4e9bc 100644 --- a/application/locale/bg_BG/LC_MESSAGES/messages.po +++ b/application/locale/bg_BG/LC_MESSAGES/messages.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-09 07:24+0000\n" -"PO-Revision-Date: 2024-07-09 13:25+0000\n" +"POT-Creation-Date: 2024-09-07 07:18+0000\n" +"PO-Revision-Date: 2024-08-17 10:46+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Bulgarian \n" @@ -15,10 +15,104 @@ 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.6\n" +"X-Generator: Weblate 5.6.2\n" -#: application/controllers/Accumulated.php:21 -#: application/views/interface_assets/header.php:150 +#: application/controllers/Accumulated.php:12 +#: application/controllers/Activators.php:13 +#: application/controllers/Activatorsmap.php:13 +#: application/controllers/Adif.php:13 application/controllers/Awards.php:16 +#: application/controllers/Backup.php:13 application/controllers/Backup.php:26 +#: application/controllers/Backup.php:63 application/controllers/Band.php:15 +#: application/controllers/Bandmap.php:9 +#: application/controllers/Cabrillo.php:16 +#: application/controllers/Cabrillo.php:53 +#: application/controllers/Cabrillo.php:80 +#: application/controllers/Cabrillo.php:135 +#: application/controllers/Calltester.php:11 +#: application/controllers/Cfdexport.php:18 +#: application/controllers/Cfdexport.php:29 +#: application/controllers/Components.php:13 +#: application/controllers/Contestcalendar.php:15 +#: application/controllers/Contesting.php:14 +#: application/controllers/Cron.php:26 application/controllers/Cron.php:162 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: application/controllers/Distancerecords.php:11 +#: application/controllers/Distances.php:11 +#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29 +#: application/controllers/Dxatlas.php:51 +#: application/controllers/Dxatlas.php:108 +#: application/controllers/Dxcalendar.php:8 +#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23 +#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 +#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 +#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:353 +#: application/controllers/Eqsl.php:420 application/controllers/Eqsl.php:436 +#: application/controllers/Eqsl.php:497 application/controllers/Hamsat.php:13 +#: application/controllers/Kmlexport.php:18 +#: application/controllers/Kmlexport.php:33 +#: application/controllers/Labels.php:26 +#: application/controllers/Logbookadvanced.php:16 +#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 +#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 +#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 +#: application/controllers/Notes.php:10 application/controllers/Options.php:15 +#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 +#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 +#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 +#: application/controllers/Qso.php:9 application/controllers/Qso.php:19 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:600 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Reg1test.php:18 +#: application/controllers/Reg1test.php:63 +#: application/controllers/Reg1test.php:102 +#: application/controllers/Reg1test.php:130 +#: application/controllers/Reg1test.php:164 +#: application/controllers/Satellite.php:18 +#: application/controllers/Satellite.php:37 +#: application/controllers/Satellite.php:44 +#: application/controllers/Satellite.php:53 +#: application/controllers/Satellite.php:72 +#: application/controllers/Satellite.php:87 +#: application/controllers/Satellite.php:95 +#: application/controllers/Satellite.php:103 +#: application/controllers/Satellite.php:117 +#: application/controllers/Satellite.php:135 +#: application/controllers/Satellite.php:146 +#: application/controllers/Satellite.php:162 +#: application/controllers/Satellite.php:190 +#: application/controllers/Satellite.php:201 +#: application/controllers/Satellite.php:223 +#: application/controllers/Satellite.php:236 +#: application/controllers/Satellite.php:244 +#: application/controllers/Sattimers.php:9 +#: application/controllers/Search.php:13 +#: application/controllers/Simplefle.php:7 +#: application/controllers/Station.php:17 +#: application/controllers/Stationsetup.php:15 +#: application/controllers/Themes.php:17 +#: application/controllers/Timeline.php:10 +#: application/controllers/Timeplotter.php:11 +#: application/controllers/Update.php:24 application/controllers/Update.php:273 +#: application/controllers/Update.php:284 +#: application/controllers/Update.php:295 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 +#: application/controllers/User_options.php:9 +msgid "You're not allowed to do that!" +msgstr "" + +#: application/controllers/Accumulated.php:19 +#: application/views/interface_assets/header.php:152 msgid "Accumulated Statistics" msgstr "" @@ -28,24 +122,26 @@ msgid "Activated Gridsquare Map" msgstr "" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:910 -#: application/controllers/Awards.php:942 +#: application/controllers/Awards.php:919 +#: application/controllers/Awards.php:951 #: application/controllers/Gridmap.php:31 -#: application/controllers/Visitor.php:374 -#: application/views/activators/index.php:101 +#: application/controllers/Visitor.php:385 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: application/views/visitor/layout/footer.php:22 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "" #: application/controllers/Activated_gridmap.php:32 #: application/controllers/Gridmap.php:32 -#: application/controllers/Visitor.php:375 +#: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "" #: application/controllers/Activated_gridmap.php:33 #: application/controllers/Gridmap.php:33 -#: application/controllers/Visitor.php:376 +#: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "" @@ -54,12 +150,13 @@ msgid "Total gridsquares activated" msgstr "" #: application/controllers/Activators.php:20 -#: application/views/activators/index.php:2 +#: application/views/activators/index.php:5 #: application/views/interface_assets/header.php:142 msgid "Gridsquare Activators" msgstr "" #: application/controllers/Activatorsmap.php:17 +#: application/views/activators/index.php:2 msgid "Activators Map" msgstr "" @@ -76,7 +173,7 @@ msgid "ADIF Export" msgstr "" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:388 msgid "ADIF Import / Export" msgstr "" @@ -89,20 +186,25 @@ msgstr "" msgid "Unsupported Filetype" msgstr "" -#: application/controllers/Adif.php:245 +#: application/controllers/Adif.php:240 +#: application/views/adif/import_failed.php:12 +msgid "ADIF Import failed!" +msgstr "" + +#: application/controllers/Adif.php:254 msgid "Station Profile not valid for User" msgstr "" -#: application/controllers/Adif.php:252 +#: application/controllers/Adif.php:261 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "" -#: application/controllers/Adif.php:263 +#: application/controllers/Adif.php:272 msgid "DCL Import" msgstr "" -#: application/controllers/Adif.php:319 +#: application/controllers/Adif.php:328 msgid "DCL Data Imported" msgstr "" @@ -132,25 +234,8 @@ msgstr "" msgid "API Key %s has been deleted" msgstr "" -#: application/controllers/Api.php:118 -msgid "Key Disabled" -msgstr "" - -#: application/controllers/Api.php:118 -msgid "No Key Found" -msgstr "" - -#: application/controllers/Api.php:120 -msgid "Key Invalid - either not found or disabled" -msgstr "" - -#: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 -msgid "Valid" -msgstr "Валиден" - #: application/controllers/Awards.php:22 -#: application/views/interface_assets/header.php:158 +#: application/views/interface_assets/header.php:160 #: application/views/qso/edit_ajax.php:35 msgid "Awards" msgstr "" @@ -165,12 +250,13 @@ msgstr "" #: application/controllers/Awards.php:652 #: application/controllers/Awards.php:714 #: application/controllers/Awards.php:776 -#: application/controllers/Awards.php:847 -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:930 -#: application/controllers/Awards.php:1125 -#: application/controllers/Awards.php:1615 -#: application/controllers/Awards.php:1755 +#: application/controllers/Awards.php:856 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:939 +#: application/controllers/Awards.php:1140 +#: application/controllers/Awards.php:1639 +#: application/controllers/Awards.php:1779 +#: application/controllers/Awards.php:1908 #, php-format msgid "Awards - %s" msgstr "" @@ -178,13 +264,13 @@ msgstr "" #: application/controllers/Awards.php:92 #: application/views/awards/dok/index.php:149 #: application/views/bands/index.php:47 -#: application/views/contesting/index.php:170 -#: application/views/interface_assets/header.php:194 -#: application/views/logbookadvanced/index.php:613 +#: application/views/contesting/index.php:53 +#: application/views/interface_assets/header.php:198 +#: application/views/logbookadvanced/index.php:641 #: application/views/logbookadvanced/useroptions.php:130 -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:264 -#: application/views/qso/index.php:508 application/views/user/edit.php:603 -#: application/views/view_log/qso.php:351 +#: application/views/qso/edit_ajax.php:388 application/views/qso/index.php:264 +#: application/views/qso/index.php:518 application/views/user/edit.php:603 +#: application/views/view_log/qso.php:354 msgid "DOK" msgstr "" @@ -192,15 +278,15 @@ msgstr "" #: application/views/bandmap/list.php:112 application/views/bands/index.php:48 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 -#: application/views/interface_assets/header.php:164 +#: application/views/interface_assets/header.php:166 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:145 -#: application/views/logbookadvanced/index.php:580 +#: application/views/logbookadvanced/index.php:156 +#: application/views/logbookadvanced/index.php:608 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 -#: application/views/lotw_views/index.php:40 +#: application/views/lotw_views/index.php:36 #: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 #: application/views/search/cqzones_result.php:15 #: application/views/search/result.php:27 @@ -215,12 +301,12 @@ msgid "Awards - WAJA" msgstr "" #: application/controllers/Awards.php:327 application/views/bands/index.php:51 -#: application/views/interface_assets/header.php:210 +#: application/views/interface_assets/header.php:214 msgid "JCC" msgstr "" #: application/controllers/Awards.php:375 application/views/bands/index.php:57 -#: application/views/interface_assets/header.php:170 +#: application/views/interface_assets/header.php:172 msgid "VUCC" msgstr "" @@ -229,15 +315,20 @@ msgid "Log View - VUCC" msgstr "" #: application/controllers/Awards.php:453 -#: application/controllers/Timeline.php:92 -#: application/controllers/Timeline.php:95 -#: application/controllers/Timeline.php:98 -#: application/controllers/Timeline.php:101 -#: application/controllers/Timeline.php:104 -#: application/controllers/Timeline.php:107 +#: application/controllers/Distancerecords.php:59 +#: application/controllers/Timeline.php:105 +#: application/controllers/Timeline.php:108 +#: application/controllers/Timeline.php:111 +#: application/controllers/Timeline.php:114 +#: application/controllers/Timeline.php:117 +#: application/controllers/Timeline.php:120 msgid "Log View" msgstr "" +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr "" + #: application/controllers/Awards.php:457 msgid " and sat " msgstr "" @@ -259,12 +350,12 @@ msgid " and " msgstr "" #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1289 #: application/views/awards/index.php:8 application/views/bands/index.php:55 #: application/views/dashboard/index.php:9 -#: application/views/interface_assets/header.php:178 -#: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:259 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -272,10 +363,10 @@ msgstr "" #: application/views/qslcard/searchresult.php:49 #: application/views/qslcard/searchresult.php:65 #: application/views/qslcard/searchresult.php:81 -#: application/views/qso/components/previous_contacts.php:83 -#: application/views/qso/edit_ajax.php:336 +#: application/views/qso/components/previous_contacts.php:82 +#: application/views/qso/edit_ajax.php:363 #: application/views/search/search_result_ajax.php:9 -#: application/views/station_profile/edit.php:216 +#: application/views/station_profile/edit.php:243 #: application/views/user/edit.php:234 application/views/user/edit.php:256 #: application/views/user/edit.php:278 application/views/user/edit.php:300 #: application/views/user/edit.php:323 @@ -285,18 +376,18 @@ msgid "SOTA" msgstr "" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1290 #: application/views/bands/index.php:60 #: application/views/dashboard/index.php:10 -#: application/views/interface_assets/header.php:172 -#: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:279 +#: application/views/interface_assets/header.php:176 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/index.php:290 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 -#: application/views/qso/components/previous_contacts.php:84 -#: application/views/qso/edit_ajax.php:341 +#: application/views/qso/components/previous_contacts.php:83 +#: application/views/qso/edit_ajax.php:368 #: application/views/search/search_result_ajax.php:10 -#: application/views/station_profile/edit.php:229 +#: application/views/station_profile/edit.php:256 #: application/views/user/edit.php:235 application/views/user/edit.php:257 #: application/views/user/edit.php:279 application/views/user/edit.php:301 #: application/views/user/edit.php:324 @@ -305,18 +396,18 @@ msgid "WWFF" msgstr "" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1291 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 -#: application/views/interface_assets/header.php:182 +#: application/views/interface_assets/header.php:186 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:274 +#: application/views/logbookadvanced/index.php:623 #: application/views/logbookadvanced/useroptions.php:106 -#: application/views/qso/components/previous_contacts.php:85 -#: application/views/qso/edit_ajax.php:346 +#: application/views/qso/components/previous_contacts.php:84 +#: application/views/qso/edit_ajax.php:373 #: application/views/search/search_result_ajax.php:11 -#: application/views/station_profile/edit.php:242 +#: application/views/station_profile/edit.php:269 #: application/views/user/edit.php:236 application/views/user/edit.php:258 #: application/views/user/edit.php:280 application/views/user/edit.php:302 #: application/views/user/edit.php:325 @@ -335,7 +426,7 @@ msgid "Worked All States (WAS)" msgstr "" #: application/controllers/Awards.php:714 application/views/bands/index.php:53 -#: application/views/interface_assets/header.php:188 +#: application/views/interface_assets/header.php:192 msgid "RAC" msgstr "" @@ -343,74 +434,80 @@ msgstr "" msgid "H26" msgstr "" -#: application/controllers/Awards.php:847 +#: application/controllers/Awards.php:856 msgid "IOTA (Island On The Air)" msgstr "" -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:872 -#: application/views/interface_assets/header.php:230 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 +#: application/views/interface_assets/header.php:234 msgid "US Counties" msgstr "" -#: application/controllers/Awards.php:887 +#: application/controllers/Awards.php:896 msgid "Log View - Counties" msgstr "" -#: application/controllers/Awards.php:894 +#: application/controllers/Awards.php:903 msgid "Awards - " msgstr "" -#: application/controllers/Awards.php:911 -#: application/controllers/Awards.php:943 +#: application/controllers/Awards.php:920 +#: application/controllers/Awards.php:952 msgid "Gridsquares worked" msgstr "" -#: application/controllers/Awards.php:912 -#: application/controllers/Awards.php:944 +#: application/controllers/Awards.php:921 +#: application/controllers/Awards.php:953 msgid "Gridsquares confirmed on LoTW" msgstr "" -#: application/controllers/Awards.php:913 -#: application/controllers/Awards.php:945 +#: application/controllers/Awards.php:922 +#: application/controllers/Awards.php:954 msgid "Gridsquares confirmed by paper QSL" msgstr "" -#: application/controllers/Awards.php:930 +#: application/controllers/Awards.php:939 msgid "Fred Fish Memorial Award (FFMA)" msgstr "" -#: application/controllers/Awards.php:1125 -#: application/views/interface_assets/header.php:168 +#: application/controllers/Awards.php:1140 +#: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "" -#: application/controllers/Awards.php:1143 +#: application/controllers/Awards.php:1158 msgid "Awards - SIG - " msgstr "" -#: application/controllers/Awards.php:1755 -#: application/views/awards/itu/index.php:18 +#: application/controllers/Awards.php:1779 +#: application/views/awards/itu/index.php:20 msgid "ITU Zones" msgstr "" +#: application/controllers/Awards.php:1908 +#: application/views/awards/wac/index.php:8 +#: application/views/interface_assets/header.php:174 +msgid "Worked All Continents (WAC)" +msgstr "" + #: application/controllers/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:284 msgid "Backup" msgstr "" -#: application/controllers/Backup.php:48 +#: application/controllers/Backup.php:50 msgid "ADIF - Backup" msgstr "" -#: application/controllers/Backup.php:80 +#: application/controllers/Backup.php:84 msgid "Notes - Backup" msgstr "" #: application/controllers/Band.php:25 application/views/bands/index.php:28 #: application/views/bands/index.php:32 -#: application/views/interface_assets/header.php:379 +#: application/views/interface_assets/header.php:383 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -426,8 +523,8 @@ msgstr "" #: application/controllers/Bandmap.php:28 #: application/controllers/Bandmap.php:69 -#: application/controllers/Options.php:137 -#: application/controllers/Options.php:148 +#: application/controllers/Options.php:145 +#: application/controllers/Options.php:156 #: application/views/options/sidebar.php:10 msgid "DXCluster" msgstr "" @@ -437,7 +534,7 @@ msgid "Export Cabrillo" msgstr "" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:396 +#: application/views/interface_assets/header.php:402 msgid "CFD Export" msgstr "" @@ -454,7 +551,7 @@ msgid "No user has configured Clublog." msgstr "" #: application/controllers/Contestcalendar.php:19 -#: application/views/interface_assets/header.php:247 +#: application/views/interface_assets/header.php:251 msgid "Contest Calendar" msgstr "" @@ -463,38 +560,62 @@ msgstr "" msgid "Contest Logging" msgstr "Регистриране на състезание" -#: application/controllers/Contesting.php:112 -#: application/views/interface_assets/header.php:274 +#: application/controllers/Contesting.php:113 +#: application/views/interface_assets/header.php:278 msgid "Contests" msgstr "" -#: application/controllers/Contesting.php:126 +#: application/controllers/Contesting.php:127 msgid "Update Contest" msgstr "" #: application/controllers/Continents.php:25 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:57 -#: application/views/interface_assets/header.php:154 +#: application/views/interface_assets/header.php:156 msgid "Continents" msgstr "" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:284 +#: application/views/interface_assets/header.php:288 msgid "Cron Manager" msgstr "" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:154 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "" +#: application/controllers/Cron.php:274 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:278 +#, php-format +msgid "" +"Last run occurred more than %s seconds ago.%sPlease check your master cron! " +"It should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:281 +#, php-format +msgid "" +"Last run occurred more than %s minutes ago.%sSeems like your Mastercron " +"isn't running!%sIt should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:286 application/views/cron/index.php:29 +msgctxt "Master Cron" +msgid "Not running" +msgstr "" + #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:392 +#: application/views/interface_assets/header.php:396 msgid "SOTA CSV Export" msgstr "" -#: application/controllers/Dashboard.php:108 -#: application/controllers/Visitor.php:132 +#: application/controllers/Dashboard.php:123 +#: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "" @@ -541,6 +662,12 @@ msgstr "" msgid "File Migration failed. Please check the Error Log." msgstr "" +#: application/controllers/Distancerecords.php:42 +#: application/controllers/Distancerecords.php:59 +#: application/views/interface_assets/header.php:146 +msgid "Satellite Distance Records" +msgstr "" + #: application/controllers/Distances.php:17 #: application/views/distances/index.php:5 #: application/views/distances/index.php:8 @@ -548,27 +675,31 @@ msgstr "" msgid "Distances Worked" msgstr "" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 #: application/views/distances/index.php:15 msgid "QSOs with" msgstr "" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 msgid "and band" msgstr "" +#: application/controllers/Distances.php:83 +msgid "and propagation" +msgstr "" + #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:394 msgid "DX Atlas Gridsquare Export" msgstr "" #: application/controllers/Dxcalendar.php:10 -#: application/views/interface_assets/header.php:245 +#: application/views/interface_assets/header.php:249 msgid "DX Calendar" msgstr "" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:325 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -586,19 +717,19 @@ msgstr "" msgid "eQSL QSO Upload" msgstr "" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:424 msgid "eQSL Tools" msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid " / Errors: " msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid "Successfully downloaded: " msgstr "" -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:481 msgid "eQSL Card Image Download" msgstr "" @@ -608,7 +739,7 @@ msgid "Gridsquare Map" msgstr "" #: application/controllers/Gridmap.php:34 -#: application/controllers/Visitor.php:377 +#: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "" @@ -628,7 +759,7 @@ msgid "No QSOs found to upload." msgstr "" #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:392 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "" @@ -641,59 +772,59 @@ msgstr "" msgid "Create Label Type" msgstr "" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:402 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:406 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:403 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:407 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 #: application/views/labels/index.php:76 msgid "Paper Type" msgstr "" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:404 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:408 #: application/views/labels/index.php:42 application/views/labels/index.php:77 msgid "Measurement" msgstr "" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:405 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:409 msgid "Top Margin" msgstr "" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:406 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:410 msgid "Left Margin" msgstr "" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:407 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:411 msgid "QSLs Horizontally" msgstr "" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:408 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:412 msgid "QSLs Vertically" msgstr "" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:409 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:413 msgid "Horizontal Space" msgstr "" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:410 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:414 msgid "Vertical Space" msgstr "" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:411 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:415 msgid "Label width" msgstr "" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:412 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:416 msgid "Label height" msgstr "" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:413 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:417 msgid "Size of Font" msgstr "" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:414 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:418 msgid "Number of QSOs on label" msgstr "" @@ -702,22 +833,22 @@ msgid "Create Paper Type" msgstr "" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:461 +#: application/controllers/Labels.php:465 msgid "Paper Name" msgstr "" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:462 +#: application/controllers/Labels.php:466 msgid "Paper Width" msgstr "" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:463 +#: application/controllers/Labels.php:467 msgid "Paper Height" msgstr "" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:471 +#: application/controllers/Labels.php:475 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -744,27 +875,27 @@ msgstr "" msgid "0 QSOs found for print!" msgstr "" -#: application/controllers/Labels.php:391 +#: application/controllers/Labels.php:395 msgid "Edit Label" msgstr "" -#: application/controllers/Labels.php:420 +#: application/controllers/Labels.php:424 msgid "Label was saved." msgstr "" -#: application/controllers/Labels.php:428 +#: application/controllers/Labels.php:432 msgid "Label was deleted." msgstr "" -#: application/controllers/Labels.php:450 +#: application/controllers/Labels.php:454 msgid "Edit Paper" msgstr "" -#: application/controllers/Labels.php:475 +#: application/controllers/Labels.php:479 msgid "Paper was saved." msgstr "" -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "Paper was deleted." msgstr "" @@ -786,20 +917,20 @@ msgstr "" msgid "Logbook" msgstr "Дневник" -#: application/controllers/Logbook.php:653 -#: application/controllers/Logbook.php:668 +#: application/controllers/Logbook.php:657 +#: application/controllers/Logbook.php:672 #: application/views/activated_gridmap/index.php:58 #: application/views/awards/dok/index.php:55 #: application/views/awards/dxcc/index.php:61 -#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/helvetia/index.php:55 #: application/views/awards/jcc/index.php:52 -#: application/views/awards/rac/index.php:45 +#: application/views/awards/rac/index.php:47 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:72 -#: application/views/awards/waja/index.php:53 -#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:55 +#: application/views/awards/was/index.php:55 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:568 +#: application/views/logbookadvanced/index.php:596 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -812,20 +943,21 @@ msgstr "Дневник" msgid "QSL" msgstr "" -#: application/controllers/Logbook.php:656 +#: application/controllers/Logbook.php:660 #: application/views/activated_gridmap/index.php:66 -#: application/views/awards/cq/index.php:58 +#: application/views/awards/cq/index.php:60 #: application/views/awards/dok/index.php:59 #: application/views/awards/dxcc/index.php:65 -#: application/views/awards/helvetia/index.php:57 -#: application/views/awards/itu/index.php:58 +#: application/views/awards/helvetia/index.php:59 +#: application/views/awards/itu/index.php:60 #: application/views/awards/jcc/index.php:56 -#: application/views/awards/rac/index.php:49 +#: application/views/awards/rac/index.php:51 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:80 -#: application/views/awards/waja/index.php:57 -#: application/views/awards/was/index.php:57 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -833,28 +965,29 @@ msgstr "" #: application/views/qslprint/qsolist.php:21 #: application/views/qslprint/qsolist.php:167 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:384 +#: application/views/qso/edit_ajax.php:411 #: application/views/search/result_search.php:22 #: application/views/search/search_result_ajax.php:298 #: application/views/search/search_result_ajax.php:313 #: application/views/timeline/index.php:60 application/views/user/edit.php:563 -#: application/views/user/edit.php:659 application/views/view_log/qso.php:408 +#: application/views/user/edit.php:659 application/views/view_log/qso.php:411 msgid "LoTW" msgstr "" -#: application/controllers/Logbook.php:659 +#: application/controllers/Logbook.php:663 #: application/views/activated_gridmap/index.php:74 -#: application/views/awards/cq/index.php:62 +#: application/views/awards/cq/index.php:64 #: application/views/awards/dok/index.php:63 #: application/views/awards/dxcc/index.php:69 -#: application/views/awards/helvetia/index.php:61 -#: application/views/awards/itu/index.php:62 +#: application/views/awards/helvetia/index.php:63 +#: application/views/awards/itu/index.php:64 #: application/views/awards/jcc/index.php:60 -#: application/views/awards/rac/index.php:53 +#: application/views/awards/rac/index.php:55 #: application/views/awards/wab/index.php:88 -#: application/views/awards/waja/index.php:61 -#: application/views/awards/was/index.php:61 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:52 +#: application/views/awards/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:117 #: application/views/logbookadvanced/useroptions.php:70 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 @@ -862,63 +995,67 @@ msgstr "" #: application/views/qslprint/qsolist.php:18 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:151 -#: application/views/qso/edit_ajax.php:381 +#: application/views/qso/edit_ajax.php:408 #: application/views/search/result_search.php:16 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:273 -#: application/views/station_profile/edit.php:278 +#: application/views/station_profile/edit.php:305 #: application/views/timeline/index.php:64 application/views/user/edit.php:564 #: application/views/user/edit.php:667 application/views/user/edit.php:731 msgid "eQSL" msgstr "" -#: application/controllers/Logbook.php:665 +#: application/controllers/Logbook.php:669 #: application/views/awards/dok/index.php:71 #: application/views/awards/dxcc/index.php:77 #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 -#: application/views/awards/waja/index.php:69 +#: application/views/awards/waja/index.php:71 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 -#: application/views/station_profile/edit.php:325 +#: application/views/station_profile/edit.php:352 +#: application/views/timeline/index.php:68 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 -#: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/partial/log_ajax.php:85 +#: application/views/view_log/qso.php:426 msgid "Clublog" msgstr "" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1284 #: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:39 #: application/views/adif/dcl_success.php:33 -#: application/views/awards/cq/index.php:86 +#: application/views/awards/cq/index.php:88 #: application/views/awards/dok/index.php:91 #: application/views/awards/dxcc/index.php:162 -#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/helvetia/index.php:87 #: application/views/awards/iota/index.php:105 -#: application/views/awards/itu/index.php:86 +#: application/views/awards/itu/index.php:88 #: application/views/awards/jcc/index.php:88 -#: application/views/awards/rac/index.php:77 +#: application/views/awards/rac/index.php:79 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:53 -#: application/views/awards/waja/index.php:89 -#: application/views/awards/was/index.php:85 +#: application/views/awards/wac/index.php:110 +#: application/views/awards/waja/index.php:91 +#: application/views/awards/was/index.php:87 #: application/views/components/hamsat/table.php:30 -#: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:203 +#: application/views/contesting/index.php:108 +#: application/views/contesting/index.php:250 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 +#: 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/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:170 -#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/index.php:181 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -935,14 +1072,14 @@ msgstr "" #: application/views/qslcard/searchresult.php:76 #: application/views/qslprint/qslprint.php:24 #: application/views/qslprint/qsolist.php:9 -#: application/views/qso/components/previous_contacts.php:78 +#: application/views/qso/components/previous_contacts.php:77 #: application/views/qso/edit_ajax.php:119 application/views/qso/index.php:136 #: application/views/satellite/index.php:24 #: application/views/search/cqzones_result.php:10 #: application/views/search/lotw_unconfirmed_result.php:8 #: application/views/search/result_search.php:7 #: application/views/search/search_result_ajax.php:4 -#: application/views/simplefle/index.php:144 +#: application/views/simplefle/index.php:150 #: application/views/statistics/custom.php:60 #: application/views/statistics/custom_result.php:62 #: application/views/statistics/custom_result.php:88 @@ -954,17 +1091,17 @@ msgstr "" #: application/views/user/edit.php:295 application/views/user/edit.php:318 #: application/views/view_log/partial/log.php:9 #: application/views/view_log/partial/log_ajax.php:4 -#: application/views/view_log/qso.php:104 application/views/visitor/index.php:6 +#: application/views/view_log/qso.php:107 application/views/visitor/index.php:6 #: application/views/widgets/qsos.php:29 msgid "Mode" msgstr "Режим" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1285 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:111 -#: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:547 +#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:251 +#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -973,25 +1110,25 @@ msgstr "Режим" #: application/views/qslcard/searchresult.php:77 #: application/views/qslprint/qslprint.php:26 #: application/views/qslprint/qsolist.php:11 -#: application/views/qso/components/previous_contacts.php:79 +#: application/views/qso/components/previous_contacts.php:78 #: application/views/qso/edit_ajax.php:142 application/views/qso/index.php:177 #: application/views/search/search_result_ajax.php:5 -#: application/views/simplefle/index.php:145 +#: application/views/simplefle/index.php:151 #: application/views/user/edit.php:230 application/views/user/edit.php:252 #: application/views/user/edit.php:274 application/views/user/edit.php:296 #: application/views/user/edit.php:319 #: application/views/view_log/partial/log.php:10 #: application/views/view_log/partial/log_ajax.php:5 -#: application/views/view_log/qso.php:109 application/views/visitor/index.php:9 +#: application/views/view_log/qso.php:112 application/views/visitor/index.php:9 msgid "RST (S)" msgstr "" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1286 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:550 +#: application/views/contesting/index.php:189 +#: application/views/contesting/index.php:252 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1000,51 +1137,50 @@ msgstr "" #: application/views/qslcard/searchresult.php:78 #: application/views/qslprint/qslprint.php:27 #: application/views/qslprint/qsolist.php:12 -#: application/views/qso/components/previous_contacts.php:80 +#: application/views/qso/components/previous_contacts.php:79 #: application/views/qso/edit_ajax.php:147 application/views/qso/index.php:182 #: application/views/search/search_result_ajax.php:6 -#: application/views/simplefle/index.php:146 +#: application/views/simplefle/index.php:152 #: application/views/user/edit.php:231 application/views/user/edit.php:253 #: application/views/user/edit.php:275 application/views/user/edit.php:297 #: application/views/user/edit.php:320 #: application/views/view_log/partial/log.php:11 #: application/views/view_log/partial/log_ajax.php:6 -#: application/views/view_log/qso.php:114 +#: application/views/view_log/qso.php:117 #: application/views/visitor/index.php:12 msgid "RST (R)" msgstr "" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1287 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 #: application/views/qslcard/searchresult.php:47 #: application/views/qslcard/searchresult.php:63 #: application/views/qslcard/searchresult.php:79 -#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/components/previous_contacts.php:80 #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 -#: application/views/station_profile/index.php:43 #: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 -#: application/views/timeline/index.php:118 application/views/user/edit.php:232 +#: application/views/timeline/index.php:151 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 #: application/views/user/edit.php:298 application/views/user/edit.php:321 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:235 -#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:238 +#: application/views/view_log/qso.php:531 #: application/views/visitor/index.php:15 msgid "Country" msgstr "Държава" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1288 #: application/views/awards/iota/index.php:169 #: application/views/bands/index.php:50 application/views/dashboard/index.php:8 -#: application/views/interface_assets/header.php:180 +#: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1053,11 +1189,11 @@ msgstr "Държава" #: application/views/qslcard/searchresult.php:48 #: application/views/qslcard/searchresult.php:64 #: application/views/qslcard/searchresult.php:80 -#: application/views/qso/components/previous_contacts.php:82 -#: application/views/qso/edit_ajax.php:318 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 -#: application/views/timeline/index.php:202 application/views/user/edit.php:233 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:235 application/views/user/edit.php:233 #: application/views/user/edit.php:255 application/views/user/edit.php:277 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/view_log/partial/log_ajax.php:8 @@ -1065,17 +1201,17 @@ msgstr "Държава" msgid "IOTA" msgstr "" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1292 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:20 -#: application/views/awards/rac/index.php:141 -#: application/views/awards/was/index.php:149 -#: application/views/contesting/index.php:173 +#: application/views/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 +#: application/views/contesting/index.php:56 #: application/views/dashboard/index.php:12 -#: application/views/logbookadvanced/edit.php:20 -#: application/views/logbookadvanced/edit.php:64 -#: application/views/logbookadvanced/index.php:162 -#: application/views/logbookadvanced/index.php:583 +#: application/views/logbookadvanced/edit.php:21 +#: application/views/logbookadvanced/edit.php:66 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:611 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1083,9 +1219,9 @@ msgstr "" #: application/views/qslcard/searchresult.php:50 #: application/views/qslcard/searchresult.php:66 #: application/views/qslcard/searchresult.php:82 -#: application/views/qso/components/previous_contacts.php:86 +#: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 -#: application/views/timeline/index.php:177 application/views/user/edit.php:237 +#: application/views/timeline/index.php:210 application/views/user/edit.php:237 #: application/views/user/edit.php:259 application/views/user/edit.php:281 #: application/views/user/edit.php:303 application/views/user/edit.php:326 #: application/views/view_log/partial/log_ajax.php:12 @@ -1093,20 +1229,21 @@ msgstr "" msgid "State" msgstr "" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1293 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:17 -#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:13 +#: application/views/distancerecords/index.php:20 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:166 -#: application/views/logbookadvanced/index.php:556 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1115,38 +1252,39 @@ msgstr "" #: application/views/qslcard/searchresult.php:51 #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 -#: application/views/qso/components/previous_contacts.php:87 +#: application/views/qso/components/previous_contacts.php:86 #: application/views/qso/edit_ajax.php:156 application/views/qso/index.php:279 +#: application/views/satellite/pass.php:28 #: application/views/search/cqzones_result.php:12 #: application/views/search/result.php:33 #: application/views/search/search_result_ajax.php:13 -#: application/views/simplefle/index.php:147 -#: application/views/station_profile/index.php:44 +#: application/views/simplefle/index.php:153 #: application/views/stationsetup/stationsetup.php:125 -#: application/views/timeline/index.php:257 application/views/user/edit.php:130 +#: application/views/timeline/index.php:290 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 #: application/views/user/edit.php:327 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:518 #: application/views/visitor/index.php:27 msgid "Gridsquare" msgstr "" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1294 #: application/views/activated_gridmap/index.php:108 #: application/views/awards/ffma/index.php:36 #: application/views/awards/gridmaster/index.php:35 #: 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/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/index.php:12 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 #: application/views/qslcard/searchresult.php:52 #: application/views/qslcard/searchresult.php:68 #: application/views/qslcard/searchresult.php:84 -#: application/views/qso/components/previous_contacts.php:88 +#: application/views/qso/components/previous_contacts.php:87 #: application/views/search/search_result_ajax.php:14 #: application/views/user/edit.php:239 application/views/user/edit.php:261 #: application/views/user/edit.php:283 application/views/user/edit.php:305 @@ -1156,32 +1294,33 @@ msgstr "" msgid "Distance" msgstr "" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1295 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:8 -#: application/views/activators/index.php:7 +#: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 -#: application/views/awards/cq/index.php:72 +#: application/views/awards/cq/index.php:74 #: application/views/awards/dok/index.php:77 #: application/views/awards/dxcc/index.php:117 -#: application/views/awards/helvetia/index.php:71 +#: application/views/awards/helvetia/index.php:73 #: application/views/awards/iota/index.php:91 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:74 #: application/views/awards/jcc/index.php:74 #: application/views/awards/pota/index.php:35 -#: application/views/awards/rac/index.php:63 +#: application/views/awards/rac/index.php:65 #: application/views/awards/sig/qso_list.php:13 #: application/views/awards/sota/index.php:26 #: application/views/awards/vucc/index.php:21 #: application/views/awards/wab/index.php:22 -#: application/views/awards/waja/index.php:75 -#: application/views/awards/was/index.php:71 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/waja/index.php:77 +#: application/views/awards/was/index.php:73 #: application/views/awards/wwff/index.php:35 #: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:45 -#: application/views/contesting/index.php:70 -#: application/views/contesting/index.php:202 +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:249 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:549 application/views/dxatlas/index.php:31 @@ -1189,8 +1328,8 @@ msgstr "" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1208,13 +1347,13 @@ msgstr "" #: application/views/qslmanagement/index.php:24 #: application/views/qslprint/qslprint.php:25 #: application/views/qslprint/qsolist.php:10 -#: application/views/qso/components/previous_contacts.php:89 +#: application/views/qso/components/previous_contacts.php:88 #: application/views/qso/edit_ajax.php:83 application/views/qso/index.php:151 #: application/views/search/cqzones_result.php:11 #: application/views/search/lotw_unconfirmed_result.php:9 #: application/views/search/result_search.php:10 #: application/views/search/search_result_ajax.php:15 -#: application/views/simplefle/index.php:143 +#: application/views/simplefle/index.php:149 #: application/views/stationsetup/exportmapoptions.php:31 #: application/views/statistics/custom.php:53 #: application/views/statistics/custom_result.php:55 @@ -1232,72 +1371,71 @@ msgstr "" msgid "Band" msgstr "Обхват" -#: application/controllers/Logbook.php:1285 +#: application/controllers/Logbook.php:1296 #: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 -#: application/views/contesting/index.php:87 +#: application/views/contesting/index.php:138 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 #: application/views/qslcard/searchresult.php:70 #: application/views/qslcard/searchresult.php:86 -#: application/views/qso/components/previous_contacts.php:90 +#: application/views/qso/components/previous_contacts.php:89 #: application/views/qso/edit_ajax.php:71 application/views/qso/index.php:169 #: application/views/search/search_result_ajax.php:16 #: application/views/user/edit.php:228 application/views/user/edit.php:250 #: application/views/user/edit.php:272 application/views/user/edit.php:294 #: application/views/user/edit.php:317 #: application/views/view_log/partial/log_ajax.php:16 -#: application/views/view_log/qso.php:93 application/views/visitor/index.php:36 +#: application/views/view_log/qso.php:94 application/views/visitor/index.php:36 msgid "Frequency" msgstr "Честота" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1297 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:283 -#: application/views/logbookadvanced/index.php:598 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:626 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 #: application/views/qslcard/searchresult.php:87 -#: application/views/qso/components/previous_contacts.php:91 +#: application/views/qso/components/previous_contacts.php:90 #: application/views/search/search_result_ajax.php:17 #: application/views/simplefle/index.php:112 #: application/views/user/edit.php:240 application/views/user/edit.php:262 #: application/views/user/edit.php:284 application/views/user/edit.php:306 #: application/views/user/edit.php:329 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:538 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1318 #: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:669 +#: application/views/interface_assets/footer.php:675 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:154 +#: application/views/logbookadvanced/index.php:165 #: application/views/lookup/index.php:31 -#: application/views/lotw_views/index.php:56 +#: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 #: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 -#: application/views/station_profile/create.php:73 -#: application/views/station_profile/edit.php:78 -#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 #: application/views/stationsetup/stationsetup.php:150 -#: application/views/timeline/index.php:134 +#: application/views/timeline/index.php:167 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 -#: application/views/view_log/qso.php:236 -#: application/views/view_log/qso.php:529 +#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:532 msgid "Deleted DXCC" msgstr "" @@ -1311,7 +1449,7 @@ msgstr "" #: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83 #: application/controllers/Lotw.php:125 application/views/adif/import.php:27 -#: application/views/interface_assets/header.php:423 +#: application/views/interface_assets/header.php:429 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1319,28 +1457,55 @@ msgstr "" msgid "Logbook of the World" msgstr "" -#: application/controllers/Lotw.php:610 +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "" + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "" + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "" + +#: application/controllers/Lotw.php:413 +#, 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:617 msgid "LoTW ADIF Information" msgstr "" -#: application/controllers/Lotw.php:718 +#: application/controllers/Lotw.php:725 msgid "LoTW ADIF Import" msgstr "" -#: application/controllers/Lotw.php:830 +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "" + +#: application/controllers/Lotw.php:837 msgid "LoTW .TQ8 Upload" msgstr "" -#: application/controllers/Lotw.php:927 application/controllers/Lotw.php:932 +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "" + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 msgid "LoTW .TQ8 Sent" msgstr "" -#: application/controllers/Lotw.php:939 +#: application/controllers/Lotw.php:946 msgid "LoTW .TQ8 Not Sent" msgstr "" #: application/controllers/Mode.php:25 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:276 #: application/views/mode/index.php:15 msgid "Modes" msgstr "" @@ -1349,28 +1514,28 @@ msgstr "" msgid "Edit Mode" msgstr "" -#: application/controllers/Notes.php:19 +#: application/controllers/Notes.php:18 #: application/views/interface_assets/header.php:128 #: application/views/notes/add.php:9 application/views/notes/edit.php:10 #: application/views/notes/main.php:5 application/views/notes/main.php:8 #: application/views/notes/view.php:6 application/views/notes/view.php:9 #: application/views/qso/edit_ajax.php:36 -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:38 -#: application/views/qso/index.php:541 application/views/qso/index.php:586 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:590 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:38 +#: application/views/qso/index.php:563 application/views/qso/index.php:608 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:593 msgid "Notes" msgstr "Бележки" -#: application/controllers/Notes.php:38 +#: application/controllers/Notes.php:37 msgid "Add Notes" msgstr "" -#: application/controllers/Notes.php:58 +#: application/controllers/Notes.php:64 #: application/views/oqrs/showrequests.php:88 msgid "Note" msgstr "" -#: application/controllers/Notes.php:79 application/views/notes/edit.php:7 +#: application/controllers/Notes.php:92 application/views/notes/edit.php:7 #: application/views/notes/view.php:19 msgid "Edit Note" msgstr "Редактиране на бележката" @@ -1378,16 +1543,16 @@ msgstr "Редактиране на бележката" #: application/controllers/Options.php:31 #: application/controllers/Options.php:41 #: application/controllers/Options.php:56 -#: application/controllers/Options.php:136 -#: application/controllers/Options.php:147 -#: application/controllers/Options.php:184 -#: application/controllers/Options.php:195 -#: application/controllers/Options.php:228 -#: application/controllers/Options.php:239 -#: application/controllers/Options.php:309 -#: application/controllers/Options.php:319 -#: application/controllers/Options.php:387 -#: application/controllers/Options.php:397 +#: application/controllers/Options.php:144 +#: application/controllers/Options.php:155 +#: application/controllers/Options.php:192 +#: application/controllers/Options.php:203 +#: application/controllers/Options.php:236 +#: application/controllers/Options.php:247 +#: application/controllers/Options.php:317 +#: application/controllers/Options.php:327 +#: application/controllers/Options.php:395 +#: application/controllers/Options.php:405 msgid "Wavelog Options" msgstr "" @@ -1404,95 +1569,96 @@ msgstr "" #: application/controllers/Options.php:110 #: application/controllers/Options.php:118 #: application/controllers/Options.php:126 +#: application/controllers/Options.php:134 msgid "Options saved" msgstr "" -#: application/controllers/Options.php:165 +#: application/controllers/Options.php:173 msgid "de continent changed to " msgstr "" -#: application/controllers/Options.php:170 +#: application/controllers/Options.php:178 msgid "Maximum age of spots changed to " msgstr "" -#: application/controllers/Options.php:175 +#: application/controllers/Options.php:183 msgid "DXCluster Cache URL changed to " msgstr "" -#: application/controllers/Options.php:185 -#: application/controllers/Options.php:196 +#: application/controllers/Options.php:193 +#: application/controllers/Options.php:204 msgid "Radio Settings" msgstr "" -#: application/controllers/Options.php:217 +#: application/controllers/Options.php:225 msgid "Radio Timeout Warning changed to " msgstr "" -#: application/controllers/Options.php:229 -#: application/controllers/Options.php:240 +#: application/controllers/Options.php:237 +#: application/controllers/Options.php:248 #: application/views/options/sidebar.php:6 msgid "Email" msgstr "" -#: application/controllers/Options.php:297 +#: application/controllers/Options.php:305 msgid "The settings were saved successfully." msgstr "" -#: application/controllers/Options.php:299 +#: application/controllers/Options.php:307 msgid "Something went wrong with saving the settings. Try again." msgstr "" -#: application/controllers/Options.php:310 -#: application/controllers/Options.php:320 +#: application/controllers/Options.php:318 +#: application/controllers/Options.php:328 #: application/views/options/sidebar.php:8 msgid "OQRS Options" msgstr "" -#: application/controllers/Options.php:333 +#: application/controllers/Options.php:341 msgid "OQRS options have been saved." msgstr "" -#: application/controllers/Options.php:373 -#: application/controllers/Options.php:378 +#: application/controllers/Options.php:381 +#: application/controllers/Options.php:386 msgid "Testmail failed. Something went wrong." msgstr "" -#: application/controllers/Options.php:375 +#: application/controllers/Options.php:383 msgid "Testmail sent. Email settings seem to be correct." msgstr "" -#: application/controllers/Options.php:388 -#: application/controllers/Options.php:398 +#: application/controllers/Options.php:396 +#: application/controllers/Options.php:406 msgid "Version Info Settings" msgstr "" -#: application/controllers/Options.php:404 +#: application/controllers/Options.php:412 msgid "Version Info Header changed to" msgstr "" -#: application/controllers/Options.php:408 +#: application/controllers/Options.php:416 msgid "Version Info Mode changed to" msgstr "" -#: application/controllers/Options.php:413 +#: application/controllers/Options.php:421 msgid "Version Info Custom Text saved!" msgstr "" -#: application/controllers/Options.php:424 +#: application/controllers/Options.php:432 msgid "Version Info will be shown to all users again" msgstr "" -#: application/controllers/Options.php:432 +#: application/controllers/Options.php:440 msgid "Version Info will not be shown to any user" msgstr "" -#: application/controllers/Oqrs.php:22 application/controllers/Oqrs.php:61 -#: application/controllers/Oqrs.php:73 +#: application/controllers/Oqrs.php:46 application/controllers/Oqrs.php:85 +#: application/controllers/Oqrs.php:97 msgid "Log Search & OQRS" msgstr "" -#: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:413 +#: application/controllers/Oqrs.php:127 +#: application/views/interface_assets/header.php:419 msgid "OQRS Requests" msgstr "" @@ -1500,8 +1666,46 @@ msgstr "" msgid "QRB Calculator" msgstr "" +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "" + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" + #: application/controllers/Qrz.php:173 -#: application/views/interface_assets/header.php:426 +#: application/views/interface_assets/header.php:432 msgid "QRZ Logbook" msgstr "" @@ -1513,8 +1717,8 @@ msgstr "" msgid "QRZ ADIF Information" msgstr "" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:261 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:277 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1537,13 +1741,13 @@ msgid "Add QSO" msgstr "" #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Hardware Interfaces" msgstr "" #: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 +#: application/views/contesting/index.php:143 #: application/views/qso/index.php:312 msgid "Radio" msgstr "Радио" @@ -1553,10 +1757,10 @@ msgid "Timestamp" msgstr "" #: application/controllers/Radio.php:52 -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 +#: application/views/logbookadvanced/index.php:550 +#: application/views/lotw_views/index.php:43 #: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 +#: application/views/simplefle/index.php:177 #: application/views/stationsetup/exportmapoptions.php:5 #: application/views/statistics/custom.php:31 #: application/views/statistics/custom_result.php:33 @@ -1564,7 +1768,7 @@ msgid "Options" msgstr "" #: application/controllers/Radio.php:90 -#: application/views/contesting/index.php:96 +#: application/views/contesting/index.php:147 #: application/views/qso/index.php:316 msgid "last updated" msgstr "" @@ -1580,26 +1784,24 @@ msgstr "" #: application/controllers/Radio.php:105 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2323 -#: application/views/interface_assets/footer.php:2341 -#: application/views/interface_assets/footer.php:2362 -#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2337 +#: application/views/interface_assets/footer.php:2355 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 #: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:514 -#: application/views/lotw_views/index.php:118 +#: application/views/logbookadvanced/index.php:542 +#: application/views/lotw_views/index.php:114 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 #: application/views/qslcard/index.php:65 #: application/views/satellite/edit.php:40 #: application/views/satellite/index.php:26 #: application/views/search/stored_queries.php:22 -#: application/views/station_profile/index.php:55 -#: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 #: application/views/stationsetup/stationsetup.php:137 #: application/views/stationsetup/stationsetup.php:192 -#: application/views/themes/index.php:107 application/views/user/main.php:54 -#: application/views/view_log/qso.php:613 +#: application/views/themes/index.php:107 application/views/user/index.php:57 +#: application/views/view_log/qso.php:616 msgid "Delete" msgstr "" @@ -1607,11 +1809,15 @@ msgstr "" msgid "No CAT interfaced radios found." msgstr "" -#: application/controllers/Satellite.php:37 +#: application/controllers/Reg1test.php:25 +msgid "Export EDI" +msgstr "" + +#: application/controllers/Satellite.php:39 msgid "Create Satellite" msgstr "" -#: application/controllers/Satellite.php:60 +#: application/controllers/Satellite.php:66 msgid "Edit Satellite" msgstr "" @@ -1624,10 +1830,7 @@ msgstr "" #: application/views/awards/counties/index.php:8 #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:19 -#: application/views/awards/was/index.php:21 -#: application/views/dashboard/index.php:64 -#: application/views/dashboard/index.php:73 -#: application/views/dashboard/index.php:82 +#: application/views/awards/was/index.php:23 #: application/views/simplefle/index.php:16 msgid "here" msgstr "" @@ -1639,9 +1842,10 @@ msgstr "" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:336 -#: application/views/interface_assets/header.php:343 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:340 +#: application/views/interface_assets/header.php:347 +#: application/views/logbookadvanced/index.php:538 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1655,8 +1859,8 @@ msgstr "" #: application/views/search/lotw_unconfirmed.php:37 #: application/views/search/main.php:4 application/views/search/main.php:12 #: application/views/search/main.php:33 -#: application/views/visitor/layout/header.php:99 -#: application/views/visitor/layout/header.php:100 +#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:98 msgid "Search" msgstr "" @@ -1674,15 +1878,23 @@ msgid "" "date" msgstr "" -#: application/controllers/Station.php:35 -#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/controllers/Station.php:36 +#: application/controllers/Stationsetup.php:226 +msgid "Create Station Location" +msgstr "" + +#: application/controllers/Station.php:51 +msgid "Edit Station Location: " +msgstr "" + +#: application/controllers/Station.php:59 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 -#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/edit.php:19 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:427 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 @@ -1690,22 +1902,13 @@ msgstr "" msgid "Station Location" msgstr "Местоположение на станцията" -#: application/controllers/Station.php:55 -#: application/controllers/Stationsetup.php:226 -msgid "Create Station Location" -msgstr "" - -#: application/controllers/Station.php:70 -msgid "Edit Station Location: " -msgstr "" - -#: application/controllers/Station.php:92 +#: application/controllers/Station.php:73 msgid "Duplicate Station Location:" msgstr "" #: application/controllers/Stationsetup.php:35 -#: application/views/interface_assets/header.php:377 -#: application/views/interface_assets/header.php:488 +#: application/views/interface_assets/header.php:381 +#: application/views/interface_assets/header.php:494 msgid "Station Setup" msgstr "" @@ -1723,7 +1926,7 @@ msgstr "" #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 #: application/controllers/Stationsetup.php:436 -#: application/views/qso/index.php:608 +#: application/views/qso/index.php:630 msgid "Error" msgstr "" @@ -1755,9 +1958,10 @@ msgstr "" #: application/views/options/appearance.php:83 #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 +#: application/views/options/appearance.php:110 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:259 -#: application/views/station_profile/edit.php:312 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 msgid "Disabled" @@ -1769,7 +1973,7 @@ msgid "Set as Active Logbook" msgstr "" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:486 +#: application/views/interface_assets/header.php:492 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1792,20 +1996,17 @@ msgid "Are you sure you want to delete the public slug?" msgstr "" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "" "Are you sure you want to make the following station the active station: " msgstr "" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "" #: application/controllers/Stationsetup.php:351 -#: application/views/station_profile/index.php:71 #: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "" @@ -1814,54 +2015,45 @@ msgstr "" #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:28 -#: application/views/station_profile/index.php:76 #: application/views/stationsetup/stationsetup.php:161 -#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/user/index.php:90 application/views/user/index.php:92 msgid "QSO" msgstr "" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 -#: application/views/cron/index.php:56 -#: application/views/interface_assets/footer.php:535 -#: application/views/interface_assets/footer.php:544 +#: application/views/cron/index.php:58 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 #: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:541 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 -#: application/views/station_profile/index.php:46 -#: application/views/station_profile/index.php:79 #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 -#: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/views/themes/index.php:104 application/views/user/index.php:52 msgid "Edit" msgstr "" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:99 #: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:54 -#: application/views/station_profile/index.php:101 #: application/views/stationsetup/stationsetup.php:136 #: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "" #: application/controllers/Stationsetup.php:367 -#: application/views/station_profile/index.php:47 -#: application/views/station_profile/index.php:82 #: application/views/stationsetup/stationsetup.php:129 #: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "" #: application/controllers/Stationsetup.php:372 -#: application/views/station_profile/index.php:105 #: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "" @@ -1894,7 +2086,7 @@ msgid "QSL Statistics" msgstr "" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:282 msgid "Themes" msgstr "" @@ -1906,14 +2098,14 @@ msgstr "" msgid "Edit Theme" msgstr "" -#: application/controllers/Timeline.php:17 -#: application/views/interface_assets/header.php:148 +#: application/controllers/Timeline.php:15 +#: application/views/interface_assets/header.php:150 #: application/views/timeline/index.php:2 msgid "Timeline" msgstr "" #: application/controllers/Timeplotter.php:17 -#: application/views/interface_assets/header.php:152 +#: application/views/interface_assets/header.php:154 #: application/views/timeplotter/index.php:9 msgid "Timeplotter" msgstr "" @@ -1954,130 +2146,154 @@ msgstr "" msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:268 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:272 msgid "User Accounts" msgstr "" -#: application/controllers/User.php:52 +#: application/controllers/User.php:76 msgid "Add User" msgstr "" -#: application/controllers/User.php:166 +#: application/controllers/User.php:190 msgid "Users" msgstr "" -#: application/controllers/User.php:240 application/controllers/User.php:673 +#: application/controllers/User.php:264 application/controllers/User.php:697 msgid "Edit User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 -#: application/views/user/main.php:3 application/views/user/main.php:46 +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 msgid "User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 +#: application/controllers/User.php:689 application/controllers/User.php:692 msgid "edited" msgstr "" -#: application/controllers/User.php:722 +#: application/controllers/User.php:746 msgid "Profile" msgstr "" -#: application/controllers/User.php:779 +#: application/controllers/User.php:803 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "" -#: application/controllers/User.php:843 application/controllers/User.php:853 +#: application/controllers/User.php:867 application/controllers/User.php:877 msgid "Login failed. Try again." msgstr "" -#: application/controllers/User.php:860 -#: application/views/interface_assets/header.php:356 -#: application/views/user/login.php:89 -#: application/views/visitor/layout/header.php:88 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:360 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "" -#: application/controllers/User.php:868 -msgid "User logged in" -msgstr "" - -#: application/controllers/User.php:899 +#: application/controllers/User.php:922 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " "Only administrators are currently allowed to log in." msgstr "" -#: application/controllers/User.php:902 +#: application/controllers/User.php:925 msgid "Incorrect username or password!" msgstr "" -#: application/controllers/User.php:919 +#: application/controllers/User.php:942 #, php-format msgid "User %s logged out." msgstr "" -#: application/controllers/User.php:933 +#: application/controllers/User.php:956 msgid "Password Reset is disabled on the Demo!" msgstr "" -#: application/controllers/User.php:946 +#: application/controllers/User.php:969 msgid "Forgot Password" msgstr "" -#: application/controllers/User.php:996 application/views/user/main.php:8 +#: application/controllers/User.php:1019 application/views/user/index.php:8 msgid "Email settings are incorrect." msgstr "" -#: application/controllers/User.php:1000 application/controllers/User.php:1005 +#: application/controllers/User.php:1023 application/controllers/User.php:1028 msgid "Password Reset Processed." msgstr "" -#: application/controllers/User.php:1107 +#: application/controllers/User.php:1129 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "" +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "" + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "" + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "" + #: application/controllers/Visitor.php:50 -#: application/controllers/Visitor.php:79 -#: application/controllers/Visitor.php:142 -#: application/controllers/Visitor.php:169 -#: application/controllers/Visitor.php:199 -#: application/controllers/Visitor.php:478 +#: application/controllers/Visitor.php:81 +#: application/controllers/Visitor.php:148 +#: application/controllers/Visitor.php:175 +#: application/controllers/Visitor.php:210 +#: application/controllers/Visitor.php:472 #: application/controllers/Widgets.php:40 msgid "Unknown Public Page." msgstr "" -#: application/controllers/Visitor.php:74 -#: application/controllers/Visitor.php:165 -#: application/controllers/Visitor.php:195 -#: application/controllers/Visitor.php:474 +#: application/controllers/Visitor.php:76 +#: application/controllers/Visitor.php:171 +#: application/controllers/Visitor.php:206 +#: application/controllers/Visitor.php:468 #: application/controllers/Widgets.php:36 msgid "Empty Logbook" msgstr "" -#: application/controllers/Visitor.php:205 +#: application/controllers/Visitor.php:216 msgid "Satellite Gridsquare Map" msgstr "" -#: application/controllers/Visitor.php:411 +#: application/controllers/Visitor.php:405 #: application/views/stationsetup/stationsetup.php:35 msgid "Public Search" msgstr "" -#: application/controllers/Visitor.php:444 +#: application/controllers/Visitor.php:438 msgid "Export Map" msgstr "" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:427 +#: application/views/interface_assets/header.php:433 msgid "QO-100 Dx Club Upload" msgstr "" @@ -2089,6 +2305,84 @@ msgstr "" msgid "No stations found that are using Wavelog OQRS." msgstr "" +#: application/libraries/Subdivisions.php:31 +msgctxt "Division Name (States in various countries)." +msgid "Province" +msgstr "" + +#: application/libraries/Subdivisions.php:39 +msgctxt "Division Name (States in various countries)." +msgid "Oblast" +msgstr "" + +#: application/libraries/Subdivisions.php:41 +#: application/libraries/Subdivisions.php:47 +msgctxt "Division Name (States in various countries)." +msgid "Region" +msgstr "" + +#: application/libraries/Subdivisions.php:45 +msgctxt "Division Name (States in various countries)." +msgid "Department" +msgstr "" + +#: application/libraries/Subdivisions.php:49 +msgctxt "Division Name (States in various countries)." +msgid "Municipality" +msgstr "" + +#: application/libraries/Subdivisions.php:51 +msgctxt "Division Name (States in various countries)." +msgid "Federal State" +msgstr "" + +#: application/libraries/Subdivisions.php:56 +#: application/libraries/Subdivisions.php:94 +msgctxt "Division Name (States in various countries)." +msgid "County" +msgstr "" + +#: application/libraries/Subdivisions.php:60 +#: application/libraries/Subdivisions.php:85 +msgctxt "Division Name (States in various countries)." +msgid "District" +msgstr "" + +#: application/libraries/Subdivisions.php:62 +msgctxt "Division Name (States in various countries)." +msgid "Canton" +msgstr "" + +#: application/libraries/Subdivisions.php:64 +msgctxt "Division Name (States in various countries)." +msgid "US State" +msgstr "" + +#: application/libraries/Subdivisions.php:67 +msgctxt "Division Name (States in various countries)." +msgid "Prefecture" +msgstr "" + +#: application/libraries/Subdivisions.php:69 +msgctxt "Division Name (States in various countries)." +msgid "State" +msgstr "" + +#: application/libraries/Subdivisions.php:78 +msgctxt "Division Name (States in various countries)." +msgid "US County" +msgstr "" + +#: application/libraries/Subdivisions.php:90 +msgctxt "Division Name (States in various countries)." +msgid "DME" +msgstr "" + +#: application/libraries/Subdivisions.php:92 +msgctxt "Division Name (States in various countries)." +msgid "City / Ku / Gun" +msgstr "" + #: application/models/Eqslmethods_model.php:281 msgid "Your eQSL username and/or password is incorrect." msgstr "" @@ -2125,31 +2419,31 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4255 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4261 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4266 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4269 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4272 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4275 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4278 msgid "unknown" msgstr "" @@ -2178,7 +2472,7 @@ msgid "Accumulated number of WAJA worked" msgstr "" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:222 +#: application/views/dashboard/index.php:238 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2191,7 +2485,7 @@ msgid "Yearly" msgstr "" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:243 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Месец" @@ -2207,29 +2501,33 @@ msgstr "" #: application/views/accumulate/index.php:24 #: application/views/accumulate/index.php:34 +#: application/views/accumulate/index.php:83 #: application/views/activated_gridmap/index.php:10 #: application/views/activated_gridmap/index.php:22 #: application/views/activated_gridmap/index.php:32 #: application/views/activated_gridmap/index.php:41 -#: application/views/activators/index.php:10 -#: application/views/awards/cq/index.php:75 -#: application/views/awards/cq/index.php:89 +#: application/views/activators/index.php:13 +#: application/views/awards/cq/index.php:77 +#: application/views/awards/cq/index.php:91 #: application/views/awards/dok/index.php:94 #: application/views/awards/dxcc/index.php:134 #: application/views/awards/dxcc/index.php:150 #: application/views/awards/dxcc/index.php:165 -#: application/views/awards/helvetia/index.php:88 +#: application/views/awards/helvetia/index.php:90 #: application/views/awards/iota/index.php:108 -#: application/views/awards/itu/index.php:75 -#: application/views/awards/itu/index.php:89 +#: application/views/awards/itu/index.php:77 +#: application/views/awards/itu/index.php:91 #: application/views/awards/jcc/index.php:91 -#: application/views/awards/rac/index.php:80 +#: application/views/awards/rac/index.php:82 #: application/views/awards/wab/index.php:24 #: application/views/awards/wab/index.php:36 #: application/views/awards/wab/index.php:46 #: application/views/awards/wab/index.php:55 -#: application/views/awards/waja/index.php:92 -#: application/views/awards/was/index.php:88 +#: application/views/awards/wac/index.php:81 +#: application/views/awards/wac/index.php:97 +#: application/views/awards/wac/index.php:113 +#: application/views/awards/waja/index.php:94 +#: application/views/awards/was/index.php:90 #: application/views/bandmap/list.php:71 application/views/bandmap/list.php:78 #: application/views/bandmap/list.php:90 application/views/bands/index.php:117 #: application/views/cabrillo/index.php:65 @@ -2240,6 +2538,7 @@ msgstr "" #: application/views/csv/index.php:94 application/views/distances/index.php:21 #: application/views/distances/index.php:36 #: application/views/distances/index.php:46 +#: application/views/distances/index.php:56 #: application/views/dxatlas/index.php:21 #: application/views/dxatlas/index.php:33 #: application/views/dxatlas/index.php:44 @@ -2251,28 +2550,29 @@ msgstr "" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1435 -#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1448 +#: application/views/interface_assets/footer.php:1587 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:172 #: application/views/logbookadvanced/index.php:183 #: application/views/logbookadvanced/index.php:194 -#: application/views/logbookadvanced/index.php:203 -#: application/views/logbookadvanced/index.php:212 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:205 +#: application/views/logbookadvanced/index.php:214 +#: application/views/logbookadvanced/index.php:223 #: application/views/logbookadvanced/index.php:248 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:321 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:374 -#: application/views/logbookadvanced/index.php:385 -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:259 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:423 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2283,11 +2583,12 @@ msgstr "" #: application/views/stationsetup/exportmapoptions.php:33 #: application/views/timeline/index.php:10 #: application/views/timeline/index.php:22 +#: application/views/timeline/index.php:77 #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 #: application/views/user/edit.php:633 -#: application/views/visitor/layout/footer.php:169 +#: application/views/visitor/layout/footer.php:171 msgid "All" msgstr "" @@ -2325,29 +2626,254 @@ msgstr "" msgid "Period" msgstr "" -#: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: application/views/accumulate/index.php:80 +#: application/views/distances/index.php:53 +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/timeline/index.php:74 +msgid "Propagation" +msgstr "" + +#: application/views/accumulate/index.php:84 +#: application/views/distances/index.php:57 +#: application/views/timeline/index.php:78 +msgid "All but SAT" +msgstr "" + +#: application/views/accumulate/index.php:85 +#: application/views/distances/index.php:58 +#: application/views/gridmap/index.php:42 +#: application/views/logbookadvanced/edit.php:142 +#: application/views/logbookadvanced/index.php:307 +#: application/views/timeline/index.php:79 +msgid "None/Empty" +msgstr "" + +#: application/views/accumulate/index.php:86 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/logbookadvanced/index.php:225 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:414 +#: application/views/timeline/index.php:80 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/accumulate/index.php:87 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/logbookadvanced/index.php:226 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:415 +#: application/views/timeline/index.php:81 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/accumulate/index.php:88 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/logbookadvanced/index.php:227 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:416 +#: application/views/timeline/index.php:82 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/accumulate/index.php:89 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/logbookadvanced/index.php:228 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:417 +#: application/views/timeline/index.php:83 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/accumulate/index.php:90 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/logbookadvanced/index.php:229 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:418 +#: application/views/timeline/index.php:84 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/accumulate/index.php:91 +#: 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/logbookadvanced/index.php:230 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:419 +#: application/views/timeline/index.php:85 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/accumulate/index.php:92 +#: 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/logbookadvanced/index.php:231 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:420 +#: application/views/timeline/index.php:86 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/accumulate/index.php:93 +#: 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/logbookadvanced/index.php:232 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:421 +#: application/views/timeline/index.php:87 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/accumulate/index.php:94 +#: 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/logbookadvanced/index.php:233 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:422 +#: application/views/timeline/index.php:88 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/accumulate/index.php:95 +#: 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/logbookadvanced/index.php:234 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:423 +#: application/views/timeline/index.php:89 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/accumulate/index.php:96 +#: 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/logbookadvanced/index.php:235 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:424 +#: application/views/timeline/index.php:90 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/accumulate/index.php:97 +#: 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/logbookadvanced/index.php:236 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:425 +#: application/views/timeline/index.php:91 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/accumulate/index.php:98 +#: 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/logbookadvanced/index.php:237 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:426 +#: application/views/timeline/index.php:92 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/accumulate/index.php:99 +#: 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/logbookadvanced/index.php:238 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:427 +#: application/views/timeline/index.php:93 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/accumulate/index.php:100 +#: 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/logbookadvanced/index.php:239 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:428 +#: application/views/timeline/index.php:94 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/accumulate/index.php:101 +#: 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/logbookadvanced/index.php:240 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:429 +#: application/views/timeline/index.php:95 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Сателит" + +#: application/views/accumulate/index.php:102 +#: 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/logbookadvanced/index.php:241 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:430 +#: application/views/timeline/index.php:96 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/accumulate/index.php:103 +#: 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/logbookadvanced/index.php:242 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:431 +#: application/views/timeline/index.php:97 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/accumulate/index.php:112 +#: application/views/activators/index.php:53 +#: application/views/awards/cq/index.php:113 #: application/views/awards/dok/index.php:127 #: application/views/awards/dxcc/index.php:187 -#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/helvetia/index.php:112 #: application/views/awards/iota/index.php:130 -#: application/views/awards/itu/index.php:111 +#: application/views/awards/itu/index.php:113 #: application/views/awards/jcc/index.php:113 -#: application/views/awards/rac/index.php:102 -#: application/views/awards/waja/index.php:114 -#: application/views/awards/was/index.php:110 -#: application/views/distances/index.php:53 +#: application/views/awards/rac/index.php:104 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:79 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 #: application/views/stationsetup/exportmapoptions.php:6 -#: application/views/timeline/index.php:72 -#: application/views/timeline/index.php:137 -#: application/views/timeline/index.php:164 -#: application/views/timeline/index.php:189 -#: application/views/timeline/index.php:218 -#: application/views/timeline/index.php:243 -#: application/views/timeline/index.php:270 +#: application/views/timeline/index.php:105 +#: application/views/timeline/index.php:170 +#: application/views/timeline/index.php:197 +#: application/views/timeline/index.php:222 +#: application/views/timeline/index.php:251 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:303 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "" @@ -2355,12 +2881,15 @@ msgstr "" #: application/views/activated_gridmap/index.php:20 #: application/views/awards/dxcc/index.php:131 #: application/views/awards/wab/index.php:34 +#: application/views/awards/wac/index.php:78 #: 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/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/edit.php:17 +#: application/views/logbookadvanced/index.php:203 #: application/views/satellite/flightpath.php:34 +#: application/views/satellite/passtable.php:5 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2369,9 +2898,10 @@ msgstr "Сателит" #: application/views/activated_gridmap/index.php:30 #: application/views/awards/dxcc/index.php:147 #: application/views/awards/wab/index.php:44 +#: application/views/awards/wac/index.php:94 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:212 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2386,16 +2916,17 @@ msgid "Confirmation" msgstr "" #: application/views/activated_gridmap/index.php:82 -#: application/views/awards/cq/index.php:66 +#: application/views/awards/cq/index.php:68 #: application/views/awards/dok/index.php:67 #: application/views/awards/dxcc/index.php:73 -#: application/views/awards/helvetia/index.php:65 -#: application/views/awards/itu/index.php:66 +#: application/views/awards/helvetia/index.php:67 +#: application/views/awards/itu/index.php:68 #: application/views/awards/jcc/index.php:64 -#: application/views/awards/rac/index.php:57 +#: application/views/awards/rac/index.php:59 #: application/views/awards/wab/index.php:96 -#: application/views/awards/waja/index.php:65 -#: application/views/awards/was/index.php:65 +#: application/views/awards/wac/index.php:56 +#: application/views/awards/waja/index.php:67 +#: application/views/awards/was/index.php:67 #: application/views/gridmap/index.php:125 application/views/user/edit.php:675 msgid "QRZ.com" msgstr "" @@ -2431,59 +2962,62 @@ msgstr "" #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:37 #: application/views/gridmap/index.php:156 -#: application/views/logbookadvanced/index.php:12 +#: application/views/logbookadvanced/index.php:13 msgid "Bearing" msgstr "" -#: application/views/activators/index.php:23 +#: application/views/activators/index.php:26 msgctxt "Orbiter LEO or GEO" msgid "Both" msgstr "" -#: application/views/activators/index.php:30 +#: application/views/activators/index.php:33 msgid "Minimum Count" msgstr "" -#: application/views/activators/index.php:77 +#: application/views/activators/index.php:76 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:46 -#: application/views/awards/cq/index.php:196 +#: application/views/awards/cq/index.php:198 #: application/views/awards/dok/index.php:196 #: application/views/awards/dxcc/index.php:280 -#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/helvetia/index.php:200 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:196 +#: application/views/awards/itu/index.php:198 #: application/views/awards/jcc/index.php:236 #: application/views/awards/pota/index.php:67 -#: application/views/awards/rac/index.php:190 +#: application/views/awards/rac/index.php:192 #: application/views/awards/sig/index.php:45 #: application/views/awards/sota/index.php:53 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:39 -#: application/views/awards/waja/index.php:200 -#: application/views/awards/was/index.php:198 +#: application/views/awards/wac/index.php:199 +#: application/views/awards/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 +#: application/views/distancerecords/index.php:50 #: application/views/public_search/empty.php:3 -#: application/views/qrz/export.php:64 application/views/timeline/index.php:102 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:135 msgid "Nothing found!" msgstr "" -#: application/views/activators/index.php:99 -#: application/views/adif/import.php:66 application/views/adif/import.php:172 -#: application/views/adif/import.php:217 +#: application/views/activators/index.php:98 +#: application/views/adif/import.php:66 application/views/adif/import.php:182 +#: application/views/adif/import.php:227 #: application/views/awards/pota/index.php:34 #: application/views/awards/sig/qso_list.php:11 #: application/views/awards/sota/index.php:25 #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:104 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:152 +#: application/views/contesting/index.php:156 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:168 +#: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 -#: application/views/lotw_views/index.php:39 +#: application/views/lotw_views/index.php:35 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 #: application/views/qslcard/index.php:28 @@ -2492,35 +3026,36 @@ msgstr "" #: application/views/qslprint/qslprint.php:21 #: application/views/qslprint/qsolist.php:6 #: application/views/qso/edit_ajax.php:62 application/views/qso/index.php:124 +#: application/views/reg1test/index.php:33 #: application/views/search/cqzones.php:32 #: application/views/search/cqzones_result.php:9 #: application/views/search/lotw_unconfirmed.php:33 #: application/views/search/lotw_unconfirmed_result.php:6 #: application/views/search/result.php:11 -#: application/views/simplefle/index.php:142 -#: application/views/station_profile/edit.php:36 +#: application/views/simplefle/index.php:148 +#: application/views/station_profile/edit.php:63 #: application/views/stationsetup/linkedlocations.php:17 -#: application/views/user/edit.php:123 application/views/user/main.php:4 -#: application/views/user/main.php:47 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:507 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 +#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:510 msgid "Callsign" msgstr "" -#: application/views/activators/index.php:100 +#: application/views/activators/index.php:99 msgid "Count" msgstr "" -#: application/views/activators/index.php:102 -#: application/views/timeline/index.php:121 -#: application/views/timeline/index.php:153 -#: application/views/timeline/index.php:178 -#: application/views/timeline/index.php:205 -#: application/views/timeline/index.php:232 -#: application/views/timeline/index.php:258 +#: application/views/activators/index.php:101 +#: application/views/timeline/index.php:154 +#: application/views/timeline/index.php:186 +#: application/views/timeline/index.php:211 +#: application/views/timeline/index.php:238 +#: application/views/timeline/index.php:265 +#: application/views/timeline/index.php:291 msgid "Show QSO's" msgstr "" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "" @@ -2561,10 +3096,12 @@ msgstr "" #: application/views/awards/wwff/index.php:32 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:25 -#: application/views/contesting/index.php:42 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36 +#: application/views/contesting/index.php:93 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:163 +#: application/views/debug/index.php:545 +#: application/views/distancerecords/index.php:16 +#: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2577,22 +3114,22 @@ msgstr "" #: application/views/qslcard/searchresult.php:4 #: application/views/qslprint/qslprint.php:22 #: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:64 -#: application/views/qso/index.php:100 +#: application/views/qso/index.php:100 application/views/satellite/pass.php:473 #: application/views/search/cqzones_result.php:7 #: application/views/search/result_search.php:4 #: application/views/search/search_result_ajax.php:89 -#: application/views/simplefle/index.php:140 +#: application/views/simplefle/index.php:146 #: application/views/statistics/custom.php:38 #: application/views/statistics/custom_result.php:40 #: application/views/statistics/custom_result.php:85 -#: application/views/timeline/index.php:116 -#: application/views/timeline/index.php:151 -#: application/views/timeline/index.php:176 -#: application/views/timeline/index.php:201 -#: application/views/timeline/index.php:230 -#: application/views/timeline/index.php:255 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:184 +#: application/views/timeline/index.php:209 +#: application/views/timeline/index.php:234 +#: application/views/timeline/index.php:263 +#: application/views/timeline/index.php:288 #: application/views/view_log/partial/log.php:4 -#: application/views/view_log/partial/log_ajax.php:57 +#: application/views/view_log/partial/log_ajax.php:59 #: application/views/visitor/index.php:147 #: application/views/widgets/qsos.php:24 msgid "Date" @@ -2603,10 +3140,12 @@ msgstr "Дата" #: application/views/awards/wwff/index.php:33 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:26 -#: application/views/contesting/index.php:47 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37 +#: application/views/contesting/index.php:98 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:166 +#: application/views/debug/index.php:546 +#: application/views/distancerecords/index.php:17 +#: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2617,12 +3156,12 @@ msgstr "Дата" #: application/views/search/cqzones_result.php:8 #: application/views/search/result_search.php:5 #: application/views/search/search_result_ajax.php:91 -#: application/views/simplefle/index.php:141 +#: application/views/simplefle/index.php:147 #: application/views/statistics/custom_result.php:86 -#: application/views/timeline/index.php:256 +#: application/views/timeline/index.php:289 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 -#: application/views/view_log/partial/log_ajax.php:59 +#: application/views/view_log/partial/log_ajax.php:61 #: application/views/visitor/index.php:150 #: application/views/widgets/qsos.php:26 msgid "Time" @@ -2631,7 +3170,7 @@ msgstr "Час" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 -#: application/views/contesting/index.php:201 +#: application/views/contesting/index.php:248 #: application/views/debug/index.php:547 application/views/debug/index.php:582 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -2643,7 +3182,7 @@ msgstr "Час" #: application/views/search/search_result_ajax.php:93 #: application/views/statistics/custom_result.php:87 #: application/views/view_log/partial/log.php:8 -#: application/views/view_log/partial/log_ajax.php:61 +#: application/views/view_log/partial/log_ajax.php:63 #: application/views/visitor/index.php:152 #: application/views/widgets/qsos.php:28 msgid "Call" @@ -2661,14 +3200,14 @@ msgstr "" msgid "DCL QSL Status" msgstr "" -#: application/views/adif/import.php:36 application/views/adif/import.php:242 +#: application/views/adif/import.php:36 application/views/adif/import.php:252 msgid "DARC DCL" msgstr "" #: application/views/adif/import.php:55 -#: application/views/dashboard/index.php:97 -#: application/views/dashboard/index.php:118 -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:112 +#: application/views/dashboard/index.php:133 +#: application/views/dashboard/index.php:139 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2678,29 +3217,29 @@ msgstr "Важно" msgid "Log Files must have the file type *.adi" msgstr "" -#: application/views/adif/import.php:56 application/views/view_log/qso.php:622 +#: application/views/adif/import.php:56 application/views/view_log/qso.php:625 msgid "Maximum file upload size is " msgstr "" -#: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:175 +#: application/views/adif/import.php:56 application/views/adif/import.php:230 +#: application/views/adif/import.php:268 application/views/debug/index.php:175 #: application/views/debug/index.php:192 application/views/debug/index.php:537 #: application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:34 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 -#: application/views/station_profile/index.php:31 #: application/views/stationsetup/stationsetup.php:111 -#: application/views/view_log/qso.php:622 +#: application/views/view_log/qso.php:625 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" msgstr "" #: application/views/adif/import.php:60 application/views/adif/import.php:62 -#: application/views/adif/import.php:168 application/views/adif/import.php:215 +#: application/views/adif/import.php:178 application/views/adif/import.php:225 #: application/views/eqsl/import.php:36 application/views/hrdlog/export.php:69 -#: application/views/qrz/export.php:89 application/views/webadif/export.php:89 +#: application/views/qrz/export.php:89 application/views/reg1test/index.php:30 +#: application/views/webadif/export.php:89 msgid "Select Station Location" msgstr "" @@ -2727,69 +3266,75 @@ msgstr "" #: application/views/adif/import.php:95 application/views/adif/import.php:105 #: application/views/adif/import.php:115 application/views/adif/import.php:125 +#: application/views/adif/import.php:135 msgid "Select if ADIF being imported does not contain this information." msgstr "" #: application/views/adif/import.php:103 -msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" +msgid "Mark imported QSOs as uploaded to eQSL Logbook" msgstr "" #: application/views/adif/import.php:113 -msgid "Mark imported QSOs as uploaded to QRZ Logbook" +msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" msgstr "" #: application/views/adif/import.php:123 -msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgid "Mark imported QSOs as uploaded to QRZ Logbook" msgstr "" #: application/views/adif/import.php:133 +msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgstr "" + +#: application/views/adif/import.php:143 msgid "Use DXCC information from ADIF" msgstr "" -#: application/views/adif/import.php:135 +#: application/views/adif/import.php:145 msgid "" "If not selected, Wavelog will attempt to determine DXCC information " "automatically." msgstr "" -#: application/views/adif/import.php:143 +#: application/views/adif/import.php:153 msgid "Always use login-callsign as operator-name on import" msgstr "" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:32 -#: application/views/interface_assets/footer.php:495 -#: application/views/interface_assets/footer.php:2119 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2133 msgid "DANGER" msgstr "" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 msgid "Ignore Stationcallsign on import" msgstr "" -#: application/views/adif/import.php:154 +#: application/views/adif/import.php:164 +#, php-format msgid "" -"If selected, Wavelog will try to import all QSO's of the ADIF, " +"If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " "regardless if they match to the chosen station-location." msgstr "" -#: application/views/adif/import.php:158 application/views/adif/import.php:273 +#: application/views/adif/import.php:168 application/views/adif/import.php:283 #: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 #: application/views/webadif/export.php:55 msgid "Upload" msgstr "" -#: application/views/adif/import.php:165 +#: application/views/adif/import.php:175 msgid "Take your logbook file anywhere!" msgstr "" -#: application/views/adif/import.php:166 +#: application/views/adif/import.php:176 msgid "" "Exporting ADIFs allows you to import contacts into third party applications " "like LoTW, Awards or just for keeping a backup." msgstr "" -#: application/views/adif/import.php:176 application/views/adif/import.php:222 +#: application/views/adif/import.php:186 application/views/adif/import.php:232 #: application/views/cfd/index.php:15 application/views/csv/index.php:118 #: application/views/dxatlas/index.php:118 #: application/views/hrdlog/export.php:77 application/views/kml/index.php:103 @@ -2798,7 +3343,7 @@ msgstr "" msgid "From date" msgstr "От дата" -#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/adif/import.php:189 application/views/adif/import.php:235 #: application/views/cfd/index.php:20 application/views/csv/index.php:123 #: application/views/dxatlas/index.php:123 #: application/views/hrdlog/export.php:82 application/views/kml/index.php:108 @@ -2807,40 +3352,40 @@ msgstr "От дата" msgid "To date" msgstr "" -#: application/views/adif/import.php:187 +#: application/views/adif/import.php:197 msgid "Mark exported QSOs as uploaded to LoTW" msgstr "" -#: application/views/adif/import.php:195 +#: application/views/adif/import.php:205 msgid "Export QSOs not uploaded to LoTW" msgstr "" -#: application/views/adif/import.php:200 +#: application/views/adif/import.php:210 msgid "Export QSO's" msgstr "" -#: application/views/adif/import.php:205 +#: application/views/adif/import.php:215 msgid "Export Satellite-Only QSOs" msgstr "" -#: application/views/adif/import.php:206 +#: application/views/adif/import.php:216 msgid "Export All Satellite QSOs" msgstr "" -#: application/views/adif/import.php:208 +#: application/views/adif/import.php:218 msgid "Export All Satellite QSOs Confirmed on LoTW" msgstr "" -#: application/views/adif/import.php:220 application/views/hrdlog/export.php:74 +#: application/views/adif/import.php:230 application/views/hrdlog/export.php:74 #: application/views/qrz/export.php:94 application/views/webadif/export.php:94 msgid "If a date range is not selected then all QSOs will be marked!" msgstr "" -#: application/views/adif/import.php:228 +#: application/views/adif/import.php:238 msgid "Mark QSOs as exported to LoTW" msgstr "" -#: application/views/adif/import.php:242 +#: application/views/adif/import.php:252 #, php-format msgid "" "Go to %s and export your logbook with confirmed DOKs. To speed up the " @@ -2849,36 +3394,47 @@ msgid "" "with DOK info." msgstr "" -#: application/views/adif/import.php:249 +#: application/views/adif/import.php:259 msgid "Only import DOK data from QSOs confirmed on DCL." msgstr "" -#: application/views/adif/import.php:251 +#: application/views/adif/import.php:261 msgid "" "Uncheck if you also want to update DOK with data from unconfirmed QSOs in " "DCL." msgstr "" -#: application/views/adif/import.php:258 +#: application/views/adif/import.php:268 msgid "Overwrites exisiting DOK in log by DCL (if different)." msgstr "" -#: application/views/adif/import.php:260 +#: application/views/adif/import.php:270 msgid "" "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " "log." msgstr "" -#: application/views/adif/import.php:267 +#: application/views/adif/import.php:277 msgid "Ignore QSOs that cannot be matched." msgstr "Ignore QSOs that cannot be matched" -#: application/views/adif/import.php:269 +#: application/views/adif/import.php:279 msgid "" "If unchecked, information about QSOs which could not be found in Wavelog " "will be displayed." msgstr "" +#: application/views/adif/import_failed.php:15 +msgid "The ADIF file could not be parsed correctly." +msgstr "" + +#: application/views/adif/import_failed.php:16 +msgid "" +"At least one of the ADIF fields could not be parsed and/or inserted into the " +"database. Please check the imported ADIF file. You can use an online ADIF " +"file checker. For example:" +msgstr "" + #: application/views/adif/import_success.php:15 msgid "Yay, its imported!" msgstr "" @@ -2931,24 +3487,22 @@ msgstr "" #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 -#: application/views/interface_assets/footer.php:43 -#: application/views/interface_assets/footer.php:530 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 -#: application/views/options/appearance.php:107 +#: application/views/options/appearance.php:116 #: application/views/options/dxcluster.php:67 #: application/views/options/email.php:112 #: application/views/options/oqrs.php:63 #: application/views/options/radios.php:45 #: application/views/options/version_dialog.php:78 -#: application/views/qso/components/winkeysettings.php:90 -#: application/views/qso/components/winkeysettings_results.php:90 #: application/views/satellite/create.php:70 #: application/views/simplefle/index.php:22 msgid "Save" msgstr "" #: application/views/api/help.php:14 -#: application/views/interface_assets/header.php:431 +#: application/views/interface_assets/header.php:437 msgid "API Keys" msgstr "" @@ -2972,7 +3526,7 @@ msgid "API URL" msgstr "" #: application/views/api/help.php:19 application/views/api/help.php:38 -#: application/views/cron/index.php:21 application/views/debug/index.php:36 +#: application/views/cron/index.php:22 application/views/debug/index.php:36 msgid "Copy to clipboard" msgstr "" @@ -2981,14 +3535,15 @@ msgid "The API URL for this Wavelog instance is" msgstr "" #: application/views/api/help.php:20 application/views/dxcalendar/index.php:15 -#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:477 -#: application/views/qso/index.php:538 application/views/qso/index.php:583 +#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:504 +#: application/views/qso/index.php:560 application/views/qso/index.php:605 #: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 #: application/views/sattimers/index.php:73 #: application/views/sattimers/index.php:75 +#: application/views/sattimers/index.php:77 #: application/views/search/filter.php:69 msgid "Info" msgstr "Инфо" @@ -3004,7 +3559,7 @@ msgid "API Key" msgstr "" #: application/views/api/help.php:28 application/views/cron/edit.php:30 -#: application/views/cron/index.php:51 +#: application/views/cron/index.php:53 #: application/views/search/stored_queries.php:8 msgid "Description" msgstr "" @@ -3017,19 +3572,18 @@ msgstr "" msgid "Permissions" msgstr "" -#: application/views/api/help.php:31 application/views/cron/index.php:52 -#: application/views/lotw_views/index.php:45 +#: application/views/api/help.php:31 application/views/cron/index.php:54 +#: application/views/lotw_views/index.php:41 #: application/views/mode/index.php:31 #: application/views/oqrs/showrequests.php:91 #: application/views/sattimers/index.php:39 #: application/views/stationsetup/stationsetup.php:31 -#: application/views/timeline/index.php:119 -#: application/views/update/index.php:30 +#: application/views/timeline/index.php:152 msgid "Status" msgstr "Състояние" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:519 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3065,6 +3619,7 @@ msgstr "" #: application/views/awards/counties/details.php:4 #: application/views/awards/details.php:1 #: application/views/awards/vucc/band.php:4 +#: application/views/distancerecords/details.php:1 #: application/views/timeline/details.php:2 msgid "Filtering on" msgstr "" @@ -3075,8 +3630,8 @@ msgstr "" #: application/views/awards/counties/index.php:6 #: application/views/awards/counties/index.php:13 -#: application/views/awards/cq/index.php:17 -#: application/views/awards/cq/index.php:24 +#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:26 #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:13 #: application/views/awards/dxcc/index.php:13 @@ -3085,12 +3640,12 @@ msgstr "" #: application/views/awards/ffma/index.php:14 #: application/views/awards/gridmaster/index.php:6 #: application/views/awards/gridmaster/index.php:13 -#: application/views/awards/helvetia/index.php:17 -#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:26 #: application/views/awards/iota/index.php:15 #: application/views/awards/iota/index.php:22 -#: application/views/awards/itu/index.php:17 -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:26 #: application/views/awards/jcc/index.php:15 #: application/views/awards/jcc/index.php:22 #: application/views/awards/pota/index.php:6 @@ -3103,10 +3658,12 @@ msgstr "" #: application/views/awards/vucc/index.php:13 #: application/views/awards/wab/index.php:11 #: application/views/awards/wab/index.php:18 -#: application/views/awards/waja/index.php:16 -#: application/views/awards/waja/index.php:23 -#: application/views/awards/was/index.php:17 -#: application/views/awards/was/index.php:24 +#: application/views/awards/wac/index.php:7 +#: application/views/awards/wac/index.php:14 +#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:25 +#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:26 #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:13 msgid "Award Info" @@ -3144,17 +3701,18 @@ msgid "Counties Confirmed" msgstr "" #: application/views/awards/counties/index.php:39 -#: application/views/awards/cq/index.php:174 +#: application/views/awards/cq/index.php:176 #: application/views/awards/dok/index.php:174 #: application/views/awards/dxcc/index.php:257 -#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/helvetia/index.php:179 #: application/views/awards/iota/index.php:201 -#: application/views/awards/itu/index.php:174 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:185 -#: application/views/awards/rac/index.php:169 -#: application/views/awards/waja/index.php:177 -#: application/views/awards/was/index.php:177 -#: application/views/dashboard/index.php:217 +#: application/views/awards/rac/index.php:171 +#: application/views/awards/wac/index.php:177 +#: application/views/awards/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:233 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3170,213 +3728,230 @@ msgstr "" msgid "Total" msgstr "" -#: application/views/awards/cq/index.php:18 +#: application/views/awards/cq/index.php:3 +#: application/views/awards/cq/index.php:150 application/views/csv/index.php:80 +#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/logbookadvanced/edit.php:6 +#: application/views/logbookadvanced/index.php:246 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:284 +#: application/views/qso/index.php:390 +#: application/views/search/cqzones_result.php:13 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:264 +#: application/views/timeplotter/index.php:44 +msgid "CQ Zone" +msgstr "CQ зона" + +#: application/views/awards/cq/index.php:4 +#: application/views/awards/itu/index.php:4 +msgid "Hover over a zone" +msgstr "" + +#: application/views/awards/cq/index.php:20 msgid "CQ Magazine WAZ Award" msgstr "" -#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:21 msgid "" "The CQ Magazine is located in the US and one of the most popular amateur " "radio magazines in the world. The magazine first appeared in January 1945 " "and focuses on awards and the practical aspects of amateur radio." msgstr "" -#: application/views/awards/cq/index.php:20 +#: application/views/awards/cq/index.php:22 msgid "" "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to " "all 40 CQ Zones along with the corresponding confirmation." msgstr "" -#: application/views/awards/cq/index.php:21 +#: application/views/awards/cq/index.php:23 #, php-format msgctxt "uses 'CQ Magazine'" msgid "You can find all the information and rules on the Website of the %s." msgstr "" -#: application/views/awards/cq/index.php:23 +#: application/views/awards/cq/index.php:25 msgid "Awards - CQ Magazine WAZ" msgstr "" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 #: application/views/awards/wab/list.php:6 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:73 -#: application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:362 -#: application/views/interface_assets/footer.php:39 +#: application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:378 +#: application/views/interface_assets/footer.php:40 #: application/views/visitor/index.php:266 msgid "Confirmed" msgstr "Потвърдени" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:256 +#: application/views/dashboard/index.php:372 #: application/views/visitor/index.php:262 msgid "Worked" msgstr "Работени" -#: application/views/awards/cq/index.php:36 +#: application/views/awards/cq/index.php:38 #: application/views/awards/dok/index.php:41 #: application/views/awards/dxcc/index.php:43 -#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:43 -#: application/views/awards/itu/index.php:36 +#: application/views/awards/itu/index.php:38 #: application/views/awards/jcc/index.php:34 -#: application/views/awards/rac/index.php:27 -#: application/views/awards/waja/index.php:35 -#: application/views/awards/was/index.php:35 +#: application/views/awards/rac/index.php:29 +#: application/views/awards/wac/index.php:26 +#: application/views/awards/waja/index.php:37 +#: application/views/awards/was/index.php:37 msgid "Show worked" msgstr "" -#: application/views/awards/cq/index.php:40 +#: application/views/awards/cq/index.php:42 #: application/views/awards/dok/index.php:45 #: application/views/awards/dxcc/index.php:47 -#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:47 -#: application/views/awards/itu/index.php:40 +#: application/views/awards/itu/index.php:42 #: application/views/awards/jcc/index.php:38 -#: application/views/awards/rac/index.php:31 -#: application/views/awards/waja/index.php:39 -#: application/views/awards/was/index.php:39 +#: application/views/awards/rac/index.php:33 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/waja/index.php:41 +#: application/views/awards/was/index.php:41 msgid "Show confirmed" msgstr "" -#: application/views/awards/cq/index.php:44 +#: application/views/awards/cq/index.php:46 #: application/views/awards/dxcc/index.php:51 -#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:51 -#: application/views/awards/itu/index.php:44 +#: application/views/awards/itu/index.php:46 #: application/views/awards/jcc/index.php:42 -#: application/views/awards/rac/index.php:35 -#: application/views/awards/waja/index.php:43 -#: application/views/awards/was/index.php:43 +#: application/views/awards/rac/index.php:37 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/waja/index.php:45 +#: application/views/awards/was/index.php:45 msgid "Show not worked" msgstr "" -#: application/views/awards/cq/index.php:50 +#: application/views/awards/cq/index.php:52 #: application/views/awards/dok/index.php:51 #: application/views/awards/dxcc/index.php:57 -#: application/views/awards/helvetia/index.php:49 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/helvetia/index.php:51 +#: application/views/awards/itu/index.php:52 #: application/views/awards/jcc/index.php:48 -#: application/views/awards/rac/index.php:41 -#: application/views/awards/waja/index.php:49 -#: application/views/awards/was/index.php:49 +#: application/views/awards/rac/index.php:43 +#: application/views/awards/wac/index.php:40 +#: application/views/awards/waja/index.php:51 +#: application/views/awards/was/index.php:51 msgid "Show QSO with QSL Type" msgstr "" -#: application/views/awards/cq/index.php:54 -#: application/views/awards/itu/index.php:54 -#: application/views/interface_assets/footer.php:2098 -#: application/views/qso/edit_ajax.php:378 +#: application/views/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/awards/wac/index.php:44 +#: application/views/interface_assets/footer.php:2112 +#: application/views/qso/edit_ajax.php:405 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "QSL катичка" -#: application/views/awards/cq/index.php:110 +#: application/views/awards/cq/index.php:112 #: application/views/awards/dok/index.php:126 #: application/views/awards/dxcc/index.php:186 -#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/helvetia/index.php:111 #: application/views/awards/iota/index.php:129 -#: application/views/awards/itu/index.php:110 +#: application/views/awards/itu/index.php:112 #: application/views/awards/jcc/index.php:112 -#: application/views/awards/rac/index.php:101 -#: application/views/awards/waja/index.php:113 -#: application/views/awards/was/index.php:109 +#: application/views/awards/rac/index.php:103 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/waja/index.php:115 +#: application/views/awards/was/index.php:111 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:523 +#: application/views/logbookadvanced/index.php:551 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 msgid "Reset" msgstr "" -#: application/views/awards/cq/index.php:113 +#: application/views/awards/cq/index.php:115 msgid "Show CQ Zone Map" msgstr "" -#: application/views/awards/cq/index.php:122 +#: application/views/awards/cq/index.php:124 #: application/views/awards/dxcc/index.php:199 -#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/helvetia/index.php:124 #: application/views/awards/iota/index.php:142 -#: application/views/awards/itu/index.php:122 -#: application/views/awards/rac/index.php:114 -#: application/views/awards/waja/index.php:126 -#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:124 +#: application/views/awards/rac/index.php:116 +#: application/views/awards/waja/index.php:128 +#: application/views/awards/was/index.php:124 msgid "Table" msgstr "" -#: application/views/awards/cq/index.php:125 +#: application/views/awards/cq/index.php:127 #: application/views/awards/dok/index.php:128 #: application/views/awards/dxcc/index.php:202 -#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/helvetia/index.php:127 #: application/views/awards/iota/index.php:145 -#: application/views/awards/itu/index.php:125 +#: application/views/awards/itu/index.php:127 #: application/views/awards/jcc/index.php:129 -#: application/views/awards/rac/index.php:117 +#: application/views/awards/rac/index.php:119 #: application/views/awards/wab/index.php:108 -#: application/views/awards/waja/index.php:129 -#: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:516 +#: application/views/awards/waja/index.php:131 +#: application/views/awards/was/index.php:127 +#: application/views/logbookadvanced/index.php:544 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "" -#: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 -#: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:235 -#: application/views/logbookadvanced/index.php:586 -#: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:90 -#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 -#: application/views/qso/index.php:390 -#: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:106 -#: application/views/station_profile/edit.php:126 -#: application/views/timeline/index.php:231 -#: application/views/timeplotter/index.php:44 -msgid "CQ Zone" -msgstr "CQ зона" - -#: application/views/awards/cq/index.php:165 +#: application/views/awards/cq/index.php:167 #: application/views/awards/dok/index.php:165 #: application/views/awards/dxcc/index.php:248 -#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/helvetia/index.php:170 #: application/views/awards/iota/index.php:192 -#: application/views/awards/itu/index.php:165 +#: application/views/awards/itu/index.php:167 #: application/views/awards/jcc/index.php:168 -#: application/views/awards/rac/index.php:160 -#: application/views/awards/waja/index.php:168 -#: application/views/awards/was/index.php:168 +#: application/views/awards/rac/index.php:162 +#: application/views/awards/wac/index.php:168 +#: application/views/awards/waja/index.php:170 +#: application/views/awards/was/index.php:170 msgid "Summary" msgstr "" -#: application/views/awards/cq/index.php:178 +#: application/views/awards/cq/index.php:180 #: application/views/awards/dok/index.php:178 #: application/views/awards/dxcc/index.php:262 -#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:206 -#: application/views/awards/itu/index.php:178 +#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:195 -#: application/views/awards/rac/index.php:173 -#: application/views/awards/waja/index.php:182 -#: application/views/awards/was/index.php:181 +#: application/views/awards/rac/index.php:175 +#: application/views/awards/wac/index.php:181 +#: application/views/awards/waja/index.php:184 +#: application/views/awards/was/index.php:183 msgid "Total worked" msgstr "" -#: application/views/awards/cq/index.php:185 +#: application/views/awards/cq/index.php:187 #: application/views/awards/dok/index.php:185 #: application/views/awards/dxcc/index.php:269 -#: application/views/awards/helvetia/index.php:188 +#: application/views/awards/helvetia/index.php:190 #: application/views/awards/iota/index.php:213 -#: application/views/awards/itu/index.php:185 +#: application/views/awards/itu/index.php:187 #: application/views/awards/jcc/index.php:214 -#: application/views/awards/rac/index.php:180 -#: application/views/awards/waja/index.php:189 -#: application/views/awards/was/index.php:188 +#: application/views/awards/rac/index.php:182 +#: application/views/awards/wac/index.php:188 +#: application/views/awards/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "" @@ -3424,23 +3999,24 @@ msgstr "" #: application/views/awards/dok/index.php:37 #: application/views/awards/dxcc/index.php:39 -#: application/views/awards/helvetia/index.php:31 +#: application/views/awards/helvetia/index.php:33 #: application/views/awards/iota/index.php:39 #: application/views/awards/jcc/index.php:30 -#: application/views/awards/rac/index.php:23 -#: application/views/awards/waja/index.php:31 -#: application/views/awards/was/index.php:31 +#: application/views/awards/rac/index.php:25 +#: application/views/awards/waja/index.php:33 +#: application/views/awards/was/index.php:33 msgid "Worked / Confirmed" msgstr "" #: application/views/awards/dok/index.php:80 #: application/views/awards/dxcc/index.php:120 -#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/helvetia/index.php:76 #: application/views/awards/iota/index.php:94 #: application/views/awards/jcc/index.php:77 -#: application/views/awards/rac/index.php:66 -#: application/views/awards/waja/index.php:78 -#: application/views/awards/was/index.php:74 +#: application/views/awards/rac/index.php:68 +#: application/views/awards/wac/index.php:66 +#: application/views/awards/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "" @@ -3461,10 +4037,12 @@ msgid "" msgstr "" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 msgid "ARRL website" msgstr "" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 #, php-format msgid "You can find all information about the DXCC Award on the %s." msgstr "" @@ -3486,63 +4064,77 @@ msgstr "" #: application/views/awards/dxcc/index.php:87 #: application/views/awards/iota/index.php:61 #: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/logbookadvanced/edit.php:144 +#: application/views/logbookadvanced/index.php:309 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 -#: application/views/view_log/qso.php:250 +#: application/views/view_log/qso.php:253 msgid "Antarctica" msgstr "" #: application/views/awards/dxcc/index.php:91 #: application/views/awards/iota/index.php:65 #: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/logbookadvanced/edit.php:143 +#: application/views/logbookadvanced/index.php:308 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 -#: application/views/view_log/qso.php:247 +#: application/views/view_log/qso.php:250 msgid "Africa" msgstr "" #: application/views/awards/dxcc/index.php:95 #: application/views/awards/iota/index.php:69 #: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/logbookadvanced/edit.php:146 +#: application/views/logbookadvanced/index.php:311 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 -#: application/views/view_log/qso.php:253 +#: application/views/view_log/qso.php:256 msgid "Asia" msgstr "" #: application/views/awards/dxcc/index.php:99 #: application/views/awards/iota/index.php:73 #: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/logbookadvanced/edit.php:147 +#: application/views/logbookadvanced/index.php:312 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 -#: application/views/view_log/qso.php:256 +#: application/views/view_log/qso.php:259 msgid "Europe" msgstr "" #: application/views/awards/dxcc/index.php:103 #: application/views/awards/iota/index.php:77 #: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/logbookadvanced/edit.php:145 +#: application/views/logbookadvanced/index.php:310 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 -#: application/views/view_log/qso.php:259 +#: application/views/view_log/qso.php:262 msgid "North America" msgstr "" #: application/views/awards/dxcc/index.php:107 #: application/views/awards/iota/index.php:81 #: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/logbookadvanced/edit.php:148 +#: application/views/logbookadvanced/index.php:313 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:265 +#: application/views/view_log/qso.php:268 msgid "South America" msgstr "" #: application/views/awards/dxcc/index.php:111 #: application/views/awards/iota/index.php:85 #: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/logbookadvanced/edit.php:149 +#: application/views/logbookadvanced/index.php:314 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 -#: application/views/view_log/qso.php:262 +#: application/views/view_log/qso.php:265 msgid "Oceania" msgstr "" @@ -3556,13 +4148,13 @@ msgstr "" #: application/views/awards/dxcc/index.php:226 #: application/views/awards/iota/index.php:170 -#: application/views/timeline/index.php:117 -#: application/views/timeline/index.php:204 +#: application/views/timeline/index.php:150 +#: application/views/timeline/index.php:237 msgid "Prefix" msgstr "" #: application/views/awards/ffma/index.php:8 -#: application/views/interface_assets/header.php:236 +#: application/views/interface_assets/header.php:240 msgid "Fred Fish Memorial Award" msgstr "" @@ -3617,11 +4209,20 @@ msgstr "" msgid "This map shows only QSOs worked on SAT." msgstr "" -#: application/views/awards/helvetia/index.php:18 +#: application/views/awards/helvetia/index.php:3 +msgctxt "Switzerland Canton" +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:4 +msgid "Hover over a canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:20 msgid "HELVETIA 26 | SWITZERLAND AWARD" msgstr "" -#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:21 msgid "" "The USKA (Union of Swiss Shortwave Amateurs) sponsors two awards, the " "HELVETIA 26 (H26) Award and the SWITZERLAND Award, aimed at promoting " @@ -3629,33 +4230,33 @@ msgid "" "as possible on multiple bands." msgstr "" -#: application/views/awards/helvetia/index.php:20 +#: application/views/awards/helvetia/index.php:22 msgid "" "These awards come in two versions: one for HF bands and the other for VHF " "(including SHF and UHF) bands. Valid connections for these awards date back " "to January 1, 1980" msgstr "" -#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/helvetia/index.php:23 #: application/views/awards/jcc/index.php:19 #: application/views/awards/sota/index.php:10 #: application/views/awards/wab/index.php:15 -#: application/views/awards/waja/index.php:20 +#: application/views/awards/waja/index.php:22 #: application/views/awards/wwff/index.php:10 #, php-format msgid "For more information, please visit: %s." msgstr "" -#: application/views/awards/helvetia/index.php:112 +#: application/views/awards/helvetia/index.php:114 msgid "Show Helvetia Map" msgstr "" -#: application/views/awards/helvetia/index.php:149 +#: application/views/awards/helvetia/index.php:151 msgid "Canton" msgstr "" #: application/views/awards/index.php:9 application/views/bands/index.php:46 -#: application/views/interface_assets/header.php:162 +#: application/views/interface_assets/header.php:164 msgid "CQ" msgstr "" @@ -3703,11 +4304,11 @@ msgstr "" #: application/views/awards/iota/index.php:171 #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 -#: application/views/contesting/index.php:153 -#: application/views/contesting/index.php:171 +#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:214 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:559 +#: application/views/logbookadvanced/index.php:587 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3717,12 +4318,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:19 #: application/views/stationsetup/stationsetup.php:30 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:203 application/views/user/edit.php:241 +#: application/views/timeline/index.php:236 application/views/user/edit.php:241 #: application/views/user/edit.php:263 application/views/user/edit.php:285 #: application/views/user/edit.php:307 application/views/user/edit.php:330 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:191 -#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:194 +#: application/views/view_log/qso.php:514 msgid "Name" msgstr "" @@ -3730,7 +4331,19 @@ msgstr "" msgid "Deleted" msgstr "" -#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:3 +#: application/views/awards/itu/index.php:150 +#: application/views/logbookadvanced/edit.php:10 +#: application/views/logbookadvanced/index.php:257 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:400 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 +msgid "ITU Zone" +msgstr "" + +#: application/views/awards/itu/index.php:21 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -3738,30 +4351,20 @@ msgid "" "(ITU)." msgstr "" -#: application/views/awards/itu/index.php:20 +#: application/views/awards/itu/index.php:22 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "" -#: application/views/awards/itu/index.php:23 +#: application/views/awards/itu/index.php:25 msgid "Awards - ITU Zones" msgstr "" -#: application/views/awards/itu/index.php:113 +#: application/views/awards/itu/index.php:115 msgid "Show ITU Zone Map" msgstr "" -#: application/views/awards/itu/index.php:148 -#: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:246 -#: application/views/logbookadvanced/index.php:589 -#: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:120 -#: application/views/station_profile/edit.php:143 -msgid "ITU Zone" -msgstr "" - #: application/views/awards/jcc/index.php:16 msgid "JCC - Japan Century Cities Award" msgstr "" @@ -3787,7 +4390,7 @@ msgstr "" #: application/views/awards/jcc/index.php:116 #: application/views/cabrillo/index.php:180 application/views/cfd/index.php:25 #: application/views/csv/index.php:128 application/views/dxatlas/index.php:128 -#: application/views/kml/index.php:113 +#: application/views/kml/index.php:113 application/views/reg1test/index.php:145 msgid "Export" msgstr "" @@ -3798,18 +4401,19 @@ msgid "Results" msgstr "" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 +#: application/views/distancerecords/index.php:13 msgid "Number" msgstr "" #: application/views/awards/jcc/index.php:152 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:524 msgid "City" msgstr "Град" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:368 #: application/views/distances/index.php:23 msgid "SAT" msgstr "" @@ -3841,15 +4445,24 @@ msgid "" msgstr "" #: application/views/awards/pota/index.php:31 -#: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:177 -#: application/views/station_profile/edit.php:245 -#: application/views/user/edit.php:595 application/views/view_log/qso.php:303 -#: application/views/view_log/qso.php:570 +#: application/views/qso/index.php:236 application/views/qso/index.php:492 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 +#: application/views/user/edit.php:595 application/views/view_log/qso.php:306 +#: application/views/view_log/qso.php:573 msgid "POTA Reference(s)" msgstr "" -#: application/views/awards/rac/index.php:104 +#: application/views/awards/rac/index.php:3 +msgctxt "Canada Province" +msgid "Province" +msgstr "" + +#: application/views/awards/rac/index.php:4 +msgid "Hover over a province" +msgstr "" + +#: application/views/awards/rac/index.php:106 msgid "Show RAC Map" msgstr "" @@ -3899,7 +4512,7 @@ msgstr "" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:535 +#: application/views/logbookadvanced/index.php:563 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -3995,17 +4608,48 @@ msgstr "" msgid "WAB Square" msgstr "" -#: application/views/awards/waja/index.php:17 +#: application/views/awards/wac/index.php:9 +msgid "" +"Sponsored by the International Amateur Radio Union (IARU), the Worked All " +"Continents award is issued for working and confirming all six continents. " +"These are North America, South America, Oceania, Asia, Europe and Africa." +msgstr "" + +#: application/views/awards/wac/index.php:13 +msgid "Awards - Worked All Continents (WAC)" +msgstr "" + +#: application/views/awards/wac/index.php:151 +#: application/views/continents/index.php:62 +#: application/views/logbookadvanced/edit.php:25 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 +#: application/views/view_log/qso.php:245 +msgid "Continent" +msgstr "" + +#: application/views/awards/waja/index.php:3 +msgctxt "Japan Prefecture" +msgid "Prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:4 +msgid "Hover over a prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:19 msgid "WAJA - Worked All Japan prefectures Award" msgstr "" -#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:20 msgid "" "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " "radio operators to work all the prefectures in Japan." msgstr "" -#: application/views/awards/waja/index.php:19 +#: application/views/awards/waja/index.php:21 msgid "" "May be claimed for having contacted (heard) and received a QSL card from an " "amateur station located in each of the 47 prefectures of Japan. A list of " @@ -4013,20 +4657,29 @@ msgid "" "however names of prefectures may be omitted." msgstr "" -#: application/views/awards/waja/index.php:116 +#: application/views/awards/waja/index.php:118 msgid "Show WAJA Map" msgstr "" -#: application/views/awards/waja/index.php:152 -#: application/views/timeline/index.php:152 +#: application/views/awards/waja/index.php:154 +#: application/views/timeline/index.php:185 msgid "Prefecture" msgstr "" -#: application/views/awards/was/index.php:18 +#: application/views/awards/was/index.php:3 +msgctxt "USA State" +msgid "State" +msgstr "" + +#: application/views/awards/was/index.php:4 +msgid "Hover over a state" +msgstr "" + +#: application/views/awards/was/index.php:20 msgid "WAS Award" msgstr "" -#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:21 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -4034,7 +4687,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:20 +#: application/views/awards/was/index.php:22 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -4043,13 +4696,13 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:21 +#: application/views/awards/was/index.php:23 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:112 +#: application/views/awards/was/index.php:114 msgid "Show WAS Map" msgstr "" @@ -4072,11 +4725,11 @@ msgid "" msgstr "" #: application/views/awards/wwff/index.php:31 -#: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:171 -#: application/views/station_profile/edit.php:232 -#: application/views/user/edit.php:591 application/views/view_log/qso.php:296 -#: application/views/view_log/qso.php:563 +#: application/views/qso/index.php:224 application/views/qso/index.php:479 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 +#: application/views/user/edit.php:591 application/views/view_log/qso.php:299 +#: application/views/view_log/qso.php:566 msgid "WWFF Reference" msgstr "WWFF референция" @@ -4131,8 +4784,8 @@ msgstr "" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 #: application/views/contesting/index.php:15 -#: application/views/contesting/index.php:94 -#: application/views/contesting/index.php:169 +#: application/views/contesting/index.php:52 +#: application/views/contesting/index.php:145 #: application/views/qso/index.php:314 msgid "None" msgstr "" @@ -4212,25 +4865,25 @@ msgid "" "will be hidden and cannot be selected." msgstr "" -#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:351 -#: application/views/qso/index.php:248 application/views/qso/index.php:494 -#: application/views/user/edit.php:599 application/views/view_log/qso.php:325 -#: application/views/view_log/qso.php:577 +#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 +#: application/views/qso/index.php:248 application/views/qso/index.php:504 +#: application/views/user/edit.php:599 application/views/view_log/qso.php:328 +#: application/views/view_log/qso.php:580 msgid "Sig" msgstr "" -#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:312 -#: application/views/qso/index.php:433 +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:339 +#: application/views/qso/index.php:443 msgid "USA County" msgstr "USA окръг" #: application/views/bands/index.php:58 -#: application/views/interface_assets/header.php:208 +#: application/views/interface_assets/header.php:212 msgid "WAJA" msgstr "" #: application/views/bands/index.php:59 -#: application/views/interface_assets/header.php:232 +#: application/views/interface_assets/header.php:236 msgid "WAS" msgstr "" @@ -4260,9 +4913,8 @@ msgstr "" #: application/views/bands/index.php:152 #: application/views/contesting/add.php:74 -#: application/views/interface_assets/footer.php:42 -#: application/views/qso/components/winkeysettings.php:91 -#: application/views/qso/components/winkeysettings_results.php:91 +#: application/views/contesting/index.php:83 +#: application/views/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4292,22 +4944,28 @@ msgstr "" #: application/views/cabrillo/index.php:2 #: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:59 +#: application/views/reg1test/index.php:2 +#: application/views/reg1test/index.php:36 msgid "Proceed" msgstr "" #: application/views/cabrillo/index.php:3 +#: application/views/reg1test/index.php:3 msgid "Select Year" msgstr "" #: application/views/cabrillo/index.php:4 +#: application/views/reg1test/index.php:4 msgid "Select Contest" msgstr "" #: application/views/cabrillo/index.php:5 +#: application/views/reg1test/index.php:5 msgid "Select Date Range" msgstr "" #: application/views/cabrillo/index.php:6 +#: application/views/reg1test/index.php:7 msgid "No contests were found for this station location!" msgstr "" @@ -4320,10 +4978,12 @@ msgid "Select Station Location:" msgstr "" #: application/views/cabrillo/index.php:44 +#: application/views/reg1test/index.php:53 msgid "Club" msgstr "" #: application/views/cabrillo/index.php:48 +#: application/views/reg1test/index.php:58 msgid "Category Operator" msgstr "" @@ -4364,10 +5024,12 @@ msgid "Category Overlay" msgstr "" #: application/views/cabrillo/index.php:150 +#: application/views/reg1test/index.php:70 msgid "Operators" msgstr "" #: application/views/cabrillo/index.php:155 +#: application/views/reg1test/index.php:139 msgid "Soapbox" msgstr "" @@ -4392,6 +5054,7 @@ msgid "Address Country" msgstr "" #: application/views/cabrillo/index.php:186 +#: application/views/reg1test/index.php:150 msgid "No contests were found in your log." msgstr "" @@ -4425,13 +5088,13 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:158 +#: application/views/contesting/index.php:219 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:629 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 -#: application/views/view_log/qso.php:199 +#: application/views/view_log/qso.php:202 msgid "Comment" msgstr "Коментар" @@ -4463,9 +5126,9 @@ msgid "No Contests" msgstr "" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/edit.php:21 -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:635 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4493,10 +5156,11 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:38 -#: application/views/dashboard/index.php:262 -#: application/views/dashboard/index.php:289 -#: application/views/dashboard/index.php:310 -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:278 +#: application/views/dashboard/index.php:305 +#: application/views/dashboard/index.php:326 +#: application/views/dashboard/index.php:347 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "" @@ -4530,7 +5194,7 @@ msgstr "" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:466 +#: application/views/interface_assets/header.php:472 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:43 @@ -4585,15 +5249,15 @@ msgid "Name of Contest in ADIF-specification" msgstr "" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "" #: application/views/contesting/edit.php:31 -#: application/views/contesting/index.php:24 -#: application/views/qso/edit_ajax.php:548 -#: application/views/view_log/qso.php:275 +#: application/views/contesting/index.php:25 +#: application/views/qso/edit_ajax.php:575 +#: application/views/view_log/qso.php:278 msgid "Contest Name" msgstr "Име на състезанието" @@ -4629,90 +5293,138 @@ msgstr "" msgid "Serial + Gridsquare" msgstr "" -#: application/views/contesting/index.php:34 +#: application/views/contesting/index.php:21 +msgid "Serial + Gridsquare + Exchange" +msgstr "" + +#: application/views/contesting/index.php:35 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:539 application/views/qso/index.php:352 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:352 msgid "Operator Callsign" msgstr "" -#: application/views/contesting/index.php:116 -#: application/views/contesting/index.php:208 -#: application/views/qso/edit_ajax.php:571 -msgid "Serial (S)" +#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:45 +msgid "More Settings" msgstr "" -#: application/views/contesting/index.php:121 -#: application/views/contesting/index.php:206 -msgid "Exch (S)" -msgstr "" - -#: application/views/contesting/index.php:126 -msgid "Gridsquare (S)" -msgstr "" - -#: application/views/contesting/index.php:136 -#: application/views/contesting/index.php:209 -#: application/views/qso/edit_ajax.php:566 -msgid "Serial (R)" -msgstr "" - -#: application/views/contesting/index.php:141 -#: application/views/contesting/index.php:207 -msgid "Exch (R)" -msgstr "" - -#: application/views/contesting/index.php:146 -msgid "Gridsquare (R)" -msgstr "" - -#: application/views/contesting/index.php:163 -msgid "Reset QSO" -msgstr "Нулиране на QSO" - -#: application/views/contesting/index.php:164 -#: application/views/qso/index.php:607 -msgid "Save QSO" -msgstr "Запазване на QSO" - -#: application/views/contesting/index.php:166 +#: application/views/contesting/index.php:49 msgid "Copy received exchange to" msgstr "" -#: application/views/contesting/index.php:168 +#: application/views/contesting/index.php:51 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "" -#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:55 msgid "Age" msgstr "" -#: application/views/contesting/index.php:174 +#: application/views/contesting/index.php:57 msgid "RX Power (W)" msgstr "" -#: application/views/contesting/index.php:175 +#: application/views/contesting/index.php:58 msgid "Locator" msgstr "Локатор" -#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:59 +#: application/views/qso/edit_ajax.php:177 +msgid "QTH" +msgstr "" + +#: application/views/contesting/index.php:64 +msgid "Sequence of Exchanges" +msgstr "" + +#: application/views/contesting/index.php:67 +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 "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Grid" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Serial" +msgstr "" + +#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:255 +#: application/views/qso/edit_ajax.php:598 +msgid "Serial (S)" +msgstr "" + +#: application/views/contesting/index.php:177 +msgid "Gridsquare (S)" +msgstr "" + +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:253 +msgid "Exch (S)" +msgstr "" + +#: application/views/contesting/index.php:196 +#: application/views/contesting/index.php:256 +#: application/views/qso/edit_ajax.php:593 +msgid "Serial (R)" +msgstr "" + +#: application/views/contesting/index.php:201 +msgid "Gridsquare (R)" +msgstr "" + +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:254 +msgid "Exch (R)" +msgstr "" + +#: application/views/contesting/index.php:224 +msgid "Reset QSO" +msgstr "Нулиране на QSO" + +#: application/views/contesting/index.php:225 +#: application/views/qso/index.php:629 +msgid "Save QSO" +msgstr "Запазване на QSO" + +#: application/views/contesting/index.php:234 msgid "Callsign Suggestions" msgstr "Предложения за инициали" -#: application/views/contesting/index.php:194 +#: application/views/contesting/index.php:241 msgid "Contest Logbook" msgstr "Дневник на състезанието" -#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:258 #: application/views/qso/edit_ajax.php:164 msgid "VUCC Gridsquare" msgstr "" -#: application/views/continents/index.php:62 -#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 -#: application/views/view_log/qso.php:242 -msgid "Continent" -msgstr "" - #: application/views/continents/index.php:63 #: application/views/statistics/index.php:19 #: application/views/statistics/index.php:113 @@ -4730,14 +5442,15 @@ msgstr "" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:261 -#: application/views/station_profile/edit.php:314 +#: application/views/options/appearance.php:109 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 msgid "Enabled" msgstr "" -#: application/views/cron/edit.php:36 application/views/cron/index.php:53 +#: application/views/cron/edit.php:36 application/views/cron/index.php:55 msgid "Intervall" msgstr "" @@ -4787,6 +5500,7 @@ msgstr "" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "" @@ -4800,79 +5514,84 @@ msgid "" "requiring CLI access." msgstr "" -#: application/views/cron/index.php:18 +#: application/views/cron/index.php:19 msgid "" "To execute cron jobs based on the data below, remove all old cron jobs and " "create a new one:" msgstr "" -#: application/views/cron/index.php:27 application/views/cron/index.php:31 -msgid "Status Master-Cron" +#: application/views/cron/index.php:29 application/views/cron/index.php:33 +msgid "Status Master-Cron:" msgstr "" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgctxt "PHP Version" msgid "Min. Version is" msgstr "" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgid "PHP Version not supported." msgstr "" -#: application/views/cron/index.php:41 +#: application/views/cron/index.php:43 msgid "Cron List" msgstr "" -#: application/views/cron/index.php:50 +#: application/views/cron/index.php:52 #: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "" -#: application/views/cron/index.php:54 +#: application/views/cron/index.php:56 msgid "Last Run" msgstr "" -#: application/views/cron/index.php:55 +#: application/views/cron/index.php:57 msgid "Next Run" msgstr "" -#: application/views/cron/index.php:68 +#: application/views/cron/index.php:70 msgid "healthy" msgstr "" -#: application/views/cron/index.php:70 +#: application/views/cron/index.php:72 msgid "failed" msgstr "" -#: application/views/cron/index.php:75 +#: application/views/cron/index.php:74 +msgid "pending" +msgstr "" + +#: application/views/cron/index.php:79 msgid "disabled" msgstr "" -#: application/views/cron/index.php:79 application/views/cron/index.php:81 -#: application/views/cron/index.php:83 application/views/debug/index.php:494 +#: application/views/cron/index.php:83 application/views/cron/index.php:85 +#: application/views/cron/index.php:87 application/views/debug/index.php:494 #: application/views/debug/index.php:500 application/views/debug/index.php:505 #: application/views/debug/index.php:510 application/views/debug/index.php:515 #: application/views/debug/index.php:520 application/views/debug/index.php:525 +#: application/views/user/index.php:138 msgid "never" msgstr "" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:102 msgid "Your Mastercron isn't running." msgstr "" -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:103 msgid "" "Copy the cron above to a external cron service or into your server's cron to " "use this cron manager." msgstr "" -#: application/views/cron/index.php:100 +#: application/views/cron/index.php:104 msgid "" "On a basic linux server with shell access use this command to edit your " "crons:" msgstr "" -#: application/views/cron/index.php:107 +#: application/views/cron/index.php:111 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -4890,154 +5609,10 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:411 msgid "Propagation Mode" msgstr "" -#: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:214 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 -msgctxt "Propagation Mode" -msgid "Aircraft Scatter" -msgstr "" - -#: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:215 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 -msgctxt "Propagation Mode" -msgid "Aurora" -msgstr "" - -#: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:216 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 -msgctxt "Propagation Mode" -msgid "Aurora-E" -msgstr "" - -#: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:217 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 -msgctxt "Propagation Mode" -msgid "Back scatter" -msgstr "" - -#: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:218 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 -msgctxt "Propagation Mode" -msgid "EchoLink" -msgstr "" - -#: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:219 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 -msgctxt "Propagation Mode" -msgid "Earth-Moon-Earth" -msgstr "" - -#: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:220 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 -msgctxt "Propagation Mode" -msgid "Sporadic E" -msgstr "" - -#: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:221 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 -msgctxt "Propagation Mode" -msgid "Field Aligned Irregularities" -msgstr "" - -#: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:222 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 -msgctxt "Propagation Mode" -msgid "F2 Reflection" -msgstr "" - -#: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:223 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 -msgctxt "Propagation Mode" -msgid "Internet-assisted" -msgstr "" - -#: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:224 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 -msgctxt "Propagation Mode" -msgid "Ionoscatter" -msgstr "" - -#: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:225 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 -msgctxt "Propagation Mode" -msgid "IRLP" -msgstr "" - -#: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:226 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 -msgctxt "Propagation Mode" -msgid "Meteor scatter" -msgstr "" - -#: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:227 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 -msgctxt "Propagation Mode" -msgid "Terrestrial or atmospheric repeater or transponder" -msgstr "" - -#: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:228 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 -msgctxt "Propagation Mode" -msgid "Rain scatter" -msgstr "" - -#: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:229 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 -msgctxt "Propagation Mode" -msgid "Satellite" -msgstr "Сателит" - -#: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:230 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 -msgctxt "Propagation Mode" -msgid "Trans-equatorial" -msgstr "" - -#: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:231 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 -msgctxt "Propagation Mode" -msgid "Tropospheric ducting" -msgstr "" - #: application/views/dashboard/index.php:5 msgid "RSTS" msgstr "" @@ -5046,85 +5621,99 @@ msgstr "" msgid "RSTR" msgstr "" -#: application/views/dashboard/index.php:56 +#: application/views/dashboard/index.php:58 msgid "" "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" msgstr "" -#: application/views/dashboard/index.php:63 +#: application/views/dashboard/index.php:65 #, php-format msgctxt "Dashboard Warning" -msgid "You need to update country files! Click %s to do it." +msgid "You need to update country files! Click %shere%s to do it." msgstr "" -#: application/views/dashboard/index.php:72 +#: application/views/dashboard/index.php:73 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station locations. Click %s to do it:" +msgid "You have no station locations. Click %shere%s to do it." msgstr "" #: application/views/dashboard/index.php:81 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station logbook. Click %s to do it:" +msgid "You have no station logbook. Click %shere%s to do it." msgstr "" -#: application/views/dashboard/index.php:91 +#: application/views/dashboard/index.php:89 +#, php-format +msgctxt "Dashboard Warning" +msgid "" +"Your active Station Location isn't linked to your Logbook. Click %shere%s to " +"do it." +msgstr "" + +#: application/views/dashboard/index.php:97 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station linked to your Logbook. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:106 #, php-format msgid "You have had %d QSO today" msgid_plural "You have had %d QSOs today" msgstr[0] "" msgstr[1] "" -#: application/views/dashboard/index.php:97 +#: application/views/dashboard/index.php:112 msgid "You have made no QSOs today; time to turn on the radio!" msgstr "Днес не сте правили QSO; време е да включите радиото!" -#: application/views/dashboard/index.php:104 +#: application/views/dashboard/index.php:119 msgid "Attention: you need to set an active station location." msgstr "Внимание: трябва да зададете местоположение на активната станция." -#: application/views/dashboard/index.php:110 +#: application/views/dashboard/index.php:125 msgid "" "You have themes without defined theme mode. Please ask the admin to edit the " "themes." msgstr "" -#: application/views/dashboard/index.php:118 +#: application/views/dashboard/index.php:133 msgid "At least one of your LoTW certificates is expired!" msgstr "" -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:139 msgid "At least one of your LoTW certificates is about to expire!" msgstr "" -#: application/views/dashboard/index.php:213 +#: application/views/dashboard/index.php:229 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "Разбивка на QSO-тата" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:252 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "Разбивка по държави" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:269 #: application/views/visitor/index.php:275 msgid "Needed" msgstr "Необходими" -#: application/views/dashboard/index.php:266 -#: application/views/dashboard/index.php:293 -#: application/views/dashboard/index.php:314 -#: application/views/dashboard/index.php:335 +#: application/views/dashboard/index.php:282 +#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:330 +#: application/views/dashboard/index.php:351 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:167 -#: application/views/qso/edit_ajax.php:390 -#: application/views/qso/edit_ajax.php:451 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:550 +#: application/views/qso/edit_ajax.php:417 +#: application/views/qso/edit_ajax.php:478 +#: application/views/qso/edit_ajax.php:518 application/views/qso/index.php:572 #: application/views/search/result_search.php:8 #: application/views/search/search_result_ajax.php:180 #: application/views/search/search_result_ajax.php:260 @@ -5132,91 +5721,91 @@ msgstr "Необходими" #: application/views/search/search_result_ajax.php:332 #: application/views/search/search_result_ajax.php:362 #: application/views/statistics/custom_result.php:89 -#: application/views/view_log/partial/log_ajax.php:140 -#: application/views/view_log/partial/log_ajax.php:217 -#: application/views/view_log/partial/log_ajax.php:237 -#: application/views/view_log/partial/log_ajax.php:287 -#: application/views/view_log/partial/log_ajax.php:295 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:289 +#: application/views/view_log/partial/log_ajax.php:297 #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 -#: src/QSLManager/QSO.php:371 src/QSLManager/QSO.php:423 -#: src/QSLManager/QSO.php:459 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:270 +#: src/QSLManager/QSO.php:373 src/QSLManager/QSO.php:425 +#: src/QSLManager/QSO.php:461 msgid "Sent" msgstr "Изпратени" -#: application/views/dashboard/index.php:272 -#: application/views/dashboard/index.php:299 -#: application/views/dashboard/index.php:320 -#: application/views/dashboard/index.php:341 +#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:315 +#: application/views/dashboard/index.php:336 +#: application/views/dashboard/index.php:357 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 #: application/views/qslprint/qsolist.php:151 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:423 -#: application/views/qso/edit_ajax.php:464 -#: application/views/qso/edit_ajax.php:503 +#: application/views/qso/edit_ajax.php:450 +#: application/views/qso/edit_ajax.php:491 +#: application/views/qso/edit_ajax.php:530 #: application/views/search/search_result_ajax.php:222 #: application/views/search/search_result_ajax.php:273 #: application/views/search/search_result_ajax.php:313 #: application/views/search/search_result_ajax.php:345 #: application/views/search/search_result_ajax.php:375 -#: application/views/view_log/partial/log_ajax.php:178 -#: application/views/view_log/partial/log_ajax.php:218 -#: application/views/view_log/partial/log_ajax.php:263 -#: application/views/view_log/partial/log_ajax.php:288 -#: application/views/view_log/partial/log_ajax.php:296 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:265 +#: application/views/view_log/partial/log_ajax.php:290 +#: application/views/view_log/partial/log_ajax.php:298 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 -#: src/QSLManager/QSO.php:394 src/QSLManager/QSO.php:436 -#: src/QSLManager/QSO.php:472 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:315 +#: src/QSLManager/QSO.php:396 src/QSLManager/QSO.php:438 +#: src/QSLManager/QSO.php:474 msgid "Received" msgstr "Получени" -#: application/views/dashboard/index.php:278 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:388 -#: application/views/logbookadvanced/index.php:399 +#: application/views/dashboard/index.php:294 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:415 +#: application/views/logbookadvanced/index.php:426 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 -#: application/views/qso/edit_ajax.php:395 -#: application/views/qso/edit_ajax.php:428 -#: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:469 +#: application/views/qso/edit_ajax.php:422 +#: application/views/qso/edit_ajax.php:455 +#: application/views/qso/edit_ajax.php:483 #: application/views/qso/edit_ajax.php:496 -#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:555 +#: application/views/qso/edit_ajax.php:523 +#: application/views/qso/edit_ajax.php:535 application/views/qso/index.php:577 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 -#: application/views/view_log/partial/log_ajax.php:146 -#: application/views/view_log/partial/log_ajax.php:184 -#: application/views/view_log/partial/log_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:273 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 -#: src/QSLManager/QSO.php:319 src/QSLManager/QSO.php:379 -#: src/QSLManager/QSO.php:402 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +#: application/views/view_log/partial/log_ajax.php:249 +#: application/views/view_log/partial/log_ajax.php:275 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:276 +#: src/QSLManager/QSO.php:321 src/QSLManager/QSO.php:381 +#: src/QSLManager/QSO.php:404 msgid "Requested" msgstr "Заявени" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:304 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:351 +#: application/views/dashboard/index.php:367 msgid "VUCC-Grids" msgstr "" #: application/views/dayswithqso/index.php:2 -#: application/views/interface_assets/header.php:146 +#: application/views/interface_assets/header.php:148 msgid "Days with QSOs" msgstr "" @@ -5245,7 +5834,7 @@ msgstr "" #: application/views/dayswithqso/index.php:58 #: application/views/dayswithqso/index.php:86 #: application/views/dayswithqso/index.php:108 -#: application/views/timeline/index.php:120 +#: application/views/timeline/index.php:153 msgid "End Date" msgstr "" @@ -5312,9 +5901,7 @@ msgstr "" #: application/views/debug/index.php:47 #, php-format -msgid "" -"Check this wiki article here for " -"more information." +msgid "Check this wiki article %shere%s for more information." msgstr "" #: application/views/debug/index.php:48 @@ -5458,7 +6045,7 @@ msgstr "" msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:283 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:671 msgid "Settings" msgstr "" @@ -5515,7 +6102,7 @@ msgstr "" #: application/views/debug/index.php:506 application/views/debug/index.php:511 #: application/views/debug/index.php:516 application/views/debug/index.php:521 #: application/views/debug/index.php:526 -#: application/views/station_profile/edit.php:22 +#: application/views/station_profile/edit.php:49 msgid "Update" msgstr "" @@ -5557,9 +6144,8 @@ msgstr[1] "" #: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:57 -#: application/views/station_profile/edit.php:46 -#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" @@ -5587,69 +6173,93 @@ msgid "Everything ok" msgstr "" #: application/views/debug/index.php:629 -msgid "Bulgarian" +msgid "Albanian" msgstr "" #: application/views/debug/index.php:630 -msgid "Chinese (Simplified)" +msgid "Bosnian" msgstr "" #: application/views/debug/index.php:631 -msgid "Czech" +msgid "Bulgarian" msgstr "" #: application/views/debug/index.php:632 -msgid "Dutch" +msgid "Chinese (Simplified)" msgstr "" #: application/views/debug/index.php:633 -msgid "English" +msgid "Croatian" msgstr "" #: application/views/debug/index.php:634 -msgid "Finnish" +msgid "Czech" msgstr "" #: application/views/debug/index.php:635 -msgid "French" +msgid "Dutch" msgstr "" #: application/views/debug/index.php:636 -msgid "German" +msgid "English" msgstr "" #: application/views/debug/index.php:637 -msgid "Greek" +msgid "Finnish" msgstr "" #: application/views/debug/index.php:638 -msgid "Italian" +msgid "French" msgstr "" #: application/views/debug/index.php:639 -msgid "Polish" +msgid "German" msgstr "" #: application/views/debug/index.php:640 -msgid "Portuguese" +msgid "Greek" msgstr "" #: application/views/debug/index.php:641 -msgid "Russian" +msgid "Italian" msgstr "" #: application/views/debug/index.php:642 -msgid "Spanish" +msgid "Montenegrin" msgstr "" #: application/views/debug/index.php:643 -msgid "Swedish" +msgid "Polish" msgstr "" #: application/views/debug/index.php:644 +msgid "Portuguese" +msgstr "" + +#: application/views/debug/index.php:645 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:646 +msgid "Serbian" +msgstr "" + +#: application/views/debug/index.php:647 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:648 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:649 msgid "Turkish" msgstr "" +#: application/views/distancerecords/index.php:4 +msgid "This page lists distance records per satellite based on gridsquares." +msgstr "" + #: application/views/distances/index.php:7 #: application/views/interface_assets/footer.php:30 #: application/views/simplefle/index.php:68 @@ -5657,7 +6267,8 @@ msgid "QSO Data" msgstr "" #: application/views/distances/index.php:9 -msgid "contacts were plotted.
Your furthest contact was with" +#, php-format +msgid "contacts were plotted.%s Your furthest contact was with" msgstr "" #: application/views/distances/index.php:10 @@ -5699,7 +6310,7 @@ msgid "Date to" msgstr "" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:366 +#: application/views/view_log/qso.php:369 msgid "QSL Info" msgstr "QSL информация" @@ -5725,7 +6336,7 @@ msgstr "" #: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 #: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 #: application/views/eqsl/tools.php:15 -#: application/views/interface_assets/header.php:243 +#: application/views/interface_assets/header.php:247 msgid "Tools" msgstr "" @@ -5865,27 +6476,15 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2324 -#: application/views/interface_assets/footer.php:2342 -#: application/views/interface_assets/footer.php:2363 -#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2338 +#: application/views/interface_assets/footer.php:2356 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 #: application/views/qslcard/index.php:66 -#: application/views/view_log/qso.php:614 +#: application/views/view_log/qso.php:617 msgid "View" msgstr "" -#: application/views/gridmap/index.php:38 -#: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:604 -#: application/views/logbookadvanced/useroptions.php:118 -msgid "Propagation" -msgstr "" - -#: application/views/gridmap/index.php:42 -msgid "None/Empty" -msgstr "" - #: application/views/gridmap/index.php:43 msgid "All except SAT" msgstr "" @@ -5981,8 +6580,8 @@ msgstr "" #: application/views/interface_assets/footer.php:31 #: application/views/search/search_result_ajax.php:404 #: application/views/view_log/partial/log.php:135 -#: application/views/view_log/partial/log_ajax.php:318 -#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log_ajax.php:320 +#: application/views/view_log/qso.php:437 msgid "Edit QSO" msgstr "Редактирай QSO" @@ -5990,171 +6589,192 @@ msgstr "Редактирай QSO" msgid "Attention" msgstr "" -#: application/views/interface_assets/footer.php:36 -msgid "OK" -msgstr "" - -#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/footer.php:38 msgid "Warning! Are you sure you want delete QSO with " msgstr "" -#: application/views/interface_assets/footer.php:38 +#: application/views/interface_assets/footer.php:39 #: application/views/user/edit.php:493 msgid "Colors" msgstr "" -#: application/views/interface_assets/footer.php:40 +#: application/views/interface_assets/footer.php:41 msgid "Worked not confirmed" msgstr "" -#: application/views/interface_assets/footer.php:41 +#: application/views/interface_assets/footer.php:42 msgid "Not worked" msgstr "" -#: application/views/interface_assets/footer.php:44 -#: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/interface_assets/footer.php:46 +#: application/views/qso/index.php:623 +#: application/views/visitor/layout/footer.php:246 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:47 #: application/views/qso/edit_ajax.php:211 -#: application/views/qso/edit_ajax.php:512 +#: application/views/qso/edit_ajax.php:539 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "" -#: application/views/interface_assets/footer.php:127 -#: application/views/interface_assets/header.php:434 +#: application/views/interface_assets/footer.php:48 +msgid "No states for this DXCC available" +msgstr "" + +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "" + +#: application/views/interface_assets/footer.php:132 +#: application/views/interface_assets/header.php:440 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:392 +#: application/views/interface_assets/footer.php:398 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:395 +#: application/views/interface_assets/footer.php:401 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:411 +#: application/views/interface_assets/footer.php:417 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:413 +#: application/views/interface_assets/footer.php:419 #: application/views/search/filter.php:46 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:415 +#: application/views/interface_assets/footer.php:421 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:420 +#: application/views/interface_assets/footer.php:426 #: application/views/search/filter.php:60 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:432 -#: application/views/interface_assets/footer.php:561 -#: application/views/interface_assets/footer.php:625 +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:437 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:458 -#: application/views/interface_assets/footer.php:589 +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 #: application/views/search/filter.php:79 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:496 +#: application/views/interface_assets/footer.php:502 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:516 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:519 +#: application/views/interface_assets/footer.php:525 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:545 +#: application/views/interface_assets/footer.php:551 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:549 +#: application/views/interface_assets/footer.php:555 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:678 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1156 -#, php-format -msgid "You're not logged it. Please login" +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:533 +msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:1362 -#: application/views/interface_assets/footer.php:1366 -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1506 -#: application/views/interface_assets/footer.php:1510 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:731 +msgid "Count: " +msgstr "" + +#: application/views/interface_assets/footer.php:732 +msgid "Grids: " +msgstr "" + +#: application/views/interface_assets/footer.php:1167 +#, php-format +msgid "You're not logged in. Please %slogin%s" +msgstr "" + +#: application/views/interface_assets/footer.php:1375 +#: application/views/interface_assets/footer.php:1379 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1523 +#: application/views/interface_assets/footer.php:1526 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1526 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2100 +#: application/views/interface_assets/footer.php:2114 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2120 +#: application/views/interface_assets/footer.php:2134 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2160 +#: application/views/interface_assets/footer.php:2174 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2162 +#: application/views/interface_assets/footer.php:2176 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2335 -#: application/views/interface_assets/footer.php:2374 -#: application/views/view_log/qso.php:604 +#: application/views/interface_assets/footer.php:2349 +#: application/views/interface_assets/footer.php:2388 +#: application/views/view_log/qso.php:607 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2354 +#: application/views/interface_assets/footer.php:2368 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2392 +#: application/views/interface_assets/footer.php:2406 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2403 -#: application/views/interface_assets/footer.php:2428 +#: application/views/interface_assets/footer.php:2417 +#: application/views/interface_assets/footer.php:2442 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2439 +#: application/views/interface_assets/footer.php:2453 msgid "Something went wrong. Please try again!" msgstr "" @@ -6210,91 +6830,91 @@ msgstr "" msgid "Activated Gridsquares" msgstr "" -#: application/views/interface_assets/header.php:160 +#: application/views/interface_assets/header.php:162 msgid "International" msgstr "" -#: application/views/interface_assets/header.php:166 +#: application/views/interface_assets/header.php:168 msgid "ITU" msgstr "" -#: application/views/interface_assets/header.php:186 +#: application/views/interface_assets/header.php:190 msgid "Canada" msgstr "" -#: application/views/interface_assets/header.php:192 +#: application/views/interface_assets/header.php:196 msgid "Germany" msgstr "" -#: application/views/interface_assets/header.php:196 +#: application/views/interface_assets/header.php:200 msgid "DL Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:200 +#: application/views/interface_assets/header.php:204 msgid "Great Britain" msgstr "" -#: application/views/interface_assets/header.php:202 +#: application/views/interface_assets/header.php:206 msgid "WAB" msgstr "" -#: application/views/interface_assets/header.php:206 +#: application/views/interface_assets/header.php:210 msgid "Japan" msgstr "" -#: application/views/interface_assets/header.php:212 +#: application/views/interface_assets/header.php:216 msgid "JA Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:216 +#: application/views/interface_assets/header.php:220 msgid "Luxemburg" msgstr "" -#: application/views/interface_assets/header.php:218 +#: application/views/interface_assets/header.php:222 msgid "LX Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:222 +#: application/views/interface_assets/header.php:226 msgid "Switzerland" msgstr "" -#: application/views/interface_assets/header.php:228 +#: application/views/interface_assets/header.php:232 msgid "USA" msgstr "" -#: application/views/interface_assets/header.php:234 +#: application/views/interface_assets/header.php:238 msgid "US Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:251 +#: application/views/interface_assets/header.php:255 msgid "Bandmap" msgstr "" -#: application/views/interface_assets/header.php:253 +#: application/views/interface_assets/header.php:257 msgid "SAT Timers" msgstr "" -#: application/views/interface_assets/header.php:256 +#: application/views/interface_assets/header.php:260 msgid "Satellite Flightpath" msgstr "" -#: application/views/interface_assets/header.php:258 +#: application/views/interface_assets/header.php:262 msgid "Satellite Pass" msgstr "" -#: application/views/interface_assets/header.php:265 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:269 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:274 msgid "Global Options" msgstr "" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:280 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:11 +#: application/views/satellite/pass.php:495 #: application/views/statistics/custom.php:20 #: application/views/statistics/custom_result.php:21 #: application/views/statistics/index.php:39 @@ -6302,79 +6922,83 @@ msgstr "" msgid "Satellites" msgstr "" -#: application/views/interface_assets/header.php:282 +#: application/views/interface_assets/header.php:286 msgid "Update Country Files" msgstr "" -#: application/views/interface_assets/header.php:286 +#: application/views/interface_assets/header.php:290 msgid "Debug Information" msgstr "" -#: application/views/interface_assets/header.php:333 +#: application/views/interface_assets/header.php:337 msgid "Add/Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:335 +#: application/views/interface_assets/header.php:339 msgid "Log" msgstr "" -#: application/views/interface_assets/header.php:342 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:346 +#: application/views/logbookadvanced/index.php:474 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:371 +#: application/views/interface_assets/header.php:375 #: application/views/user/edit.php:49 msgid "Account" msgstr "" -#: application/views/interface_assets/header.php:386 +#: application/views/interface_assets/header.php:390 msgid "Other Export Options" msgstr "" -#: application/views/interface_assets/header.php:394 +#: application/views/interface_assets/header.php:398 msgid "Cabrillo Export" msgstr "" -#: application/views/interface_assets/header.php:418 -msgid "QSL Queue" -msgstr "" - -#: application/views/interface_assets/header.php:419 -msgid "Labels" -msgstr "" - -#: application/views/interface_assets/header.php:421 -msgid "Third-Party Services" +#: application/views/interface_assets/header.php:400 +msgid "EDI Export" msgstr "" #: application/views/interface_assets/header.php:424 -msgid "eQSL Import / Export" +msgid "QSL Queue" msgstr "" #: application/views/interface_assets/header.php:425 +msgid "Labels" +msgstr "" + +#: application/views/interface_assets/header.php:427 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:430 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:431 msgid "HRDLog Logbook" msgstr "" -#: application/views/interface_assets/header.php:435 +#: application/views/interface_assets/header.php:441 msgid "Help" msgstr "" -#: application/views/interface_assets/header.php:436 +#: application/views/interface_assets/header.php:442 msgid "Forum" msgstr "" -#: application/views/interface_assets/header.php:438 +#: application/views/interface_assets/header.php:444 msgid "Logout" msgstr "" -#: application/views/interface_assets/header.php:446 +#: application/views/interface_assets/header.php:452 msgid "Select a Location" msgstr "" -#: application/views/interface_assets/header.php:525 +#: application/views/interface_assets/header.php:531 msgid "Extras" msgstr "" @@ -6645,86 +7269,122 @@ msgid "Start printing at?" msgstr "" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:405 -#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" -#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/edit.php:23 msgid "LoTW Sent" msgstr "" -#: application/views/logbookadvanced/edit.php:23 +#: application/views/logbookadvanced/edit.php:24 msgid "LoTW Received" msgstr "" -#: application/views/logbookadvanced/edit.php:73 +#: application/views/logbookadvanced/edit.php:75 msgid "SAT Mode" msgstr "" -#: application/views/logbookadvanced/edit.php:87 +#: application/views/logbookadvanced/edit.php:89 msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:174 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:144 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:148 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:152 +#: application/views/logbookadvanced/index.php:569 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:148 +#: application/views/logbookadvanced/index.php:159 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:224 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:540 +msgid "Invalid" +msgstr "" + +#: application/views/logbookadvanced/index.php:324 msgid "QSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:375 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:397 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:439 #: application/views/lookup/lotwuser.php:12 -#: application/views/qso/edit_ajax.php:394 -#: application/views/qso/edit_ajax.php:427 -#: application/views/qso/edit_ajax.php:455 -#: application/views/qso/edit_ajax.php:468 +#: application/views/qso/edit_ajax.php:421 +#: application/views/qso/edit_ajax.php:454 +#: application/views/qso/edit_ajax.php:482 #: application/views/qso/edit_ajax.php:495 -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 +#: application/views/qso/edit_ajax.php:522 +#: application/views/qso/edit_ajax.php:534 application/views/qso/index.php:576 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:209 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:236 -#: application/views/station_profile/create.php:275 -#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 #: application/views/station_profile/create.php:293 -#: application/views/station_profile/edit.php:330 -#: application/views/station_profile/edit.php:338 -#: application/views/station_profile/edit.php:364 -#: application/views/station_profile/edit.php:385 -#: application/views/station_profile/edit.php:403 -#: application/views/station_profile/edit.php:410 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 +#: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 #: application/views/user/edit.php:347 application/views/user/edit.php:358 #: application/views/user/edit.php:369 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:399 @@ -6734,35 +7394,35 @@ msgstr "" msgid "Yes" msgstr "Да" -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 -#: application/views/logbookadvanced/index.php:376 -#: application/views/logbookadvanced/index.php:387 -#: application/views/logbookadvanced/index.php:398 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:440 #: application/views/lookup/lotwuser.php:14 -#: application/views/qso/edit_ajax.php:393 -#: application/views/qso/edit_ajax.php:426 -#: application/views/qso/edit_ajax.php:454 -#: application/views/qso/edit_ajax.php:467 +#: application/views/qso/edit_ajax.php:420 +#: application/views/qso/edit_ajax.php:453 +#: application/views/qso/edit_ajax.php:481 #: application/views/qso/edit_ajax.php:494 -#: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 +#: application/views/qso/edit_ajax.php:521 +#: application/views/qso/edit_ajax.php:533 application/views/qso/index.php:575 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:210 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:237 -#: application/views/station_profile/create.php:276 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/create.php:292 -#: application/views/station_profile/edit.php:331 -#: application/views/station_profile/edit.php:339 -#: application/views/station_profile/edit.php:365 -#: application/views/station_profile/edit.php:386 -#: application/views/station_profile/edit.php:404 -#: application/views/station_profile/edit.php:411 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 #: application/views/user/edit.php:348 application/views/user/edit.php:359 #: application/views/user/edit.php:370 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:400 @@ -6773,32 +7433,32 @@ msgstr "Да" msgid "No" msgstr "Не" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 -#: application/views/logbookadvanced/index.php:389 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:416 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 -#: application/views/qso/edit_ajax.php:396 -#: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:497 application/views/qso/index.php:556 +#: application/views/qso/edit_ajax.php:423 +#: application/views/qso/edit_ajax.php:484 +#: application/views/qso/edit_ajax.php:524 application/views/qso/index.php:578 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:225 -#: application/views/view_log/partial/log_ajax.php:143 -#: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +#: src/QSLManager/QSO.php:273 src/QSLManager/QSO.php:318 msgid "Queued" msgstr "" -#: application/views/logbookadvanced/index.php:304 -#: application/views/logbookadvanced/index.php:314 -#: application/views/logbookadvanced/index.php:346 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:368 -#: application/views/logbookadvanced/index.php:378 -#: application/views/logbookadvanced/index.php:390 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:373 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:417 +#: application/views/logbookadvanced/index.php:427 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6806,42 +7466,42 @@ msgstr "" #: application/views/qslprint/qsolist.php:109 #: application/views/qslprint/qsolist.php:174 #: application/views/qslprint/qsolist.php:189 -#: application/views/qso/edit_ajax.php:397 -#: application/views/qso/edit_ajax.php:429 -#: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:470 -#: application/views/qso/edit_ajax.php:498 -#: application/views/qso/edit_ajax.php:509 application/views/qso/index.php:557 +#: application/views/qso/edit_ajax.php:424 +#: application/views/qso/edit_ajax.php:456 +#: application/views/qso/edit_ajax.php:485 +#: application/views/qso/edit_ajax.php:497 +#: application/views/qso/edit_ajax.php:525 +#: application/views/qso/edit_ajax.php:536 application/views/qso/index.php:579 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/search/search_result_ajax.php:305 #: application/views/search/search_result_ajax.php:320 -#: application/views/view_log/partial/log_ajax.php:149 -#: application/views/view_log/partial/log_ajax.php:187 -#: application/views/view_log/partial/log_ajax.php:242 -#: application/views/view_log/partial/log_ajax.php:268 -#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 -#: src/QSLManager/QSO.php:375 src/QSLManager/QSO.php:398 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +#: application/views/view_log/partial/log_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:270 +#: src/QSLManager/QSO.php:279 src/QSLManager/QSO.php:324 +#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:400 msgid "Invalid (Ignore)" msgstr "" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:335 msgid "QSL received" msgstr "" -#: application/views/logbookadvanced/index.php:315 -#: application/views/logbookadvanced/index.php:357 -#: application/views/logbookadvanced/index.php:379 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:428 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:346 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:359 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6850,268 +7510,264 @@ msgstr "" #: application/views/qslprint/qsolist.php:77 #: application/views/qslprint/qsolist.php:119 #: application/views/qslprint/qsolist.php:210 -#: application/views/qso/edit_ajax.php:408 -#: application/views/qso/edit_ajax.php:441 application/views/qso/index.php:568 +#: application/views/qso/edit_ajax.php:435 +#: application/views/qso/edit_ajax.php:468 application/views/qso/index.php:590 #: application/views/search/search_result_ajax.php:199 #: application/views/search/search_result_ajax.php:241 -#: application/views/view_log/partial/log_ajax.php:162 -#: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +#: src/QSLManager/QSO.php:296 src/QSLManager/QSO.php:339 msgid "Bureau" msgstr "Бюро" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:360 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 #: application/views/qslprint/qsolist.php:80 #: application/views/qslprint/qsolist.php:122 #: application/views/qslprint/qsolist.php:211 -#: application/views/qso/edit_ajax.php:407 -#: application/views/qso/edit_ajax.php:440 application/views/qso/index.php:567 +#: application/views/qso/edit_ajax.php:434 +#: application/views/qso/edit_ajax.php:467 application/views/qso/index.php:589 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 -#: application/views/view_log/partial/log_ajax.php:165 -#: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +#: src/QSLManager/QSO.php:299 src/QSLManager/QSO.php:342 msgid "Direct" msgstr "Директено" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 #: application/views/qslprint/qsolist.php:86 #: application/views/qslprint/qsolist.php:128 #: application/views/qslprint/qsolist.php:212 -#: application/views/qso/edit_ajax.php:409 -#: application/views/qso/edit_ajax.php:442 application/views/qso/index.php:569 +#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:591 #: application/views/search/search_result_ajax.php:208 #: application/views/search/search_result_ajax.php:250 -#: application/views/view_log/partial/log_ajax.php:171 -#: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +#: src/QSLManager/QSO.php:305 src/QSLManager/QSO.php:348 msgid "Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:362 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 -#: application/views/qso/edit_ajax.php:410 -#: application/views/qso/edit_ajax.php:443 application/views/qso/index.php:570 +#: application/views/qso/edit_ajax.php:437 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:592 #: application/views/search/search_result_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:206 +#: application/views/view_log/partial/log_ajax.php:208 msgid "Manager" msgstr "" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:356 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:366 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:377 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:388 msgid "Clublog sent" msgstr "" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:399 msgid "Clublog received" msgstr "" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:410 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:436 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:448 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" -#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:451 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:425 -#: application/views/qso/edit_ajax.php:595 +#: application/views/logbookadvanced/index.php:452 +#: application/views/qso/edit_ajax.php:622 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:453 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:454 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:456 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:457 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:459 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:460 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:462 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:463 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:465 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:466 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:472 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:477 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:480 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:486 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:492 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:495 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:498 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:501 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:507 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:516 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:518 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:527 #: application/views/qso/index.php:272 -#: application/views/station_profile/edit.php:65 +#: application/views/station_profile/edit.php:92 msgid "Location" msgstr "Местоположение" -#: application/views/logbookadvanced/index.php:506 -msgid "Callsign: " -msgstr "" - -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:539 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:547 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:605 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:650 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -7139,41 +7795,15 @@ msgstr "" msgid "Column" msgstr "" -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/useroptions.php:152 msgctxt "Map Options" msgid "Layer" msgstr "" -#: application/views/logbookadvanced/useroptions.php:149 +#: application/views/logbookadvanced/useroptions.php:153 msgid "Default on" msgstr "" -#: application/views/logbookadvanced/useroptions.php:154 -#: application/views/stationsetup/exportmapoptions.php:23 -msgctxt "Map Options" -msgid "Path lines" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:158 -msgctxt "Map Options" -msgid "Gridsquares" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:162 -msgctxt "Map Options" -msgid "CQ Zones" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:166 -msgctxt "Map Options" -msgid "ITU Zones" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:170 -msgctxt "Map Options" -msgid "Night Shadow" -msgstr "" - #: application/views/lookup/index.php:8 msgid "US State" msgstr "" @@ -7273,59 +7903,63 @@ msgstr "Налични сертификати" msgid "Upload Certificate" msgstr "Качване на сертификат" -#: application/views/lotw_views/index.php:41 +#: application/views/lotw_views/index.php:37 msgid "QSO Start Date" msgstr "" -#: application/views/lotw_views/index.php:42 +#: application/views/lotw_views/index.php:38 msgid "QSO End Date" msgstr "" -#: application/views/lotw_views/index.php:43 +#: application/views/lotw_views/index.php:39 msgid "Date Created" msgstr "Дата на създаване" -#: application/views/lotw_views/index.php:44 +#: application/views/lotw_views/index.php:40 msgid "Date Expires" msgstr "Дата изтичане" -#: application/views/lotw_views/index.php:46 -#: application/views/view_log/qso.php:404 +#: application/views/lotw_views/index.php:42 +#: application/views/view_log/qso.php:407 msgid "Last Upload" msgstr "Last upload" -#: application/views/lotw_views/index.php:91 +#: application/views/lotw_views/index.php:87 msgid "Expired" msgstr "Изтекъл" -#: application/views/lotw_views/index.php:93 +#: application/views/lotw_views/index.php:89 msgid "Expiring" msgstr "" -#: application/views/lotw_views/index.php:105 +#: application/views/lotw_views/index.php:91 +msgid "Valid" +msgstr "Валиден" + +#: application/views/lotw_views/index.php:101 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:108 +#: application/views/lotw_views/index.php:104 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:114 +#: application/views/lotw_views/index.php:110 msgid "Not Synced" msgstr "Не е синхронизиран" -#: application/views/lotw_views/index.php:129 +#: application/views/lotw_views/index.php:125 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" "Трябва да качите някои LoTW p12 сертификати, за да използвате тази област." -#: application/views/lotw_views/index.php:144 +#: application/views/lotw_views/index.php:140 msgid "Information" msgstr "Информация" -#: application/views/lotw_views/index.php:149 +#: application/views/lotw_views/index.php:145 msgid "Manual Sync" msgstr "Ръчно синхронизиране" @@ -7540,6 +8174,14 @@ msgstr "" msgid "This enables the button to Wavelog's Github page in the public view" msgstr "" +#: application/views/options/appearance.php:107 +msgid "Public Login Button" +msgstr "" + +#: application/views/options/appearance.php:112 +msgid "This enables the button to login to Wavelog in the public view" +msgstr "" + #: application/views/options/dxcluster.php:38 msgid "Provider of DXClusterCache" msgstr "" @@ -7837,7 +8479,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:64 #: application/views/oqrs/showrequests.php:87 -#: application/views/user/main.php:48 application/views/user/profile.php:24 +#: application/views/user/index.php:48 application/views/user/profile.php:24 msgid "E-mail" msgstr "" @@ -7860,21 +8502,21 @@ msgstr "" #: application/views/search/search_result_ajax.php:127 #: application/views/user/edit.php:478 #: application/views/view_log/partial/log.php:22 -#: application/views/view_log/partial/log_ajax.php:86 -#: application/views/view_log/qso.php:503 -#: application/views/view_log/qso.php:507 -#: application/views/view_log/qso.php:511 -#: application/views/view_log/qso.php:515 -#: application/views/view_log/qso.php:521 -#: application/views/view_log/qso.php:528 -#: application/views/view_log/qso.php:535 -#: application/views/view_log/qso.php:542 -#: application/views/view_log/qso.php:549 -#: application/views/view_log/qso.php:556 -#: application/views/view_log/qso.php:563 -#: application/views/view_log/qso.php:570 -#: application/views/view_log/qso.php:577 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log_ajax.php:88 +#: application/views/view_log/qso.php:506 +#: application/views/view_log/qso.php:510 +#: application/views/view_log/qso.php:514 +#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:531 +#: application/views/view_log/qso.php:538 +#: application/views/view_log/qso.php:545 +#: application/views/view_log/qso.php:552 +#: application/views/view_log/qso.php:559 +#: application/views/view_log/qso.php:566 +#: application/views/view_log/qso.php:573 +#: application/views/view_log/qso.php:580 +#: application/views/view_log/qso.php:585 msgid "Station" msgstr "Станция" @@ -7882,10 +8524,10 @@ msgstr "Станция" #: application/views/qslprint/qslprint.php:28 #: application/views/qslprint/qsolist.php:14 #: application/views/qslprint/qsolist.php:83 -#: application/views/qso/index.php:576 +#: application/views/qso/index.php:598 #: application/views/search/search_result_ajax.php:205 -#: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:300 +#: application/views/view_log/partial/log_ajax.php:170 +#: src/QSLManager/QSO.php:302 msgid "Via" msgstr "Чрез" @@ -8114,7 +8756,7 @@ msgid "Remove" msgstr "" #: application/views/qslprint/qslprint.php:33 -#: application/views/simplefle/index.php:133 +#: application/views/simplefle/index.php:139 msgid "QSO List" msgstr "" @@ -8160,35 +8802,20 @@ msgid "" "queue." msgstr "" -#: application/views/qso/components/winkeysettings.php:7 -#: application/views/qso/components/winkeysettings_results.php:7 -msgid "Winkey Macros" -msgstr "" - -#: application/views/qso/components/winkeysettings.php:12 -#: application/views/qso/components/winkeysettings.php:28 -#: application/views/qso/components/winkeysettings.php:44 -#: application/views/qso/components/winkeysettings.php:60 -#: application/views/qso/components/winkeysettings.php:76 -#: application/views/qso/components/winkeysettings_results.php:12 -#: application/views/qso/components/winkeysettings_results.php:28 -#: application/views/qso/components/winkeysettings_results.php:44 -#: application/views/qso/components/winkeysettings_results.php:60 -#: application/views/qso/components/winkeysettings_results.php:76 -#, php-format -msgid "Function %d - Name" -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:83 -#: application/views/qso/components/winkeysettings_results.php:19 -#: application/views/qso/components/winkeysettings_results.php:35 -#: application/views/qso/components/winkeysettings_results.php:51 -#: application/views/qso/components/winkeysettings_results.php:67 -#: application/views/qso/components/winkeysettings_results.php:83 +#, 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 #, php-format msgid "Function %d - Macro" msgstr "" @@ -8214,7 +8841,8 @@ msgid "RX Band" msgstr "" #: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:346 -#: application/views/view_log/qso.php:542 +#: application/views/reg1test/index.php:114 +#: application/views/view_log/qso.php:545 msgid "Transmit Power (W)" msgstr "Мощност на предавателя (W)" @@ -8226,10 +8854,6 @@ msgstr "Посочете стойността на мощността във в msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:177 -msgid "QTH" -msgstr "" - #: application/views/qso/edit_ajax.php:258 msgid "Sat Name" msgstr "" @@ -8238,69 +8862,85 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:356 application/views/qso/index.php:255 -#: application/views/qso/index.php:500 application/views/user/edit.php:599 -#: application/views/view_log/qso.php:332 -#: application/views/view_log/qso.php:582 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:545 +msgid "Antenna Azimuth (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:547 +msgid "Antenna azimuth in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:274 application/views/qso/index.php:551 +msgid "Antenna Elevation (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:276 application/views/qso/index.php:553 +msgid "Antenna elevation in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:383 application/views/qso/index.php:255 +#: application/views/qso/index.php:510 application/views/user/edit.php:599 +#: application/views/view_log/qso.php:335 +#: application/views/view_log/qso.php:585 msgid "Sig Info" msgstr "" -#: application/views/qso/edit_ajax.php:369 +#: application/views/qso/edit_ajax.php:396 msgid "Notes (for internal usage only)" msgstr "" -#: application/views/qso/edit_ajax.php:403 +#: application/views/qso/edit_ajax.php:430 msgid "Sent Method" msgstr "" -#: application/views/qso/edit_ajax.php:406 -#: application/views/qso/edit_ajax.php:439 application/views/qso/index.php:563 -#: application/views/qso/index.php:566 +#: application/views/qso/edit_ajax.php:433 +#: application/views/qso/edit_ajax.php:466 application/views/qso/index.php:585 +#: application/views/qso/index.php:588 msgid "Method" msgstr "Метод" -#: application/views/qso/edit_ajax.php:416 +#: application/views/qso/edit_ajax.php:443 msgid "Sent Via" msgstr "" -#: application/views/qso/edit_ajax.php:430 -#: application/views/qso/edit_ajax.php:471 -#: application/views/qso/edit_ajax.php:510 +#: application/views/qso/edit_ajax.php:457 +#: application/views/qso/edit_ajax.php:498 +#: application/views/qso/edit_ajax.php:537 msgid "Verified (Match)" msgstr "" -#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:463 msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:477 application/views/qso/index.php:583 +#: application/views/qso/edit_ajax.php:504 application/views/qso/index.php:605 msgid "This note content is exported to QSL services like eqsl.cc." msgstr "" -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:586 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:608 msgid "Get the default message for eQSL, for this station." msgstr "" -#: application/views/qso/edit_ajax.php:530 +#: application/views/qso/edit_ajax.php:557 msgid "Change Station Profile" msgstr "" -#: application/views/qso/edit_ajax.php:576 +#: application/views/qso/edit_ajax.php:603 msgid "Exchange (R)" msgstr "" -#: application/views/qso/edit_ajax.php:581 +#: application/views/qso/edit_ajax.php:608 msgid "Exchange (S)" msgstr "" -#: application/views/qso/edit_ajax.php:593 +#: application/views/qso/edit_ajax.php:620 #: application/views/search/search_result_ajax.php:432 #: application/views/view_log/partial/log.php:156 -#: application/views/view_log/partial/log_ajax.php:346 +#: application/views/view_log/partial/log_ajax.php:348 msgid "Delete QSO" msgstr "Изтрий QSO" -#: application/views/qso/edit_ajax.php:596 +#: application/views/qso/edit_ajax.php:623 msgid "Save changes" msgstr "" @@ -8308,7 +8948,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:5 application/views/qso/index.php:694 +#: application/views/qso/index.php:5 application/views/qso/index.php:718 msgid "Previous Contacts" msgstr "Предишни контакти" @@ -8348,23 +8988,23 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:149 -#: application/views/station_profile/edit.php:191 -#: application/views/user/edit.php:583 application/views/view_log/qso.php:282 -#: application/views/view_log/qso.php:549 +#: application/views/qso/index.php:196 application/views/qso/index.php:449 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 +#: application/views/user/edit.php:583 application/views/view_log/qso.php:285 +#: application/views/view_log/qso.php:552 msgid "IOTA Reference" msgstr "IOTA референция" -#: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:165 -#: application/views/station_profile/edit.php:219 -#: application/views/user/edit.php:587 application/views/view_log/qso.php:289 -#: application/views/view_log/qso.php:556 +#: application/views/qso/index.php:212 application/views/qso/index.php:466 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 +#: application/views/user/edit.php:587 application/views/view_log/qso.php:292 +#: application/views/view_log/qso.php:559 msgid "SOTA Reference" msgstr "SOTA референция" -#: application/views/qso/index.php:322 application/views/view_log/qso.php:98 +#: application/views/qso/index.php:322 application/views/view_log/qso.php:100 msgid "Frequency (RX)" msgstr "Честота (RX)" @@ -8372,39 +9012,39 @@ msgstr "Честота (RX)" msgid "Band (RX)" msgstr "Обхват (RX)" -#: application/views/qso/index.php:458 +#: application/views/qso/index.php:468 msgid "For example: GM/NS-001." msgstr "Например: GM/NS-001." -#: application/views/qso/index.php:471 +#: application/views/qso/index.php:481 msgid "For example: DLFF-0069." msgstr "Например: DLFF-0069." -#: application/views/qso/index.php:484 +#: application/views/qso/index.php:494 msgid "For example: PA-0150. Multiple values allowed." msgstr "Например: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:496 +#: application/views/qso/index.php:506 msgid "For example: GMA" msgstr "Например: GMA" -#: application/views/qso/index.php:502 +#: application/views/qso/index.php:512 msgid "For example: DA/NW-357" msgstr "Например: DA/NW-357" -#: application/views/qso/index.php:510 +#: application/views/qso/index.php:520 msgid "For example: Q03" msgstr "Например: Q03" -#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +#: application/views/qso/index.php:529 application/views/view_log/qso.php:210 msgid "Satellite Name" msgstr "Име на сателита" -#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +#: application/views/qso/index.php:537 application/views/view_log/qso.php:217 msgid "Satellite Mode" msgstr "Режим на сателита" -#: application/views/qso/index.php:538 +#: application/views/qso/index.php:560 msgid "" "Note content is used within Wavelog only and is not exported to other " "services." @@ -8412,27 +9052,47 @@ msgstr "" "Съдържанието на бележката се използва само в Wavelog и не се експортира в " "други услуги." -#: application/views/qso/index.php:604 +#: application/views/qso/index.php:626 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:645 +#: application/views/qso/index.php:667 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:647 +#: application/views/qso/index.php:669 msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:678 +msgid "Stop" +msgstr "" + +#: application/views/qso/index.php:679 +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:680 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:686 +msgid "CW Speed" +msgstr "" + +#: application/views/qso/index.php:691 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:701 msgid "Suggestions" msgstr "Предложения" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:708 msgid "Profile Picture" msgstr "" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:732 msgid "Max. 5 previous contacts are shown" msgstr "" @@ -8463,6 +9123,137 @@ msgstr "" msgid "Please wait..." msgstr "" +#: application/views/reg1test/index.php:6 +msgid "Select Band" +msgstr "" + +#: application/views/reg1test/index.php:8 +msgid "" +"Bands below 50Mhz are not valid for the EDI REG1TEST format and will produce " +"invalid files." +msgstr "" + +#: application/views/reg1test/index.php:18 +msgid "Export a contest to a REG1TEST EDI log" +msgstr "" + +#: application/views/reg1test/index.php:48 +msgid "Sent Exchange" +msgstr "" + +#: application/views/reg1test/index.php:50 +msgid "" +"The exchange which was sent during the contest. Can be any type of " +"information, e.g. Province, DOK, County, State, Power, Name. Max. length: 6 " +"characters." +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:66 +msgid "Callsign of responsible operator" +msgstr "" + +#: application/views/reg1test/index.php:72 +msgid "" +"List of all operators. Seperated with a semicolon ';'. The responsible " +"operator is not needed here." +msgstr "" + +#: application/views/reg1test/index.php:75 +msgid "Contest Address 1" +msgstr "" + +#: application/views/reg1test/index.php:77 +msgid "Address of the QTH used during the contest." +msgstr "" + +#: application/views/reg1test/index.php:80 +msgid "Contest Address 2" +msgstr "" + +#: application/views/reg1test/index.php:84 +msgid "Operator Address 1" +msgstr "" + +#: application/views/reg1test/index.php:86 +msgid "Address of the responsible operator." +msgstr "" + +#: application/views/reg1test/index.php:89 +msgid "Operator Address 2" +msgstr "" + +#: application/views/reg1test/index.php:93 +msgid "Operator Address Postalcode" +msgstr "" + +#: application/views/reg1test/index.php:97 +msgid "Operator Address City" +msgstr "" + +#: application/views/reg1test/index.php:101 +msgid "Operator Address Country" +msgstr "" + +#: application/views/reg1test/index.php:105 +msgid "Operator Phone Number" +msgstr "" + +#: application/views/reg1test/index.php:109 +msgid "Transmit Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:111 +msgid "Short description of the used equipment." +msgstr "" + +#: application/views/reg1test/index.php:116 +msgid "TX Power during the contest in Watt." +msgstr "" + +#: application/views/reg1test/index.php:119 +msgid "Receive Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:121 +msgid "If you used another gear for RX, then describe it here." +msgstr "" + +#: application/views/reg1test/index.php:124 +msgid "Antenna Description" +msgstr "" + +#: application/views/reg1test/index.php:126 +msgid "What kind of antenna was used." +msgstr "" + +#: application/views/reg1test/index.php:129 +msgid "Antenna Height Above Ground (m)" +msgstr "" + +#: application/views/reg1test/index.php:131 +msgid "Height of the antenna above the ground." +msgstr "" + +#: application/views/reg1test/index.php:134 +msgid "Band multiplicator" +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:141 +msgid "Any other remarks." +msgstr "" + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8552,10 +9343,71 @@ msgstr "" msgid "Satellite passes" msgstr "" -#: application/views/satellite/pass.php:548 +#: application/views/satellite/pass.php:8 +msgid "Min. Satellite Elevation" +msgstr "" + +#: application/views/satellite/pass.php:12 +msgid "Min. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:20 +msgid "Max. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:32 +msgid "Altitude (meters)" +msgstr "" + +#: application/views/satellite/pass.php:36 application/views/user/edit.php:179 +msgid "Timezone" +msgstr "" + +#: application/views/satellite/pass.php:479 +msgid "Min. time" +msgstr "" + +#: application/views/satellite/pass.php:487 +msgid "Max. time" +msgstr "" + +#: application/views/satellite/pass.php:504 msgid "Load predictions" msgstr "" +#: application/views/satellite/passtable.php:6 +msgid "AOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:7 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "" + +#: application/views/satellite/passtable.php:8 +msgid "AOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:9 +msgid "AOS El" +msgstr "" + +#: application/views/satellite/passtable.php:10 +msgid "Max El" +msgstr "" + +#: application/views/satellite/passtable.php:11 +msgid "LOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:12 +msgid "LOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:13 +msgid "LOS El" +msgstr "" + #: application/views/sattimers/index.php:15 #, php-format msgid "" @@ -8576,10 +9428,6 @@ msgstr "" msgid "Max Elevation" msgstr "" -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "" - #: application/views/search/cqzones.php:5 #: application/views/search/lotw_unconfirmed.php:5 #: application/views/search/main.php:5 @@ -8686,50 +9534,50 @@ msgstr "" #: application/views/search/search_result_ajax.php:409 #: application/views/view_log/partial/log.php:140 -#: application/views/view_log/partial/log_ajax.php:323 +#: application/views/view_log/partial/log_ajax.php:325 msgid "Mark QSL Sent (Bureau)" msgstr "Маркирайте QSL като изпратено (Бюро)" #: application/views/search/search_result_ajax.php:410 #: application/views/view_log/partial/log.php:141 -#: application/views/view_log/partial/log_ajax.php:324 +#: application/views/view_log/partial/log_ajax.php:326 msgid "Mark QSL Sent (Direct)" msgstr "Маркирайте QSL като изпратено(Директно)" #: application/views/search/search_result_ajax.php:417 #: application/views/view_log/partial/log.php:148 -#: application/views/view_log/partial/log_ajax.php:333 -#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log_ajax.php:335 +#: application/views/view_log/qso.php:655 msgid "Mark QSL Received (Bureau)" msgstr "Маркирайте QSL получена (Бюро)" #: application/views/search/search_result_ajax.php:418 #: application/views/view_log/partial/log.php:149 -#: application/views/view_log/partial/log_ajax.php:334 -#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log_ajax.php:336 +#: application/views/view_log/qso.php:657 msgid "Mark QSL Received (Direct)" msgstr "Маркирайте QSL получена (Директно)" #: application/views/search/search_result_ajax.php:419 #: application/views/view_log/partial/log.php:150 -#: application/views/view_log/partial/log_ajax.php:325 +#: application/views/view_log/partial/log_ajax.php:327 msgid "Mark QSL Card Requested" msgstr "Маркирайте QSL карта като поискана" #: application/views/search/search_result_ajax.php:420 #: application/views/view_log/partial/log.php:151 -#: application/views/view_log/partial/log_ajax.php:326 -#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log_ajax.php:328 +#: application/views/view_log/qso.php:669 msgid "Mark QSL Card Not Required" msgstr "Маркирайте QSL картата като неизискваща" #: application/views/search/search_result_ajax.php:426 -#: application/views/view_log/partial/log_ajax.php:340 +#: application/views/view_log/partial/log_ajax.php:342 msgid "Lookup on QRZ.com" msgstr "" #: application/views/search/search_result_ajax.php:428 -#: application/views/view_log/partial/log_ajax.php:342 +#: application/views/view_log/partial/log_ajax.php:344 msgid "Lookup on HamQTH" msgstr "" @@ -8764,7 +9612,7 @@ msgid "" msgstr "" #: application/views/simplefle/index.php:17 -#: application/views/simplefle/index.php:170 +#: application/views/simplefle/index.php:176 msgid "Syntax Help" msgstr "" @@ -8858,8 +9706,8 @@ msgstr "" #: application/views/simplefle/index.php:107 #, php-format msgid "" -"If you did operate from a new location, first create a new Station Location" +"If you did operate from a new location, first create a new %sStation " +"Location%s" msgstr "" #: application/views/simplefle/index.php:112 @@ -8874,24 +9722,24 @@ msgstr "" msgid "Enter the Data" msgstr "" -#: application/views/simplefle/index.php:148 +#: application/views/simplefle/index.php:154 msgid "Refs" msgstr "" -#: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +#: application/views/simplefle/index.php:166 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" msgstr "" -#: application/views/simplefle/index.php:167 +#: application/views/simplefle/index.php:173 msgid "Reload QSO List" msgstr "" -#: application/views/simplefle/index.php:168 +#: application/views/simplefle/index.php:174 msgid "Save in Wavelog" msgstr "" -#: application/views/simplefle/index.php:169 +#: application/views/simplefle/index.php:175 msgid "Clear Logging Session" msgstr "" @@ -8948,122 +9796,121 @@ msgstr "" #: application/views/simplefle/syntax_help.php:28 #, php-format -msgctxt "uses 'this article'" msgid "" -"A full summary of all commands and the necessary syntax can be found in %s " -"of our Wiki." +"A full summary of all commands and the necessary syntax can be found in " +"%sthis article%s of our Wiki." msgstr "" -#: application/views/station_profile/create.php:51 -#: application/views/station_profile/edit.php:40 +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:52 -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:59 -#: application/views/station_profile/edit.php:48 +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 msgid "Station callsign. For example: 4W7EST/P" msgstr "" -#: application/views/station_profile/create.php:63 -#: application/views/station_profile/edit.php:52 +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 msgid "Station Power (W)" msgstr "" -#: application/views/station_profile/create.php:65 -#: application/views/station_profile/edit.php:54 +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" -#: application/views/station_profile/create.php:68 -#: application/views/station_profile/edit.php:69 +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 msgid "Station DXCC" msgstr "" -#: application/views/station_profile/create.php:71 -#: application/views/station_profile/edit.php:72 +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 msgctxt "DXCC selection" msgid "None" msgstr "" -#: application/views/station_profile/create.php:78 -#: application/views/station_profile/edit.php:85 +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:83 -#: application/views/station_profile/edit.php:91 +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 msgid "Station City" msgstr "" -#: application/views/station_profile/create.php:85 -#: application/views/station_profile/edit.php:93 +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:94 -#: application/views/station_profile/edit.php:105 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 msgid "Station state. Applies to certain countries only." msgstr "" -#: application/views/station_profile/create.php:99 -#: application/views/station_profile/edit.php:110 +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 msgid "Station County" msgstr "" -#: application/views/station_profile/create.php:101 -#: application/views/station_profile/edit.php:112 +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/edit.php:138 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:138 -#: application/views/station_profile/edit.php:155 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 msgid "click here" msgstr "" -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/edit.php:155 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:135 -#: application/views/station_profile/edit.php:167 -#: application/views/station_profile/edit.php:170 +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 msgid "Station Gridsquare" msgstr "" -#: application/views/station_profile/create.php:140 -#: application/views/station_profile/edit.php:175 +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 msgid "Get Gridsquare" msgstr "" -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 #, php-format msgctxt "uses 'click here'" msgid "" @@ -9071,304 +9918,250 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:145 -#: application/views/station_profile/edit.php:180 +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" -#: application/views/station_profile/create.php:160 -#: application/views/station_profile/edit.php:205 +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 msgid "Station IOTA reference. For example: EU-005" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 #, php-format msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:183 -#: application/views/station_profile/edit.php:260 +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 msgid "Signature Name" msgstr "" -#: application/views/station_profile/create.php:185 -#: application/views/station_profile/edit.php:262 +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 msgid "Station Signature (e.g. GMA).." msgstr "" -#: application/views/station_profile/create.php:189 -#: application/views/station_profile/edit.php:266 +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 msgid "Signature Information" msgstr "" -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/edit.php:268 +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "" -#: application/views/station_profile/create.php:195 -#: application/views/station_profile/edit.php:281 +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:197 -#: application/views/station_profile/edit.php:283 +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "" -#: application/views/station_profile/create.php:201 -#: application/views/station_profile/edit.php:286 +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 msgid "Default QSLMSG" msgstr "" -#: application/views/station_profile/create.php:204 -#: application/views/station_profile/edit.php:289 +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "" -#: application/views/station_profile/create.php:207 -#: application/views/station_profile/edit.php:328 +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:212 -#: application/views/station_profile/edit.php:333 +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " "Clublog. If this is deactivated on it's own please check if the Call is " "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:215 -#: application/views/station_profile/edit.php:336 +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 msgid "ClubLog Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:224 -#: application/views/station_profile/edit.php:352 +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 msgid "HRDLog.net Username" msgstr "" -#: application/views/station_profile/create.php:226 -#: application/views/station_profile/edit.php:354 +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" -#: application/views/station_profile/create.php:229 -#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 msgid "HRDLog.net API Key" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:234 -#: application/views/station_profile/edit.php:362 +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 msgid "HRDLog.net Logbook Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:243 -#: application/views/station_profile/edit.php:297 +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 msgid "Subscription Required" msgstr "" -#: application/views/station_profile/create.php:248 +#: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/edit.php:310 +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 msgid "QRZ.com Logbook Upload" msgstr "" -#: application/views/station_profile/create.php:260 -#: application/views/station_profile/edit.php:313 +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:268 -#: application/views/station_profile/edit.php:378 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:273 -#: application/views/station_profile/edit.php:383 +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 msgid "QO-100 Dx Club Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:283 -#: application/views/station_profile/edit.php:401 +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 msgid "OQRS Enabled" msgstr "" -#: application/views/station_profile/create.php:290 -#: application/views/station_profile/edit.php:408 +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 msgid "OQRS Email alert" msgstr "" -#: application/views/station_profile/create.php:295 -#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 msgid "Make sure email is set up under admin and global options." msgstr "" -#: application/views/station_profile/create.php:298 -#: application/views/station_profile/edit.php:416 +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 msgid "OQRS Text" msgstr "" -#: application/views/station_profile/create.php:300 -#: application/views/station_profile/edit.php:418 +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 msgid "Some info you want to add regarding QSL'ing." msgstr "" -#: application/views/station_profile/edit.php:122 +#: application/views/station_profile/edit.php:149 msgid "Zones" msgstr "" -#: application/views/station_profile/edit.php:257 +#: application/views/station_profile/edit.php:284 msgid "Signature" msgstr "" -#: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:95 -msgid "" -"Station Locations define operating locations, such as your QTH, a friends " -"QTH, or a portable station." -msgstr "" - -#: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:96 -msgid "Similar to logbooks, a station profile keeps a set of QSOs together." -msgstr "" - -#: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:97 -msgid "" -"Only one station may be active at a time. In the table below this is shown " -"with the -Active Station- badge." -msgstr "" - -#: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:101 -msgid "Create a Station Location" -msgstr "" - -#: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:105 -msgid "" -"Attention: You need to set an active station location. Go to Callsign-" -">Station Location to select one." -msgstr "" - -#: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:111 -msgid "" -"Due to recent changes within Wavelog you need to reassign QSOs to your " -"station profiles." -msgstr "" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Maintenance" -msgstr "" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Please reassign them at " -msgstr "" - -#: application/views/station_profile/index.php:41 -#: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:122 -msgid "Profile Name" -msgstr "" - #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "" @@ -9416,6 +10209,11 @@ msgstr "" msgid "Link Location" msgstr "" +#: application/views/stationsetup/linkedlocations.php:31 +#: application/views/stationsetup/stationsetup.php:122 +msgid "Profile Name" +msgstr "" + #: application/views/stationsetup/linkedlocations.php:34 msgid "Unlink Station Location" msgstr "" @@ -9440,12 +10238,52 @@ msgstr "" msgid "Station Locations" msgstr "" +#: application/views/stationsetup/stationsetup.php:95 +msgid "" +"Station Locations define operating locations, such as your QTH, a friends " +"QTH, or a portable station." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:96 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:97 +msgid "" +"Only one station may be active at a time. In the table below this is shown " +"with the -Active Station- badge." +msgstr "" + #: application/views/stationsetup/stationsetup.php:98 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." msgstr "" +#: application/views/stationsetup/stationsetup.php:101 +msgid "Create a Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:105 +msgid "" +"Attention: You need to set an active station location. Go to Callsign-" +">Station Location to select one." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:111 +msgid "" +"Due to recent changes within Wavelog you need to reassign QSOs to your " +"station profiles." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Maintenance" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Please reassign them at " +msgstr "" + #: application/views/stationsetup/stationsetup.php:127 msgid "Linked" msgstr "" @@ -9662,9 +10500,10 @@ msgid "4. Step" msgstr "" #: application/views/themes/index.php:73 +#, php-format msgid "" "Click here on 'Add a Theme' and type in the necessary data. Type in the " -"filenames for the logos without the file extension '.png'" +"filenames for the logos %swithout%s the file extension '.png'" msgstr "" #: application/views/themes/index.php:83 @@ -9727,6 +10566,10 @@ msgstr "" msgid "Update DXCC Data" msgstr "" +#: application/views/update/index.php:30 +msgid "Status:" +msgstr "" + #: application/views/update/index.php:34 msgid "Apply DXCC Data to Logbook" msgstr "" @@ -9740,36 +10583,43 @@ msgid "" "\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." msgstr "" -#: application/views/update/index.php:40 +#: application/views/update/index.php:45 msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:54 application/views/update/index.php:95 msgid "Re-check all QSOs in logbook" msgstr "" -#: application/views/update/index.php:45 +#: application/views/update/index.php:59 msgid "Apply Continent Data to Logbook" msgstr "" -#: application/views/update/index.php:47 +#: application/views/update/index.php:61 msgid "" "This function can be used to update QSO continent information for all QSOs " "in Wavelog missing that information." msgstr "" -#: application/views/update/index.php:49 +#: application/views/update/index.php:68 msgid "Check QSOs missing continent data" msgstr "" -#: application/views/update/index.php:59 +#: application/views/update/index.php:80 msgid "Here you can update QSOs with missing distance information." msgstr "" -#: application/views/update/index.php:60 +#: application/views/update/index.php:86 msgid "Update distance data" msgstr "" +#: application/views/update/index.php:89 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" + #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "" @@ -9799,13 +10649,13 @@ msgid "General Information" msgstr "" #: application/views/user/edit.php:52 application/views/user/login.php:58 -#: application/views/user/login.php:67 application/views/user/login.php:68 +#: application/views/user/login.php:69 application/views/user/login.php:70 #: application/views/user/profile.php:14 msgid "Username" msgstr "" #: application/views/user/edit.php:64 application/views/user/login.php:59 -#: application/views/user/login.php:71 application/views/user/login.php:72 +#: application/views/user/login.php:73 application/views/user/login.php:74 #: application/views/user/reset_password.php:21 #: application/views/user/reset_password.php:23 #: application/views/user/reset_password.php:30 @@ -9848,10 +10698,6 @@ msgstr "" msgid "Choose Wavelog language." msgstr "" -#: application/views/user/edit.php:179 -msgid "Timezone" -msgstr "" - #: application/views/user/edit.php:187 msgid "Date Format" msgstr "" @@ -10185,6 +11031,122 @@ msgstr "" msgid "You can reset your password here." msgstr "" +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "" + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "" + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "" @@ -10199,96 +11161,17 @@ msgstr "" #: application/views/user/login.php:60 #, php-format -msgid "" -"More Information about Wavelog on Github." +msgid "More Information about Wavelog on %sGithub%s." msgstr "" -#: application/views/user/login.php:77 +#: application/views/user/login.php:79 msgid "Forgot your password?" msgstr "" -#: application/views/user/login.php:83 +#: application/views/user/login.php:85 msgid "Keep me logged in" msgstr "" -#: application/views/user/main.php:2 -msgid "Do you really want to send this user a password-reset link?" -msgstr "" - -#: application/views/user/main.php:6 -msgid "Please Wait ..." -msgstr "" - -#: application/views/user/main.php:9 -msgid "Password-reset e-mail sent to user:" -msgstr "" - -#: application/views/user/main.php:30 -msgid "User List" -msgstr "" - -#: application/views/user/main.php:33 -msgid "Wavelog needs at least one user configured in order to operate." -msgstr "" - -#: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" - -#: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "" - -#: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." -msgstr "" - -#: application/views/user/main.php:38 -msgid "Create user" -msgstr "" - -#: application/views/user/main.php:39 -msgid "Refresh List" -msgstr "" - -#: application/views/user/main.php:49 -msgid "Type" -msgstr "" - -#: application/views/user/main.php:50 -msgid "Last seen" -msgstr "" - -#: application/views/user/main.php:53 -msgid "Password Reset" -msgstr "" - -#: application/views/user/main.php:79 -msgid "Never" -msgstr "" - -#: application/views/user/main.php:83 -msgid "Locations" -msgstr "" - -#: application/views/user/main.php:85 -msgid "Logbooks" -msgstr "" - -#: application/views/user/main.php:87 -msgid "Last QSO:" -msgstr "" - -#: application/views/user/main.php:89 -msgid "No QSOs in Log" -msgstr "" - #: application/views/user/profile.php:19 msgid "Level" msgstr "" @@ -10338,118 +11221,118 @@ msgstr "Подробности за QSO" msgid "QSL Management" msgstr "Управление на QSL" -#: application/views/view_log/qso.php:128 +#: application/views/view_log/qso.php:131 msgid "Total Distance" msgstr "Общо разстояние" -#: application/views/view_log/qso.php:221 +#: application/views/view_log/qso.php:224 msgid "Antenna Azimuth" msgstr "" -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:231 msgid "Antenna Elevation" msgstr "" -#: application/views/view_log/qso.php:370 +#: application/views/view_log/qso.php:373 msgid "QSL Card has been sent via the bureau" msgstr "QSL картичката е изпратена чрез бюрото" -#: application/views/view_log/qso.php:372 +#: application/views/view_log/qso.php:375 msgid "QSL Card has been sent via direct" msgstr "QSL картичката е изпратена директно" -#: application/views/view_log/qso.php:374 +#: application/views/view_log/qso.php:377 msgid "QSL Card has been sent electronically" msgstr "" -#: application/views/view_log/qso.php:376 +#: application/views/view_log/qso.php:379 msgid "QSL Card has been sent via manager" msgstr "" -#: application/views/view_log/qso.php:378 +#: application/views/view_log/qso.php:381 msgid "QSL Card has been sent" msgstr "" -#: application/views/view_log/qso.php:387 +#: application/views/view_log/qso.php:390 msgid "QSL Card has been received via the bureau" msgstr "" -#: application/views/view_log/qso.php:389 +#: application/views/view_log/qso.php:392 msgid "QSL Card has been received via direct" msgstr "QSL картичката е получена директно" -#: application/views/view_log/qso.php:391 +#: application/views/view_log/qso.php:394 msgid "QSL Card has been received electronically" msgstr "" -#: application/views/view_log/qso.php:393 +#: application/views/view_log/qso.php:396 msgid "QSL Card has been received via manager" msgstr "" -#: application/views/view_log/qso.php:395 +#: application/views/view_log/qso.php:398 msgid "QSL Card has been received" msgstr "" -#: application/views/view_log/qso.php:404 +#: application/views/view_log/qso.php:407 msgid "This station uses LoTW." msgstr "" -#: application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:414 -#: application/views/view_log/qso.php:419 -#: application/views/view_log/qso.php:424 +#: application/views/view_log/qso.php:412 +#: application/views/view_log/qso.php:417 +#: application/views/view_log/qso.php:422 +#: application/views/view_log/qso.php:427 msgid "This QSO was confirmed on" msgstr "Това QSO беше потвърдено на" -#: application/views/view_log/qso.php:435 +#: application/views/view_log/qso.php:438 msgid "More QSOs" msgstr "" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:506 msgid "Details" msgstr "" -#: application/views/view_log/qso.php:630 +#: application/views/view_log/qso.php:633 msgid "Uploaded QSL Card front image" msgstr "Качване на лице на QSL картичка" -#: application/views/view_log/qso.php:635 +#: application/views/view_log/qso.php:638 msgid "Upload QSL Card image" msgstr "Качване на изображения на QSL картичка" -#: application/views/view_log/qso.php:640 +#: application/views/view_log/qso.php:643 msgid "Uploaded QSL Card back image" msgstr "Качване на гръб на QSL картичка" -#: application/views/view_log/qso.php:656 +#: application/views/view_log/qso.php:659 msgid "Mark QSL Received (Electronic)" msgstr "Маркирайте получено QSL (електронно)" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:665 msgid "Mark QSL Card Requested (Bureau)" msgstr "Маркирайте QSL карта като поискана (Бюро)" -#: application/views/view_log/qso.php:664 +#: application/views/view_log/qso.php:667 msgid "Mark QSL Card Requested (Direct)" msgstr "Маркирайте QSL карта като поискана(Директно)" -#: application/views/view_log/qso.php:679 +#: application/views/view_log/qso.php:682 msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:242 msgid "CSV" msgstr "" -#: application/views/visitor/layout/header.php:75 +#: application/views/visitor/layout/header.php:74 msgid "OQRS" msgstr "" -#: application/views/visitor/layout/header.php:83 +#: application/views/visitor/layout/header.php:82 msgid "Visit Wavelog on Github" msgstr "" -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Please enter a callsign!" msgstr "" diff --git a/application/locale/bs/LC_MESSAGES/messages.mo b/application/locale/bs/LC_MESSAGES/messages.mo new file mode 100644 index 000000000..9ca096156 Binary files /dev/null and b/application/locale/bs/LC_MESSAGES/messages.mo differ diff --git a/application/locale/bs/LC_MESSAGES/messages.po b/application/locale/bs/LC_MESSAGES/messages.po new file mode 100644 index 000000000..66945c047 --- /dev/null +++ b/application/locale/bs/LC_MESSAGES/messages.po @@ -0,0 +1,11427 @@ +# WAVELOG PO FILE +# Copyright (c) 2024 Wavelog by DF2ET, DJ7NT, HB9HIL and LA8AJA. +# This file is distributed under the MIT licence. +# +# Fabian Berg <80885850+HB9HIL@users.noreply.github.com>, 2024. +msgid "" +msgstr "" +"Report-Msgid-Bugs-To: translations@wavelog.org\n" +"POT-Creation-Date: 2024-09-07 07:18+0000\n" +"PO-Revision-Date: 2024-08-17 10:49+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Bosnian \n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 5.6.2\n" + +#: application/controllers/Accumulated.php:12 +#: application/controllers/Activators.php:13 +#: application/controllers/Activatorsmap.php:13 +#: application/controllers/Adif.php:13 application/controllers/Awards.php:16 +#: application/controllers/Backup.php:13 application/controllers/Backup.php:26 +#: application/controllers/Backup.php:63 application/controllers/Band.php:15 +#: application/controllers/Bandmap.php:9 +#: application/controllers/Cabrillo.php:16 +#: application/controllers/Cabrillo.php:53 +#: application/controllers/Cabrillo.php:80 +#: application/controllers/Cabrillo.php:135 +#: application/controllers/Calltester.php:11 +#: application/controllers/Cfdexport.php:18 +#: application/controllers/Cfdexport.php:29 +#: application/controllers/Components.php:13 +#: application/controllers/Contestcalendar.php:15 +#: application/controllers/Contesting.php:14 +#: application/controllers/Cron.php:26 application/controllers/Cron.php:162 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: application/controllers/Distancerecords.php:11 +#: application/controllers/Distances.php:11 +#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29 +#: application/controllers/Dxatlas.php:51 +#: application/controllers/Dxatlas.php:108 +#: application/controllers/Dxcalendar.php:8 +#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23 +#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 +#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 +#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:353 +#: application/controllers/Eqsl.php:420 application/controllers/Eqsl.php:436 +#: application/controllers/Eqsl.php:497 application/controllers/Hamsat.php:13 +#: application/controllers/Kmlexport.php:18 +#: application/controllers/Kmlexport.php:33 +#: application/controllers/Labels.php:26 +#: application/controllers/Logbookadvanced.php:16 +#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 +#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 +#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 +#: application/controllers/Notes.php:10 application/controllers/Options.php:15 +#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 +#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 +#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 +#: application/controllers/Qso.php:9 application/controllers/Qso.php:19 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:600 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Reg1test.php:18 +#: application/controllers/Reg1test.php:63 +#: application/controllers/Reg1test.php:102 +#: application/controllers/Reg1test.php:130 +#: application/controllers/Reg1test.php:164 +#: application/controllers/Satellite.php:18 +#: application/controllers/Satellite.php:37 +#: application/controllers/Satellite.php:44 +#: application/controllers/Satellite.php:53 +#: application/controllers/Satellite.php:72 +#: application/controllers/Satellite.php:87 +#: application/controllers/Satellite.php:95 +#: application/controllers/Satellite.php:103 +#: application/controllers/Satellite.php:117 +#: application/controllers/Satellite.php:135 +#: application/controllers/Satellite.php:146 +#: application/controllers/Satellite.php:162 +#: application/controllers/Satellite.php:190 +#: application/controllers/Satellite.php:201 +#: application/controllers/Satellite.php:223 +#: application/controllers/Satellite.php:236 +#: application/controllers/Satellite.php:244 +#: application/controllers/Sattimers.php:9 +#: application/controllers/Search.php:13 +#: application/controllers/Simplefle.php:7 +#: application/controllers/Station.php:17 +#: application/controllers/Stationsetup.php:15 +#: application/controllers/Themes.php:17 +#: application/controllers/Timeline.php:10 +#: application/controllers/Timeplotter.php:11 +#: application/controllers/Update.php:24 application/controllers/Update.php:273 +#: application/controllers/Update.php:284 +#: application/controllers/Update.php:295 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 +#: application/controllers/User_options.php:9 +msgid "You're not allowed to do that!" +msgstr "" + +#: application/controllers/Accumulated.php:19 +#: application/views/interface_assets/header.php:152 +msgid "Accumulated Statistics" +msgstr "" + +#: application/controllers/Activated_gridmap.php:10 +#: application/views/activated_gridmap/index.php:5 +msgid "Activated Gridsquare Map" +msgstr "" + +#: application/controllers/Activated_gridmap.php:31 +#: application/controllers/Awards.php:919 +#: application/controllers/Awards.php:951 +#: application/controllers/Gridmap.php:31 +#: application/controllers/Visitor.php:385 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: application/views/visitor/layout/footer.php:22 +#: application/views/visitor/layout/header.php:68 +msgid "Gridsquares" +msgstr "" + +#: application/controllers/Activated_gridmap.php:32 +#: application/controllers/Gridmap.php:32 +#: application/controllers/Visitor.php:386 +msgid "Gridsquares confirmed" +msgstr "" + +#: application/controllers/Activated_gridmap.php:33 +#: application/controllers/Gridmap.php:33 +#: application/controllers/Visitor.php:387 +msgid "Gridsquares not confirmed" +msgstr "" + +#: application/controllers/Activated_gridmap.php:34 +msgid "Total gridsquares activated" +msgstr "" + +#: application/controllers/Activators.php:20 +#: application/views/activators/index.php:5 +#: application/views/interface_assets/header.php:142 +msgid "Gridsquare Activators" +msgstr "" + +#: application/controllers/Activatorsmap.php:17 +#: application/views/activators/index.php:2 +msgid "Activators Map" +msgstr "" + +#: application/controllers/Adif.php:18 +msgid "valid date" +msgstr "" + +#: application/controllers/Adif.php:20 +msgid "date incorrect" +msgstr "" + +#: application/controllers/Adif.php:29 application/views/adif/import.php:24 +msgid "ADIF Export" +msgstr "" + +#: application/controllers/Adif.php:145 +#: application/views/interface_assets/header.php:388 +msgid "ADIF Import / Export" +msgstr "" + +#: application/controllers/Adif.php:169 application/views/adif/import.php:21 +#: application/views/lotw/import.php:3 +msgid "ADIF Import" +msgstr "" + +#: application/controllers/Adif.php:209 +msgid "Unsupported Filetype" +msgstr "" + +#: application/controllers/Adif.php:240 +#: application/views/adif/import_failed.php:12 +msgid "ADIF Import failed!" +msgstr "" + +#: application/controllers/Adif.php:254 +msgid "Station Profile not valid for User" +msgstr "" + +#: application/controllers/Adif.php:261 +#: application/views/adif/import_success.php:12 +msgid "ADIF Imported" +msgstr "" + +#: application/controllers/Adif.php:272 +msgid "DCL Import" +msgstr "" + +#: application/controllers/Adif.php:328 +msgid "DCL Data Imported" +msgstr "" + +#: application/controllers/Api.php:26 +msgid "API" +msgstr "" + +#: application/controllers/Api.php:50 application/views/api/description.php:26 +msgid "API Description" +msgstr "" + +#: application/controllers/Api.php:51 +msgid "API Key is required. Do not change this field" +msgstr "" + +#: application/controllers/Api.php:57 +msgid "Edit API Description" +msgstr "" + +#: application/controllers/Api.php:69 +#, php-format +msgid "API Key %s description has been updated." +msgstr "" + +#: application/controllers/Api.php:109 +#, php-format +msgid "API Key %s has been deleted" +msgstr "" + +#: application/controllers/Awards.php:22 +#: application/views/interface_assets/header.php:160 +#: application/views/qso/edit_ajax.php:35 +msgid "Awards" +msgstr "" + +#: application/controllers/Awards.php:92 application/controllers/Awards.php:172 +#: application/controllers/Awards.php:327 +#: application/controllers/Awards.php:375 +#: application/controllers/Awards.php:486 +#: application/controllers/Awards.php:503 +#: application/controllers/Awards.php:520 +#: application/controllers/Awards.php:591 +#: application/controllers/Awards.php:652 +#: application/controllers/Awards.php:714 +#: application/controllers/Awards.php:776 +#: application/controllers/Awards.php:856 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:939 +#: application/controllers/Awards.php:1140 +#: application/controllers/Awards.php:1639 +#: application/controllers/Awards.php:1779 +#: application/controllers/Awards.php:1908 +#, php-format +msgid "Awards - %s" +msgstr "" + +#: application/controllers/Awards.php:92 +#: application/views/awards/dok/index.php:149 +#: application/views/bands/index.php:47 +#: application/views/contesting/index.php:53 +#: application/views/interface_assets/header.php:198 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/qso/edit_ajax.php:388 application/views/qso/index.php:264 +#: application/views/qso/index.php:518 application/views/user/edit.php:603 +#: application/views/view_log/qso.php:354 +msgid "DOK" +msgstr "" + +#: application/controllers/Awards.php:172 application/views/awards/index.php:7 +#: application/views/bandmap/list.php:112 application/views/bands/index.php:48 +#: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 +#: application/views/dxcalendar/index.php:11 +#: application/views/interface_assets/header.php:166 +#: application/views/kml/index.php:47 +#: application/views/logbookadvanced/edit.php:7 +#: application/views/logbookadvanced/index.php:156 +#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/lookup/index.php:4 +#: application/views/lotw_views/index.php:36 +#: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 +#: application/views/search/cqzones_result.php:15 +#: application/views/search/result.php:27 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:33 +#: application/views/timeplotter/index.php:24 +msgid "DXCC" +msgstr "" + +#: application/controllers/Awards.php:251 +msgid "Awards - WAJA" +msgstr "" + +#: application/controllers/Awards.php:327 application/views/bands/index.php:51 +#: application/views/interface_assets/header.php:214 +msgid "JCC" +msgstr "" + +#: application/controllers/Awards.php:375 application/views/bands/index.php:57 +#: application/views/interface_assets/header.php:172 +msgid "VUCC" +msgstr "" + +#: application/controllers/Awards.php:405 +msgid "Log View - VUCC" +msgstr "" + +#: application/controllers/Awards.php:453 +#: application/controllers/Distancerecords.php:59 +#: application/controllers/Timeline.php:105 +#: application/controllers/Timeline.php:108 +#: application/controllers/Timeline.php:111 +#: application/controllers/Timeline.php:114 +#: application/controllers/Timeline.php:117 +#: application/controllers/Timeline.php:120 +msgid "Log View" +msgstr "" + +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr "" + +#: application/controllers/Awards.php:457 +msgid " and sat " +msgstr "" + +#: application/controllers/Awards.php:460 +msgid " and orbit type " +msgstr "" + +#: application/controllers/Awards.php:464 +msgid " and propagation " +msgstr "" + +#: application/controllers/Awards.php:467 +msgid " and mode " +msgstr "" + +#: application/controllers/Awards.php:470 +msgid " and " +msgstr "" + +#: application/controllers/Awards.php:486 +#: application/controllers/Logbook.php:1289 +#: application/views/awards/index.php:8 application/views/bands/index.php:55 +#: application/views/dashboard/index.php:9 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/index.php:270 +#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/lookup/index.php:7 +#: application/views/qslcard/searchresult.php:17 +#: application/views/qslcard/searchresult.php:33 +#: application/views/qslcard/searchresult.php:49 +#: application/views/qslcard/searchresult.php:65 +#: application/views/qslcard/searchresult.php:81 +#: application/views/qso/components/previous_contacts.php:82 +#: application/views/qso/edit_ajax.php:363 +#: application/views/search/search_result_ajax.php:9 +#: application/views/station_profile/edit.php:243 +#: application/views/user/edit.php:234 application/views/user/edit.php:256 +#: application/views/user/edit.php:278 application/views/user/edit.php:300 +#: application/views/user/edit.php:323 +#: application/views/view_log/partial/log_ajax.php:9 +#: application/views/visitor/index.php:21 +msgid "SOTA" +msgstr "" + +#: application/controllers/Awards.php:503 +#: application/controllers/Logbook.php:1290 +#: application/views/bands/index.php:60 +#: application/views/dashboard/index.php:10 +#: application/views/interface_assets/header.php:176 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/index.php:290 +#: application/views/logbookadvanced/useroptions.php:134 +#: application/views/lookup/index.php:9 +#: application/views/qso/components/previous_contacts.php:83 +#: application/views/qso/edit_ajax.php:368 +#: application/views/search/search_result_ajax.php:10 +#: application/views/station_profile/edit.php:256 +#: application/views/user/edit.php:235 application/views/user/edit.php:257 +#: application/views/user/edit.php:279 application/views/user/edit.php:301 +#: application/views/user/edit.php:324 +#: application/views/view_log/partial/log_ajax.php:10 +msgid "WWFF" +msgstr "" + +#: application/controllers/Awards.php:520 +#: application/controllers/Logbook.php:1291 +#: application/views/bands/index.php:52 +#: application/views/dashboard/index.php:11 +#: application/views/interface_assets/header.php:186 +#: application/views/logbookadvanced/edit.php:13 +#: application/views/logbookadvanced/index.php:274 +#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/qso/components/previous_contacts.php:84 +#: application/views/qso/edit_ajax.php:373 +#: application/views/search/search_result_ajax.php:11 +#: application/views/station_profile/edit.php:269 +#: application/views/user/edit.php:236 application/views/user/edit.php:258 +#: application/views/user/edit.php:280 application/views/user/edit.php:302 +#: application/views/user/edit.php:325 +#: application/views/view_log/partial/log_ajax.php:11 +msgid "POTA" +msgstr "" + +#: application/controllers/Awards.php:591 +msgid "CQ Magazine WAZ" +msgstr "" + +#: application/controllers/Awards.php:652 +#: application/views/accumulate/index.php:54 +#: application/views/timeline/index.php:45 +msgid "Worked All States (WAS)" +msgstr "" + +#: application/controllers/Awards.php:714 application/views/bands/index.php:53 +#: application/views/interface_assets/header.php:192 +msgid "RAC" +msgstr "" + +#: application/controllers/Awards.php:776 application/views/bands/index.php:49 +msgid "H26" +msgstr "" + +#: application/controllers/Awards.php:856 +msgid "IOTA (Island On The Air)" +msgstr "" + +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 +#: application/views/interface_assets/header.php:234 +msgid "US Counties" +msgstr "" + +#: application/controllers/Awards.php:896 +msgid "Log View - Counties" +msgstr "" + +#: application/controllers/Awards.php:903 +msgid "Awards - " +msgstr "" + +#: application/controllers/Awards.php:920 +#: application/controllers/Awards.php:952 +msgid "Gridsquares worked" +msgstr "" + +#: application/controllers/Awards.php:921 +#: application/controllers/Awards.php:953 +msgid "Gridsquares confirmed on LoTW" +msgstr "" + +#: application/controllers/Awards.php:922 +#: application/controllers/Awards.php:954 +msgid "Gridsquares confirmed by paper QSL" +msgstr "" + +#: application/controllers/Awards.php:939 +msgid "Fred Fish Memorial Award (FFMA)" +msgstr "" + +#: application/controllers/Awards.php:1140 +#: application/views/interface_assets/header.php:170 +#: application/views/logbookadvanced/useroptions.php:138 +msgid "SIG" +msgstr "" + +#: application/controllers/Awards.php:1158 +msgid "Awards - SIG - " +msgstr "" + +#: application/controllers/Awards.php:1779 +#: application/views/awards/itu/index.php:20 +msgid "ITU Zones" +msgstr "" + +#: application/controllers/Awards.php:1908 +#: application/views/awards/wac/index.php:8 +#: application/views/interface_assets/header.php:174 +msgid "Worked All Continents (WAC)" +msgstr "" + +#: application/controllers/Backup.php:15 application/views/backup/main.php:14 +#: application/views/interface_assets/header.php:284 +msgid "Backup" +msgstr "" + +#: application/controllers/Backup.php:50 +msgid "ADIF - Backup" +msgstr "" + +#: application/controllers/Backup.php:84 +msgid "Notes - Backup" +msgstr "" + +#: application/controllers/Band.php:25 application/views/bands/index.php:28 +#: application/views/bands/index.php:32 +#: application/views/interface_assets/header.php:383 +#: application/views/statistics/index.php:16 +#: application/views/statistics/index.php:56 +msgid "Bands" +msgstr "" + +#: application/controllers/Band.php:40 application/controllers/Mode.php:41 +msgid "Create Mode" +msgstr "" + +#: application/controllers/Band.php:59 application/views/bands/index.php:150 +msgid "Edit Band" +msgstr "" + +#: application/controllers/Bandmap.php:28 +#: application/controllers/Bandmap.php:69 +#: application/controllers/Options.php:145 +#: application/controllers/Options.php:156 +#: application/views/options/sidebar.php:10 +msgid "DXCluster" +msgstr "" + +#: application/controllers/Cabrillo.php:20 +msgid "Export Cabrillo" +msgstr "" + +#: application/controllers/Cfdexport.php:20 +#: application/views/interface_assets/header.php:402 +msgid "CFD Export" +msgstr "" + +#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12 +#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19 +#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14 +#: application/controllers/Update.php:16 +msgid "Maintenance Mode is active. Try again later." +msgstr "" + +#: application/controllers/Clublog.php:44 +#: application/controllers/Clublog.php:66 +msgid "No user has configured Clublog." +msgstr "" + +#: application/controllers/Contestcalendar.php:19 +#: application/views/interface_assets/header.php:251 +msgid "Contest Calendar" +msgstr "" + +#: application/controllers/Contesting.php:47 +#: application/views/contesting/index.php:3 +msgid "Contest Logging" +msgstr "" + +#: application/controllers/Contesting.php:113 +#: application/views/interface_assets/header.php:278 +msgid "Contests" +msgstr "" + +#: application/controllers/Contesting.php:127 +msgid "Update Contest" +msgstr "" + +#: application/controllers/Continents.php:25 +#: application/views/awards/dxcc/index.php:83 +#: application/views/awards/iota/index.php:57 +#: application/views/interface_assets/header.php:156 +msgid "Continents" +msgstr "" + +#: application/controllers/Cron.php:38 +#: application/views/interface_assets/header.php:288 +msgid "Cron Manager" +msgstr "" + +#: application/controllers/Cron.php:154 application/views/cron/edit.php:5 +msgid "Edit Cronjob" +msgstr "" + +#: application/controllers/Cron.php:274 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:278 +#, php-format +msgid "" +"Last run occurred more than %s seconds ago.%sPlease check your master cron! " +"It should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:281 +#, php-format +msgid "" +"Last run occurred more than %s minutes ago.%sSeems like your Mastercron " +"isn't running!%sIt should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:286 application/views/cron/index.php:29 +msgctxt "Master Cron" +msgid "Not running" +msgstr "" + +#: application/controllers/Csv.php:20 application/views/csv/index.php:3 +#: application/views/interface_assets/header.php:396 +msgid "SOTA CSV Export" +msgstr "" + +#: application/controllers/Dashboard.php:123 +#: application/controllers/Visitor.php:134 +msgid "Dashboard" +msgstr "" + +#: application/controllers/Dayswithqso.php:18 +msgid "Number of days with QSOs each year" +msgstr "" + +#: application/controllers/Debug.php:93 +msgid "Debug" +msgstr "" + +#: application/controllers/Debug.php:132 +msgid "Migrate data now" +msgstr "" + +#: application/controllers/Debug.php:135 +msgid "Migration already done. Run again?" +msgstr "" + +#: application/controllers/Debug.php:139 +msgid "No data to migrate" +msgstr "" + +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 +msgid "No migration possible" +msgstr "" + +#: application/controllers/Debug.php:213 +msgid "Wavelog was updated successfully!" +msgstr "" + +#: application/controllers/Debug.php:231 +msgid "Selfupdate() not available. Check the Error Log." +msgstr "" + +#: application/controllers/Debug.php:275 +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:278 +msgid "File Migration failed. Please check the Error Log." +msgstr "" + +#: application/controllers/Distancerecords.php:42 +#: application/controllers/Distancerecords.php:59 +#: application/views/interface_assets/header.php:146 +msgid "Satellite Distance Records" +msgstr "" + +#: application/controllers/Distances.php:17 +#: application/views/distances/index.php:5 +#: application/views/distances/index.php:8 +#: application/views/interface_assets/header.php:144 +msgid "Distances Worked" +msgstr "" + +#: application/controllers/Distances.php:83 +#: application/views/distances/index.php:15 +msgid "QSOs with" +msgstr "" + +#: application/controllers/Distances.php:83 +msgid "and band" +msgstr "" + +#: application/controllers/Distances.php:83 +msgid "and propagation" +msgstr "" + +#: application/controllers/Dxatlas.php:19 +#: application/views/interface_assets/header.php:394 +msgid "DX Atlas Gridsquare Export" +msgstr "" + +#: application/controllers/Dxcalendar.php:10 +#: application/views/interface_assets/header.php:249 +msgid "DX Calendar" +msgstr "" + +#: application/controllers/Eqsl.php:34 +#: application/views/dashboard/index.php:325 +#: application/views/eqslcard/index.php:5 +#: application/views/visitor/index.php:306 +msgid "eQSL Cards" +msgstr "" + +#: application/controllers/Eqsl.php:124 +msgid "eQSL Import" +msgstr "" + +#: application/controllers/Eqsl.php:134 +msgid "eQSL Import Information" +msgstr "" + +#: application/controllers/Eqsl.php:158 +msgid "eQSL QSO Upload" +msgstr "" + +#: application/controllers/Eqsl.php:424 +msgid "eQSL Tools" +msgstr "" + +#: application/controllers/Eqsl.php:472 +msgid " / Errors: " +msgstr "" + +#: application/controllers/Eqsl.php:472 +msgid "Successfully downloaded: " +msgstr "" + +#: application/controllers/Eqsl.php:481 +msgid "eQSL Card Image Download" +msgstr "" + +#: application/controllers/Gridmap.php:10 +#: application/views/interface_assets/header.php:138 +msgid "Gridsquare Map" +msgstr "" + +#: application/controllers/Gridmap.php:34 +#: application/controllers/Visitor.php:388 +msgid "Total gridsquares worked" +msgstr "" + +#: application/controllers/Hamsat.php:59 +msgid "Hamsat - Satellite Roving" +msgstr "" + +#: application/controllers/Hrdlog.php:71 +#, php-format +msgid "%d QSO is now uploaded to HRDlog" +msgid_plural "%d QSOs are now uploaded to HRDlog" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/controllers/Hrdlog.php:76 +msgid "No QSOs found to upload." +msgstr "" + +#: application/controllers/Kmlexport.php:24 +#: application/views/interface_assets/header.php:392 +#: application/views/kml/index.php:3 +msgid "KML Export" +msgstr "" + +#: application/controllers/Labels.php:40 application/views/labels/index.php:30 +msgid "QSL Card Labels" +msgstr "" + +#: application/controllers/Labels.php:71 +msgid "Create Label Type" +msgstr "" + +#: application/controllers/Labels.php:78 application/controllers/Labels.php:406 +#: application/views/labels/create.php:22 application/views/labels/edit.php:22 +msgid "Label Name" +msgstr "" + +#: application/controllers/Labels.php:79 application/controllers/Labels.php:407 +#: application/views/labels/create.php:28 application/views/labels/edit.php:28 +#: application/views/labels/index.php:76 +msgid "Paper Type" +msgstr "" + +#: application/controllers/Labels.php:80 application/controllers/Labels.php:408 +#: application/views/labels/index.php:42 application/views/labels/index.php:77 +msgid "Measurement" +msgstr "" + +#: application/controllers/Labels.php:81 application/controllers/Labels.php:409 +msgid "Top Margin" +msgstr "" + +#: application/controllers/Labels.php:82 application/controllers/Labels.php:410 +msgid "Left Margin" +msgstr "" + +#: application/controllers/Labels.php:83 application/controllers/Labels.php:411 +msgid "QSLs Horizontally" +msgstr "" + +#: application/controllers/Labels.php:84 application/controllers/Labels.php:412 +msgid "QSLs Vertically" +msgstr "" + +#: application/controllers/Labels.php:85 application/controllers/Labels.php:413 +msgid "Horizontal Space" +msgstr "" + +#: application/controllers/Labels.php:86 application/controllers/Labels.php:414 +msgid "Vertical Space" +msgstr "" + +#: application/controllers/Labels.php:87 application/controllers/Labels.php:415 +msgid "Label width" +msgstr "" + +#: application/controllers/Labels.php:88 application/controllers/Labels.php:416 +msgid "Label height" +msgstr "" + +#: application/controllers/Labels.php:89 application/controllers/Labels.php:417 +msgid "Size of Font" +msgstr "" + +#: application/controllers/Labels.php:90 application/controllers/Labels.php:418 +msgid "Number of QSOs on label" +msgstr "" + +#: application/controllers/Labels.php:115 +msgid "Create Paper Type" +msgstr "" + +#: application/controllers/Labels.php:119 +#: application/controllers/Labels.php:465 +msgid "Paper Name" +msgstr "" + +#: application/controllers/Labels.php:120 +#: application/controllers/Labels.php:466 +msgid "Paper Width" +msgstr "" + +#: application/controllers/Labels.php:121 +#: application/controllers/Labels.php:467 +msgid "Paper Height" +msgstr "" + +#: application/controllers/Labels.php:132 +#: application/controllers/Labels.php:475 +msgid "" +"Your paper could not be saved. Remember that it can't have the same name as " +"existing paper types." +msgstr "" + +#: application/controllers/Labels.php:205 +#: application/controllers/Labels.php:208 +msgid "You need to assign a paperType to the label before printing" +msgstr "" + +#: application/controllers/Labels.php:215 +#: application/controllers/Labels.php:218 +msgid "You need to create a label and set it to be used for print." +msgstr "" + +#: application/controllers/Labels.php:225 +#: application/controllers/Labels.php:228 +msgid "" +"Something went wrong! The label could not be generated. Check label size and " +"font size." +msgstr "" + +#: application/controllers/Labels.php:251 +msgid "0 QSOs found for print!" +msgstr "" + +#: application/controllers/Labels.php:395 +msgid "Edit Label" +msgstr "" + +#: application/controllers/Labels.php:424 +msgid "Label was saved." +msgstr "" + +#: application/controllers/Labels.php:432 +msgid "Label was deleted." +msgstr "" + +#: application/controllers/Labels.php:454 +msgid "Edit Paper" +msgstr "" + +#: application/controllers/Labels.php:479 +msgid "Paper was saved." +msgstr "" + +#: application/controllers/Labels.php:492 +msgid "Paper was deleted." +msgstr "" + +#: application/controllers/Logbook.php:37 +msgid "" +"No logbooks were found. You need to define a logbook under Station Logbooks! " +"Do it here:" +msgstr "" + +#: application/controllers/Logbook.php:37 +#: application/views/stationsetup/stationsetup.php:18 +msgid "Station Logbooks" +msgstr "" + +#: application/controllers/Logbook.php:60 +#: application/views/interface_assets/header.php:97 +#: application/views/logbookadvanced/useroptions.php:4 +#: application/views/view_log/index.php:11 +msgid "Logbook" +msgstr "" + +#: application/controllers/Logbook.php:657 +#: application/controllers/Logbook.php:672 +#: application/views/activated_gridmap/index.php:58 +#: application/views/awards/dok/index.php:55 +#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/helvetia/index.php:55 +#: application/views/awards/jcc/index.php:52 +#: application/views/awards/rac/index.php:47 +#: application/views/awards/vucc/band.php:15 +#: application/views/awards/wab/index.php:72 +#: application/views/awards/waja/index.php:55 +#: application/views/awards/was/index.php:55 +#: application/views/gridmap/index.php:101 +#: application/views/logbookadvanced/index.php:596 +#: application/views/logbookadvanced/useroptions.php:62 +#: application/views/oqrs/qsolist.php:12 +#: application/views/qslprint/qslprint.php:28 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:16 +#: application/views/qso/edit_ajax.php:37 application/views/qso/index.php:42 +#: application/views/search/result_search.php:13 +#: application/views/timeline/index.php:56 application/views/user/edit.php:562 +#: application/views/user/edit.php:649 +msgid "QSL" +msgstr "" + +#: application/controllers/Logbook.php:660 +#: application/views/activated_gridmap/index.php:66 +#: application/views/awards/cq/index.php:60 +#: application/views/awards/dok/index.php:59 +#: application/views/awards/dxcc/index.php:65 +#: application/views/awards/helvetia/index.php:59 +#: application/views/awards/itu/index.php:60 +#: application/views/awards/jcc/index.php:56 +#: application/views/awards/rac/index.php:51 +#: application/views/awards/vucc/band.php:16 +#: application/views/awards/wab/index.php:80 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:260 +#: application/views/gridmap/index.php:109 +#: application/views/logbookadvanced/useroptions.php:66 +#: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 +#: application/views/oqrs/qsolist.php:174 +#: application/views/qslprint/qsolist.php:21 +#: application/views/qslprint/qsolist.php:167 +#: application/views/qslprint/qsolist.php:182 +#: application/views/qso/edit_ajax.php:411 +#: application/views/search/result_search.php:22 +#: application/views/search/search_result_ajax.php:298 +#: application/views/search/search_result_ajax.php:313 +#: application/views/timeline/index.php:60 application/views/user/edit.php:563 +#: application/views/user/edit.php:659 application/views/view_log/qso.php:411 +msgid "LoTW" +msgstr "" + +#: application/controllers/Logbook.php:663 +#: application/views/activated_gridmap/index.php:74 +#: application/views/awards/cq/index.php:64 +#: application/views/awards/dok/index.php:63 +#: application/views/awards/dxcc/index.php:69 +#: application/views/awards/helvetia/index.php:63 +#: application/views/awards/itu/index.php:64 +#: application/views/awards/jcc/index.php:60 +#: application/views/awards/rac/index.php:55 +#: application/views/awards/wab/index.php:88 +#: application/views/awards/wac/index.php:52 +#: application/views/awards/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:260 +#: application/views/gridmap/index.php:117 +#: application/views/logbookadvanced/useroptions.php:70 +#: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:143 +#: application/views/qslprint/qsolist.php:18 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:151 +#: application/views/qso/edit_ajax.php:408 +#: application/views/search/result_search.php:16 +#: application/views/search/search_result_ajax.php:260 +#: application/views/search/search_result_ajax.php:273 +#: application/views/station_profile/edit.php:305 +#: application/views/timeline/index.php:64 application/views/user/edit.php:564 +#: application/views/user/edit.php:667 application/views/user/edit.php:731 +msgid "eQSL" +msgstr "" + +#: application/controllers/Logbook.php:669 +#: application/views/awards/dok/index.php:71 +#: application/views/awards/dxcc/index.php:77 +#: application/views/awards/jcc/index.php:68 +#: application/views/awards/wab/index.php:104 +#: application/views/awards/waja/index.php:71 +#: application/views/logbookadvanced/useroptions.php:74 +#: application/views/search/search_result_ajax.php:124 +#: application/views/station_profile/edit.php:352 +#: application/views/timeline/index.php:68 +#: application/views/update/index.php:20 application/views/user/edit.php:566 +#: application/views/user/edit.php:683 +#: application/views/view_log/partial/log_ajax.php:85 +#: application/views/view_log/qso.php:426 +msgid "Clublog" +msgstr "" + +#: application/controllers/Logbook.php:1284 +#: application/controllers/Radio.php:49 +#: application/views/accumulate/index.php:31 +#: application/views/activated_gridmap/index.php:39 +#: application/views/adif/dcl_success.php:33 +#: application/views/awards/cq/index.php:88 +#: application/views/awards/dok/index.php:91 +#: application/views/awards/dxcc/index.php:162 +#: application/views/awards/helvetia/index.php:87 +#: application/views/awards/iota/index.php:105 +#: application/views/awards/itu/index.php:88 +#: application/views/awards/jcc/index.php:88 +#: application/views/awards/rac/index.php:79 +#: application/views/awards/sig/qso_list.php:12 +#: application/views/awards/wab/index.php:53 +#: application/views/awards/wac/index.php:110 +#: application/views/awards/waja/index.php:91 +#: application/views/awards/was/index.php:87 +#: application/views/components/hamsat/table.php:30 +#: application/views/contesting/index.php:108 +#: application/views/contesting/index.php:250 +#: application/views/continents/index.php:39 application/views/csv/index.php:42 +#: application/views/dashboard/index.php:4 +#: application/views/debug/index.php:548 +#: 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/logbookadvanced/edit.php:11 +#: application/views/logbookadvanced/index.php:181 +#: application/views/logbookadvanced/index.php:572 +#: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/mode/index.php:28 +#: application/views/oqrs/notinlogform.php:11 +#: application/views/oqrs/qsolist.php:9 application/views/oqrs/request.php:18 +#: application/views/oqrs/request_grouped.php:11 +#: application/views/oqrs/showrequests.php:84 +#: application/views/public_search/result.php:15 +#: application/views/qslcard/index.php:29 +#: application/views/qslcard/searchresult.php:12 +#: application/views/qslcard/searchresult.php:28 +#: application/views/qslcard/searchresult.php:44 +#: application/views/qslcard/searchresult.php:60 +#: application/views/qslcard/searchresult.php:76 +#: application/views/qslprint/qslprint.php:24 +#: application/views/qslprint/qsolist.php:9 +#: application/views/qso/components/previous_contacts.php:77 +#: application/views/qso/edit_ajax.php:119 application/views/qso/index.php:136 +#: application/views/satellite/index.php:24 +#: application/views/search/cqzones_result.php:10 +#: application/views/search/lotw_unconfirmed_result.php:8 +#: application/views/search/result_search.php:7 +#: application/views/search/search_result_ajax.php:4 +#: application/views/simplefle/index.php:150 +#: application/views/statistics/custom.php:60 +#: application/views/statistics/custom_result.php:62 +#: application/views/statistics/custom_result.php:88 +#: application/views/statistics/index.php:15 +#: application/views/statistics/index.php:20 +#: application/views/statistics/index.php:53 +#: application/views/timeline/index.php:19 application/views/user/edit.php:229 +#: application/views/user/edit.php:251 application/views/user/edit.php:273 +#: application/views/user/edit.php:295 application/views/user/edit.php:318 +#: application/views/view_log/partial/log.php:9 +#: application/views/view_log/partial/log_ajax.php:4 +#: application/views/view_log/qso.php:107 application/views/visitor/index.php:6 +#: application/views/widgets/qsos.php:29 +msgid "Mode" +msgstr "" + +#: application/controllers/Logbook.php:1285 +#: application/views/awards/pota/index.php:36 +#: application/views/awards/wwff/index.php:36 +#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:251 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/useroptions.php:38 +#: application/views/qslcard/searchresult.php:13 +#: application/views/qslcard/searchresult.php:29 +#: application/views/qslcard/searchresult.php:45 +#: application/views/qslcard/searchresult.php:61 +#: application/views/qslcard/searchresult.php:77 +#: application/views/qslprint/qslprint.php:26 +#: application/views/qslprint/qsolist.php:11 +#: application/views/qso/components/previous_contacts.php:78 +#: application/views/qso/edit_ajax.php:142 application/views/qso/index.php:177 +#: application/views/search/search_result_ajax.php:5 +#: application/views/simplefle/index.php:151 +#: application/views/user/edit.php:230 application/views/user/edit.php:252 +#: application/views/user/edit.php:274 application/views/user/edit.php:296 +#: application/views/user/edit.php:319 +#: application/views/view_log/partial/log.php:10 +#: application/views/view_log/partial/log_ajax.php:5 +#: application/views/view_log/qso.php:112 application/views/visitor/index.php:9 +msgid "RST (S)" +msgstr "" + +#: application/controllers/Logbook.php:1286 +#: application/views/awards/pota/index.php:37 +#: application/views/awards/wwff/index.php:37 +#: application/views/contesting/index.php:189 +#: application/views/contesting/index.php:252 +#: application/views/logbookadvanced/index.php:578 +#: application/views/logbookadvanced/useroptions.php:42 +#: application/views/qslcard/searchresult.php:14 +#: application/views/qslcard/searchresult.php:30 +#: application/views/qslcard/searchresult.php:46 +#: application/views/qslcard/searchresult.php:62 +#: application/views/qslcard/searchresult.php:78 +#: application/views/qslprint/qslprint.php:27 +#: application/views/qslprint/qsolist.php:12 +#: application/views/qso/components/previous_contacts.php:79 +#: application/views/qso/edit_ajax.php:147 application/views/qso/index.php:182 +#: application/views/search/search_result_ajax.php:6 +#: application/views/simplefle/index.php:152 +#: application/views/user/edit.php:231 application/views/user/edit.php:253 +#: application/views/user/edit.php:275 application/views/user/edit.php:297 +#: application/views/user/edit.php:320 +#: application/views/view_log/partial/log.php:11 +#: application/views/view_log/partial/log_ajax.php:6 +#: application/views/view_log/qso.php:117 +#: application/views/visitor/index.php:12 +msgid "RST (R)" +msgstr "" + +#: application/controllers/Logbook.php:1287 +#: application/views/dashboard/index.php:7 +#: application/views/qslcard/searchresult.php:15 +#: application/views/qslcard/searchresult.php:31 +#: application/views/qslcard/searchresult.php:47 +#: application/views/qslcard/searchresult.php:63 +#: application/views/qslcard/searchresult.php:79 +#: application/views/qso/components/previous_contacts.php:80 +#: application/views/search/result_search.php:11 +#: application/views/search/search_result_ajax.php:7 +#: application/views/stationsetup/stationsetup.php:124 +#: application/views/statistics/custom_result.php:92 +#: application/views/timeline/index.php:151 application/views/user/edit.php:232 +#: application/views/user/edit.php:254 application/views/user/edit.php:276 +#: application/views/user/edit.php:298 application/views/user/edit.php:321 +#: application/views/view_log/partial/log.php:13 +#: application/views/view_log/partial/log_ajax.php:7 +#: application/views/view_log/qso.php:238 +#: application/views/view_log/qso.php:531 +#: application/views/visitor/index.php:15 +msgid "Country" +msgstr "" + +#: application/controllers/Logbook.php:1288 +#: application/views/awards/iota/index.php:169 +#: application/views/bands/index.php:50 application/views/dashboard/index.php:8 +#: application/views/interface_assets/header.php:184 +#: application/views/logbookadvanced/edit.php:9 +#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:620 +#: application/views/logbookadvanced/qslcarousel.php:38 +#: application/views/logbookadvanced/useroptions.php:102 +#: application/views/lookup/index.php:6 +#: application/views/qslcard/searchresult.php:16 +#: application/views/qslcard/searchresult.php:32 +#: application/views/qslcard/searchresult.php:48 +#: application/views/qslcard/searchresult.php:64 +#: application/views/qslcard/searchresult.php:80 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/edit_ajax.php:345 +#: application/views/search/search_result_ajax.php:8 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:235 application/views/user/edit.php:233 +#: application/views/user/edit.php:255 application/views/user/edit.php:277 +#: application/views/user/edit.php:299 application/views/user/edit.php:322 +#: application/views/view_log/partial/log_ajax.php:8 +#: application/views/visitor/index.php:18 +msgid "IOTA" +msgstr "" + +#: application/controllers/Logbook.php:1292 +#: application/views/awards/counties/details.php:12 +#: application/views/awards/counties/index.php:20 +#: application/views/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 +#: application/views/contesting/index.php:56 +#: application/views/dashboard/index.php:12 +#: application/views/logbookadvanced/edit.php:21 +#: application/views/logbookadvanced/edit.php:66 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:611 +#: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/qslcard/searchresult.php:18 +#: application/views/qslcard/searchresult.php:34 +#: application/views/qslcard/searchresult.php:50 +#: application/views/qslcard/searchresult.php:66 +#: application/views/qslcard/searchresult.php:82 +#: application/views/qso/components/previous_contacts.php:85 +#: application/views/search/search_result_ajax.php:12 +#: application/views/timeline/index.php:210 application/views/user/edit.php:237 +#: application/views/user/edit.php:259 application/views/user/edit.php:281 +#: application/views/user/edit.php:303 application/views/user/edit.php:326 +#: application/views/view_log/partial/log_ajax.php:12 +#: application/views/visitor/index.php:24 +msgid "State" +msgstr "" + +#: application/controllers/Logbook.php:1293 +#: application/views/activated_gridmap/index.php:106 +#: application/views/awards/ffma/index.php:34 +#: application/views/awards/gridmaster/index.php:33 +#: application/views/awards/vucc/band.php:12 +#: application/views/contesting/index.php:17 +#: application/views/contesting/index.php:257 +#: application/views/dashboard/index.php:13 +#: application/views/distancerecords/index.php:20 +#: application/views/gridmap/index.php:152 +#: application/views/labels/index.php:125 +#: application/views/logbookadvanced/edit.php:8 +#: application/views/logbookadvanced/index.php:10 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/qslcarousel.php:39 +#: application/views/logbookadvanced/useroptions.php:126 +#: application/views/lookup/index.php:5 +#: application/views/qslcard/searchresult.php:19 +#: application/views/qslcard/searchresult.php:35 +#: application/views/qslcard/searchresult.php:51 +#: application/views/qslcard/searchresult.php:67 +#: application/views/qslcard/searchresult.php:83 +#: application/views/qso/components/previous_contacts.php:86 +#: application/views/qso/edit_ajax.php:156 application/views/qso/index.php:279 +#: application/views/satellite/pass.php:28 +#: application/views/search/cqzones_result.php:12 +#: application/views/search/result.php:33 +#: application/views/search/search_result_ajax.php:13 +#: application/views/simplefle/index.php:153 +#: application/views/stationsetup/stationsetup.php:125 +#: application/views/timeline/index.php:290 application/views/user/edit.php:130 +#: application/views/user/edit.php:238 application/views/user/edit.php:260 +#: application/views/user/edit.php:282 application/views/user/edit.php:304 +#: application/views/user/edit.php:327 application/views/user/profile.php:34 +#: application/views/view_log/partial/log_ajax.php:13 +#: application/views/view_log/qso.php:518 +#: application/views/visitor/index.php:27 +msgid "Gridsquare" +msgstr "" + +#: application/controllers/Logbook.php:1294 +#: application/views/activated_gridmap/index.php:108 +#: application/views/awards/ffma/index.php:36 +#: application/views/awards/gridmaster/index.php:35 +#: 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/logbookadvanced/index.php:12 +#: application/views/qslcard/searchresult.php:20 +#: application/views/qslcard/searchresult.php:36 +#: application/views/qslcard/searchresult.php:52 +#: application/views/qslcard/searchresult.php:68 +#: application/views/qslcard/searchresult.php:84 +#: application/views/qso/components/previous_contacts.php:87 +#: application/views/search/search_result_ajax.php:14 +#: application/views/user/edit.php:239 application/views/user/edit.php:261 +#: application/views/user/edit.php:283 application/views/user/edit.php:305 +#: application/views/user/edit.php:328 +#: application/views/view_log/partial/log_ajax.php:14 +#: application/views/visitor/index.php:30 +msgid "Distance" +msgstr "" + +#: application/controllers/Logbook.php:1295 +#: application/views/accumulate/index.php:21 +#: application/views/activated_gridmap/index.php:8 +#: application/views/activators/index.php:10 +#: application/views/adif/dcl_success.php:32 +#: application/views/awards/cq/index.php:74 +#: application/views/awards/dok/index.php:77 +#: application/views/awards/dxcc/index.php:117 +#: application/views/awards/helvetia/index.php:73 +#: application/views/awards/iota/index.php:91 +#: application/views/awards/itu/index.php:74 +#: application/views/awards/jcc/index.php:74 +#: application/views/awards/pota/index.php:35 +#: application/views/awards/rac/index.php:65 +#: application/views/awards/sig/qso_list.php:13 +#: application/views/awards/sota/index.php:26 +#: application/views/awards/vucc/index.php:21 +#: application/views/awards/wab/index.php:22 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/waja/index.php:77 +#: application/views/awards/was/index.php:73 +#: application/views/awards/wwff/index.php:35 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 +#: application/views/bands/create.php:24 application/views/bands/edit.php:6 +#: application/views/bands/index.php:45 +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:249 +#: application/views/continents/index.php:30 application/views/csv/index.php:31 +#: application/views/dashboard/index.php:15 +#: application/views/debug/index.php:549 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/logbookadvanced/edit.php:3 +#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/oqrs/notinlogform.php:10 +#: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 +#: application/views/oqrs/request_grouped.php:10 +#: application/views/oqrs/showrequests.php:83 +#: application/views/public_search/result.php:16 +#: application/views/qslcard/index.php:32 +#: application/views/qslcard/searchresult.php:21 +#: application/views/qslcard/searchresult.php:37 +#: application/views/qslcard/searchresult.php:39 +#: application/views/qslcard/searchresult.php:53 +#: application/views/qslcard/searchresult.php:69 +#: application/views/qslcard/searchresult.php:85 +#: application/views/qslmanagement/index.php:24 +#: application/views/qslprint/qslprint.php:25 +#: application/views/qslprint/qsolist.php:10 +#: application/views/qso/components/previous_contacts.php:88 +#: application/views/qso/edit_ajax.php:83 application/views/qso/index.php:151 +#: application/views/search/cqzones_result.php:11 +#: application/views/search/lotw_unconfirmed_result.php:9 +#: application/views/search/result_search.php:10 +#: application/views/search/search_result_ajax.php:15 +#: application/views/simplefle/index.php:149 +#: application/views/stationsetup/exportmapoptions.php:31 +#: application/views/statistics/custom.php:53 +#: application/views/statistics/custom_result.php:55 +#: application/views/statistics/custom_result.php:91 +#: application/views/statistics/index.php:21 +#: application/views/timeline/index.php:7 +#: application/views/timeplotter/index.php:14 +#: application/views/user/edit.php:227 application/views/user/edit.php:249 +#: application/views/user/edit.php:271 application/views/user/edit.php:293 +#: application/views/user/edit.php:316 +#: application/views/view_log/partial/log.php:12 +#: application/views/view_log/partial/log_ajax.php:15 +#: application/views/view_log/qso.php:87 application/views/visitor/index.php:33 +#: application/views/widgets/qsos.php:32 +msgid "Band" +msgstr "" + +#: application/controllers/Logbook.php:1296 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 +#: application/views/contesting/index.php:138 +#: application/views/dashboard/index.php:16 +#: application/views/qslcard/searchresult.php:22 +#: application/views/qslcard/searchresult.php:38 +#: application/views/qslcard/searchresult.php:54 +#: application/views/qslcard/searchresult.php:70 +#: application/views/qslcard/searchresult.php:86 +#: application/views/qso/components/previous_contacts.php:89 +#: application/views/qso/edit_ajax.php:71 application/views/qso/index.php:169 +#: application/views/search/search_result_ajax.php:16 +#: application/views/user/edit.php:228 application/views/user/edit.php:250 +#: application/views/user/edit.php:272 application/views/user/edit.php:294 +#: application/views/user/edit.php:317 +#: application/views/view_log/partial/log_ajax.php:16 +#: application/views/view_log/qso.php:94 application/views/visitor/index.php:36 +msgid "Frequency" +msgstr "" + +#: application/controllers/Logbook.php:1297 +#: application/views/dashboard/index.php:17 +#: application/views/logbookadvanced/edit.php:12 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:626 +#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/qslcard/searchresult.php:23 +#: application/views/qslcard/searchresult.php:55 +#: application/views/qslcard/searchresult.php:71 +#: application/views/qslcard/searchresult.php:87 +#: application/views/qso/components/previous_contacts.php:90 +#: application/views/search/search_result_ajax.php:17 +#: application/views/simplefle/index.php:112 +#: application/views/user/edit.php:240 application/views/user/edit.php:262 +#: application/views/user/edit.php:284 application/views/user/edit.php:306 +#: application/views/user/edit.php:329 +#: application/views/view_log/partial/log_ajax.php:17 +#: application/views/view_log/qso.php:538 +#: application/views/visitor/index.php:39 +msgid "Operator" +msgstr "" + +#: application/controllers/Logbook.php:1318 +#: application/controllers/Stationsetup.php:381 +#: application/views/awards/dxcc/index.php:28 +#: application/views/awards/dxcc/index.php:238 +#: application/views/csv/index.php:65 application/views/dashboard/index.php:28 +#: application/views/dxatlas/index.php:65 +#: application/views/interface_assets/footer.php:675 +#: application/views/kml/index.php:54 +#: application/views/logbookadvanced/index.php:165 +#: application/views/lookup/index.php:31 +#: application/views/lotw_views/index.php:52 +#: application/views/qso/components/previous_contacts.php:59 +#: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:45 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/timeline/index.php:167 +#: application/views/timeplotter/index.php:33 +#: application/views/view_log/partial/log_ajax.php:29 +#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:532 +msgid "Deleted DXCC" +msgstr "" + +#: application/controllers/Logbookadvanced.php:31 +msgid "Advanced logbook" +msgstr "" + +#: application/controllers/Lookup.php:22 +msgid "Quick Lookup" +msgstr "" + +#: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83 +#: application/controllers/Lotw.php:125 application/views/adif/import.php:27 +#: application/views/interface_assets/header.php:429 +#: application/views/lotw/import.php:3 +#: application/views/lotw_views/index.php:12 +#: application/views/lotw_views/upload_cert.php:3 +#: application/views/user/edit.php:705 application/views/visitor/index.php:324 +msgid "Logbook of the World" +msgstr "" + +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "" + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "" + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "" + +#: application/controllers/Lotw.php:413 +#, 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:617 +msgid "LoTW ADIF Information" +msgstr "" + +#: application/controllers/Lotw.php:725 +msgid "LoTW ADIF Import" +msgstr "" + +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "" + +#: application/controllers/Lotw.php:837 +msgid "LoTW .TQ8 Upload" +msgstr "" + +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "" + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 +msgid "LoTW .TQ8 Sent" +msgstr "" + +#: application/controllers/Lotw.php:946 +msgid "LoTW .TQ8 Not Sent" +msgstr "" + +#: application/controllers/Mode.php:25 +#: application/views/interface_assets/header.php:276 +#: application/views/mode/index.php:15 +msgid "Modes" +msgstr "" + +#: application/controllers/Mode.php:62 +msgid "Edit Mode" +msgstr "" + +#: application/controllers/Notes.php:18 +#: application/views/interface_assets/header.php:128 +#: application/views/notes/add.php:9 application/views/notes/edit.php:10 +#: application/views/notes/main.php:5 application/views/notes/main.php:8 +#: application/views/notes/view.php:6 application/views/notes/view.php:9 +#: application/views/qso/edit_ajax.php:36 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:38 +#: application/views/qso/index.php:563 application/views/qso/index.php:608 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:593 +msgid "Notes" +msgstr "" + +#: application/controllers/Notes.php:37 +msgid "Add Notes" +msgstr "" + +#: application/controllers/Notes.php:64 +#: application/views/oqrs/showrequests.php:88 +msgid "Note" +msgstr "" + +#: application/controllers/Notes.php:92 application/views/notes/edit.php:7 +#: application/views/notes/view.php:19 +msgid "Edit Note" +msgstr "" + +#: application/controllers/Options.php:31 +#: application/controllers/Options.php:41 +#: application/controllers/Options.php:56 +#: application/controllers/Options.php:144 +#: application/controllers/Options.php:155 +#: application/controllers/Options.php:192 +#: application/controllers/Options.php:203 +#: application/controllers/Options.php:236 +#: application/controllers/Options.php:247 +#: application/controllers/Options.php:317 +#: application/controllers/Options.php:327 +#: application/controllers/Options.php:395 +#: application/controllers/Options.php:405 +msgid "Wavelog Options" +msgstr "" + +#: application/controllers/Options.php:42 +#: application/controllers/Options.php:57 +#: application/views/options/sidebar.php:4 +msgid "Appearance" +msgstr "" + +#: application/controllers/Options.php:78 +#: application/controllers/Options.php:86 +#: application/controllers/Options.php:94 +#: application/controllers/Options.php:102 +#: application/controllers/Options.php:110 +#: application/controllers/Options.php:118 +#: application/controllers/Options.php:126 +#: application/controllers/Options.php:134 +msgid "Options saved" +msgstr "" + +#: application/controllers/Options.php:173 +msgid "de continent changed to " +msgstr "" + +#: application/controllers/Options.php:178 +msgid "Maximum age of spots changed to " +msgstr "" + +#: application/controllers/Options.php:183 +msgid "DXCluster Cache URL changed to " +msgstr "" + +#: application/controllers/Options.php:193 +#: application/controllers/Options.php:204 +msgid "Radio Settings" +msgstr "" + +#: application/controllers/Options.php:225 +msgid "Radio Timeout Warning changed to " +msgstr "" + +#: application/controllers/Options.php:237 +#: application/controllers/Options.php:248 +#: application/views/options/sidebar.php:6 +msgid "Email" +msgstr "" + +#: application/controllers/Options.php:305 +msgid "The settings were saved successfully." +msgstr "" + +#: application/controllers/Options.php:307 +msgid "Something went wrong with saving the settings. Try again." +msgstr "" + +#: application/controllers/Options.php:318 +#: application/controllers/Options.php:328 +#: application/views/options/sidebar.php:8 +msgid "OQRS Options" +msgstr "" + +#: application/controllers/Options.php:341 +msgid "OQRS options have been saved." +msgstr "" + +#: application/controllers/Options.php:381 +#: application/controllers/Options.php:386 +msgid "Testmail failed. Something went wrong." +msgstr "" + +#: application/controllers/Options.php:383 +msgid "Testmail sent. Email settings seem to be correct." +msgstr "" + +#: application/controllers/Options.php:396 +#: application/controllers/Options.php:406 +msgid "Version Info Settings" +msgstr "" + +#: application/controllers/Options.php:412 +msgid "Version Info Header changed to" +msgstr "" + +#: application/controllers/Options.php:416 +msgid "Version Info Mode changed to" +msgstr "" + +#: application/controllers/Options.php:421 +msgid "Version Info Custom Text saved!" +msgstr "" + +#: application/controllers/Options.php:432 +msgid "Version Info will be shown to all users again" +msgstr "" + +#: application/controllers/Options.php:440 +msgid "Version Info will not be shown to any user" +msgstr "" + +#: application/controllers/Oqrs.php:46 application/controllers/Oqrs.php:85 +#: application/controllers/Oqrs.php:97 +msgid "Log Search & OQRS" +msgstr "" + +#: application/controllers/Oqrs.php:127 +#: application/views/interface_assets/header.php:419 +msgid "OQRS Requests" +msgstr "" + +#: application/controllers/Qrbcalc.php:17 +msgid "QRB Calculator" +msgstr "" + +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "" + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" + +#: application/controllers/Qrz.php:173 +#: application/views/interface_assets/header.php:432 +msgid "QRZ Logbook" +msgstr "" + +#: application/controllers/Qrz.php:253 +msgid "QRZ QSL Import" +msgstr "" + +#: application/controllers/Qrz.php:307 +msgid "QRZ ADIF Information" +msgstr "" + +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:277 +#: application/views/qslcard/index.php:5 +#: application/views/visitor/index.php:283 +msgid "QSL Cards" +msgstr "" + +#: application/controllers/Qsl.php:35 +msgid "Upload QSL Cards" +msgstr "" + +#: application/controllers/Qslmanagement.php:14 +msgid "QSL Card Management" +msgstr "" + +#: application/controllers/Qslprint.php:46 +msgid "Print Requested QSLs" +msgstr "" + +#: application/controllers/Qso.php:102 +msgid "Add QSO" +msgstr "" + +#: application/controllers/Radio.php:17 +#: application/views/interface_assets/header.php:438 +msgid "Hardware Interfaces" +msgstr "" + +#: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 +#: application/views/bandmap/list.php:60 +#: application/views/contesting/index.php:143 +#: application/views/qso/index.php:312 +msgid "Radio" +msgstr "" + +#: application/controllers/Radio.php:50 +msgid "Timestamp" +msgstr "" + +#: application/controllers/Radio.php:52 +#: application/views/logbookadvanced/index.php:550 +#: application/views/lotw_views/index.php:43 +#: application/views/simplefle/index.php:20 +#: application/views/simplefle/index.php:177 +#: application/views/stationsetup/exportmapoptions.php:5 +#: application/views/statistics/custom.php:31 +#: application/views/statistics/custom_result.php:33 +msgid "Options" +msgstr "" + +#: application/controllers/Radio.php:90 +#: application/views/contesting/index.php:147 +#: application/views/qso/index.php:316 +msgid "last updated" +msgstr "" + +#: application/controllers/Radio.php:97 application/controllers/Radio.php:100 +msgid "Set as default radio" +msgstr "" + +#: application/controllers/Radio.php:102 +msgid "Default (click to release)" +msgstr "" + +#: application/controllers/Radio.php:105 +#: application/controllers/Stationsetup.php:372 +#: application/views/api/help.php:61 application/views/contesting/add.php:62 +#: application/views/interface_assets/footer.php:2337 +#: application/views/interface_assets/footer.php:2355 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:542 +#: application/views/lotw_views/index.php:114 +#: application/views/mode/index.php:55 +#: application/views/oqrs/showrequests.php:71 +#: application/views/qslcard/index.php:65 +#: application/views/satellite/edit.php:40 +#: application/views/satellite/index.php:26 +#: application/views/search/stored_queries.php:22 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:192 +#: application/views/themes/index.php:107 application/views/user/index.php:57 +#: application/views/view_log/qso.php:616 +msgid "Delete" +msgstr "" + +#: application/controllers/Radio.php:111 +msgid "No CAT interfaced radios found." +msgstr "" + +#: application/controllers/Reg1test.php:25 +msgid "Export EDI" +msgstr "" + +#: application/controllers/Satellite.php:39 +msgid "Create Satellite" +msgstr "" + +#: application/controllers/Satellite.php:66 +msgid "Edit Satellite" +msgstr "" + +#: application/controllers/Sattimers.php:41 +#, php-format +msgid "You have no station locations. Go %s to create it!" +msgstr "" + +#: application/controllers/Sattimers.php:41 +#: application/views/awards/counties/index.php:8 +#: application/views/awards/dok/index.php:10 +#: application/views/awards/iota/index.php:19 +#: application/views/awards/was/index.php:23 +#: application/views/simplefle/index.php:16 +msgid "here" +msgstr "" + +#: application/controllers/Sattimers.php:44 +#: application/views/sattimers/index.php:13 +msgid "Satellite Timers" +msgstr "" + +#: application/controllers/Search.php:19 +#: application/views/continents/index.php:49 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:340 +#: application/views/interface_assets/header.php:347 +#: application/views/logbookadvanced/index.php:538 +#: application/views/oqrs/index.php:28 +#: application/views/oqrs/showrequests.php:67 +#: application/views/qslcard/searchform.php:8 +#: application/views/search/cqzones.php:4 +#: application/views/search/cqzones.php:12 +#: application/views/search/cqzones.php:36 +#: application/views/search/filter.php:20 +#: application/views/search/filter.php:38 +#: application/views/search/lotw_unconfirmed.php:4 +#: application/views/search/lotw_unconfirmed.php:12 +#: application/views/search/lotw_unconfirmed.php:37 +#: application/views/search/main.php:4 application/views/search/main.php:12 +#: application/views/search/main.php:33 +#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:98 +msgid "Search" +msgstr "" + +#: application/controllers/Search.php:28 +msgid "Search & Filter Logbook" +msgstr "" + +#: application/controllers/Search.php:58 +msgid "Incorrectly logged CQ zones" +msgstr "" + +#: application/controllers/Search.php:70 +msgid "" +"QSOs unconfirmed on LoTW, but the callsign has uploaded to LoTW after QSO " +"date" +msgstr "" + +#: application/controllers/Station.php:36 +#: application/controllers/Stationsetup.php:226 +msgid "Create Station Location" +msgstr "" + +#: application/controllers/Station.php:51 +msgid "Edit Station Location: " +msgstr "" + +#: application/controllers/Station.php:59 application/views/csv/index.php:19 +#: application/views/dxatlas/index.php:19 +#: application/views/labels/index.php:124 +#: application/views/logbookadvanced/edit.php:19 +#: application/views/qslprint/index.php:20 application/views/qso/index.php:300 +#: application/views/search/search_result_ajax.php:18 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 +#: application/views/user/edit.php:331 +#: application/views/view_log/partial/log_ajax.php:18 +#: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 +#: application/views/webadif/export.php:115 +msgid "Station Location" +msgstr "" + +#: application/controllers/Station.php:73 +msgid "Duplicate Station Location:" +msgstr "" + +#: application/controllers/Stationsetup.php:35 +#: application/views/interface_assets/header.php:381 +#: application/views/interface_assets/header.php:494 +msgid "Station Setup" +msgstr "" + +#: application/controllers/Stationsetup.php:50 +#: application/controllers/Stationsetup.php:68 +#: application/controllers/Stationsetup.php:395 +#: application/controllers/Stationsetup.php:409 +msgid "Not allowed" +msgstr "" + +#: application/controllers/Stationsetup.php:72 +#: application/controllers/Stationsetup.php:86 +#: application/controllers/Stationsetup.php:105 +#: application/controllers/Stationsetup.php:118 +#: application/controllers/Stationsetup.php:131 +#: application/controllers/Stationsetup.php:152 +#: application/controllers/Stationsetup.php:436 +#: application/views/qso/index.php:630 +msgid "Error" +msgstr "" + +#: application/controllers/Stationsetup.php:159 +#: application/views/stationsetup/stationsetup.php:22 +msgid "Create Station Logbook" +msgstr "" + +#: application/controllers/Stationsetup.php:166 +msgid "Edit container name" +msgstr "" + +#: application/controllers/Stationsetup.php:181 +msgid "Edit linked locations" +msgstr "" + +#: application/controllers/Stationsetup.php:190 +msgid "Edit visitor site" +msgstr "" + +#: application/controllers/Stationsetup.php:212 +msgid "Error. Link is already in use!" +msgstr "" + +#: application/controllers/Stationsetup.php:253 +#: application/views/options/appearance.php:57 +#: application/views/options/appearance.php:64 +#: application/views/options/appearance.php:73 +#: application/views/options/appearance.php:83 +#: application/views/options/appearance.php:92 +#: application/views/options/appearance.php:101 +#: application/views/options/appearance.php:110 +#: application/views/options/version_dialog.php:66 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 +#: application/views/stationsetup/stationsetup.php:76 +#: application/views/user/edit.php:451 application/views/user/edit.php:460 +msgid "Disabled" +msgstr "" + +#: application/controllers/Stationsetup.php:261 +#: application/views/stationsetup/stationsetup.php:44 +msgid "Set as Active Logbook" +msgstr "" + +#: application/controllers/Stationsetup.php:263 +#: application/views/interface_assets/header.php:492 +#: application/views/stationsetup/stationsetup.php:46 +#: application/views/view_log/index.php:4 +msgid "Active Logbook" +msgstr "" + +#: application/controllers/Stationsetup.php:270 +#: application/views/stationsetup/stationsetup.php:55 +msgid "" +"Are you sure you want to delete the following station logbook? You must re-" +"link any locations linked here to another logbook.: " +msgstr "" + +#: application/controllers/Stationsetup.php:280 +#: application/views/stationsetup/stationsetup.php:65 +msgid "View Public Page for Logbook: " +msgstr "" + +#: application/controllers/Stationsetup.php:281 +msgid "Are you sure you want to delete the public slug?" +msgstr "" + +#: application/controllers/Stationsetup.php:349 +#: application/views/stationsetup/stationsetup.php:154 +msgid "" +"Are you sure you want to make the following station the active station: " +msgstr "" + +#: application/controllers/Stationsetup.php:349 +#: application/views/stationsetup/stationsetup.php:154 +msgid "Set Active" +msgstr "" + +#: application/controllers/Stationsetup.php:351 +#: application/views/stationsetup/stationsetup.php:156 +msgid "Active Station" +msgstr "" + +#: application/controllers/Stationsetup.php:354 +#: application/views/interface_assets/header.php:113 +#: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 +#: application/views/simplefle/index.php:28 +#: application/views/stationsetup/stationsetup.php:161 +#: application/views/user/index.php:90 application/views/user/index.php:92 +msgid "QSO" +msgstr "" + +#: application/controllers/Stationsetup.php:359 +#: application/views/api/help.php:57 application/views/contesting/add.php:59 +#: application/views/cron/index.php:58 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 +#: application/views/labels/index.php:47 application/views/labels/index.php:83 +#: application/views/logbookadvanced/index.php:541 +#: application/views/mode/index.php:52 application/views/satellite/edit.php:39 +#: application/views/satellite/index.php:25 +#: application/views/search/stored_queries.php:21 +#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:165 +#: application/views/themes/index.php:104 application/views/user/index.php:52 +msgid "Edit" +msgstr "" + +#: application/controllers/Stationsetup.php:363 +#: application/views/stationsetup/stationsetup.php:185 +msgid "Are you sure you want to delete all QSOs within this station profile?" +msgstr "" + +#: application/controllers/Stationsetup.php:363 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:187 +msgid "Empty Log" +msgstr "" + +#: application/controllers/Stationsetup.php:367 +#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:168 +msgid "Copy" +msgstr "" + +#: application/controllers/Stationsetup.php:372 +#: application/views/stationsetup/stationsetup.php:191 +#, php-format +msgid "" +"Are you sure you want delete station profile '%s'? This will delete all QSOs " +"within this station profile." +msgstr "" + +#: application/controllers/Stationsetup.php:379 +#: application/views/qso/edit_ajax.php:221 +msgid "NONE" +msgstr "" + +#: application/controllers/Stationsetup.php:462 +msgid "Edit Export Map options" +msgstr "" + +#: application/controllers/Statistics.php:27 +#: application/views/interface_assets/header.php:134 +msgid "Statistics" +msgstr "" + +#: application/controllers/Statistics.php:50 +msgid "Custom Statistics" +msgstr "" + +#: application/controllers/Statistics.php:232 +#: application/views/interface_assets/header.php:136 +#: application/views/statistics/qsltable.php:5 +msgid "QSL Statistics" +msgstr "" + +#: application/controllers/Themes.php:27 +#: application/views/interface_assets/header.php:282 +msgid "Themes" +msgstr "" + +#: application/controllers/Themes.php:46 +msgid "Create Theme" +msgstr "" + +#: application/controllers/Themes.php:65 +msgid "Edit Theme" +msgstr "" + +#: application/controllers/Timeline.php:15 +#: application/views/interface_assets/header.php:150 +#: application/views/timeline/index.php:2 +msgid "Timeline" +msgstr "" + +#: application/controllers/Timeplotter.php:17 +#: application/views/interface_assets/header.php:154 +#: application/views/timeplotter/index.php:9 +msgid "Timeplotter" +msgstr "" + +#: application/controllers/Update.php:26 +msgid "Updates" +msgstr "" + +#: application/controllers/Update.php:78 +msgid "Preparing DXCC-Entries: " +msgstr "" + +#: application/controllers/Update.php:122 +msgid "Preparing DXCC Exceptions: " +msgstr "" + +#: application/controllers/Update.php:166 +msgid "Preparing DXCC Prefixes: " +msgstr "" + +#: application/controllers/Update.php:230 +msgid "DONE" +msgstr "" + +#: application/controllers/Update.php:244 +msgid "Updating..." +msgstr "" + +#: application/controllers/Update.php:247 +msgid "Dxcc Entities:" +msgstr "" + +#: application/controllers/Update.php:248 +msgid "Dxcc Exceptions:" +msgstr "" + +#: application/controllers/Update.php:249 +msgid "Dxcc Prefixes:" +msgstr "" + +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:272 +msgid "User Accounts" +msgstr "" + +#: application/controllers/User.php:76 +msgid "Add User" +msgstr "" + +#: application/controllers/User.php:190 +msgid "Users" +msgstr "" + +#: application/controllers/User.php:264 application/controllers/User.php:697 +msgid "Edit User" +msgstr "" + +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 +msgid "User" +msgstr "" + +#: application/controllers/User.php:689 application/controllers/User.php:692 +msgid "edited" +msgstr "" + +#: application/controllers/User.php:746 +msgid "Profile" +msgstr "" + +#: application/controllers/User.php:803 +msgid "" +"Congrats! Wavelog was successfully installed. You can now login for the " +"first time." +msgstr "" + +#: application/controllers/User.php:867 application/controllers/User.php:877 +msgid "Login failed. Try again." +msgstr "" + +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:360 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:87 +msgid "Login" +msgstr "" + +#: application/controllers/User.php:922 +msgid "" +"Sorry. This instance is currently in maintenance mode. If this message " +"appears unexpectedly or keeps showing up, please contact an administrator. " +"Only administrators are currently allowed to log in." +msgstr "" + +#: application/controllers/User.php:925 +msgid "Incorrect username or password!" +msgstr "" + +#: application/controllers/User.php:942 +#, php-format +msgid "User %s logged out." +msgstr "" + +#: application/controllers/User.php:956 +msgid "Password Reset is disabled on the Demo!" +msgstr "" + +#: application/controllers/User.php:969 +msgid "Forgot Password" +msgstr "" + +#: application/controllers/User.php:1019 application/views/user/index.php:8 +msgid "Email settings are incorrect." +msgstr "" + +#: application/controllers/User.php:1023 application/controllers/User.php:1028 +msgid "Password Reset Processed." +msgstr "" + +#: application/controllers/User.php:1129 +#: application/views/user/forgot_password.php:51 +#: application/views/user/reset_password.php:8 +#: application/views/user/reset_password.php:35 +msgid "Reset Password" +msgstr "" + +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "" + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "" + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "" + +#: application/controllers/Visitor.php:50 +#: application/controllers/Visitor.php:81 +#: application/controllers/Visitor.php:148 +#: application/controllers/Visitor.php:175 +#: application/controllers/Visitor.php:210 +#: application/controllers/Visitor.php:472 +#: application/controllers/Widgets.php:40 +msgid "Unknown Public Page." +msgstr "" + +#: application/controllers/Visitor.php:76 +#: application/controllers/Visitor.php:171 +#: application/controllers/Visitor.php:206 +#: application/controllers/Visitor.php:468 +#: application/controllers/Widgets.php:36 +msgid "Empty Logbook" +msgstr "" + +#: application/controllers/Visitor.php:216 +msgid "Satellite Gridsquare Map" +msgstr "" + +#: application/controllers/Visitor.php:405 +#: application/views/stationsetup/stationsetup.php:35 +msgid "Public Search" +msgstr "" + +#: application/controllers/Visitor.php:438 +msgid "Export Map" +msgstr "" + +#: application/controllers/Webadif.php:90 +#: application/controllers/Webadif.php:137 +#: application/views/interface_assets/header.php:433 +msgid "QO-100 Dx Club Upload" +msgstr "" + +#: application/controllers/Widgets.php:21 +msgid "Unknown Public Page, please make sure the public slug is correct." +msgstr "" + +#: application/controllers/Widgets.php:54 application/views/oqrs/index.php:69 +msgid "No stations found that are using Wavelog OQRS." +msgstr "" + +#: application/libraries/Subdivisions.php:31 +msgctxt "Division Name (States in various countries)." +msgid "Province" +msgstr "" + +#: application/libraries/Subdivisions.php:39 +msgctxt "Division Name (States in various countries)." +msgid "Oblast" +msgstr "" + +#: application/libraries/Subdivisions.php:41 +#: application/libraries/Subdivisions.php:47 +msgctxt "Division Name (States in various countries)." +msgid "Region" +msgstr "" + +#: application/libraries/Subdivisions.php:45 +msgctxt "Division Name (States in various countries)." +msgid "Department" +msgstr "" + +#: application/libraries/Subdivisions.php:49 +msgctxt "Division Name (States in various countries)." +msgid "Municipality" +msgstr "" + +#: application/libraries/Subdivisions.php:51 +msgctxt "Division Name (States in various countries)." +msgid "Federal State" +msgstr "" + +#: application/libraries/Subdivisions.php:56 +#: application/libraries/Subdivisions.php:94 +msgctxt "Division Name (States in various countries)." +msgid "County" +msgstr "" + +#: application/libraries/Subdivisions.php:60 +#: application/libraries/Subdivisions.php:85 +msgctxt "Division Name (States in various countries)." +msgid "District" +msgstr "" + +#: application/libraries/Subdivisions.php:62 +msgctxt "Division Name (States in various countries)." +msgid "Canton" +msgstr "" + +#: application/libraries/Subdivisions.php:64 +msgctxt "Division Name (States in various countries)." +msgid "US State" +msgstr "" + +#: application/libraries/Subdivisions.php:67 +msgctxt "Division Name (States in various countries)." +msgid "Prefecture" +msgstr "" + +#: application/libraries/Subdivisions.php:69 +msgctxt "Division Name (States in various countries)." +msgid "State" +msgstr "" + +#: application/libraries/Subdivisions.php:78 +msgctxt "Division Name (States in various countries)." +msgid "US County" +msgstr "" + +#: application/libraries/Subdivisions.php:90 +msgctxt "Division Name (States in various countries)." +msgid "DME" +msgstr "" + +#: application/libraries/Subdivisions.php:92 +msgctxt "Division Name (States in various countries)." +msgid "City / Ku / Gun" +msgstr "" + +#: application/models/Eqslmethods_model.php:281 +msgid "Your eQSL username and/or password is incorrect." +msgstr "" + +#: application/models/Eqslmethods_model.php:287 +msgid "Something went wrong with eQSL.cc!" +msgstr "" + +#: application/models/Eqslmethods_model.php:303 +msgid "eQSL.cc is experiencing issues. Please try exporting QSOs later." +msgstr "" + +#: application/models/Eqslmethods_model.php:309 +msgid "" +"There was an error in one of the QSOs. You might want to manually upload " +"them." +msgstr "" + +#: application/models/Eqslmethods_model.php:315 +msgid "" +"It seems that the eQSL site has changed. Please open up an issue on GitHub." +msgstr "" + +#: application/models/Hrdlog_model.php:22 +msgid "" +"HRDlog: QSOs have been uploaded to hrdlog.net for the station callsign: " +msgstr "" + +#: application/models/Hrdlog_model.php:25 +msgid "HRDlog: No QSOs found to upload for the station callsign: " +msgstr "" + +#: application/models/Hrdlog_model.php:31 +msgid "HRDlog: No station profiles with HRDlog Credentials found." +msgstr "" + +#: application/models/Logbook_model.php:4255 +msgid "QSO could not be matched" +msgstr "" + +#: application/models/Logbook_model.php:4261 +msgid "confirmed by LoTW/Clublog/eQSL/Contest" +msgstr "" + +#: application/models/Logbook_model.php:4266 +msgid "confirmed by award manager" +msgstr "" + +#: application/models/Logbook_model.php:4269 +msgid "confirmed by cross-check of DCL data" +msgstr "" + +#: application/models/Logbook_model.php:4272 +msgid "confirmation pending" +msgstr "" + +#: application/models/Logbook_model.php:4275 +msgid "unconfirmed" +msgstr "" + +#: application/models/Logbook_model.php:4278 +msgid "unknown" +msgstr "" + +#: application/views/accumulate/index.php:2 +msgid "Accumulated number of DXCCs worked" +msgstr "" + +#: application/views/accumulate/index.php:3 +msgid "Accumulated number of States worked" +msgstr "" + +#: application/views/accumulate/index.php:4 +msgid "Accumulated number of IOTAs worked" +msgstr "" + +#: application/views/accumulate/index.php:5 +msgid "Accumulated number of CQ Zones worked" +msgstr "" + +#: application/views/accumulate/index.php:6 +msgid "Accumulated number of VUCC Grids worked" +msgstr "" + +#: application/views/accumulate/index.php:7 +msgid "Accumulated number of WAJA worked" +msgstr "" + +#: application/views/accumulate/index.php:8 +#: application/views/dashboard/index.php:238 +#: application/views/dayswithqso/index.php:16 +#: application/views/statistics/index.php:18 +#: application/views/visitor/index.php:246 +msgid "Year" +msgstr "" + +#: application/views/accumulate/index.php:9 +#: application/views/accumulate/index.php:67 +msgid "Yearly" +msgstr "" + +#: application/views/accumulate/index.php:10 +#: application/views/dashboard/index.php:243 +#: application/views/visitor/index.php:251 +msgid "Month" +msgstr "" + +#: application/views/accumulate/index.php:11 +#: application/views/accumulate/index.php:73 +msgid "Monthly" +msgstr "" + +#: application/views/accumulate/index.php:12 +msgid "Difference" +msgstr "" + +#: application/views/accumulate/index.php:24 +#: application/views/accumulate/index.php:34 +#: application/views/accumulate/index.php:83 +#: application/views/activated_gridmap/index.php:10 +#: application/views/activated_gridmap/index.php:22 +#: application/views/activated_gridmap/index.php:32 +#: application/views/activated_gridmap/index.php:41 +#: application/views/activators/index.php:13 +#: application/views/awards/cq/index.php:77 +#: application/views/awards/cq/index.php:91 +#: application/views/awards/dok/index.php:94 +#: application/views/awards/dxcc/index.php:134 +#: application/views/awards/dxcc/index.php:150 +#: application/views/awards/dxcc/index.php:165 +#: application/views/awards/helvetia/index.php:90 +#: application/views/awards/iota/index.php:108 +#: application/views/awards/itu/index.php:77 +#: application/views/awards/itu/index.php:91 +#: application/views/awards/jcc/index.php:91 +#: application/views/awards/rac/index.php:82 +#: application/views/awards/wab/index.php:24 +#: application/views/awards/wab/index.php:36 +#: application/views/awards/wab/index.php:46 +#: application/views/awards/wab/index.php:55 +#: application/views/awards/wac/index.php:81 +#: application/views/awards/wac/index.php:97 +#: application/views/awards/wac/index.php:113 +#: application/views/awards/waja/index.php:94 +#: application/views/awards/was/index.php:90 +#: application/views/bandmap/list.php:71 application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:90 application/views/bands/index.php:117 +#: application/views/cabrillo/index.php:65 +#: application/views/continents/index.php:32 +#: application/views/continents/index.php:41 application/views/csv/index.php:21 +#: application/views/csv/index.php:33 application/views/csv/index.php:44 +#: application/views/csv/index.php:60 application/views/csv/index.php:82 +#: application/views/csv/index.php:94 application/views/distances/index.php:21 +#: application/views/distances/index.php:36 +#: application/views/distances/index.php:46 +#: application/views/distances/index.php:56 +#: application/views/dxatlas/index.php:21 +#: application/views/dxatlas/index.php:33 +#: application/views/dxatlas/index.php:44 +#: 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/interface_assets/footer.php:1448 +#: application/views/interface_assets/footer.php:1587 +#: application/views/kml/index.php:21 application/views/kml/index.php:33 +#: application/views/kml/index.php:49 application/views/kml/index.php:67 +#: application/views/kml/index.php:79 +#: application/views/logbookadvanced/index.php:183 +#: application/views/logbookadvanced/index.php:194 +#: application/views/logbookadvanced/index.php:205 +#: application/views/logbookadvanced/index.php:214 +#: application/views/logbookadvanced/index.php:223 +#: application/views/logbookadvanced/index.php:248 +#: application/views/logbookadvanced/index.php:259 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:423 +#: application/views/lotw/import.php:54 +#: application/views/oqrs/showrequests.php:33 +#: application/views/oqrs/showrequests.php:49 +#: application/views/oqrs/showrequests.php:62 +#: application/views/qslprint/index.php:22 +#: application/views/search/cqzones.php:30 +#: application/views/search/lotw_unconfirmed.php:31 +#: application/views/stationsetup/exportmapoptions.php:33 +#: application/views/timeline/index.php:10 +#: application/views/timeline/index.php:22 +#: application/views/timeline/index.php:77 +#: application/views/timeplotter/index.php:17 +#: application/views/timeplotter/index.php:27 +#: application/views/timeplotter/index.php:47 +#: application/views/user/edit.php:633 +#: application/views/visitor/layout/footer.php:171 +msgid "All" +msgstr "" + +#: application/views/accumulate/index.php:50 +#: application/views/timeline/index.php:41 +msgid "Award" +msgstr "" + +#: application/views/accumulate/index.php:53 +#: application/views/timeline/index.php:44 +msgid "DX Century Club (DXCC)" +msgstr "" + +#: application/views/accumulate/index.php:55 +#: application/views/timeline/index.php:46 +msgid "Islands On The Air (IOTA)" +msgstr "" + +#: application/views/accumulate/index.php:56 +#: application/views/timeline/index.php:47 +msgid "Worked All Zones (WAZ)" +msgstr "" + +#: application/views/accumulate/index.php:57 +#: application/views/timeline/index.php:48 +msgid "VHF / UHF Century Club (VUCC)" +msgstr "" + +#: application/views/accumulate/index.php:58 +#: application/views/timeline/index.php:49 +msgid "Worked All Japan (WAJA)" +msgstr "" + +#: application/views/accumulate/index.php:62 +msgid "Period" +msgstr "" + +#: application/views/accumulate/index.php:80 +#: application/views/distances/index.php:53 +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/timeline/index.php:74 +msgid "Propagation" +msgstr "" + +#: application/views/accumulate/index.php:84 +#: application/views/distances/index.php:57 +#: application/views/timeline/index.php:78 +msgid "All but SAT" +msgstr "" + +#: application/views/accumulate/index.php:85 +#: application/views/distances/index.php:58 +#: application/views/gridmap/index.php:42 +#: application/views/logbookadvanced/edit.php:142 +#: application/views/logbookadvanced/index.php:307 +#: application/views/timeline/index.php:79 +msgid "None/Empty" +msgstr "" + +#: application/views/accumulate/index.php:86 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/logbookadvanced/index.php:225 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:414 +#: application/views/timeline/index.php:80 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/accumulate/index.php:87 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/logbookadvanced/index.php:226 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:415 +#: application/views/timeline/index.php:81 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/accumulate/index.php:88 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/logbookadvanced/index.php:227 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:416 +#: application/views/timeline/index.php:82 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/accumulate/index.php:89 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/logbookadvanced/index.php:228 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:417 +#: application/views/timeline/index.php:83 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/accumulate/index.php:90 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/logbookadvanced/index.php:229 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:418 +#: application/views/timeline/index.php:84 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/accumulate/index.php:91 +#: 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/logbookadvanced/index.php:230 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:419 +#: application/views/timeline/index.php:85 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/accumulate/index.php:92 +#: 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/logbookadvanced/index.php:231 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:420 +#: application/views/timeline/index.php:86 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/accumulate/index.php:93 +#: 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/logbookadvanced/index.php:232 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:421 +#: application/views/timeline/index.php:87 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/accumulate/index.php:94 +#: 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/logbookadvanced/index.php:233 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:422 +#: application/views/timeline/index.php:88 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/accumulate/index.php:95 +#: 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/logbookadvanced/index.php:234 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:423 +#: application/views/timeline/index.php:89 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/accumulate/index.php:96 +#: 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/logbookadvanced/index.php:235 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:424 +#: application/views/timeline/index.php:90 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/accumulate/index.php:97 +#: 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/logbookadvanced/index.php:236 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:425 +#: application/views/timeline/index.php:91 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/accumulate/index.php:98 +#: 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/logbookadvanced/index.php:237 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:426 +#: application/views/timeline/index.php:92 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/accumulate/index.php:99 +#: 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/logbookadvanced/index.php:238 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:427 +#: application/views/timeline/index.php:93 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/accumulate/index.php:100 +#: 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/logbookadvanced/index.php:239 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:428 +#: application/views/timeline/index.php:94 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/accumulate/index.php:101 +#: 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/logbookadvanced/index.php:240 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:429 +#: application/views/timeline/index.php:95 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "" + +#: application/views/accumulate/index.php:102 +#: 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/logbookadvanced/index.php:241 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:430 +#: application/views/timeline/index.php:96 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/accumulate/index.php:103 +#: 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/logbookadvanced/index.php:242 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:431 +#: application/views/timeline/index.php:97 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/accumulate/index.php:112 +#: application/views/activators/index.php:53 +#: application/views/awards/cq/index.php:113 +#: application/views/awards/dok/index.php:127 +#: application/views/awards/dxcc/index.php:187 +#: application/views/awards/helvetia/index.php:112 +#: application/views/awards/iota/index.php:130 +#: application/views/awards/itu/index.php:113 +#: application/views/awards/jcc/index.php:113 +#: application/views/awards/rac/index.php:104 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:79 +#: application/views/logbookadvanced/useroptions.php:17 +#: application/views/lookup/index.php:63 +#: application/views/stationsetup/exportmapoptions.php:6 +#: application/views/timeline/index.php:105 +#: application/views/timeline/index.php:170 +#: application/views/timeline/index.php:197 +#: application/views/timeline/index.php:222 +#: application/views/timeline/index.php:251 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:303 +#: application/views/timeplotter/index.php:59 +msgid "Show" +msgstr "" + +#: application/views/activated_gridmap/index.php:20 +#: application/views/awards/dxcc/index.php:131 +#: application/views/awards/wab/index.php:34 +#: application/views/awards/wac/index.php:78 +#: 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/logbookadvanced/edit.php:17 +#: application/views/logbookadvanced/index.php:203 +#: application/views/satellite/flightpath.php:34 +#: application/views/satellite/passtable.php:5 +#: application/views/sattimers/index.php:38 +#: application/views/statistics/index.php:112 +msgid "Satellite" +msgstr "" + +#: application/views/activated_gridmap/index.php:30 +#: application/views/awards/dxcc/index.php:147 +#: application/views/awards/wab/index.php:44 +#: application/views/awards/wac/index.php:94 +#: application/views/distances/index.php:44 +#: application/views/gridmap/index.php:80 +#: application/views/logbookadvanced/index.php:212 +#: application/views/satellite/create.php:35 +#: application/views/satellite/edit.php:19 +#: application/views/satellite/index.php:23 +msgid "Orbit" +msgstr "" + +#: application/views/activated_gridmap/index.php:50 +#: application/views/awards/wab/index.php:64 +#: application/views/gridmap/index.php:92 +#: application/views/timeline/index.php:52 +msgid "Confirmation" +msgstr "" + +#: application/views/activated_gridmap/index.php:82 +#: application/views/awards/cq/index.php:68 +#: application/views/awards/dok/index.php:67 +#: application/views/awards/dxcc/index.php:73 +#: application/views/awards/helvetia/index.php:67 +#: application/views/awards/itu/index.php:68 +#: application/views/awards/jcc/index.php:64 +#: application/views/awards/rac/index.php:59 +#: application/views/awards/wab/index.php:96 +#: application/views/awards/wac/index.php:56 +#: application/views/awards/waja/index.php:67 +#: application/views/awards/was/index.php:67 +#: application/views/gridmap/index.php:125 application/views/user/edit.php:675 +msgid "QRZ.com" +msgstr "" + +#: application/views/activated_gridmap/index.php:86 +#: application/views/gridmap/index.php:130 +#: application/views/satellite/flightpath.php:42 +msgid "Plot" +msgstr "" + +#: application/views/activated_gridmap/index.php:87 +#: application/views/gridmap/index.php:131 +msgid "Clear Markers" +msgstr "" + +#: application/views/activated_gridmap/index.php:102 +#: application/views/awards/ffma/index.php:30 +#: application/views/awards/gridmaster/index.php:29 +#: application/views/gridmap/index.php:148 +#: application/views/logbookadvanced/index.php:8 +msgid "Latitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:104 +#: application/views/awards/ffma/index.php:32 +#: application/views/awards/gridmaster/index.php:31 +#: application/views/gridmap/index.php:150 +#: application/views/logbookadvanced/index.php:9 +msgid "Longitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:110 +#: application/views/awards/ffma/index.php:38 +#: application/views/awards/gridmaster/index.php:37 +#: application/views/gridmap/index.php:156 +#: application/views/logbookadvanced/index.php:13 +msgid "Bearing" +msgstr "" + +#: application/views/activators/index.php:26 +msgctxt "Orbiter LEO or GEO" +msgid "Both" +msgstr "" + +#: application/views/activators/index.php:33 +msgid "Minimum Count" +msgstr "" + +#: application/views/activators/index.php:76 +#: application/views/awards/counties/details.php:27 +#: application/views/awards/counties/index.php:46 +#: application/views/awards/cq/index.php:198 +#: application/views/awards/dok/index.php:196 +#: application/views/awards/dxcc/index.php:280 +#: application/views/awards/helvetia/index.php:200 +#: application/views/awards/iota/index.php:224 +#: application/views/awards/itu/index.php:198 +#: application/views/awards/jcc/index.php:236 +#: application/views/awards/pota/index.php:67 +#: application/views/awards/rac/index.php:192 +#: application/views/awards/sig/index.php:45 +#: application/views/awards/sota/index.php:53 +#: application/views/awards/vucc/band.php:41 +#: application/views/awards/vucc/index.php:39 +#: application/views/awards/wac/index.php:199 +#: application/views/awards/waja/index.php:202 +#: application/views/awards/was/index.php:200 +#: application/views/awards/wwff/index.php:64 +#: application/views/distancerecords/index.php:50 +#: application/views/public_search/empty.php:3 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:135 +msgid "Nothing found!" +msgstr "" + +#: application/views/activators/index.php:98 +#: application/views/adif/import.php:66 application/views/adif/import.php:182 +#: application/views/adif/import.php:227 +#: application/views/awards/pota/index.php:34 +#: application/views/awards/sig/qso_list.php:11 +#: application/views/awards/sota/index.php:25 +#: application/views/awards/wwff/index.php:34 +#: application/views/cabrillo/index.php:31 +#: application/views/components/hamsat/table.php:27 +#: application/views/contesting/index.php:156 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:168 +#: application/views/distancerecords/index.php:18 +#: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41 +#: application/views/eqslcard/index.php:28 +#: application/views/hamsat/index.php:30 application/views/labels/index.php:123 +#: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/lotw_views/index.php:35 +#: application/views/oqrs/qsolist.php:6 +#: application/views/oqrs/request_grouped.php:12 +#: application/views/qslcard/index.php:28 +#: application/views/qslcard/searchform.php:3 +#: application/views/qslprint/index.php:24 +#: application/views/qslprint/qslprint.php:21 +#: application/views/qslprint/qsolist.php:6 +#: application/views/qso/edit_ajax.php:62 application/views/qso/index.php:124 +#: application/views/reg1test/index.php:33 +#: application/views/search/cqzones.php:32 +#: application/views/search/cqzones_result.php:9 +#: application/views/search/lotw_unconfirmed.php:33 +#: application/views/search/lotw_unconfirmed_result.php:6 +#: application/views/search/result.php:11 +#: application/views/simplefle/index.php:148 +#: application/views/station_profile/edit.php:63 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 +#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:510 +msgid "Callsign" +msgstr "" + +#: application/views/activators/index.php:99 +msgid "Count" +msgstr "" + +#: application/views/activators/index.php:101 +#: application/views/timeline/index.php:154 +#: application/views/timeline/index.php:186 +#: application/views/timeline/index.php:211 +#: application/views/timeline/index.php:238 +#: application/views/timeline/index.php:265 +#: application/views/timeline/index.php:291 +msgid "Show QSO's" +msgstr "" + +#: application/views/activators/index.php:102 +msgid "Show Map" +msgstr "" + +#: application/views/adif/dcl_success.php:12 +msgid "Results of DCL DOK Update" +msgstr "" + +#: application/views/adif/dcl_success.php:17 +msgid "DCL information for DOKs has been updated." +msgstr "" + +#: application/views/adif/dcl_success.php:19 +msgid "No QSOs found which could be updated." +msgstr "" + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs ignored" +msgstr "" + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs unmatched" +msgstr "" + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs updated" +msgstr "" + +#: application/views/adif/dcl_success.php:25 +msgid "DOK Errors" +msgstr "" + +#: application/views/adif/dcl_success.php:26 +msgid "There is different data for DOK in your log compared to DCL" +msgstr "" + +#: application/views/adif/dcl_success.php:29 +#: application/views/awards/pota/index.php:32 +#: application/views/awards/wwff/index.php:32 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:25 +#: application/views/contesting/index.php:93 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:163 +#: application/views/debug/index.php:545 +#: application/views/distancerecords/index.php:16 +#: application/views/eqsl/analysis.php:36 +#: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 +#: application/views/eqslcard/index.php:30 +#: application/views/hamsat/index.php:28 +#: application/views/logbookadvanced/edit.php:4 +#: application/views/oqrs/notinlogform.php:8 +#: application/views/oqrs/qsolist.php:7 application/views/oqrs/request.php:15 +#: application/views/oqrs/request_grouped.php:8 +#: application/views/public_search/result.php:13 +#: application/views/qslcard/index.php:30 +#: application/views/qslcard/searchresult.php:4 +#: application/views/qslprint/qslprint.php:22 +#: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:64 +#: application/views/qso/index.php:100 application/views/satellite/pass.php:473 +#: application/views/search/cqzones_result.php:7 +#: application/views/search/result_search.php:4 +#: application/views/search/search_result_ajax.php:89 +#: application/views/simplefle/index.php:146 +#: application/views/statistics/custom.php:38 +#: application/views/statistics/custom_result.php:40 +#: application/views/statistics/custom_result.php:85 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:184 +#: application/views/timeline/index.php:209 +#: application/views/timeline/index.php:234 +#: application/views/timeline/index.php:263 +#: application/views/timeline/index.php:288 +#: application/views/view_log/partial/log.php:4 +#: application/views/view_log/partial/log_ajax.php:59 +#: application/views/visitor/index.php:147 +#: application/views/widgets/qsos.php:24 +msgid "Date" +msgstr "" + +#: application/views/adif/dcl_success.php:30 +#: application/views/awards/pota/index.php:33 +#: application/views/awards/wwff/index.php:33 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:26 +#: application/views/contesting/index.php:98 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:166 +#: application/views/debug/index.php:546 +#: application/views/distancerecords/index.php:17 +#: application/views/eqsl/analysis.php:37 +#: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 +#: application/views/eqslcard/index.php:31 +#: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 +#: application/views/qslcard/index.php:31 +#: application/views/qslcard/searchresult.php:6 +#: application/views/qslprint/qslprint.php:23 +#: application/views/qslprint/qsolist.php:8 application/views/qso/index.php:105 +#: application/views/search/cqzones_result.php:8 +#: application/views/search/result_search.php:5 +#: application/views/search/search_result_ajax.php:91 +#: application/views/simplefle/index.php:147 +#: application/views/statistics/custom_result.php:86 +#: application/views/timeline/index.php:289 +#: application/views/timeplotter/index.php:5 +#: application/views/view_log/partial/log.php:6 +#: application/views/view_log/partial/log_ajax.php:61 +#: application/views/visitor/index.php:150 +#: application/views/widgets/qsos.php:26 +msgid "Time" +msgstr "" + +#: application/views/adif/dcl_success.php:31 +#: application/views/awards/vucc/band.php:18 +#: application/views/bandmap/list.php:111 +#: application/views/contesting/index.php:248 +#: application/views/debug/index.php:547 application/views/debug/index.php:582 +#: application/views/dxcalendar/index.php:12 +#: application/views/eqsl/analysis.php:38 +#: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 +#: application/views/public_search/result.php:14 +#: application/views/qslcard/searchresult.php:8 +#: application/views/qso/components/previous_contacts.php:7 +#: application/views/search/result_search.php:6 +#: application/views/search/search_result_ajax.php:93 +#: application/views/statistics/custom_result.php:87 +#: application/views/view_log/partial/log.php:8 +#: application/views/view_log/partial/log_ajax.php:63 +#: application/views/visitor/index.php:152 +#: application/views/widgets/qsos.php:28 +msgid "Call" +msgstr "" + +#: application/views/adif/dcl_success.php:34 +msgid "DOK in Log" +msgstr "" + +#: application/views/adif/dcl_success.php:35 +msgid "DOK in DCL" +msgstr "" + +#: application/views/adif/dcl_success.php:36 +msgid "DCL QSL Status" +msgstr "" + +#: application/views/adif/import.php:36 application/views/adif/import.php:252 +msgid "DARC DCL" +msgstr "" + +#: application/views/adif/import.php:55 +#: application/views/dashboard/index.php:112 +#: application/views/dashboard/index.php:133 +#: application/views/dashboard/index.php:139 +#: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 +#: application/views/lotw_views/index.php:4 +msgid "Important" +msgstr "" + +#: application/views/adif/import.php:55 +msgid "Log Files must have the file type *.adi" +msgstr "" + +#: application/views/adif/import.php:56 application/views/view_log/qso.php:625 +msgid "Maximum file upload size is " +msgstr "" + +#: application/views/adif/import.php:56 application/views/adif/import.php:230 +#: application/views/adif/import.php:268 application/views/debug/index.php:175 +#: application/views/debug/index.php:192 application/views/debug/index.php:537 +#: application/views/hrdlog/export.php:25 +#: application/views/hrdlog/export.php:74 +#: application/views/interface_assets/footer.php:34 +#: application/views/qrz/export.php:73 application/views/qrz/export.php:94 +#: application/views/stationsetup/stationsetup.php:111 +#: application/views/view_log/qso.php:625 +#: application/views/webadif/export.php:34 +#: application/views/webadif/export.php:94 +msgid "Warning" +msgstr "" + +#: application/views/adif/import.php:60 application/views/adif/import.php:62 +#: application/views/adif/import.php:178 application/views/adif/import.php:225 +#: application/views/eqsl/import.php:36 application/views/hrdlog/export.php:69 +#: application/views/qrz/export.php:89 application/views/reg1test/index.php:30 +#: application/views/webadif/export.php:89 +msgid "Select Station Location" +msgstr "" + +#: application/views/adif/import.php:69 +msgid "Add QSOs to Contest" +msgstr "" + +#: application/views/adif/import.php:71 +#: application/views/simplefle/index.php:82 +msgid "No Contest" +msgstr "" + +#: application/views/adif/import.php:77 +msgid "ADIF File" +msgstr "" + +#: application/views/adif/import.php:84 +msgid "Import duplicate QSOs" +msgstr "" + +#: application/views/adif/import.php:93 +msgid "Mark imported QSOs as uploaded to LoTW" +msgstr "" + +#: application/views/adif/import.php:95 application/views/adif/import.php:105 +#: application/views/adif/import.php:115 application/views/adif/import.php:125 +#: application/views/adif/import.php:135 +msgid "Select if ADIF being imported does not contain this information." +msgstr "" + +#: application/views/adif/import.php:103 +msgid "Mark imported QSOs as uploaded to eQSL Logbook" +msgstr "" + +#: application/views/adif/import.php:113 +msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" +msgstr "" + +#: application/views/adif/import.php:123 +msgid "Mark imported QSOs as uploaded to QRZ Logbook" +msgstr "" + +#: application/views/adif/import.php:133 +msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgstr "" + +#: application/views/adif/import.php:143 +msgid "Use DXCC information from ADIF" +msgstr "" + +#: application/views/adif/import.php:145 +msgid "" +"If not selected, Wavelog will attempt to determine DXCC information " +"automatically." +msgstr "" + +#: application/views/adif/import.php:153 +msgid "Always use login-callsign as operator-name on import" +msgstr "" + +#: application/views/adif/import.php:162 +#: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2133 +msgid "DANGER" +msgstr "" + +#: application/views/adif/import.php:162 +msgid "Ignore Stationcallsign on import" +msgstr "" + +#: application/views/adif/import.php:164 +#, php-format +msgid "" +"If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " +"regardless if they match to the chosen station-location." +msgstr "" + +#: application/views/adif/import.php:168 application/views/adif/import.php:283 +#: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 +#: application/views/webadif/export.php:55 +msgid "Upload" +msgstr "" + +#: application/views/adif/import.php:175 +msgid "Take your logbook file anywhere!" +msgstr "" + +#: application/views/adif/import.php:176 +msgid "" +"Exporting ADIFs allows you to import contacts into third party applications " +"like LoTW, Awards or just for keeping a backup." +msgstr "" + +#: application/views/adif/import.php:186 application/views/adif/import.php:232 +#: application/views/cfd/index.php:15 application/views/csv/index.php:118 +#: application/views/dxatlas/index.php:118 +#: application/views/hrdlog/export.php:77 application/views/kml/index.php:103 +#: application/views/lotw/import.php:38 application/views/qrz/export.php:76 +#: application/views/qrz/export.php:97 application/views/webadif/export.php:97 +msgid "From date" +msgstr "" + +#: application/views/adif/import.php:189 application/views/adif/import.php:235 +#: application/views/cfd/index.php:20 application/views/csv/index.php:123 +#: application/views/dxatlas/index.php:123 +#: application/views/hrdlog/export.php:82 application/views/kml/index.php:108 +#: application/views/qrz/export.php:102 +#: application/views/webadif/export.php:102 +msgid "To date" +msgstr "" + +#: application/views/adif/import.php:197 +msgid "Mark exported QSOs as uploaded to LoTW" +msgstr "" + +#: application/views/adif/import.php:205 +msgid "Export QSOs not uploaded to LoTW" +msgstr "" + +#: application/views/adif/import.php:210 +msgid "Export QSO's" +msgstr "" + +#: application/views/adif/import.php:215 +msgid "Export Satellite-Only QSOs" +msgstr "" + +#: application/views/adif/import.php:216 +msgid "Export All Satellite QSOs" +msgstr "" + +#: application/views/adif/import.php:218 +msgid "Export All Satellite QSOs Confirmed on LoTW" +msgstr "" + +#: application/views/adif/import.php:230 application/views/hrdlog/export.php:74 +#: application/views/qrz/export.php:94 application/views/webadif/export.php:94 +msgid "If a date range is not selected then all QSOs will be marked!" +msgstr "" + +#: application/views/adif/import.php:238 +msgid "Mark QSOs as exported to LoTW" +msgstr "" + +#: application/views/adif/import.php:252 +#, php-format +msgid "" +"Go to %s and export your logbook with confirmed DOKs. To speed up the " +"process you can select only DL QSOs to download (i.e. put 'DL' into Prefix " +"List). The downloaded ADIF file can be uploaded here in order to update QSOs " +"with DOK info." +msgstr "" + +#: application/views/adif/import.php:259 +msgid "Only import DOK data from QSOs confirmed on DCL." +msgstr "" + +#: application/views/adif/import.php:261 +msgid "" +"Uncheck if you also want to update DOK with data from unconfirmed QSOs in " +"DCL." +msgstr "" + +#: application/views/adif/import.php:268 +msgid "Overwrites exisiting DOK in log by DCL (if different)." +msgstr "" + +#: application/views/adif/import.php:270 +msgid "" +"If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " +"log." +msgstr "" + +#: application/views/adif/import.php:277 +msgid "Ignore QSOs that cannot be matched." +msgstr "" + +#: application/views/adif/import.php:279 +msgid "" +"If unchecked, information about QSOs which could not be found in Wavelog " +"will be displayed." +msgstr "" + +#: application/views/adif/import_failed.php:15 +msgid "The ADIF file could not be parsed correctly." +msgstr "" + +#: application/views/adif/import_failed.php:16 +msgid "" +"At least one of the ADIF fields could not be parsed and/or inserted into the " +"database. Please check the imported ADIF file. You can use an online ADIF " +"file checker. For example:" +msgstr "" + +#: application/views/adif/import_success.php:15 +msgid "Yay, its imported!" +msgstr "" + +#: application/views/adif/import_success.php:16 +msgid "The ADIF File has been imported." +msgstr "" + +#: application/views/adif/import_success.php:18 +msgid "Dupes were inserted!" +msgstr "" + +#: application/views/adif/import_success.php:20 +msgid "Dupes were skipped." +msgstr "" + +#: application/views/adif/import_success.php:24 +msgid "ADIF Errors" +msgstr "" + +#: application/views/adif/import_success.php:25 +msgid "" +"You have ADIF errors, the QSOs have still been added but these fields have " +"not been populated." +msgstr "" + +#: application/views/adif/mark_lotw.php:12 +#: application/views/hrdlog/mark_hrdlog.php:12 +#: application/views/qrz/mark_qrz.php:12 +#: application/views/webadif/mark_webadif.php:12 +msgid "QSOs marked" +msgstr "" + +#: application/views/adif/mark_lotw.php:15 +msgid "Yay, its done!" +msgstr "" + +#: application/views/adif/mark_lotw.php:16 +msgid "The QSOs are marked as exported to LoTW." +msgstr "" + +#: application/views/api/description.php:15 +msgid "Editing Description for API Key" +msgstr "" + +#: application/views/api/description.php:28 +msgid "Simple name to describe what you use this API for." +msgstr "" + +#: application/views/api/description.php:33 +#: application/views/bands/create.php:49 application/views/bands/edit.php:31 +#: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 +#: application/views/operator/index.php:23 +#: application/views/options/appearance.php:116 +#: application/views/options/dxcluster.php:67 +#: application/views/options/email.php:112 +#: application/views/options/oqrs.php:63 +#: application/views/options/radios.php:45 +#: application/views/options/version_dialog.php:78 +#: application/views/satellite/create.php:70 +#: application/views/simplefle/index.php:22 +msgid "Save" +msgstr "" + +#: application/views/api/help.php:14 +#: application/views/interface_assets/header.php:437 +msgid "API Keys" +msgstr "" + +#: application/views/api/help.php:17 +msgid "" +"The Wavelog API (Application Programming Interface) lets third party systems " +"access Wavelog in a controlled way. Access to the API is managed via API " +"keys." +msgstr "" + +#: application/views/api/help.php:18 +msgid "" +"You will need to generate an API key for each tool you wish to use (e.g. " +"WLgate). Generate a read-write key if the application needs to send data to " +"Wavelog. Generate a read-only key if the application only needs to obtain " +"data from Wavelog." +msgstr "" + +#: application/views/api/help.php:19 +msgid "API URL" +msgstr "" + +#: application/views/api/help.php:19 application/views/api/help.php:38 +#: application/views/cron/index.php:22 application/views/debug/index.php:36 +msgid "Copy to clipboard" +msgstr "" + +#: application/views/api/help.php:19 +msgid "The API URL for this Wavelog instance is" +msgstr "" + +#: application/views/api/help.php:20 application/views/dxcalendar/index.php:15 +#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:504 +#: application/views/qso/index.php:560 application/views/qso/index.php:605 +#: application/views/radio/index.php:22 +#: application/views/sattimers/index.php:67 +#: application/views/sattimers/index.php:69 +#: application/views/sattimers/index.php:71 +#: application/views/sattimers/index.php:73 +#: application/views/sattimers/index.php:75 +#: application/views/sattimers/index.php:77 +#: application/views/search/filter.php:69 +msgid "Info" +msgstr "" + +#: application/views/api/help.php:20 +msgid "" +"It's good practice to delete a key if you are no longer using the associated " +"application." +msgstr "" + +#: application/views/api/help.php:27 +msgid "API Key" +msgstr "" + +#: application/views/api/help.php:28 application/views/cron/edit.php:30 +#: application/views/cron/index.php:53 +#: application/views/search/stored_queries.php:8 +msgid "Description" +msgstr "" + +#: application/views/api/help.php:29 +msgid "Last Used" +msgstr "" + +#: application/views/api/help.php:30 +msgid "Permissions" +msgstr "" + +#: application/views/api/help.php:31 application/views/cron/index.php:54 +#: application/views/lotw_views/index.php:41 +#: application/views/mode/index.php:31 +#: application/views/oqrs/showrequests.php:91 +#: application/views/sattimers/index.php:39 +#: application/views/stationsetup/stationsetup.php:31 +#: application/views/timeline/index.php:152 +msgid "Status" +msgstr "" + +#: application/views/api/help.php:32 application/views/hrdlog/export.php:39 +#: application/views/logbookadvanced/index.php:519 +#: application/views/qrz/export.php:43 application/views/webadif/export.php:45 +msgid "Actions" +msgstr "" + +#: application/views/api/help.php:45 +msgid "Read & Write" +msgstr "" + +#: application/views/api/help.php:47 +msgid "Read-Only" +msgstr "" + +#: application/views/api/help.php:49 +msgid "Unknown" +msgstr "" + +#: application/views/api/help.php:59 +msgid "Test" +msgstr "" + +#: application/views/api/help.php:71 +msgid "You have no API Keys." +msgstr "" + +#: application/views/api/help.php:75 +msgid "Create a read & write key" +msgstr "" + +#: application/views/api/help.php:76 +msgid "Create a read-only key" +msgstr "" + +#: application/views/awards/counties/details.php:4 +#: application/views/awards/details.php:1 +#: application/views/awards/vucc/band.php:4 +#: application/views/distancerecords/details.php:1 +#: application/views/timeline/details.php:2 +msgid "Filtering on" +msgstr "" + +#: application/views/awards/counties/details.php:13 +msgid "County" +msgstr "" + +#: application/views/awards/counties/index.php:6 +#: application/views/awards/counties/index.php:13 +#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:26 +#: application/views/awards/dok/index.php:6 +#: application/views/awards/dok/index.php:13 +#: application/views/awards/dxcc/index.php:13 +#: application/views/awards/dxcc/index.php:20 +#: application/views/awards/ffma/index.php:7 +#: application/views/awards/ffma/index.php:14 +#: application/views/awards/gridmaster/index.php:6 +#: application/views/awards/gridmaster/index.php:13 +#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:26 +#: application/views/awards/iota/index.php:15 +#: application/views/awards/iota/index.php:22 +#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:26 +#: application/views/awards/jcc/index.php:15 +#: application/views/awards/jcc/index.php:22 +#: application/views/awards/pota/index.php:6 +#: application/views/awards/pota/index.php:13 +#: application/views/awards/sig/index.php:6 +#: application/views/awards/sig/index.php:13 +#: application/views/awards/sota/index.php:6 +#: application/views/awards/sota/index.php:13 +#: application/views/awards/vucc/index.php:6 +#: application/views/awards/vucc/index.php:13 +#: application/views/awards/wab/index.php:11 +#: application/views/awards/wab/index.php:18 +#: application/views/awards/wac/index.php:7 +#: application/views/awards/wac/index.php:14 +#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:25 +#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:26 +#: application/views/awards/wwff/index.php:6 +#: application/views/awards/wwff/index.php:13 +msgid "Award Info" +msgstr "" + +#: application/views/awards/counties/index.php:7 +msgid "US County Award" +msgstr "" + +#: application/views/awards/counties/index.php:8 +#, php-format +msgid "" +"The United States of America Counties Award (USA-CA), sponsored by CQ " +"magazine, is issued for confirmed two-way radio contacts with specified " +"numbers of U.S. counties under rules and conditions you can find %s." +msgstr "" + +#: application/views/awards/counties/index.php:9 +msgid "" +"USA-CA is available to all licensed amateurs worldwide and is issued to " +"individuals for all county contacts made, regardless of callsigns used, " +"operating locations, or dates." +msgstr "" + +#: application/views/awards/counties/index.php:10 +msgid "Special USA-CA awards are also available to SWLs on a heard basis." +msgstr "" + +#: application/views/awards/counties/index.php:21 +msgid "Counties Worked" +msgstr "" + +#: application/views/awards/counties/index.php:22 +msgid "Counties Confirmed" +msgstr "" + +#: application/views/awards/counties/index.php:39 +#: application/views/awards/cq/index.php:176 +#: application/views/awards/dok/index.php:174 +#: application/views/awards/dxcc/index.php:257 +#: application/views/awards/helvetia/index.php:179 +#: application/views/awards/iota/index.php:201 +#: application/views/awards/itu/index.php:176 +#: application/views/awards/jcc/index.php:185 +#: application/views/awards/rac/index.php:171 +#: application/views/awards/wac/index.php:177 +#: application/views/awards/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:233 +#: application/views/simplefle/index.php:27 +#: application/views/statistics/qsltable.php:54 +#: application/views/statistics/qsltable.php:109 +#: application/views/statistics/qsotable.php:10 +#: application/views/statistics/qsotable.php:23 +#: application/views/statistics/satqsotable.php:10 +#: application/views/statistics/satqsotable.php:22 +#: application/views/statistics/satuniquetable.php:10 +#: application/views/statistics/satuniquetable.php:22 +#: application/views/statistics/uniquetable.php:10 +#: application/views/statistics/uniquetable.php:23 +#: application/views/visitor/index.php:241 +msgid "Total" +msgstr "" + +#: application/views/awards/cq/index.php:3 +#: application/views/awards/cq/index.php:150 application/views/csv/index.php:80 +#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/logbookadvanced/edit.php:6 +#: application/views/logbookadvanced/index.php:246 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:284 +#: application/views/qso/index.php:390 +#: application/views/search/cqzones_result.php:13 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:264 +#: application/views/timeplotter/index.php:44 +msgid "CQ Zone" +msgstr "" + +#: application/views/awards/cq/index.php:4 +#: application/views/awards/itu/index.php:4 +msgid "Hover over a zone" +msgstr "" + +#: application/views/awards/cq/index.php:20 +msgid "CQ Magazine WAZ Award" +msgstr "" + +#: application/views/awards/cq/index.php:21 +msgid "" +"The CQ Magazine is located in the US and one of the most popular amateur " +"radio magazines in the world. The magazine first appeared in January 1945 " +"and focuses on awards and the practical aspects of amateur radio." +msgstr "" + +#: application/views/awards/cq/index.php:22 +msgid "" +"The WAZ Award stands for 'Worked All Zones' and requires radio contacts to " +"all 40 CQ Zones along with the corresponding confirmation." +msgstr "" + +#: application/views/awards/cq/index.php:23 +#, php-format +msgctxt "uses 'CQ Magazine'" +msgid "You can find all the information and rules on the Website of the %s." +msgstr "" + +#: application/views/awards/cq/index.php:25 +msgid "Awards - CQ Magazine WAZ" +msgstr "" + +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wab/list.php:6 +#: application/views/awards/wac/index.php:22 +#: application/views/bandmap/list.php:73 +#: application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:378 +#: application/views/interface_assets/footer.php:40 +#: application/views/visitor/index.php:266 +msgid "Confirmed" +msgstr "" + +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wac/index.php:22 +#: application/views/bandmap/list.php:72 +#: application/views/dashboard/index.php:256 +#: application/views/dashboard/index.php:372 +#: application/views/visitor/index.php:262 +msgid "Worked" +msgstr "" + +#: application/views/awards/cq/index.php:38 +#: application/views/awards/dok/index.php:41 +#: application/views/awards/dxcc/index.php:43 +#: application/views/awards/helvetia/index.php:37 +#: application/views/awards/iota/index.php:43 +#: application/views/awards/itu/index.php:38 +#: application/views/awards/jcc/index.php:34 +#: application/views/awards/rac/index.php:29 +#: application/views/awards/wac/index.php:26 +#: application/views/awards/waja/index.php:37 +#: application/views/awards/was/index.php:37 +msgid "Show worked" +msgstr "" + +#: application/views/awards/cq/index.php:42 +#: application/views/awards/dok/index.php:45 +#: application/views/awards/dxcc/index.php:47 +#: application/views/awards/helvetia/index.php:41 +#: application/views/awards/iota/index.php:47 +#: application/views/awards/itu/index.php:42 +#: application/views/awards/jcc/index.php:38 +#: application/views/awards/rac/index.php:33 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/waja/index.php:41 +#: application/views/awards/was/index.php:41 +msgid "Show confirmed" +msgstr "" + +#: application/views/awards/cq/index.php:46 +#: application/views/awards/dxcc/index.php:51 +#: application/views/awards/helvetia/index.php:45 +#: application/views/awards/iota/index.php:51 +#: application/views/awards/itu/index.php:46 +#: application/views/awards/jcc/index.php:42 +#: application/views/awards/rac/index.php:37 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/waja/index.php:45 +#: application/views/awards/was/index.php:45 +msgid "Show not worked" +msgstr "" + +#: application/views/awards/cq/index.php:52 +#: application/views/awards/dok/index.php:51 +#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/helvetia/index.php:51 +#: application/views/awards/itu/index.php:52 +#: application/views/awards/jcc/index.php:48 +#: application/views/awards/rac/index.php:43 +#: application/views/awards/wac/index.php:40 +#: application/views/awards/waja/index.php:51 +#: application/views/awards/was/index.php:51 +msgid "Show QSO with QSL Type" +msgstr "" + +#: application/views/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/awards/wac/index.php:44 +#: application/views/interface_assets/footer.php:2112 +#: application/views/qso/edit_ajax.php:405 +#: application/views/view_log/qso.php:25 +msgid "QSL Card" +msgstr "" + +#: application/views/awards/cq/index.php:112 +#: application/views/awards/dok/index.php:126 +#: application/views/awards/dxcc/index.php:186 +#: application/views/awards/helvetia/index.php:111 +#: application/views/awards/iota/index.php:129 +#: application/views/awards/itu/index.php:112 +#: application/views/awards/jcc/index.php:112 +#: application/views/awards/rac/index.php:103 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/waja/index.php:115 +#: application/views/awards/was/index.php:111 +#: application/views/continents/index.php:50 +#: application/views/logbookadvanced/index.php:551 +#: application/views/oqrs/showrequests.php:68 +#: application/views/qrbcalc/index.php:19 +#: application/views/search/filter.php:40 application/views/user/edit.php:607 +msgid "Reset" +msgstr "" + +#: application/views/awards/cq/index.php:115 +msgid "Show CQ Zone Map" +msgstr "" + +#: application/views/awards/cq/index.php:124 +#: application/views/awards/dxcc/index.php:199 +#: application/views/awards/helvetia/index.php:124 +#: application/views/awards/iota/index.php:142 +#: application/views/awards/itu/index.php:124 +#: application/views/awards/rac/index.php:116 +#: application/views/awards/waja/index.php:128 +#: application/views/awards/was/index.php:124 +msgid "Table" +msgstr "" + +#: application/views/awards/cq/index.php:127 +#: application/views/awards/dok/index.php:128 +#: application/views/awards/dxcc/index.php:202 +#: application/views/awards/helvetia/index.php:127 +#: application/views/awards/iota/index.php:145 +#: application/views/awards/itu/index.php:127 +#: application/views/awards/jcc/index.php:129 +#: application/views/awards/rac/index.php:119 +#: application/views/awards/wab/index.php:108 +#: application/views/awards/waja/index.php:131 +#: application/views/awards/was/index.php:127 +#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/useroptions.php:7 +msgid "Map" +msgstr "" + +#: application/views/awards/cq/index.php:167 +#: application/views/awards/dok/index.php:165 +#: application/views/awards/dxcc/index.php:248 +#: application/views/awards/helvetia/index.php:170 +#: application/views/awards/iota/index.php:192 +#: application/views/awards/itu/index.php:167 +#: application/views/awards/jcc/index.php:168 +#: application/views/awards/rac/index.php:162 +#: application/views/awards/wac/index.php:168 +#: application/views/awards/waja/index.php:170 +#: application/views/awards/was/index.php:170 +msgid "Summary" +msgstr "" + +#: application/views/awards/cq/index.php:180 +#: application/views/awards/dok/index.php:178 +#: application/views/awards/dxcc/index.php:262 +#: application/views/awards/helvetia/index.php:183 +#: application/views/awards/iota/index.php:206 +#: application/views/awards/itu/index.php:180 +#: application/views/awards/jcc/index.php:195 +#: application/views/awards/rac/index.php:175 +#: application/views/awards/wac/index.php:181 +#: application/views/awards/waja/index.php:184 +#: application/views/awards/was/index.php:183 +msgid "Total worked" +msgstr "" + +#: application/views/awards/cq/index.php:187 +#: application/views/awards/dok/index.php:185 +#: application/views/awards/dxcc/index.php:269 +#: application/views/awards/helvetia/index.php:190 +#: application/views/awards/iota/index.php:213 +#: application/views/awards/itu/index.php:187 +#: application/views/awards/jcc/index.php:214 +#: application/views/awards/rac/index.php:182 +#: application/views/awards/wac/index.php:188 +#: application/views/awards/waja/index.php:191 +#: application/views/awards/was/index.php:190 +msgid "Total confirmed" +msgstr "" + +#: application/views/awards/dok/index.php:7 +msgid "DOK Award" +msgstr "" + +#: application/views/awards/dok/index.php:8 +msgid "" +"Germany extends over 630 km from East to West and nearly 900 km from North " +"to South. Around 70,000 of Germany's 82 million inhabitants are licensed " +"hams, with more than 40,000 of them being members of DARC. DOK is a system " +"that provides individual local chapters with an identifier and means " +"'Deutscher Ortsverband Kenner' (English: 'German Local Association " +"Identifier')." +msgstr "" + +#: application/views/awards/dok/index.php:9 +msgid "" +"The DOK consists of a letter for the district and a two-digit number for the " +"local chapter, like P03 Friedrichshafen (city of the 'Hamradio exhibition') " +"or F41 Baunatal (location of the DARC headquarters). Note: A zero in a DOK " +"is a common mistake, often being logged as the letter O." +msgstr "" + +#: application/views/awards/dok/index.php:10 +msgid "DARC website" +msgstr "" + +#: application/views/awards/dok/index.php:10 +#, php-format +msgctxt "uses 'DARC Website' and 'here'" +msgid "" +"This information is provided by the %s. Information about the DOK Awards and " +"its rules can be found %s." +msgstr "" + +#: application/views/awards/dok/index.php:20 +msgid "DOK / SDOK" +msgstr "" + +#: application/views/awards/dok/index.php:23 +msgid "DOK + SDOK" +msgstr "" + +#: application/views/awards/dok/index.php:37 +#: application/views/awards/dxcc/index.php:39 +#: application/views/awards/helvetia/index.php:33 +#: application/views/awards/iota/index.php:39 +#: application/views/awards/jcc/index.php:30 +#: application/views/awards/rac/index.php:25 +#: application/views/awards/waja/index.php:33 +#: application/views/awards/was/index.php:33 +msgid "Worked / Confirmed" +msgstr "" + +#: application/views/awards/dok/index.php:80 +#: application/views/awards/dxcc/index.php:120 +#: application/views/awards/helvetia/index.php:76 +#: application/views/awards/iota/index.php:94 +#: application/views/awards/jcc/index.php:77 +#: application/views/awards/rac/index.php:68 +#: application/views/awards/wac/index.php:66 +#: application/views/awards/waja/index.php:80 +#: application/views/awards/was/index.php:76 +msgid "Every band" +msgstr "" + +#: application/views/awards/dxcc/index.php:14 +msgid "DXCC Award" +msgstr "" + +#: application/views/awards/dxcc/index.php:15 +msgid "'How to Count Countries Worked, A New DX Scoring System'" +msgstr "" + +#: application/views/awards/dxcc/index.php:15 +#, php-format +msgid "" +"DXCC stands for 'DX Century Club,' an award based on worked countries. The " +"DXCC List is based on an article created in 1935 by Clinton B. DeSoto, " +"W1CBD, titled %s." +msgstr "" + +#: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 +msgid "ARRL website" +msgstr "" + +#: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 +#, php-format +msgid "You can find all information about the DXCC Award on the %s." +msgstr "" + +#: application/views/awards/dxcc/index.php:17 +msgid "" +"Important Note: Over time, the criteria for the DXCC List have changed. The " +"List remains unchanged until an entity no longer satisfies the criteria " +"under which it was added, at which time it is moved to the Deleted List. You " +"will find Deleted DXCC entities also in the lists on Wavelog. Be aware that " +"these DXCC entities are outdated and no longer valid." +msgstr "" + +#: application/views/awards/dxcc/index.php:32 +#: application/views/awards/iota/index.php:33 +msgid "Include deleted" +msgstr "" + +#: application/views/awards/dxcc/index.php:87 +#: application/views/awards/iota/index.php:61 +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/logbookadvanced/edit.php:144 +#: application/views/logbookadvanced/index.php:309 +#: application/views/options/dxcluster.php:56 +#: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 +#: application/views/view_log/qso.php:253 +msgid "Antarctica" +msgstr "" + +#: application/views/awards/dxcc/index.php:91 +#: application/views/awards/iota/index.php:65 +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/logbookadvanced/edit.php:143 +#: application/views/logbookadvanced/index.php:308 +#: application/views/options/dxcluster.php:55 +#: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 +#: application/views/view_log/qso.php:250 +msgid "Africa" +msgstr "" + +#: application/views/awards/dxcc/index.php:95 +#: application/views/awards/iota/index.php:69 +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/logbookadvanced/edit.php:146 +#: application/views/logbookadvanced/index.php:311 +#: application/views/options/dxcluster.php:57 +#: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 +#: application/views/view_log/qso.php:256 +msgid "Asia" +msgstr "" + +#: application/views/awards/dxcc/index.php:99 +#: application/views/awards/iota/index.php:73 +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/logbookadvanced/edit.php:147 +#: application/views/logbookadvanced/index.php:312 +#: application/views/options/dxcluster.php:58 +#: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 +#: application/views/view_log/qso.php:259 +msgid "Europe" +msgstr "" + +#: application/views/awards/dxcc/index.php:103 +#: application/views/awards/iota/index.php:77 +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/logbookadvanced/edit.php:145 +#: application/views/logbookadvanced/index.php:310 +#: application/views/options/dxcluster.php:59 +#: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 +#: application/views/view_log/qso.php:262 +msgid "North America" +msgstr "" + +#: application/views/awards/dxcc/index.php:107 +#: application/views/awards/iota/index.php:81 +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/logbookadvanced/edit.php:148 +#: application/views/logbookadvanced/index.php:313 +#: application/views/options/dxcluster.php:61 +#: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 +#: application/views/view_log/qso.php:268 +msgid "South America" +msgstr "" + +#: application/views/awards/dxcc/index.php:111 +#: application/views/awards/iota/index.php:85 +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/logbookadvanced/edit.php:149 +#: application/views/logbookadvanced/index.php:314 +#: application/views/options/dxcluster.php:60 +#: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 +#: application/views/view_log/qso.php:265 +msgid "Oceania" +msgstr "" + +#: application/views/awards/dxcc/index.php:189 +msgid "Show DXCC Map" +msgstr "" + +#: application/views/awards/dxcc/index.php:225 +msgid "DXCC Name" +msgstr "" + +#: application/views/awards/dxcc/index.php:226 +#: application/views/awards/iota/index.php:170 +#: application/views/timeline/index.php:150 +#: application/views/timeline/index.php:237 +msgid "Prefix" +msgstr "" + +#: application/views/awards/ffma/index.php:8 +#: application/views/interface_assets/header.php:240 +msgid "Fred Fish Memorial Award" +msgstr "" + +#: application/views/awards/ffma/index.php:9 +msgid "" +"The Fred Fish Memorial Award was created in honor of Fred Fish, W5FF (SK), " +"who was the first amateur to have worked and confirmed all 488 Maidenhead " +"grid squares in the 48 contiguous United States on 6 Meters." +msgstr "" + +#: application/views/awards/ffma/index.php:10 +msgid "" +"The award will be given to any amateur who can duplicate W5FF's " +"accomplishment." +msgstr "" + +#: application/views/awards/ffma/index.php:11 +#, php-format +msgid "For more information, you can visit this link: %s." +msgstr "" + +#: application/views/awards/gridmaster/index.php:7 +msgid "US Gridmaster Award" +msgstr "" + +#: application/views/awards/gridmaster/index.php:8 +msgid "" +"The GridMaster Award is the most prestigious AMSAT award, first introduced " +"in 2014 by the Star Comm Group. It is available to all amateur radio " +"operators worldwide who manage to work all 488 grid squares in the USA via " +"satellite and can provide QSL confirmations for each contact." +msgstr "" + +#: application/views/awards/gridmaster/index.php:9 +#, php-format +msgid "" +"Official information from the %s: Two-way communication must be established " +"via amateur satellite with each grid. There is no minimum signal report " +"required. Contacts must be made from the same location or from locations no " +"two of which are more than 200 kilometers apart. The applicant's attestation " +"in the award application serves as affirmation of abidance by the distance " +"rule. Individuals may apply for and be granted multiple GridMaster awards " +"when achieved from another location, which is in a different 200-kilometer " +"circle." +msgstr "" + +#: application/views/awards/gridmaster/index.php:9 +msgid "website" +msgstr "" + +#: application/views/awards/gridmaster/index.php:10 +msgid "This map shows only QSOs worked on SAT." +msgstr "" + +#: application/views/awards/helvetia/index.php:3 +msgctxt "Switzerland Canton" +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:4 +msgid "Hover over a canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:20 +msgid "HELVETIA 26 | SWITZERLAND AWARD" +msgstr "" + +#: application/views/awards/helvetia/index.php:21 +msgid "" +"The USKA (Union of Swiss Shortwave Amateurs) sponsors two awards, the " +"HELVETIA 26 (H26) Award and the SWITZERLAND Award, aimed at promoting " +"activities on the bands by encouraging contacts across as many Swiss cantons " +"as possible on multiple bands." +msgstr "" + +#: application/views/awards/helvetia/index.php:22 +msgid "" +"These awards come in two versions: one for HF bands and the other for VHF " +"(including SHF and UHF) bands. Valid connections for these awards date back " +"to January 1, 1980" +msgstr "" + +#: application/views/awards/helvetia/index.php:23 +#: application/views/awards/jcc/index.php:19 +#: application/views/awards/sota/index.php:10 +#: application/views/awards/wab/index.php:15 +#: application/views/awards/waja/index.php:22 +#: application/views/awards/wwff/index.php:10 +#, php-format +msgid "For more information, please visit: %s." +msgstr "" + +#: application/views/awards/helvetia/index.php:114 +msgid "Show Helvetia Map" +msgstr "" + +#: application/views/awards/helvetia/index.php:151 +msgid "Canton" +msgstr "" + +#: application/views/awards/index.php:9 application/views/bands/index.php:46 +#: application/views/interface_assets/header.php:164 +msgid "CQ" +msgstr "" + +#: application/views/awards/iota/index.php:16 +msgid "IOTA Awards" +msgstr "" + +#: application/views/awards/iota/index.php:17 +msgid "" +"IOTA is an exciting and innovative activity program that has captured the " +"interest of thousands of radio amateurs worldwide. Established in 1964, it " +"promotes radio contacts with stations located on islands around the world to " +"enhance the experience of all those active on the amateur bands. To achieve " +"this, it draws on the widespread mystique surrounding islands." +msgstr "" + +#: application/views/awards/iota/index.php:18 +msgid "" +"It is administered by Islands On The Air (IOTA) Ltd (referred to as IOTA " +"Management) in partnership with the Radio Society of Great Britain (RSGB). " +"IOTA Management has grouped the world's islands into approximately 1200 " +"'IOTA groups,' each having varying numbers of 'counters,' which are " +"qualifying islands. These listings are published in the IOTA Directory and " +"on the IOTA website. The objective for the IOTA Island Chaser is to make " +"radio contact with at least one counter in as many of these groups as " +"possible. The program has a well-defined set of rules and encourages " +"friendly competition among chasers by publishing participant performance in " +"an Honor Roll and annual listings, as well as recognizing it with " +"certificates and prestigious awards." +msgstr "" + +#: application/views/awards/iota/index.php:19 +#, php-format +msgid "You can also find this information on %s." +msgstr "" + +#: application/views/awards/iota/index.php:29 +msgid "Deleted IOTA" +msgstr "" + +#: application/views/awards/iota/index.php:132 +msgid "Show IOTA Map" +msgstr "" + +#: application/views/awards/iota/index.php:171 +#: application/views/contesting/add.php:25 +#: application/views/contesting/create.php:24 +#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:214 +#: application/views/dashboard/index.php:18 +#: application/views/labels/index.php:41 application/views/labels/index.php:75 +#: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/qslcarousel.php:34 +#: application/views/logbookadvanced/useroptions.php:54 +#: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 +#: application/views/satellite/edit.php:34 +#: application/views/satellite/index.php:21 +#: application/views/search/result.php:16 +#: application/views/search/search_result_ajax.php:19 +#: application/views/stationsetup/stationsetup.php:30 +#: application/views/themes/index.php:82 +#: application/views/timeline/index.php:236 application/views/user/edit.php:241 +#: application/views/user/edit.php:263 application/views/user/edit.php:285 +#: application/views/user/edit.php:307 application/views/user/edit.php:330 +#: application/views/view_log/partial/log_ajax.php:19 +#: application/views/view_log/qso.php:194 +#: application/views/view_log/qso.php:514 +msgid "Name" +msgstr "" + +#: application/views/awards/iota/index.php:173 +msgid "Deleted" +msgstr "" + +#: application/views/awards/itu/index.php:3 +#: application/views/awards/itu/index.php:150 +#: application/views/logbookadvanced/edit.php:10 +#: application/views/logbookadvanced/index.php:257 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:400 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 +msgid "ITU Zone" +msgstr "" + +#: application/views/awards/itu/index.php:21 +msgid "" +"The Classic Worked ITU Zones award may be claimed by producing evidence of " +"having contacted land based amateur radio stations in at least 70 of the 75 " +"broadcasting zones as defined by the International Telecommunications Union " +"(ITU)." +msgstr "" + +#: application/views/awards/itu/index.php:22 +#, php-format +msgctxt "uses 'RSGB'" +msgid "You can find more information on the website of %s." +msgstr "" + +#: application/views/awards/itu/index.php:25 +msgid "Awards - ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:115 +msgid "Show ITU Zone Map" +msgstr "" + +#: application/views/awards/jcc/index.php:16 +msgid "JCC - Japan Century Cities Award" +msgstr "" + +#: application/views/awards/jcc/index.php:17 +msgid "" +"May be claimed for having contacted (heard) and received a QSL card from an " +"amateur station located in each of at least 100 different cities of Japan." +msgstr "" + +#: application/views/awards/jcc/index.php:18 +msgid "" +"JCC-200, 300, 400, 500, 600, 700 and 800 will be issued as separate awards. " +"A list of QSL cards should be arranged in order of JCC reference number, " +"however names of city may be omitted. An additional sticker will be issued " +"at every 50 contacts like 150, 250, 350, 450, 550, 650, 750 cities." +msgstr "" + +#: application/views/awards/jcc/index.php:115 +msgid "Show JCC Map" +msgstr "" + +#: application/views/awards/jcc/index.php:116 +#: application/views/cabrillo/index.php:180 application/views/cfd/index.php:25 +#: application/views/csv/index.php:128 application/views/dxatlas/index.php:128 +#: application/views/kml/index.php:113 application/views/reg1test/index.php:145 +msgid "Export" +msgstr "" + +#: application/views/awards/jcc/index.php:126 +#: application/views/public_search/empty.php:2 +#: application/views/public_search/result.php:2 +msgid "Results" +msgstr "" + +#: application/views/awards/jcc/index.php:151 +#: application/views/awards/waja/index.php:153 +#: application/views/distancerecords/index.php:13 +msgid "Number" +msgstr "" + +#: application/views/awards/jcc/index.php:152 +#: application/views/search/result.php:21 +#: application/views/view_log/qso.php:524 +msgid "City" +msgstr "" + +#: application/views/awards/jcc/index.php:187 +#: application/views/dashboard/index.php:368 +#: application/views/distances/index.php:23 +msgid "SAT" +msgstr "" + +#: application/views/awards/pota/index.php:7 +msgid "POTA Awards" +msgstr "" + +#: application/views/awards/pota/index.php:8 +msgid "" +"Parks on the Air® (POTA) started in early 2017 when the ARRL's National " +"Parks on the Air special event ended. A group of volunteers wanted to " +"continue the fun beyond the one-year event, and thus, POTA was born." +msgstr "" + +#: application/views/awards/pota/index.php:9 +msgid "" +"POTA works similarly to SOTA, with Activators and Hunters. For the awards, " +"there are several categories based on the number of parks, geographic areas, " +"and more." +msgstr "" + +#: application/views/awards/pota/index.php:10 +#, php-format +msgctxt "uses 'the website'" +msgid "" +"For more information about the available awards and categories, please visit " +"the %s." +msgstr "" + +#: application/views/awards/pota/index.php:31 +#: application/views/qso/index.php:236 application/views/qso/index.php:492 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 +#: application/views/user/edit.php:595 application/views/view_log/qso.php:306 +#: application/views/view_log/qso.php:573 +msgid "POTA Reference(s)" +msgstr "" + +#: application/views/awards/rac/index.php:3 +msgctxt "Canada Province" +msgid "Province" +msgstr "" + +#: application/views/awards/rac/index.php:4 +msgid "Hover over a province" +msgstr "" + +#: application/views/awards/rac/index.php:106 +msgid "Show RAC Map" +msgstr "" + +#: application/views/awards/sig/index.php:7 +msgid "SIG Information" +msgstr "" + +#: application/views/awards/sig/index.php:8 +msgid "" +"The SIG or Signature Category provides the possibility to use any kind of " +"'Award Signature' for awards that are not implemented in Wavelog." +msgstr "" + +#: application/views/awards/sig/index.php:9 +msgid "" +"The reason for this is that the common ADIF format provides only a few " +"dedicated fields for certain awards. SIG still makes it possible to use and " +"evaluate all other types of signature markers." +msgstr "" + +#: application/views/awards/sig/index.php:10 +msgid "" +"In the QSO processing, you will find two fields: 'SIG' contains the actual " +"marker, which is also visible in the award evaluation, and 'SIG INFO,' which " +"contains a description of the signature. Both fields are freely customizable." +msgstr "" + +#: application/views/awards/sig/index.php:21 +msgid "Award Type" +msgstr "" + +#: application/views/awards/sig/index.php:22 +#: application/views/continents/index.php:17 +#: application/views/distances/index.php:12 +#: application/views/timeplotter/index.php:4 +msgid "Number of QSOs" +msgstr "" + +#: application/views/awards/sig/index.php:23 +msgid "Number of Refs" +msgstr "" + +#: application/views/awards/sig/qso_list.php:9 +#: application/views/awards/sota/index.php:23 +msgid "Reference" +msgstr "" + +#: application/views/awards/sig/qso_list.php:10 +#: application/views/awards/sota/index.php:24 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/logbookadvanced/useroptions.php:22 +#: application/views/qslmanagement/index.php:23 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/search/lotw_unconfirmed_result.php:7 +#: application/views/view_log/qso.php:71 +msgid "Date/Time" +msgstr "" + +#: application/views/awards/sig/qso_list.php:14 +#: application/views/awards/sota/index.php:27 +msgid "RST Sent" +msgstr "" + +#: application/views/awards/sig/qso_list.php:15 +#: application/views/awards/sota/index.php:28 +msgid "RST Received" +msgstr "" + +#: application/views/awards/sig/qso_list.php:34 +msgid "Export QSOs to ADIF" +msgstr "" + +#: application/views/awards/sota/index.php:7 +msgid "SOTA Awards" +msgstr "" + +#: application/views/awards/sota/index.php:8 +msgid "" +"SOTA (Summits On The Air) is an award scheme for radio amateurs that " +"encourages portable operation in mountainous areas." +msgstr "" + +#: application/views/awards/sota/index.php:9 +msgid "" +"It is fully operational in nearly a hundred countries worldwide. Each " +"country has its own Association that defines the recognized SOTA summits " +"within that Association. Each summit earns the activators and chasers a " +"score related to the height of the summit. Certificates are available for " +"various scores, leading to the prestigious 'Mountain Goat' and 'Shack Sloth' " +"trophies. An Honor Roll for Activators and Chasers is maintained in the SOTA " +"online database." +msgstr "" + +#: application/views/awards/vucc/index.php:7 +msgid "VUCC - VHF/UHF Century Club Award" +msgstr "" + +#: application/views/awards/vucc/index.php:8 +msgid "" +"The VHF/UHF Century Club Award is given for a minimum number of worked and " +"confirmed gridsquares on a desired band." +msgstr "" + +#: application/views/awards/vucc/index.php:9 +#, php-format +msgid "Official information and the rules can be found in this document: %s." +msgstr "" + +#: application/views/awards/vucc/index.php:10 +msgid "Only VHF/UHF bands are relevant." +msgstr "" + +#: application/views/awards/vucc/index.php:22 +msgid "Grids Worked" +msgstr "" + +#: application/views/awards/vucc/index.php:23 +msgid "Grids Confirmed" +msgstr "" + +#: application/views/awards/wab/index.php:12 +msgid "WAB - Worked All Britain Award" +msgstr "" + +#: application/views/awards/wab/index.php:13 +msgid "" +"WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham " +"radio operators to work all the squares in Great Britain." +msgstr "" + +#: application/views/awards/wab/index.php:14 +msgid "" +"May be claimed for having contacted an amateur station located in the " +"required amount of squares, described on the page linked below." +msgstr "" + +#: application/views/awards/wab/index.php:109 +msgid "List" +msgstr "" + +#: application/views/awards/wab/list.php:5 +msgid "WAB Square" +msgstr "" + +#: application/views/awards/wac/index.php:9 +msgid "" +"Sponsored by the International Amateur Radio Union (IARU), the Worked All " +"Continents award is issued for working and confirming all six continents. " +"These are North America, South America, Oceania, Asia, Europe and Africa." +msgstr "" + +#: application/views/awards/wac/index.php:13 +msgid "Awards - Worked All Continents (WAC)" +msgstr "" + +#: application/views/awards/wac/index.php:151 +#: application/views/continents/index.php:62 +#: application/views/logbookadvanced/edit.php:25 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 +#: application/views/view_log/qso.php:245 +msgid "Continent" +msgstr "" + +#: application/views/awards/waja/index.php:3 +msgctxt "Japan Prefecture" +msgid "Prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:4 +msgid "Hover over a prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:19 +msgid "WAJA - Worked All Japan prefectures Award" +msgstr "" + +#: application/views/awards/waja/index.php:20 +msgid "" +"WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " +"radio operators to work all the prefectures in Japan." +msgstr "" + +#: application/views/awards/waja/index.php:21 +msgid "" +"May be claimed for having contacted (heard) and received a QSL card from an " +"amateur station located in each of the 47 prefectures of Japan. A list of " +"QSL cards should be arranged in order of WAJA (HAJA) reference number, " +"however names of prefectures may be omitted." +msgstr "" + +#: application/views/awards/waja/index.php:118 +msgid "Show WAJA Map" +msgstr "" + +#: application/views/awards/waja/index.php:154 +#: application/views/timeline/index.php:185 +msgid "Prefecture" +msgstr "" + +#: application/views/awards/was/index.php:3 +msgctxt "USA State" +msgid "State" +msgstr "" + +#: application/views/awards/was/index.php:4 +msgid "Hover over a state" +msgstr "" + +#: application/views/awards/was/index.php:20 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:21 +msgid "" +"ARRL's most popular award is the Worked All States Award. Thousands upon " +"thousands of awards have been issued to hams around the world. In ARRL's " +"101st year, they have redesigned the certificates and the program in hopes " +"of streamlining and improving the award program." +msgstr "" + +#: application/views/awards/was/index.php:22 +msgid "" +"The WAS (Worked All States) Award is available to all amateurs worldwide who " +"submit proof with written confirmation of contacts with each of the 50 " +"states of the United States of America. Amateurs in the U.S. and its " +"possessions must be members of ARRL to apply for a WAS. Applicants from " +"outside the U.S. are exempt from this requirement." +msgstr "" + +#: application/views/awards/was/index.php:23 +#, php-format +msgctxt "uses 'here'" +msgid "All information and rules for the ARRL WAS Award can be found %s." +msgstr "" + +#: application/views/awards/was/index.php:114 +msgid "Show WAS Map" +msgstr "" + +#: application/views/awards/wwff/index.php:7 +msgid "WWFF - World Wide Flora and Fauna Award" +msgstr "" + +#: application/views/awards/wwff/index.php:8 +msgid "" +"WWFF, World Wide Flora and Fauna in Amateur Radio, encourages licensed ham " +"radio operators to leave their shacks and operate portable in Protected " +"Flora & Fauna areas (PFF) worldwide." +msgstr "" + +#: application/views/awards/wwff/index.php:9 +msgid "" +"More than 26,000 Protected Flora & Fauna (PFF) areas worldwide are already " +"registered in the WWFF Directory. Hunters and Activators can apply for " +"colorful awards, both globally and nationally." +msgstr "" + +#: application/views/awards/wwff/index.php:31 +#: application/views/qso/index.php:224 application/views/qso/index.php:479 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 +#: application/views/user/edit.php:591 application/views/view_log/qso.php:299 +#: application/views/view_log/qso.php:566 +msgid "WWFF Reference" +msgstr "" + +#: application/views/backup/adif_view.php:7 +msgid "" +"The backup of your log completed successfully. The output can be found at" +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 "" + +#: application/views/backup/adif_view.php:13 +#: application/views/backup/notes_view.php:13 +msgid "" +"Something went wrong during the backup process. Check that the backup folder " +"exists and is writeable by your web server user / group." +msgstr "" + +#: application/views/backup/main.php:17 +msgid "" +"Some of the data stored in Wavelog can be exported so that you can keep a " +"backup copy elsewhere." +msgstr "" + +#: application/views/backup/main.php:18 +msgid "" +"It's recommended to create backups on a regular basis to protect your data." +msgstr "" + +#: application/views/backup/main.php:19 +msgid "Backup ADIF data" +msgstr "" + +#: application/views/backup/main.php:20 +msgid "Backup Notes" +msgstr "" + +#: application/views/backup/notes_view.php:7 +msgid "" +"The backup of your notes completed successfully. The output can be found at" +msgstr "" + +#: application/views/bandmap/index.php:15 application/views/bandmap/list.php:49 +msgid "BandMap" +msgstr "" + +#: application/views/bandmap/index.php:18 application/views/bandmap/list.php:52 +msgid "BandList" +msgstr "" + +#: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 +#: application/views/contesting/index.php:15 +#: application/views/contesting/index.php:52 +#: application/views/contesting/index.php:145 +#: application/views/qso/index.php:314 +msgid "None" +msgstr "" + +#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:76 +msgid "Spots de" +msgstr "" + +#: application/views/bandmap/list.php:69 +msgid "DXCC-Status" +msgstr "" + +#: application/views/bandmap/list.php:74 +msgid "Not Confirmed" +msgstr "" + +#: application/views/bandmap/list.php:113 +msgid "Spotter" +msgstr "" + +#: application/views/bandmap/list.php:114 +#: application/views/oqrs/notinlogform.php:28 +#: application/views/oqrs/request.php:54 +#: application/views/oqrs/request_grouped.php:58 +msgid "Message" +msgstr "" + +#: application/views/bands/create.php:26 application/views/bands/edit.php:8 +msgid "Name of Band (E.g. 20m)" +msgstr "" + +#: application/views/bands/create.php:29 application/views/bands/edit.php:11 +#: application/views/bands/index.php:61 +msgid "Bandgroup" +msgstr "" + +#: application/views/bands/create.php:31 application/views/bands/edit.php:13 +msgid "Name of bandgroup (E.g. hf, vhf, uhf, shf)" +msgstr "" + +#: application/views/bands/create.php:34 application/views/bands/edit.php:16 +#: application/views/bands/index.php:62 +msgid "SSB QRG" +msgstr "" + +#: application/views/bands/create.php:36 application/views/bands/edit.php:18 +msgid "Frequency for SSB QRG in band (must be in Hz)" +msgstr "" + +#: application/views/bands/create.php:39 application/views/bands/edit.php:21 +#: application/views/bands/index.php:63 +msgid "DATA QRG" +msgstr "" + +#: application/views/bands/create.php:41 application/views/bands/edit.php:23 +msgid "Frequency for DATA QRG in band (must be in Hz)" +msgstr "" + +#: application/views/bands/create.php:44 application/views/bands/edit.php:26 +#: application/views/bands/index.php:64 +msgid "CW QRG" +msgstr "" + +#: application/views/bands/create.php:46 application/views/bands/edit.php:28 +msgid "Frequency for CW QRG in band (must be in Hz)" +msgstr "" + +#: application/views/bands/index.php:36 +msgid "" +"Using the band list you can control which bands are shown when creating a " +"new QSO." +msgstr "" + +#: application/views/bands/index.php:37 +msgid "" +"Active bands will be shown in the QSO 'Band' drop-down, while inactive bands " +"will be hidden and cannot be selected." +msgstr "" + +#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 +#: application/views/qso/index.php:248 application/views/qso/index.php:504 +#: application/views/user/edit.php:599 application/views/view_log/qso.php:328 +#: application/views/view_log/qso.php:580 +msgid "Sig" +msgstr "" + +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:339 +#: application/views/qso/index.php:443 +msgid "USA County" +msgstr "" + +#: application/views/bands/index.php:58 +#: application/views/interface_assets/header.php:212 +msgid "WAJA" +msgstr "" + +#: application/views/bands/index.php:59 +#: application/views/interface_assets/header.php:236 +msgid "WAS" +msgstr "" + +#: application/views/bands/index.php:65 +msgid "QRG Unit" +msgstr "" + +#: application/views/bands/index.php:98 +msgid "Hz" +msgstr "" + +#: application/views/bands/index.php:99 +msgid "kHz" +msgstr "" + +#: application/views/bands/index.php:100 +msgid "MHz" +msgstr "" + +#: application/views/bands/index.php:101 +msgid "GHz" +msgstr "" + +#: application/views/bands/index.php:151 application/views/bands/index.php:157 +msgid "Create a band" +msgstr "" + +#: application/views/bands/index.php:152 +#: application/views/contesting/add.php:74 +#: application/views/contesting/index.php:83 +#: application/views/interface_assets/footer.php:44 +#: application/views/simplefle/index.php:21 +#: application/views/version_dialog/index.php:79 +msgid "Close" +msgstr "" + +#: application/views/bands/index.php:153 +msgid "Warning! Are you sure you want to delete the following band: " +msgstr "" + +#: application/views/bands/index.php:154 +msgid "Warning! Are you sure you want to activate all bands?" +msgstr "" + +#: application/views/bands/index.php:155 +msgid "Warning! Are you sure you want to deactivate all bands?" +msgstr "" + +#: application/views/bands/index.php:158 +#: application/views/contesting/add.php:77 application/views/mode/index.php:77 +msgid "Activate All" +msgstr "" + +#: application/views/bands/index.php:159 +#: application/views/contesting/add.php:78 application/views/mode/index.php:78 +msgid "Deactivate All" +msgstr "" + +#: application/views/cabrillo/index.php:2 +#: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:59 +#: application/views/reg1test/index.php:2 +#: application/views/reg1test/index.php:36 +msgid "Proceed" +msgstr "" + +#: application/views/cabrillo/index.php:3 +#: application/views/reg1test/index.php:3 +msgid "Select Year" +msgstr "" + +#: application/views/cabrillo/index.php:4 +#: application/views/reg1test/index.php:4 +msgid "Select Contest" +msgstr "" + +#: application/views/cabrillo/index.php:5 +#: application/views/reg1test/index.php:5 +msgid "Select Date Range" +msgstr "" + +#: application/views/cabrillo/index.php:6 +#: application/views/reg1test/index.php:7 +msgid "No contests were found for this station location!" +msgstr "" + +#: application/views/cabrillo/index.php:16 +msgid "Export a contest to a Cabrillo log" +msgstr "" + +#: application/views/cabrillo/index.php:28 +msgid "Select Station Location:" +msgstr "" + +#: application/views/cabrillo/index.php:44 +#: application/views/reg1test/index.php:53 +msgid "Club" +msgstr "" + +#: application/views/cabrillo/index.php:48 +#: application/views/reg1test/index.php:58 +msgid "Category Operator" +msgstr "" + +#: application/views/cabrillo/index.php:56 +msgid "Category Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:63 +msgid "Category Band" +msgstr "" + +#: application/views/cabrillo/index.php:89 +msgid "Light/Laser" +msgstr "" + +#: application/views/cabrillo/index.php:90 +msgid "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)" +msgstr "" + +#: application/views/cabrillo/index.php:94 +msgid "Category Mode" +msgstr "" + +#: application/views/cabrillo/index.php:105 +msgid "Category Power" +msgstr "" + +#: application/views/cabrillo/index.php:113 +msgid "Category Station" +msgstr "" + +#: application/views/cabrillo/index.php:129 +msgid "Category Transmitter" +msgstr "" + +#: application/views/cabrillo/index.php:139 +msgid "Category Overlay" +msgstr "" + +#: application/views/cabrillo/index.php:150 +#: application/views/reg1test/index.php:70 +msgid "Operators" +msgstr "" + +#: application/views/cabrillo/index.php:155 +#: application/views/reg1test/index.php:139 +msgid "Soapbox" +msgstr "" + +#: application/views/cabrillo/index.php:159 +msgid "Address" +msgstr "" + +#: application/views/cabrillo/index.php:163 +msgid "Address City" +msgstr "" + +#: application/views/cabrillo/index.php:167 +msgid "Address State/Province" +msgstr "" + +#: application/views/cabrillo/index.php:171 +msgid "Address Postalcode" +msgstr "" + +#: application/views/cabrillo/index.php:175 +msgid "Address Country" +msgstr "" + +#: application/views/cabrillo/index.php:186 +#: application/views/reg1test/index.php:150 +msgid "No contests were found in your log." +msgstr "" + +#: application/views/cfd/index.php:7 +#, php-format +msgid "Export of CFD-File for DARC-Toplist (See %s)" +msgstr "" + +#: application/views/components/hamsat/table.php:3 +#: application/views/hamsat/index.php:7 +msgid "Hamsat - Satellite Rovers" +msgstr "" + +#: application/views/components/hamsat/table.php:4 +#: application/views/contestcalendar/index.php:4 +#: application/views/dxcalendar/index.php:4 +#: application/views/hamsat/index.php:8 +msgid "This data comes from" +msgstr "" + +#: application/views/components/hamsat/table.php:11 +msgid "Show All Passes" +msgstr "" + +#: application/views/components/hamsat/table.php:14 +msgid "Private feed key empty. Please set the feed key in your profile." +msgstr "" + +#: application/views/components/hamsat/table.php:19 +msgid "No upcoming activations found. Please check back later." +msgstr "" + +#: application/views/components/hamsat/table.php:28 +#: application/views/contesting/index.php:219 +#: application/views/hamsat/index.php:31 +#: application/views/logbookadvanced/edit.php:5 +#: application/views/logbookadvanced/index.php:629 +#: application/views/logbookadvanced/useroptions.php:114 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 +#: application/views/view_log/qso.php:202 +msgid "Comment" +msgstr "" + +#: application/views/components/hamsat/table.php:31 +#: application/views/hamsat/index.php:34 +msgid "Gridsquare(s)" +msgstr "" + +#: application/views/components/hamsat/table.php:32 +#: application/views/hamsat/index.php:35 +msgid "Workable" +msgstr "" + +#: application/views/components/hamsat/table.php:134 +msgctxt "Hamsat - Track Satellites" +msgid "Track" +msgstr "" + +#: application/views/components/hamsat/table.php:146 +msgid "Sked" +msgstr "" + +#: application/views/components/radio_display_table.php:5 +msgid "Radio Status" +msgstr "" + +#: application/views/contestcalendar/index.php:9 +msgid "No Contests" +msgstr "" + +#: application/views/contestcalendar/index.php:14 +#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:635 +#: application/views/logbookadvanced/useroptions.php:122 +#: application/views/qso/edit_ajax.php:39 +#: application/views/simplefle/index.php:80 +msgid "Contest" +msgstr "" + +#: application/views/contestcalendar/index.php:15 +#: application/views/statistics/custom.php:41 +#: application/views/statistics/custom_result.php:43 +msgid "Start" +msgstr "" + +#: application/views/contestcalendar/index.php:16 +#: application/views/statistics/custom.php:46 +#: application/views/statistics/custom_result.php:48 +msgid "End" +msgstr "" + +#: application/views/contestcalendar/index.php:17 +msgid "Link" +msgstr "" + +#: application/views/contestcalendar/index.php:26 +msgid "Show Details" +msgstr "" + +#: application/views/contestcalendar/index.php:38 +#: application/views/dashboard/index.php:278 +#: application/views/dashboard/index.php:305 +#: application/views/dashboard/index.php:326 +#: application/views/dashboard/index.php:347 +#: application/views/satellite/pass.php:475 +msgid "Today" +msgstr "" + +#: application/views/contestcalendar/index.php:48 +msgid "Weekend" +msgstr "" + +#: application/views/contestcalendar/index.php:59 +msgid "Next Week" +msgstr "" + +#: application/views/contesting/add.php:16 +msgid "" +"Using the contest list, you can control which Contests are shown when " +"logging QSOs in a contest." +msgstr "" + +#: application/views/contesting/add.php:19 +msgid "" +"Active contests will be shown in the Contest Name drop-down, while inactive " +"contests will be hidden and cannot be selected." +msgstr "" + +#: application/views/contesting/add.php:26 +#: application/views/contesting/create.php:30 +msgid "ADIF Name" +msgstr "" + +#: application/views/contesting/add.php:27 +#: application/views/contesting/add.php:41 +#: application/views/contesting/add.php:44 +#: application/views/contesting/edit.php:43 +#: application/views/contesting/edit.php:46 +#: application/views/interface_assets/header.php:472 +#: application/views/mode/create.php:46 application/views/mode/create.php:48 +#: application/views/mode/edit.php:57 application/views/mode/edit.php:60 +#: application/views/mode/index.php:43 +msgid "Active" +msgstr "" + +#: application/views/contesting/add.php:39 +#: application/views/contesting/add.php:44 +#: application/views/contesting/edit.php:49 +msgid "Not Active" +msgstr "" + +#: application/views/contesting/add.php:40 +#: application/views/contesting/add.php:49 application/views/mode/index.php:48 +msgid "Activate" +msgstr "" + +#: application/views/contesting/add.php:42 +#: application/views/contesting/add.php:47 application/views/mode/index.php:46 +msgid "Deactivate" +msgstr "" + +#: application/views/contesting/add.php:54 +msgid "DANGER!" +msgstr "" + +#: application/views/contesting/add.php:55 +msgid "Warning! Are you sure you want to delete the following contest: " +msgstr "" + +#: application/views/contesting/add.php:56 +msgid "Warning! Are you sure you want to activate all contests?" +msgstr "" + +#: application/views/contesting/add.php:57 +msgid "Warning! Are you sure you want to deactivate all contests?" +msgstr "" + +#: application/views/contesting/add.php:73 +#: application/views/contesting/add.php:76 +msgid "Add a Contest" +msgstr "" + +#: application/views/contesting/create.php:26 +#: application/views/contesting/edit.php:33 +msgid "Name of the Contest" +msgstr "" + +#: application/views/contesting/create.php:32 +#: application/views/contesting/edit.php:39 +msgid "Name of Contest in ADIF-specification" +msgstr "" + +#: application/views/contesting/create.php:35 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 +msgid "Create" +msgstr "" + +#: application/views/contesting/edit.php:31 +#: application/views/contesting/index.php:25 +#: application/views/qso/edit_ajax.php:575 +#: application/views/view_log/qso.php:278 +msgid "Contest Name" +msgstr "" + +#: application/views/contesting/edit.php:37 +msgid "Contest ADIF Name" +msgstr "" + +#: application/views/contesting/edit.php:52 +msgid "Set to active if to be listed in Contest-list" +msgstr "" + +#: application/views/contesting/index.php:2 +msgid "Start new Contest Session" +msgstr "" + +#: application/views/contesting/index.php:11 +msgid "Exchange Type" +msgstr "" + +#: application/views/contesting/index.php:16 +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:18 +msgid "Serial" +msgstr "" + +#: application/views/contesting/index.php:19 +msgid "Serial + Exchange" +msgstr "" + +#: application/views/contesting/index.php:20 +msgid "Serial + Gridsquare" +msgstr "" + +#: application/views/contesting/index.php:21 +msgid "Serial + Gridsquare + Exchange" +msgstr "" + +#: application/views/contesting/index.php:35 +#: application/views/operator/index.php:5 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:352 +msgid "Operator Callsign" +msgstr "" + +#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:45 +msgid "More Settings" +msgstr "" + +#: application/views/contesting/index.php:49 +msgid "Copy received exchange to" +msgstr "" + +#: application/views/contesting/index.php:51 +msgid "Exchange is only copied if it is matching rules for the selected field!" +msgstr "" + +#: application/views/contesting/index.php:55 +msgid "Age" +msgstr "" + +#: application/views/contesting/index.php:57 +msgid "RX Power (W)" +msgstr "" + +#: application/views/contesting/index.php:58 +msgid "Locator" +msgstr "" + +#: application/views/contesting/index.php:59 +#: application/views/qso/edit_ajax.php:177 +msgid "QTH" +msgstr "" + +#: application/views/contesting/index.php:64 +msgid "Sequence of Exchanges" +msgstr "" + +#: application/views/contesting/index.php:67 +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 "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Grid" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Serial" +msgstr "" + +#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:255 +#: application/views/qso/edit_ajax.php:598 +msgid "Serial (S)" +msgstr "" + +#: application/views/contesting/index.php:177 +msgid "Gridsquare (S)" +msgstr "" + +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:253 +msgid "Exch (S)" +msgstr "" + +#: application/views/contesting/index.php:196 +#: application/views/contesting/index.php:256 +#: application/views/qso/edit_ajax.php:593 +msgid "Serial (R)" +msgstr "" + +#: application/views/contesting/index.php:201 +msgid "Gridsquare (R)" +msgstr "" + +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:254 +msgid "Exch (R)" +msgstr "" + +#: application/views/contesting/index.php:224 +msgid "Reset QSO" +msgstr "" + +#: application/views/contesting/index.php:225 +#: application/views/qso/index.php:629 +msgid "Save QSO" +msgstr "" + +#: application/views/contesting/index.php:234 +msgid "Callsign Suggestions" +msgstr "" + +#: application/views/contesting/index.php:241 +msgid "Contest Logbook" +msgstr "" + +#: application/views/contesting/index.php:258 +#: application/views/qso/edit_ajax.php:164 +msgid "VUCC Gridsquare" +msgstr "" + +#: application/views/continents/index.php:63 +#: application/views/statistics/index.php:19 +#: application/views/statistics/index.php:113 +msgid "# of QSO's worked" +msgstr "" + +#: application/views/cron/edit.php:11 +msgid "Identifier" +msgstr "" + +#: application/views/cron/edit.php:22 +#: application/views/options/appearance.php:56 +#: application/views/options/appearance.php:63 +#: application/views/options/appearance.php:72 +#: application/views/options/appearance.php:82 +#: application/views/options/appearance.php:91 +#: application/views/options/appearance.php:100 +#: application/views/options/appearance.php:109 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 +#: application/views/stationsetup/stationsetup.php:73 +#: application/views/user/edit.php:452 application/views/user/edit.php:461 +msgid "Enabled" +msgstr "" + +#: application/views/cron/edit.php:36 application/views/cron/index.php:55 +msgid "Intervall" +msgstr "" + +#: application/views/cron/edit.php:38 +msgid "Choose a preset from the dropdown" +msgstr "" + +#: application/views/cron/edit.php:43 +msgid "Every 5 Minutes" +msgstr "" + +#: application/views/cron/edit.php:44 +msgid "Every 15 Minutes" +msgstr "" + +#: application/views/cron/edit.php:45 +msgid "Every Hour" +msgstr "" + +#: application/views/cron/edit.php:46 +msgid "Every 2 Hours" +msgstr "" + +#: application/views/cron/edit.php:47 +msgid "Every Day at Midnight" +msgstr "" + +#: application/views/cron/edit.php:48 +msgid "Every Monday at 03:00" +msgstr "" + +#: application/views/cron/edit.php:49 +msgid "First Day of Every Month at midnight" +msgstr "" + +#: application/views/cron/edit.php:50 +msgid "Every 2 Months at 02:00" +msgstr "" + +#: application/views/cron/edit.php:62 +msgid "OR" +msgstr "" + +#: application/views/cron/edit.php:63 +msgid "Enter your own Cron Expression" +msgstr "" + +#: application/views/cron/edit.php:74 +#: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 +msgid "Cancel" +msgstr "" + +#: application/views/cron/index.php:9 +msgid "How it works" +msgstr "" + +#: application/views/cron/index.php:15 +msgid "" +"The Cron Manager assists the administrator in managing cron jobs without " +"requiring CLI access." +msgstr "" + +#: application/views/cron/index.php:19 +msgid "" +"To execute cron jobs based on the data below, remove all old cron jobs and " +"create a new one:" +msgstr "" + +#: application/views/cron/index.php:29 application/views/cron/index.php:33 +msgid "Status Master-Cron:" +msgstr "" + +#: application/views/cron/index.php:33 +msgctxt "PHP Version" +msgid "Min. Version is" +msgstr "" + +#: application/views/cron/index.php:33 +msgid "PHP Version not supported." +msgstr "" + +#: application/views/cron/index.php:43 +msgid "Cron List" +msgstr "" + +#: application/views/cron/index.php:52 +#: application/views/stationsetup/stationsetup.php:121 +msgid "ID" +msgstr "" + +#: application/views/cron/index.php:56 +msgid "Last Run" +msgstr "" + +#: application/views/cron/index.php:57 +msgid "Next Run" +msgstr "" + +#: application/views/cron/index.php:70 +msgid "healthy" +msgstr "" + +#: application/views/cron/index.php:72 +msgid "failed" +msgstr "" + +#: application/views/cron/index.php:74 +msgid "pending" +msgstr "" + +#: application/views/cron/index.php:79 +msgid "disabled" +msgstr "" + +#: application/views/cron/index.php:83 application/views/cron/index.php:85 +#: application/views/cron/index.php:87 application/views/debug/index.php:494 +#: application/views/debug/index.php:500 application/views/debug/index.php:505 +#: application/views/debug/index.php:510 application/views/debug/index.php:515 +#: application/views/debug/index.php:520 application/views/debug/index.php:525 +#: application/views/user/index.php:138 +msgid "never" +msgstr "" + +#: application/views/cron/index.php:102 +msgid "Your Mastercron isn't running." +msgstr "" + +#: application/views/cron/index.php:103 +msgid "" +"Copy the cron above to a external cron service or into your server's cron to " +"use this cron manager." +msgstr "" + +#: application/views/cron/index.php:104 +msgid "" +"On a basic linux server with shell access use this command to edit your " +"crons:" +msgstr "" + +#: application/views/cron/index.php:111 +#, php-format +msgid "" +"You need to upgrade your PHP version. Minimum version is %s. Your Version is " +"%s" +msgstr "" + +#: application/views/csv/index.php:7 +msgid "Export your logbook for SOTA uploads." +msgstr "" + +#: application/views/csv/index.php:11 +msgid "Only QSOs with SOTA information will be exported!" +msgstr "" + +#: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 +#: application/views/eqsl/download.php:42 +#: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:411 +msgid "Propagation Mode" +msgstr "" + +#: application/views/dashboard/index.php:5 +msgid "RSTS" +msgstr "" + +#: application/views/dashboard/index.php:6 +msgid "RSTR" +msgstr "" + +#: application/views/dashboard/index.php:58 +msgid "" +"You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +msgstr "" + +#: application/views/dashboard/index.php:65 +#, php-format +msgctxt "Dashboard Warning" +msgid "You need to update country files! Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:73 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station locations. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:81 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station logbook. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:89 +#, php-format +msgctxt "Dashboard Warning" +msgid "" +"Your active Station Location isn't linked to your Logbook. Click %shere%s to " +"do it." +msgstr "" + +#: application/views/dashboard/index.php:97 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station linked to your Logbook. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:106 +#, php-format +msgid "You have had %d QSO today" +msgid_plural "You have had %d QSOs today" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/views/dashboard/index.php:112 +msgid "You have made no QSOs today; time to turn on the radio!" +msgstr "" + +#: application/views/dashboard/index.php:119 +msgid "Attention: you need to set an active station location." +msgstr "" + +#: application/views/dashboard/index.php:125 +msgid "" +"You have themes without defined theme mode. Please ask the admin to edit the " +"themes." +msgstr "" + +#: application/views/dashboard/index.php:133 +msgid "At least one of your LoTW certificates is expired!" +msgstr "" + +#: application/views/dashboard/index.php:139 +msgid "At least one of your LoTW certificates is about to expire!" +msgstr "" + +#: application/views/dashboard/index.php:229 +#: application/views/visitor/index.php:237 +msgid "QSOs Breakdown" +msgstr "" + +#: application/views/dashboard/index.php:252 +#: application/views/visitor/index.php:258 +msgid "Countries Breakdown" +msgstr "" + +#: application/views/dashboard/index.php:269 +#: application/views/visitor/index.php:275 +msgid "Needed" +msgstr "" + +#: application/views/dashboard/index.php:282 +#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:330 +#: application/views/dashboard/index.php:351 +#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:159 +#: application/views/qslprint/qsolist.php:58 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:167 +#: application/views/qso/edit_ajax.php:417 +#: application/views/qso/edit_ajax.php:478 +#: application/views/qso/edit_ajax.php:518 application/views/qso/index.php:572 +#: application/views/search/result_search.php:8 +#: application/views/search/search_result_ajax.php:180 +#: application/views/search/search_result_ajax.php:260 +#: application/views/search/search_result_ajax.php:298 +#: application/views/search/search_result_ajax.php:332 +#: application/views/search/search_result_ajax.php:362 +#: application/views/statistics/custom_result.php:89 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:289 +#: application/views/view_log/partial/log_ajax.php:297 +#: application/views/visitor/index.php:287 +#: application/views/visitor/index.php:310 +#: application/views/visitor/index.php:328 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:270 +#: src/QSLManager/QSO.php:373 src/QSLManager/QSO.php:425 +#: src/QSLManager/QSO.php:461 +msgid "Sent" +msgstr "" + +#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:315 +#: application/views/dashboard/index.php:336 +#: application/views/dashboard/index.php:357 +#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 +#: application/views/oqrs/qsolist.php:174 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:151 +#: application/views/qslprint/qsolist.php:182 +#: application/views/qso/edit_ajax.php:450 +#: application/views/qso/edit_ajax.php:491 +#: application/views/qso/edit_ajax.php:530 +#: application/views/search/search_result_ajax.php:222 +#: application/views/search/search_result_ajax.php:273 +#: application/views/search/search_result_ajax.php:313 +#: application/views/search/search_result_ajax.php:345 +#: application/views/search/search_result_ajax.php:375 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:265 +#: application/views/view_log/partial/log_ajax.php:290 +#: application/views/view_log/partial/log_ajax.php:298 +#: application/views/visitor/index.php:292 +#: application/views/visitor/index.php:315 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:315 +#: src/QSLManager/QSO.php:396 src/QSLManager/QSO.php:438 +#: src/QSLManager/QSO.php:474 +msgid "Received" +msgstr "" + +#: application/views/dashboard/index.php:294 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:415 +#: application/views/logbookadvanced/index.php:426 +#: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 +#: application/views/qslprint/qsolist.php:64 +#: application/views/qslprint/qsolist.php:106 +#: application/views/qso/edit_ajax.php:422 +#: application/views/qso/edit_ajax.php:455 +#: application/views/qso/edit_ajax.php:483 +#: application/views/qso/edit_ajax.php:496 +#: application/views/qso/edit_ajax.php:523 +#: application/views/qso/edit_ajax.php:535 application/views/qso/index.php:577 +#: application/views/search/search_result_ajax.php:186 +#: application/views/search/search_result_ajax.php:228 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +#: application/views/view_log/partial/log_ajax.php:249 +#: application/views/view_log/partial/log_ajax.php:275 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:276 +#: src/QSLManager/QSO.php:321 src/QSLManager/QSO.php:381 +#: src/QSLManager/QSO.php:404 +msgid "Requested" +msgstr "" + +#: application/views/dashboard/index.php:304 +msgctxt "Probably no translation needed as this is a name." +msgid "Logbook of the World" +msgstr "" + +#: application/views/dashboard/index.php:367 +msgid "VUCC-Grids" +msgstr "" + +#: application/views/dayswithqso/index.php:2 +#: application/views/interface_assets/header.php:148 +msgid "Days with QSOs" +msgstr "" + +#: application/views/dayswithqso/index.php:25 +msgid "Days" +msgstr "" + +#: application/views/dayswithqso/index.php:37 +msgid "Longest streak with QSOs in the log" +msgstr "" + +#: application/views/dayswithqso/index.php:38 +msgid "A maximum of the 10 longest streaks are shown!" +msgstr "" + +#: application/views/dayswithqso/index.php:56 +msgid "Streak (continuous days with QSOs)" +msgstr "" + +#: application/views/dayswithqso/index.php:57 +#: application/views/dayswithqso/index.php:85 +#: application/views/dayswithqso/index.php:107 +msgid "Start Date" +msgstr "" + +#: application/views/dayswithqso/index.php:58 +#: application/views/dayswithqso/index.php:86 +#: application/views/dayswithqso/index.php:108 +#: application/views/timeline/index.php:153 +msgid "End Date" +msgstr "" + +#: application/views/dayswithqso/index.php:74 +msgctxt "Days with QSOs" +msgid "No streak found!" +msgstr "" + +#: application/views/dayswithqso/index.php:78 +msgid "Current streak with QSOs in the log" +msgstr "" + +#: application/views/dayswithqso/index.php:84 +#: application/views/dayswithqso/index.php:106 +msgid "Current streak (continuous days with QSOs)" +msgstr "" + +#: application/views/dayswithqso/index.php:101 +msgid "" +"If you make a QSO today, you can continue to extend your streak... or else " +"your current streak will be broken!" +msgstr "" + +#: application/views/dayswithqso/index.php:122 +msgid "No current streak found!" +msgstr "" + +#: application/views/debug/index.php:23 +msgid "Wavelog Information" +msgstr "" + +#: application/views/debug/index.php:27 +msgid "Version" +msgstr "" + +#: application/views/debug/index.php:31 +msgid "Language" +msgstr "" + +#: application/views/debug/index.php:35 +msgid "Base URL" +msgstr "" + +#: application/views/debug/index.php:39 +msgid "Migration" +msgstr "" + +#: application/views/debug/index.php:40 +msgid "There is something wrong with your Migration in Database!" +msgstr "" + +#: application/views/debug/index.php:45 +msgid "Migration is outdated and locked!" +msgstr "" + +#: application/views/debug/index.php:46 +#, php-format +msgid "" +"The current migration is not the version it is supposed to be. Reload this " +"page after %s seconds. If this warning persists, your migration is likely " +"locked due to a previously failed process. Delete the file %s to force the " +"migration to run again." +msgstr "" + +#: application/views/debug/index.php:47 +#, php-format +msgid "Check this wiki article %shere%s for more information." +msgstr "" + +#: application/views/debug/index.php:48 +#, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format +msgid "Migration should be %s" +msgstr "" + +#: application/views/debug/index.php:54 +msgid "Environment" +msgstr "" + +#: application/views/debug/index.php:62 +msgid "Total QSO on this instance" +msgstr "" + +#: application/views/debug/index.php:70 +msgid "Server Information" +msgstr "" + +#: application/views/debug/index.php:74 +msgid "Server Software" +msgstr "" + +#: application/views/debug/index.php:79 +msgid "PHP Version" +msgstr "" + +#: application/views/debug/index.php:85 +msgid "Deprecated" +msgstr "" + +#: application/views/debug/index.php:92 +msgid "MySQL Version" +msgstr "" + +#: application/views/debug/index.php:96 +msgid "Codeigniter Version" +msgstr "" + +#: application/views/debug/index.php:104 +msgid "Folder Permissions" +msgstr "" + +#: application/views/debug/index.php:106 +msgid "" +"This verifies that the folders used by Wavelog have read and write " +"permissions by PHP." +msgstr "" + +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 +msgid "Success" +msgstr "" + +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 +msgid "Failed" +msgstr "" + +#: application/views/debug/index.php:169 +msgid "Config Maintenance" +msgstr "" + +#: application/views/debug/index.php:175 +msgid "Your authentication mode is outdated and possibly unsafe" +msgstr "" + +#: application/views/debug/index.php:177 application/views/debug/index.php:194 +#, php-format +msgid "Please edit your %s File:" +msgstr "" + +#: application/views/debug/index.php:178 +msgid "" +"Go to your application/config Folder and compare config.sample.php with your " +"config.php" +msgstr "" + +#: application/views/debug/index.php:179 +#, php-format +msgid "Change %s to the value %s (Strongly recommended)" +msgstr "" + +#: application/views/debug/index.php:185 +msgid "Authentication Mode is set correctly" +msgstr "" + +#: application/views/debug/index.php:185 application/views/debug/index.php:202 +msgid "Ok" +msgstr "" + +#: application/views/debug/index.php:192 +msgid "You use the default encryption key. You should change it!" +msgstr "" + +#: application/views/debug/index.php:195 +msgid "This will also enable the 'Keep me logged in' feature." +msgstr "" + +#: application/views/debug/index.php:196 +#, php-format +msgid "" +"Change the value of %s to a new encryption key other then " +"'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" +msgstr "" + +#: application/views/debug/index.php:202 +msgid "You do not use the default encryption key" +msgstr "" + +#: application/views/debug/index.php:209 +msgid "Migrate Userdata" +msgstr "" + +#: application/views/debug/index.php:211 +msgid "" +"Here you can migrate existing QSL cards and eQSL cards to the new userdata " +"folder." +msgstr "" + +#: application/views/debug/index.php:224 +msgid "Modules" +msgstr "" + +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 +msgid "Installed" +msgstr "" + +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 +msgid "Not Installed" +msgstr "" + +#: application/views/debug/index.php:283 application/views/qso/index.php:671 +msgid "Settings" +msgstr "" + +#: application/views/debug/index.php:412 +msgid "Git Information" +msgstr "" + +#: application/views/debug/index.php:416 +msgid "Branch" +msgstr "" + +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 +msgid "n/a" +msgstr "" + +#: application/views/debug/index.php:433 +msgid "Commit" +msgstr "" + +#: application/views/debug/index.php:443 +msgid "Tag" +msgstr "" + +#: application/views/debug/index.php:453 +msgid "Last Fetch" +msgstr "" + +#: application/views/debug/index.php:465 +msgid "Check for new version" +msgstr "" + +#: application/views/debug/index.php:466 +msgid "Update now" +msgstr "" + +#: application/views/debug/index.php:484 +msgid "File download date" +msgstr "" + +#: application/views/debug/index.php:488 +msgid "File" +msgstr "" + +#: application/views/debug/index.php:489 +msgid "Last update" +msgstr "" + +#: application/views/debug/index.php:493 +msgid "DXCC update from Club Log" +msgstr "" + +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 +#: application/views/station_profile/edit.php:49 +msgid "Update" +msgstr "" + +#: application/views/debug/index.php:499 +msgid "DOK file download" +msgstr "" + +#: application/views/debug/index.php:504 +msgid "LoTW users download" +msgstr "" + +#: application/views/debug/index.php:509 +msgid "POTA file download" +msgstr "" + +#: application/views/debug/index.php:514 +msgid "SCP file download" +msgstr "" + +#: application/views/debug/index.php:519 +msgid "SOTA file download" +msgstr "" + +#: application/views/debug/index.php:524 +msgid "WWFF file download" +msgstr "" + +#: application/views/debug/index.php:533 +msgid "QSO-DB Maintenance" +msgstr "" + +#: application/views/debug/index.php:537 +#, 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] "" +msgstr[1] "" +msgstr[2] "" + +#: application/views/debug/index.php:550 +#: application/views/public_search/result.php:17 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 +#: application/views/stationsetup/linkedlocations.php:32 +#: application/views/stationsetup/stationsetup.php:123 +msgid "Station Callsign" +msgstr "" + +#: application/views/debug/index.php:575 +msgid "Please mark QSOs and reassign them to an existing station location:" +msgstr "" + +#: application/views/debug/index.php:583 +msgctxt "Stationlocation" +msgid "Target Location" +msgstr "" + +#: application/views/debug/index.php:584 application/views/debug/index.php:595 +msgid "Reassign" +msgstr "" + +#: application/views/debug/index.php:604 +msgid "Every QSO in your Database is assigned to a station-profile (location)" +msgstr "" + +#: application/views/debug/index.php:604 +msgid "Everything ok" +msgstr "" + +#: application/views/debug/index.php:629 +msgid "Albanian" +msgstr "" + +#: application/views/debug/index.php:630 +msgid "Bosnian" +msgstr "" + +#: application/views/debug/index.php:631 +msgid "Bulgarian" +msgstr "" + +#: application/views/debug/index.php:632 +msgid "Chinese (Simplified)" +msgstr "" + +#: application/views/debug/index.php:633 +msgid "Croatian" +msgstr "" + +#: application/views/debug/index.php:634 +msgid "Czech" +msgstr "" + +#: application/views/debug/index.php:635 +msgid "Dutch" +msgstr "" + +#: application/views/debug/index.php:636 +msgid "English" +msgstr "" + +#: application/views/debug/index.php:637 +msgid "Finnish" +msgstr "" + +#: application/views/debug/index.php:638 +msgid "French" +msgstr "" + +#: application/views/debug/index.php:639 +msgid "German" +msgstr "" + +#: application/views/debug/index.php:640 +msgid "Greek" +msgstr "" + +#: application/views/debug/index.php:641 +msgid "Italian" +msgstr "" + +#: application/views/debug/index.php:642 +msgid "Montenegrin" +msgstr "" + +#: application/views/debug/index.php:643 +msgid "Polish" +msgstr "" + +#: application/views/debug/index.php:644 +msgid "Portuguese" +msgstr "" + +#: application/views/debug/index.php:645 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:646 +msgid "Serbian" +msgstr "" + +#: application/views/debug/index.php:647 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:648 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:649 +msgid "Turkish" +msgstr "" + +#: application/views/distancerecords/index.php:4 +msgid "This page lists distance records per satellite based on gridsquares." +msgstr "" + +#: application/views/distances/index.php:7 +#: application/views/interface_assets/footer.php:30 +#: application/views/simplefle/index.php:68 +msgid "QSO Data" +msgstr "" + +#: application/views/distances/index.php:9 +#, php-format +msgid "contacts were plotted.%s Your furthest contact was with" +msgstr "" + +#: application/views/distances/index.php:10 +msgid "in gridsquare" +msgstr "" + +#: application/views/distances/index.php:11 +msgid "the distance was" +msgstr "" + +#: application/views/distances/index.php:14 +msgid "Callsign(s) worked (max 5 shown)" +msgstr "" + +#: application/views/distances/index.php:19 +msgid "Band selection" +msgstr "" + +#: application/views/dxatlas/index.php:3 +msgid "DX Atlas Export" +msgstr "" + +#: application/views/dxatlas/index.php:7 +msgid "" +"Export your logbook for use in DX Atlas to display worked / confirmed " +"gridsquares." +msgstr "" + +#: application/views/dxatlas/index.php:11 application/views/kml/index.php:11 +msgid "Only QSOs with a gridsquare defined will be exported!" +msgstr "" + +#: application/views/dxcalendar/index.php:9 +msgid "Date from" +msgstr "" + +#: application/views/dxcalendar/index.php:10 +msgid "Date to" +msgstr "" + +#: application/views/dxcalendar/index.php:13 +#: application/views/view_log/qso.php:369 +msgid "QSL Info" +msgstr "" + +#: application/views/dxcalendar/index.php:14 +msgid "Source" +msgstr "" + +#: application/views/eqsl/analysis.php:11 application/views/eqsl/download.php:9 +#: application/views/eqsl/export.php:8 application/views/eqsl/import.php:7 +#: application/views/eqsl/result.php:11 application/views/eqsl/tools.php:7 +#: application/views/qrz/export.php:14 +msgid "Download QSOs" +msgstr "" + +#: application/views/eqsl/analysis.php:14 +#: application/views/eqsl/download.php:13 application/views/eqsl/export.php:12 +#: application/views/eqsl/import.php:11 application/views/eqsl/result.php:14 +#: application/views/eqsl/tools.php:11 +msgid "Upload QSOs" +msgstr "" + +#: application/views/eqsl/analysis.php:17 +#: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 +#: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 +#: application/views/eqsl/tools.php:15 +#: application/views/interface_assets/header.php:247 +msgid "Tools" +msgstr "" + +#: application/views/eqsl/analysis.php:20 +#: application/views/eqsl/download.php:20 application/views/eqsl/export.php:19 +#: application/views/eqsl/import.php:18 application/views/eqsl/result.php:20 +#: application/views/eqsl/tools.php:19 +msgid "Download eQSL cards" +msgstr "" + +#: application/views/eqsl/analysis.php:40 +#: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 +msgid "Submode" +msgstr "" + +#: application/views/eqsl/analysis.php:41 +msgid "Log Status" +msgstr "" + +#: application/views/eqsl/analysis.php:42 application/views/eqsl/result.php:38 +msgid "eQSL Status" +msgstr "" + +#: application/views/eqsl/analysis.php:62 +msgid "There are no QSO confirmations waiting for you at eQSL.cc" +msgstr "" + +#: application/views/eqsl/download.php:31 +msgid "" +"Below is a table of QSOs that have been confirmed on eQSL but QSL images " +"have not been downloaded yet." +msgstr "" + +#: application/views/eqsl/download.php:43 +msgid "Action" +msgstr "" + +#: application/views/eqsl/download.php:60 +msgid "View/Download" +msgstr "" + +#: application/views/eqsl/download.php:71 application/views/eqsl/import.php:53 +msgid "" +"Wavelog will use the eQSL credentials from your Wavelog user profile to " +"connect to eQSL and download confirmations." +msgstr "" + +#: application/views/eqsl/download.php:73 +msgid "" +"Due to a rate limit of approximately 10 seconds per eQSL picture download " +"calling this function will take a long time to complete! Thus you may have " +"to call this function several times depending on the amount of outstanding " +"cards. This may run into a script timeout depending on the PHP configuration." +msgstr "" + +#: application/views/eqsl/download.php:81 +msgid "" +"There are no QSOs whose eQSL card images have not yet been downloaded. Go " +"log some more QSOs!" +msgstr "" + +#: application/views/eqsl/export.php:31 +msgid "Below is a table of QSOs that have not yet been sent to eQSL." +msgstr "" + +#: application/views/eqsl/export.php:33 +msgid "" +"Please make sure the 'eQSL QTH Nickname' field is set in your station " +"profile and that the value matches the QTH Nickname you set within eQSL." +msgstr "" + +#: application/views/eqsl/export.php:37 +msgid "Clicking 'Upload QSOs' will send QSO information to eQSL.cc." +msgstr "" + +#: application/views/eqsl/export.php:46 +msgid "The following QSOs were sent to eQSL." +msgstr "" + +#: application/views/eqsl/export.php:51 +msgid "" +"There are no QSOs that need to be sent to eQSL at this time. Go log some " +"more QSOs!" +msgstr "" + +#: application/views/eqsl/import.php:30 +msgid "Import from file..." +msgstr "" + +#: application/views/eqsl/import.php:33 +msgid "Download Inbox" +msgstr "" + +#: application/views/eqsl/import.php:33 +#, php-format +msgid "" +"Upload the Exported ADIF file from eQSL from the %s page, to mark QSOs as " +"confirmed on eQSL." +msgstr "" + +#: application/views/eqsl/import.php:34 +msgid "Choose Station(location) eQSL File belongs to:" +msgstr "" + +#: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 +msgid "Log files must have the file type .adi" +msgstr "" + +#: application/views/eqsl/import.php:52 +msgid "Import directly from eQSL" +msgstr "" + +#: application/views/eqsl/tools.php:27 +msgid "" +"This does NOT upload any QSOs. It only marks QSOs as sent. If you use this " +"button you need to upload them manually on the eQSL.cc website." +msgstr "" + +#: application/views/eqsl/tools.php:29 +msgid "Mark All QSOs as Sent to eQSL" +msgstr "" + +#: application/views/eqsl/tools.php:29 +msgid "" +"Use this if you have lots of QSOs to upload to eQSL it will save the server " +"timing out." +msgstr "" + +#: application/views/eqslcard/index.php:10 +#, php-format +msgid "You are using %s of disk space to store eQSL Card assets" +msgstr "" + +#: application/views/eqslcard/index.php:34 +#: application/views/qslcard/index.php:33 +msgid "QSL Date" +msgstr "" + +#: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2338 +#: application/views/interface_assets/footer.php:2356 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 +#: application/views/qslcard/index.php:66 +#: application/views/view_log/qso.php:617 +msgid "View" +msgstr "" + +#: application/views/gridmap/index.php:43 +msgid "All except SAT" +msgstr "" + +#: application/views/hamsat/index.php:22 +#, php-format +msgid "" +"Cannot filter workable passes only without private feed key. Please set the " +"feed key in %s." +msgstr "" + +#: application/views/hamsat/index.php:22 +msgid "your profile" +msgstr "" + +#: application/views/hrdlog/export.php:10 application/views/qrz/export.php:10 +#: application/views/webadif/export.php:10 +msgid "Upload Logbook" +msgstr "" + +#: application/views/hrdlog/export.php:13 application/views/qrz/export.php:18 +#: application/views/webadif/export.php:13 +msgid "Mark QSOs" +msgstr "" + +#: application/views/hrdlog/export.php:22 +msgid "" +"Here you can see all QSOs which have not been previously uploaded to a " +"HRDLog logbook." +msgstr "" + +#: application/views/hrdlog/export.php:23 +msgid "" +"You need to set a HRDLog Logbook API Code in your station profile. Only " +"station profiles with an API Key set are displayed." +msgstr "" + +#: application/views/hrdlog/export.php:24 +#, php-format +msgid "The Code can be requested at %s" +msgstr "" + +#: application/views/hrdlog/export.php:25 +#: application/views/webadif/export.php:34 +msgid "This might take a while as QSO uploads are processed sequentially." +msgstr "" + +#: application/views/hrdlog/export.php:34 application/views/qrz/export.php:38 +#: application/views/webadif/export.php:41 +msgid "Profile name" +msgstr "" + +#: application/views/hrdlog/export.php:35 +#: application/views/oqrs/showrequests.php:86 +#: application/views/qrz/export.php:39 application/views/webadif/export.php:42 +msgid "Station callsign" +msgstr "" + +#: application/views/hrdlog/export.php:36 application/views/qrz/export.php:40 +msgid "Edited QSOs not uploaded" +msgstr "" + +#: application/views/hrdlog/export.php:37 application/views/qrz/export.php:41 +#: application/views/webadif/export.php:43 +msgid "Total QSOs not uploaded" +msgstr "" + +#: application/views/hrdlog/export.php:38 application/views/qrz/export.php:42 +#: application/views/webadif/export.php:44 +msgid "Total QSOs uploaded" +msgstr "" + +#: application/views/hrdlog/export.php:60 +msgid "" +"No Station Locations with valid HRDlog-Settings found. Check the HRDlog " +"Credentials in the Station Location Settings!" +msgstr "" + +#: application/views/hrdlog/export.php:87 +msgid "Mark QSOs as exported to HRDLog Logbook" +msgstr "" + +#: application/views/hrdlog/mark_hrdlog.php:15 +#: application/views/qrz/mark_qrz.php:15 +#: application/views/webadif/mark_webadif.php:15 +msgid "Yay, it's done!" +msgstr "" + +#: application/views/hrdlog/mark_hrdlog.php:16 +msgid "The QSOs are marked as exported to HRDLog Logbook." +msgstr "" + +#: application/views/interface_assets/footer.php:31 +#: application/views/search/search_result_ajax.php:404 +#: application/views/view_log/partial/log.php:135 +#: application/views/view_log/partial/log_ajax.php:320 +#: application/views/view_log/qso.php:437 +msgid "Edit QSO" +msgstr "" + +#: application/views/interface_assets/footer.php:33 +msgid "Attention" +msgstr "" + +#: application/views/interface_assets/footer.php:38 +msgid "Warning! Are you sure you want delete QSO with " +msgstr "" + +#: application/views/interface_assets/footer.php:39 +#: application/views/user/edit.php:493 +msgid "Colors" +msgstr "" + +#: application/views/interface_assets/footer.php:41 +msgid "Worked not confirmed" +msgstr "" + +#: application/views/interface_assets/footer.php:42 +msgid "Not worked" +msgstr "" + +#: application/views/interface_assets/footer.php:46 +#: application/views/qso/index.php:623 +#: application/views/visitor/layout/footer.php:246 +msgid "Clear" +msgstr "" + +#: application/views/interface_assets/footer.php:47 +#: application/views/qso/edit_ajax.php:211 +#: application/views/qso/edit_ajax.php:539 +msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." +msgstr "" + +#: application/views/interface_assets/footer.php:48 +msgid "No states for this DXCC available" +msgstr "" + +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "" + +#: application/views/interface_assets/footer.php:132 +#: application/views/interface_assets/header.php:440 +#: application/views/options/sidebar.php:11 +msgid "Version Info" +msgstr "" + +#: application/views/interface_assets/footer.php:398 +msgid "Description:" +msgstr "" + +#: application/views/interface_assets/footer.php:401 +msgid "Query description" +msgstr "" + +#: application/views/interface_assets/footer.php:417 +msgid "Your query has been saved!" +msgstr "" + +#: application/views/interface_assets/footer.php:419 +#: application/views/search/filter.php:46 +msgid "Edit queries" +msgstr "" + +#: application/views/interface_assets/footer.php:421 +msgid "Stored queries:" +msgstr "" + +#: application/views/interface_assets/footer.php:426 +#: application/views/search/filter.php:60 +msgid "Run Query" +msgstr "" + +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 +msgid "Stored Queries" +msgstr "" + +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 +msgid "You need to make a query before you search!" +msgstr "" + +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 +#: application/views/search/filter.php:79 +msgid "Export to ADIF" +msgstr "" + +#: application/views/interface_assets/footer.php:502 +msgid "Warning! Are you sure you want delete this stored query?" +msgstr "" + +#: application/views/interface_assets/footer.php:516 +msgid "The stored query has been deleted!" +msgstr "" + +#: application/views/interface_assets/footer.php:525 +msgid "The stored query could not be deleted. Please try again!" +msgstr "" + +#: application/views/interface_assets/footer.php:551 +msgid "The query description has been updated!" +msgstr "" + +#: application/views/interface_assets/footer.php:555 +msgid "Something went wrong with the save. Please try again!" +msgstr "" + +#: application/views/interface_assets/footer.php:678 +msgid "" +"Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " +"Check which DXCC for this particular location is the correct one. If you are " +"sure, ignore this warning." +msgstr "" + +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:533 +msgid "Callsign: " +msgstr "" + +#: application/views/interface_assets/footer.php:731 +msgid "Count: " +msgstr "" + +#: application/views/interface_assets/footer.php:732 +msgid "Grids: " +msgstr "" + +#: application/views/interface_assets/footer.php:1167 +#, php-format +msgid "You're not logged in. Please %slogin%s" +msgstr "" + +#: application/views/interface_assets/footer.php:1375 +#: application/views/interface_assets/footer.php:1379 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1523 +#: application/views/interface_assets/footer.php:1526 +msgid "grid square" +msgstr "" + +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1526 +msgid "Total count" +msgstr "" + +#: application/views/interface_assets/footer.php:2114 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2134 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2174 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2176 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2349 +#: application/views/interface_assets/footer.php:2388 +#: application/views/view_log/qso.php:607 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2368 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2406 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2417 +#: application/views/interface_assets/footer.php:2442 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2453 +msgid "Something went wrong. Please try again!" +msgstr "" + +#: application/views/interface_assets/header.php:86 +msgid "Developer Mode" +msgstr "" + +#: application/views/interface_assets/header.php:89 +msgid "Maintenance Mode" +msgstr "" + +#: application/views/interface_assets/header.php:99 +msgid "Overview" +msgstr "" + +#: application/views/interface_assets/header.php:101 +msgid "Advanced" +msgstr "" + +#: application/views/interface_assets/header.php:104 +msgid "View QSL Cards" +msgstr "" + +#: application/views/interface_assets/header.php:107 +msgid "View eQSL Cards" +msgstr "" + +#: application/views/interface_assets/header.php:115 +msgid "Live QSO" +msgstr "" + +#: application/views/interface_assets/header.php:117 +msgid "Post QSO" +msgstr "" + +#: application/views/interface_assets/header.php:119 +msgid "Simple Fast Log Entry" +msgstr "" + +#: application/views/interface_assets/header.php:121 +msgid "Live Contest Logging" +msgstr "" + +#: application/views/interface_assets/header.php:123 +msgid "Post Contest Logging" +msgstr "" + +#: application/views/interface_assets/header.php:132 +msgid "Analytics" +msgstr "" + +#: application/views/interface_assets/header.php:140 +msgid "Activated Gridsquares" +msgstr "" + +#: application/views/interface_assets/header.php:162 +msgid "International" +msgstr "" + +#: application/views/interface_assets/header.php:168 +msgid "ITU" +msgstr "" + +#: application/views/interface_assets/header.php:190 +msgid "Canada" +msgstr "" + +#: application/views/interface_assets/header.php:196 +msgid "Germany" +msgstr "" + +#: application/views/interface_assets/header.php:200 +msgid "DL Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:204 +msgid "Great Britain" +msgstr "" + +#: application/views/interface_assets/header.php:206 +msgid "WAB" +msgstr "" + +#: application/views/interface_assets/header.php:210 +msgid "Japan" +msgstr "" + +#: application/views/interface_assets/header.php:216 +msgid "JA Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:220 +msgid "Luxemburg" +msgstr "" + +#: application/views/interface_assets/header.php:222 +msgid "LX Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:226 +msgid "Switzerland" +msgstr "" + +#: application/views/interface_assets/header.php:232 +msgid "USA" +msgstr "" + +#: application/views/interface_assets/header.php:238 +msgid "US Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:255 +msgid "Bandmap" +msgstr "" + +#: application/views/interface_assets/header.php:257 +msgid "SAT Timers" +msgstr "" + +#: application/views/interface_assets/header.php:260 +msgid "Satellite Flightpath" +msgstr "" + +#: application/views/interface_assets/header.php:262 +msgid "Satellite Pass" +msgstr "" + +#: application/views/interface_assets/header.php:269 +#: application/views/stationsetup/stationsetup.php:113 +msgid "Admin" +msgstr "" + +#: application/views/interface_assets/header.php:274 +msgid "Global Options" +msgstr "" + +#: application/views/interface_assets/header.php:280 +#: application/views/notes/add.php:38 application/views/notes/edit.php:39 +#: application/views/satellite/index.php:11 +#: application/views/satellite/pass.php:495 +#: application/views/statistics/custom.php:20 +#: application/views/statistics/custom_result.php:21 +#: application/views/statistics/index.php:39 +#: application/views/statistics/index.php:93 +msgid "Satellites" +msgstr "" + +#: application/views/interface_assets/header.php:286 +msgid "Update Country Files" +msgstr "" + +#: application/views/interface_assets/header.php:290 +msgid "Debug Information" +msgstr "" + +#: application/views/interface_assets/header.php:337 +msgid "Add/Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:339 +msgid "Log" +msgstr "" + +#: application/views/interface_assets/header.php:346 +#: application/views/logbookadvanced/index.php:474 +#: application/views/oqrs/index.php:27 application/views/user/edit.php:441 +#: application/views/visitor/layout/header.php:95 +msgid "Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:375 +#: application/views/user/edit.php:49 +msgid "Account" +msgstr "" + +#: application/views/interface_assets/header.php:390 +msgid "Other Export Options" +msgstr "" + +#: application/views/interface_assets/header.php:398 +msgid "Cabrillo Export" +msgstr "" + +#: application/views/interface_assets/header.php:400 +msgid "EDI Export" +msgstr "" + +#: application/views/interface_assets/header.php:424 +msgid "QSL Queue" +msgstr "" + +#: application/views/interface_assets/header.php:425 +msgid "Labels" +msgstr "" + +#: application/views/interface_assets/header.php:427 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:430 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:431 +msgid "HRDLog Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:441 +msgid "Help" +msgstr "" + +#: application/views/interface_assets/header.php:442 +msgid "Forum" +msgstr "" + +#: application/views/interface_assets/header.php:444 +msgid "Logout" +msgstr "" + +#: application/views/interface_assets/header.php:452 +msgid "Select a Location" +msgstr "" + +#: application/views/interface_assets/header.php:531 +msgid "Extras" +msgstr "" + +#: application/views/kml/index.php:7 +msgid "Export your logbook to a KML file for use in Google Earth." +msgstr "" + +#: application/views/labels/create.php:24 +msgid "" +"Label name used for display purposes, so pick something meaningful, perhaps " +"the label style." +msgstr "" + +#: 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 "" + +#: application/views/labels/create.php:42 +#: application/views/labels/createpaper.php:44 +#: application/views/labels/edit.php:44 +#: application/views/labels/editpaper.php:44 +msgid "Millimeters" +msgstr "" + +#: application/views/labels/create.php:43 +#: application/views/labels/createpaper.php:45 +#: application/views/labels/edit.php:45 +#: application/views/labels/editpaper.php:45 +msgid "Inches" +msgstr "" + +#: application/views/labels/create.php:49 application/views/labels/edit.php:51 +msgid "Margin Top" +msgstr "" + +#: application/views/labels/create.php:52 application/views/labels/edit.php:54 +msgid "Top margin of labels" +msgstr "" + +#: application/views/labels/create.php:55 application/views/labels/edit.php:57 +msgid "Margin Left" +msgstr "" + +#: application/views/labels/create.php:58 application/views/labels/edit.php:60 +msgid "Left margin of labels." +msgstr "" + +#: application/views/labels/create.php:63 application/views/labels/edit.php:65 +msgid "Labels horizontally" +msgstr "" + +#: application/views/labels/create.php:66 application/views/labels/edit.php:68 +msgid "Number of labels horizontally across the page." +msgstr "" + +#: application/views/labels/create.php:69 application/views/labels/edit.php:71 +msgid "Labels vertically" +msgstr "" + +#: application/views/labels/create.php:72 application/views/labels/edit.php:74 +msgid "Number of labels vertically across the page." +msgstr "" + +#: application/views/labels/create.php:77 application/views/labels/edit.php:79 +msgid "Horizontal space" +msgstr "" + +#: application/views/labels/create.php:80 application/views/labels/edit.php:82 +msgid "Horizontal space between 2 labels." +msgstr "" + +#: application/views/labels/create.php:83 application/views/labels/edit.php:85 +msgid "Vertical space" +msgstr "" + +#: application/views/labels/create.php:86 application/views/labels/edit.php:88 +msgid "Vertical space between 2 labels." +msgstr "" + +#: application/views/labels/create.php:91 application/views/labels/edit.php:93 +msgid "Width of label" +msgstr "" + +#: application/views/labels/create.php:94 application/views/labels/edit.php:96 +msgid "Total width of one label." +msgstr "" + +#: application/views/labels/create.php:97 application/views/labels/edit.php:99 +msgid "Height of label" +msgstr "" + +#: application/views/labels/create.php:100 +#: application/views/labels/edit.php:102 +msgid "Total height of one label" +msgstr "" + +#: application/views/labels/create.php:105 +#: application/views/labels/edit.php:107 application/views/labels/index.php:80 +msgid "Font Size" +msgstr "" + +#: 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 "" + +#: application/views/labels/create.php:111 +#: application/views/labels/edit.php:113 +msgid "QSOs on label" +msgstr "" + +#: application/views/labels/create.php:117 +#: application/views/labels/edit.php:118 +msgid "Save Label Type" +msgstr "" + +#: application/views/labels/createpaper.php:36 +#: application/views/labels/editpaper.php:36 +msgid "Paper Type Name" +msgstr "" + +#: application/views/labels/createpaper.php:39 +#: application/views/labels/editpaper.php:39 +msgid "Paper name used for display purposes, so pick something meaningful." +msgstr "" + +#: application/views/labels/createpaper.php:51 +#: application/views/labels/editpaper.php:51 +msgid "Width of paper" +msgstr "" + +#: application/views/labels/createpaper.php:54 +#: application/views/labels/editpaper.php:54 +#: application/views/labels/editpaper.php:60 +msgid "Total width of paper." +msgstr "" + +#: application/views/labels/createpaper.php:57 +#: application/views/labels/editpaper.php:57 +msgid "Height of paper" +msgstr "" + +#: application/views/labels/createpaper.php:60 +msgid "Total height of paper" +msgstr "" + +#: 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 "" + +#: application/views/labels/createpaper.php:68 +#: application/views/labels/editpaper.php:68 +#: application/views/labels/index.php:60 +msgctxt "Orientation" +msgid "Landscape" +msgstr "" + +#: application/views/labels/createpaper.php:69 +#: application/views/labels/editpaper.php:69 +#: application/views/labels/index.php:60 +msgctxt "Orientation" +msgid "Portrait" +msgstr "" + +#: application/views/labels/createpaper.php:75 +#: application/views/labels/editpaper.php:75 +msgid "Save Paper Type" +msgstr "" + +#: application/views/labels/edit.php:24 +msgid "" +"Label name used for display purposes so pick something meaningful perhaps " +"the label style." +msgstr "" + +#: application/views/labels/index.php:2 +#: application/views/logbookadvanced/startatform.php:27 +msgid "Mark QSL as printed" +msgstr "" + +#: application/views/labels/index.php:3 application/views/labels/index.php:128 +msgid "Print" +msgstr "" + +#: application/views/labels/index.php:33 +msgid "Create New Label Type" +msgstr "" + +#: application/views/labels/index.php:34 +msgid "Create New Paper Type" +msgstr "" + +#: application/views/labels/index.php:37 +msgid "Paper types" +msgstr "" + +#: application/views/labels/index.php:43 application/views/labels/index.php:78 +msgid "Width" +msgstr "" + +#: application/views/labels/index.php:44 application/views/labels/index.php:79 +msgid "Height" +msgstr "" + +#: application/views/labels/index.php:45 +msgid "Used by labels" +msgstr "" + +#: application/views/labels/index.php:46 +msgid "Orientation" +msgstr "" + +#: application/views/labels/index.php:71 +msgid "Label types" +msgstr "" + +#: application/views/labels/index.php:81 +#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:96 +#: application/views/widgets/qsos.php:3 +msgid "QSOs" +msgstr "" + +#: application/views/labels/index.php:82 +msgid "Use For Print" +msgstr "" + +#: application/views/labels/index.php:92 +msgid "No paper assigned" +msgstr "" + +#: application/views/labels/index.php:117 +msgid "QSL Card Labels Pending" +msgstr "" + +#: application/views/labels/index.php:126 +msgid "QSOs Waiting" +msgstr "" + +#: application/views/labels/index.php:127 +msgid "View QSOs" +msgstr "" + +#: application/views/labels/startatform.php:4 +#: application/views/logbookadvanced/startatform.php:3 +msgid "Include Grid?" +msgstr "" + +#: application/views/labels/startatform.php:10 +#: application/views/logbookadvanced/startatform.php:9 +msgid "" +"Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" +msgstr "" + +#: application/views/labels/startatform.php:16 +msgid "Include Via (if filled)?" +msgstr "" + +#: application/views/labels/startatform.php:22 +#: application/views/logbookadvanced/startatform.php:21 +msgid "Start printing at?" +msgstr "" + +#: application/views/logbookadvanced/edit.php:15 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/useroptions.php:58 +msgid "QSL via" +msgstr "" + +#: application/views/logbookadvanced/edit.php:23 +msgid "LoTW Sent" +msgstr "" + +#: application/views/logbookadvanced/edit.php:24 +msgid "LoTW Received" +msgstr "" + +#: application/views/logbookadvanced/edit.php:75 +msgid "SAT Mode" +msgstr "" + +#: application/views/logbookadvanced/edit.php:89 +msgid "Band RX" +msgstr "" + +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:174 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:144 +msgid "From" +msgstr "" + +#: application/views/logbookadvanced/index.php:148 +msgid "To" +msgstr "" + +#: application/views/logbookadvanced/index.php:152 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/useroptions.php:30 +#: application/views/oqrs/showrequests.php:42 +msgid "Dx" +msgstr "" + +#: application/views/logbookadvanced/index.php:159 +msgctxt "Logbook Advanced DXCC Select" +msgid "- NONE - (e.g. /MM, /AM)" +msgstr "" + +#: application/views/logbookadvanced/index.php:224 +msgctxt "Propagation Mode" +msgid "None/Empty" +msgstr "" + +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:540 +msgid "Invalid" +msgstr "" + +#: application/views/logbookadvanced/index.php:324 +msgid "QSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:439 +#: application/views/lookup/lotwuser.php:12 +#: application/views/qso/edit_ajax.php:421 +#: application/views/qso/edit_ajax.php:454 +#: application/views/qso/edit_ajax.php:482 +#: application/views/qso/edit_ajax.php:495 +#: application/views/qso/edit_ajax.php:522 +#: application/views/qso/edit_ajax.php:534 application/views/qso/index.php:576 +#: application/views/search/result.php:58 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 +#: application/views/station_profile/create.php:293 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 +#: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 +#: application/views/user/edit.php:347 application/views/user/edit.php:358 +#: application/views/user/edit.php:369 application/views/user/edit.php:379 +#: application/views/user/edit.php:389 application/views/user/edit.php:399 +#: application/views/user/edit.php:419 application/views/user/edit.php:430 +#: application/views/user/edit.php:540 application/views/user/edit.php:802 +#: application/views/user/edit.php:834 application/views/user/edit.php:859 +msgid "Yes" +msgstr "" + +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:440 +#: application/views/lookup/lotwuser.php:14 +#: application/views/qso/edit_ajax.php:420 +#: application/views/qso/edit_ajax.php:453 +#: application/views/qso/edit_ajax.php:481 +#: application/views/qso/edit_ajax.php:494 +#: application/views/qso/edit_ajax.php:521 +#: application/views/qso/edit_ajax.php:533 application/views/qso/index.php:575 +#: application/views/search/result.php:60 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 +#: application/views/station_profile/create.php:292 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 +#: application/views/user/edit.php:348 application/views/user/edit.php:359 +#: application/views/user/edit.php:370 application/views/user/edit.php:380 +#: application/views/user/edit.php:390 application/views/user/edit.php:400 +#: application/views/user/edit.php:420 application/views/user/edit.php:431 +#: application/views/user/edit.php:522 application/views/user/edit.php:526 +#: application/views/user/edit.php:541 application/views/user/edit.php:803 +#: application/views/user/edit.php:833 application/views/user/edit.php:858 +msgid "No" +msgstr "" + +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:416 +#: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 +#: application/views/qslprint/qsolist.php:61 +#: application/views/qslprint/qsolist.php:103 +#: application/views/qso/edit_ajax.php:423 +#: application/views/qso/edit_ajax.php:484 +#: application/views/qso/edit_ajax.php:524 application/views/qso/index.php:578 +#: application/views/search/search_result_ajax.php:183 +#: application/views/search/search_result_ajax.php:225 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +#: src/QSLManager/QSO.php:273 src/QSLManager/QSO.php:318 +msgid "Queued" +msgstr "" + +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:373 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:417 +#: application/views/logbookadvanced/index.php:427 +#: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 +#: application/views/oqrs/qsolist.php:166 +#: application/views/oqrs/qsolist.php:181 +#: application/views/qslprint/qsolist.php:67 +#: application/views/qslprint/qsolist.php:109 +#: application/views/qslprint/qsolist.php:174 +#: application/views/qslprint/qsolist.php:189 +#: application/views/qso/edit_ajax.php:424 +#: application/views/qso/edit_ajax.php:456 +#: application/views/qso/edit_ajax.php:485 +#: application/views/qso/edit_ajax.php:497 +#: application/views/qso/edit_ajax.php:525 +#: application/views/qso/edit_ajax.php:536 application/views/qso/index.php:579 +#: application/views/search/search_result_ajax.php:189 +#: application/views/search/search_result_ajax.php:231 +#: application/views/search/search_result_ajax.php:305 +#: application/views/search/search_result_ajax.php:320 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +#: application/views/view_log/partial/log_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:270 +#: src/QSLManager/QSO.php:279 src/QSLManager/QSO.php:324 +#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:400 +msgid "Invalid (Ignore)" +msgstr "" + +#: application/views/logbookadvanced/index.php:335 +msgid "QSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:428 +msgid "Verified" +msgstr "" + +#: application/views/logbookadvanced/index.php:346 +msgid "QSL send. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:359 +#: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 +#: application/views/oqrs/request.php:45 +#: application/views/oqrs/request_grouped.php:49 +#: application/views/oqrs/showrequests.php:12 +#: application/views/qslprint/qslprint.php:5 +#: application/views/qslprint/qsolist.php:77 +#: application/views/qslprint/qsolist.php:119 +#: application/views/qslprint/qsolist.php:210 +#: application/views/qso/edit_ajax.php:435 +#: application/views/qso/edit_ajax.php:468 application/views/qso/index.php:590 +#: application/views/search/search_result_ajax.php:199 +#: application/views/search/search_result_ajax.php:241 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +#: src/QSLManager/QSO.php:296 src/QSLManager/QSO.php:339 +msgid "Bureau" +msgstr "" + +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:360 +#: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 +#: application/views/oqrs/showrequests.php:13 +#: application/views/qslprint/qslprint.php:6 +#: application/views/qslprint/qsolist.php:80 +#: application/views/qslprint/qsolist.php:122 +#: application/views/qslprint/qsolist.php:211 +#: application/views/qso/edit_ajax.php:434 +#: application/views/qso/edit_ajax.php:467 application/views/qso/index.php:589 +#: application/views/search/search_result_ajax.php:202 +#: application/views/search/search_result_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +#: src/QSLManager/QSO.php:299 src/QSLManager/QSO.php:342 +msgid "Direct" +msgstr "" + +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 +#: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 +#: application/views/oqrs/showrequests.php:14 +#: application/views/qslprint/qslprint.php:7 +#: application/views/qslprint/qsolist.php:86 +#: application/views/qslprint/qsolist.php:128 +#: application/views/qslprint/qsolist.php:212 +#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:591 +#: application/views/search/search_result_ajax.php:208 +#: application/views/search/search_result_ajax.php:250 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +#: src/QSLManager/QSO.php:305 src/QSLManager/QSO.php:348 +msgid "Electronic" +msgstr "" + +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:362 +#: application/views/oqrs/qsolist.php:117 +#: application/views/qslprint/qsolist.php:125 +#: application/views/qso/edit_ajax.php:437 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:592 +#: application/views/search/search_result_ajax.php:247 +#: application/views/view_log/partial/log_ajax.php:208 +msgid "Manager" +msgstr "" + +#: application/views/logbookadvanced/index.php:356 +msgid "QSL recv. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:366 +msgid "LoTW sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:377 +msgid "LoTW received" +msgstr "" + +#: application/views/logbookadvanced/index.php:388 +msgid "Clublog sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:399 +msgid "Clublog received" +msgstr "" + +#: application/views/logbookadvanced/index.php:410 +msgid "eQSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:421 +msgid "eQSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:436 +msgid "QSL Images" +msgstr "" + +#: application/views/logbookadvanced/index.php:448 +msgid "Warning! Are you sure you want to delete the marked QSO(s)?" +msgstr "" + +#: application/views/logbookadvanced/index.php:451 +msgid "With selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:452 +#: application/views/qso/edit_ajax.php:622 +msgid "Update from Callbook" +msgstr "" + +#: application/views/logbookadvanced/index.php:453 +msgid "Queue Bureau" +msgstr "" + +#: application/views/logbookadvanced/index.php:454 +msgid "Queue Direct" +msgstr "" + +#: application/views/logbookadvanced/index.php:455 +msgid "Queue Electronic" +msgstr "" + +#: application/views/logbookadvanced/index.php:456 +msgid "Sent (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:457 +msgid "Sent (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:458 +msgid "Sent (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:459 +msgid "Not Sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:460 +msgid "QSL Not Required" +msgstr "" + +#: application/views/logbookadvanced/index.php:461 +msgid "Not Received" +msgstr "" + +#: application/views/logbookadvanced/index.php:462 +msgid "Received (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:463 +msgid "Received (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:464 +msgid "Received (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:465 +msgid "Create ADIF" +msgstr "" + +#: application/views/logbookadvanced/index.php:466 +msgid "Print Label" +msgstr "" + +#: application/views/logbookadvanced/index.php:467 +msgid "QSL Slideshow" +msgstr "" + +#: application/views/logbookadvanced/index.php:472 +msgid "Quicksearch with selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:477 +msgid "Search DXCC" +msgstr "" + +#: application/views/logbookadvanced/index.php:480 +msgid "Search State" +msgstr "" + +#: application/views/logbookadvanced/index.php:483 +msgid "Search Gridsquare" +msgstr "" + +#: application/views/logbookadvanced/index.php:486 +msgid "Search CQ Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:489 +msgid "Search ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:492 +msgid "Search Mode" +msgstr "" + +#: application/views/logbookadvanced/index.php:495 +msgid "Search Band" +msgstr "" + +#: application/views/logbookadvanced/index.php:498 +msgid "Search IOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:501 +msgid "Search SOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:504 +msgid "Search POTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:507 +msgid "Search WWFF" +msgstr "" + +#: application/views/logbookadvanced/index.php:510 +msgid "Search Operator" +msgstr "" + +#: application/views/logbookadvanced/index.php:516 +msgid "Quickfilters" +msgstr "" + +#: application/views/logbookadvanced/index.php:517 +msgid "QSL Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:518 +#: application/views/mode/index.php:68 +msgid "Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:520 +#: application/views/oqrs/showrequests.php:56 +msgid "# Results" +msgstr "" + +#: application/views/logbookadvanced/index.php:527 +#: application/views/qso/index.php:272 +#: application/views/station_profile/edit.php:92 +msgid "Location" +msgstr "" + +#: application/views/logbookadvanced/index.php:539 +msgid "Dupes" +msgstr "" + +#: application/views/logbookadvanced/index.php:547 +msgid "Globe map" +msgstr "" + +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/useroptions.php:26 +#: application/views/oqrs/showrequests.php:31 +msgid "De" +msgstr "" + +#: application/views/logbookadvanced/index.php:605 +#: application/views/logbookadvanced/useroptions.php:78 +msgid "QSL Msg" +msgstr "" + +#: application/views/logbookadvanced/index.php:650 +#: application/views/logbookadvanced/useroptions.php:50 +msgid "My Refs" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:59 +#: application/views/qslcard/qslcarousel.php:25 +msgid "QSL picture #" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:67 +#: application/views/qslcard/qslcarousel.php:32 +msgid "Previous" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:71 +#: application/views/qslcard/qslcarousel.php:36 +msgid "Next" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:15 +msgid "Include Via" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:16 +msgid "Column" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:152 +msgctxt "Map Options" +msgid "Layer" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:153 +msgid "Default on" +msgstr "" + +#: application/views/lookup/index.php:8 +msgid "US State" +msgstr "" + +#: application/views/lookup/index.php:10 +msgid "LoTW user" +msgstr "" + +#: application/views/lookup/index.php:46 +msgid "Choose a State" +msgstr "" + +#: application/views/lookup/lotwuser.php:2 +#: application/views/lookup/lotwuser.php:12 +#: application/views/search/result.php:46 +#: application/views/search/result.php:58 +msgid "LoTW User" +msgstr "" + +#: application/views/lookup/lotwuser.php:12 +#: application/views/search/result.php:58 +#, php-format +msgid "%d day ago" +msgid_plural "%d days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/views/lookup/lotwuser.php:12 +#: application/views/search/result.php:58 +msgid "last upload" +msgstr "" + +#: application/views/lookup/lotwuser.php:14 +msgid "No LoTW User" +msgstr "" + +#: 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 "" + +#: application/views/lotw/import.php:12 +msgid "Import Options" +msgstr "" + +#: application/views/lotw/import.php:22 +msgid "Upload a File" +msgstr "" + +#: application/views/lotw/import.php:24 +msgid "Download Report" +msgstr "" + +#: application/views/lotw/import.php:24 +#, php-format +msgid "" +"Upload the Exported ADIF file from LoTW from the %s Area, to mark QSOs as " +"confirmed on LoTW." +msgstr "" + +#: application/views/lotw/import.php:27 +msgid "Choose file" +msgstr "" + +#: application/views/lotw/import.php:36 +msgid "Pull LoTW data for me" +msgstr "" + +#: application/views/lotw/import.php:47 +msgid "Select callsign to pull LoTW confirmations for." +msgstr "" + +#: application/views/lotw/import.php:61 +msgid "" +"Wavelog will use the LoTW username and password stored in your user profile " +"to download a report from LoTW for you. The report Wavelog downloads will " +"have all confirmations since chosen date, or since your last LoTW " +"confirmation (fetched from your log), up until now." +msgstr "" + +#: application/views/lotw/import.php:64 +msgid "Import LoTW Matches" +msgstr "" + +#: application/views/lotw_views/index.php:4 +msgid "Upload folder is not writable. Please contact your admin." +msgstr "" + +#: application/views/lotw_views/index.php:10 +msgid "LoTW Import" +msgstr "" + +#: application/views/lotw_views/index.php:17 +msgid "Available Certificates" +msgstr "" + +#: application/views/lotw_views/index.php:17 +msgid "Upload Certificate" +msgstr "" + +#: application/views/lotw_views/index.php:37 +msgid "QSO Start Date" +msgstr "" + +#: application/views/lotw_views/index.php:38 +msgid "QSO End Date" +msgstr "" + +#: application/views/lotw_views/index.php:39 +msgid "Date Created" +msgstr "" + +#: application/views/lotw_views/index.php:40 +msgid "Date Expires" +msgstr "" + +#: application/views/lotw_views/index.php:42 +#: application/views/view_log/qso.php:407 +msgid "Last Upload" +msgstr "" + +#: application/views/lotw_views/index.php:87 +msgid "Expired" +msgstr "" + +#: application/views/lotw_views/index.php:89 +msgid "Expiring" +msgstr "" + +#: application/views/lotw_views/index.php:91 +msgid "Valid" +msgstr "" + +#: application/views/lotw_views/index.php:101 +#, php-format +msgid "Last success: %s" +msgstr "" + +#: application/views/lotw_views/index.php:104 +#, php-format +msgid "Last fail: %s" +msgstr "" + +#: application/views/lotw_views/index.php:110 +msgid "Not Synced" +msgstr "" + +#: application/views/lotw_views/index.php:125 +msgid "You need to upload some LoTW p12 certificates to use this area." +msgstr "" + +#: application/views/lotw_views/index.php:140 +msgid "Information" +msgstr "" + +#: application/views/lotw_views/index.php:145 +msgid "Manual Sync" +msgstr "" + +#: application/views/lotw_views/upload_cert.php:8 +#: application/views/lotw_views/upload_cert.php:31 +msgid "Upload Logbook of the World .p12 Certificate" +msgstr "" + +#: application/views/lotw_views/upload_cert.php:19 +msgid "Export .p12 File Instructions" +msgstr "" + +#: application/views/lotw_views/upload_cert.php:22 +msgid "Open TQSL and go to the Callsign Certificates Tab" +msgstr "" + +#: application/views/lotw_views/upload_cert.php:23 +msgid "Right click on desired Callsign" +msgstr "" + +#: application/views/lotw_views/upload_cert.php:24 +msgid "Click 'Save Callsign Certificate File' and do not add a password" +msgstr "" + +#: application/views/lotw_views/upload_cert.php:25 +msgid "Upload File below." +msgstr "" + +#: application/views/lotw_views/upload_cert.php:35 +msgid "Upload File" +msgstr "" + +#: application/views/mode/create.php:24 application/views/mode/edit.php:33 +msgctxt "Name of mode in ADIF-specification" +msgid "ADIF Mode" +msgstr "" + +#: application/views/mode/create.php:26 application/views/mode/edit.php:35 +msgid "Name of mode in ADIF-specification" +msgstr "" + +#: application/views/mode/create.php:30 application/views/mode/edit.php:39 +msgctxt "Name of sub-mode in ADIF-specification" +msgid "ADIF Sub-Mode" +msgstr "" + +#: application/views/mode/create.php:32 application/views/mode/edit.php:41 +msgid "Name of sub-mode in ADIF-specification" +msgstr "" + +#: application/views/mode/create.php:42 application/views/mode/edit.php:53 +msgid "Defines the QRG-segment in bandplan." +msgstr "" + +#: application/views/mode/create.php:49 application/views/mode/edit.php:61 +#: application/views/mode/index.php:43 +msgid "Not active" +msgstr "" + +#: application/views/mode/create.php:51 application/views/mode/edit.php:64 +msgid "Set to active if to be listed in Modes-list" +msgstr "" + +#: application/views/mode/create.php:54 +msgid "Create mode" +msgstr "" + +#: application/views/mode/edit.php:67 +msgid "Update mode" +msgstr "" + +#: application/views/mode/index.php:19 +msgid "" +"Using the modes list you can control which modes are shown when creating a " +"new QSO." +msgstr "" + +#: application/views/mode/index.php:22 +msgid "" +"Active modes will be shown in the QSO 'Mode' drop-down, while inactive modes " +"will be hidden and cannot be selected." +msgstr "" + +#: application/views/mode/index.php:29 +msgid "Sub-Mode" +msgstr "" + +#: application/views/mode/index.php:76 +msgid "Create a Mode" +msgstr "" + +#: application/views/notes/add.php:6 application/views/notes/add.php:12 +#: application/views/notes/edit.php:13 application/views/notes/main.php:11 +#: application/views/notes/view.php:12 +msgid "Create Note" +msgstr "" + +#: application/views/notes/add.php:29 application/views/notes/edit.php:30 +msgid "Title" +msgstr "" + +#: application/views/notes/add.php:34 application/views/notes/edit.php:35 +msgid "Category" +msgstr "" + +#: application/views/notes/add.php:36 application/views/notes/edit.php:37 +#: application/views/qso/index.php:28 +#: application/views/statistics/custom.php:17 +#: application/views/statistics/custom_result.php:18 +#: application/views/statistics/index.php:35 +#: application/views/user/edit.php:154 +msgid "General" +msgstr "" + +#: application/views/notes/add.php:37 application/views/notes/edit.php:38 +msgid "Antennas" +msgstr "" + +#: application/views/notes/add.php:43 application/views/notes/edit.php:44 +msgid "Note Contents" +msgstr "" + +#: application/views/notes/add.php:48 application/views/notes/edit.php:50 +msgid "Save Note" +msgstr "" + +#: application/views/notes/main.php:22 +msgid "Your Notes" +msgstr "" + +#: application/views/notes/main.php:32 +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 " +"than paper as you can't lose them!" +msgstr "" + +#: application/views/notes/view.php:21 +msgid "Delete Note" +msgstr "" + +#: application/views/operator/index.php:9 +msgid "" +"Please provide your personal call sign. This makes sure that QSOs are logged " +"and exported with correct operator information." +msgstr "" + +#: application/views/operator/index.php:13 +msgid "Your personal Callsign:" +msgstr "" + +#: application/views/operator/index.php:16 +msgid "You have to provide your personal callsign." +msgstr "" + +#: application/views/options/appearance.php:39 +#: application/views/user/edit.php:157 +msgid "Theme" +msgstr "" + +#: application/views/options/appearance.php:51 +msgid "Global Theme Choice, this is used when users arent logged in." +msgstr "" + +#: application/views/options/appearance.php:61 +msgid "Dashboard Notification Banner" +msgstr "" + +#: application/views/options/appearance.php:66 +msgid "This allows to disable the global notification banner on the dashboard." +msgstr "" + +#: application/views/options/appearance.php:70 +msgid "Dashboard Map" +msgstr "" + +#: application/views/options/appearance.php:74 +msgid "Map at right" +msgstr "" + +#: application/views/options/appearance.php:76 +msgid "" +"This allows the map on the dashboard to be disabled or placed on the right." +msgstr "" + +#: application/views/options/appearance.php:80 +msgid "Logbook Map" +msgstr "" + +#: application/views/options/appearance.php:85 +msgid "This allows to disable the map in the logbook." +msgstr "" + +#: application/views/options/appearance.php:89 +msgid "Public Maps" +msgstr "" + +#: application/views/options/appearance.php:94 +msgid "" +"This allows to disable all maps in the public view. This affects the main " +"map and the gridsquares map." +msgstr "" + +#: application/views/options/appearance.php:98 +msgid "Public Github Button" +msgstr "" + +#: application/views/options/appearance.php:103 +msgid "This enables the button to Wavelog's Github page in the public view" +msgstr "" + +#: application/views/options/appearance.php:107 +msgid "Public Login Button" +msgstr "" + +#: application/views/options/appearance.php:112 +msgid "This enables the button to login to Wavelog in the public view" +msgstr "" + +#: application/views/options/dxcluster.php:38 +msgid "Provider of DXClusterCache" +msgstr "" + +#: application/views/options/dxcluster.php:39 +msgid "DXClusterAPI" +msgstr "" + +#: application/views/options/dxcluster.php:39 +#, php-format +msgid "" +"The Provider of the DXCluster-Cache. You can set up your own Cache with %s " +"or use a public one" +msgstr "" + +#: application/views/options/dxcluster.php:41 +#, php-format +msgid "URL of the DXCluster-Cache. e.g. %s" +msgstr "" + +#: application/views/options/dxcluster.php:44 +msgid "Maximum Age of spots taken care of" +msgstr "" + +#: application/views/options/dxcluster.php:46 +msgid "2 Hours" +msgstr "" + +#: application/views/options/dxcluster.php:47 +msgid "60 Minutes" +msgstr "" + +#: application/views/options/dxcluster.php:48 +msgid "30 Minutes" +msgstr "" + +#: application/views/options/dxcluster.php:50 +msgid "The Age in Minutes of spots, that will be taken care at bandplan/lookup" +msgstr "" + +#: application/views/options/dxcluster.php:53 +msgid "Show spots which are spotted from following continent" +msgstr "" + +#: application/views/options/dxcluster.php:63 +msgid "Only spots by spotters from this continent are shown" +msgstr "" + +#: application/views/options/email.php:45 +msgid "Outgoing Protocol" +msgstr "" + +#: application/views/options/email.php:50 +msgid "The protocol that will be used to send out emails." +msgstr "" + +#: application/views/options/email.php:54 +msgid "SMTP Encryption" +msgstr "" + +#: application/views/options/email.php:56 +msgid "No Encryption" +msgstr "" + +#: application/views/options/email.php:60 +msgid "Choose whether emails should be sent with TLS or SSL." +msgstr "" + +#: application/views/options/email.php:64 +msgid "Email Sender Name" +msgstr "" + +#: application/views/options/email.php:67 +msgid "The email sender name, e.g. 'Wavelog'" +msgstr "" + +#: application/views/options/email.php:72 application/views/user/edit.php:58 +#: application/views/user/forgot_password.php:47 +msgid "Email Address" +msgstr "" + +#: application/views/options/email.php:75 +msgid "" +"The email address from which the emails are sent, e.g. 'wavelog@example.com'" +msgstr "" + +#: application/views/options/email.php:80 +msgid "SMTP Host" +msgstr "" + +#: application/views/options/email.php:83 +msgid "" +"The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' " +"or 'tls://')" +msgstr "" + +#: application/views/options/email.php:88 +msgid "SMTP Port" +msgstr "" + +#: application/views/options/email.php:91 +msgid "" +"The SMTP port of the mail server, e.g. if TLS is used -> '587', if SSL is " +"used -> '465'" +msgstr "" + +#: application/views/options/email.php:96 +msgid "SMTP Username" +msgstr "" + +#: application/views/options/email.php:99 +msgid "" +"The username to log in to the mail server, usually this is the email address " +"that is used." +msgstr "" + +#: application/views/options/email.php:104 +msgid "SMTP Password" +msgstr "" + +#: application/views/options/email.php:107 +msgid "The password to log in to the mail server." +msgstr "" + +#: application/views/options/email.php:116 +msgid "Send Test-Mail" +msgstr "" + +#: application/views/options/email.php:117 +msgid "The email will be sent to the address defined in your account settings." +msgstr "" + +#: application/views/options/index.php:13 +msgid "" +"Wavelog Options are global settings used for all users of the installation, " +"which are overridden if there's a setting on a user level." +msgstr "" + +#: application/views/options/oqrs.php:39 +msgid "Global text" +msgstr "" + +#: application/views/options/oqrs.php:41 +msgid "" +"This text is an optional text that can be displayed on top of the OQRS page." +msgstr "" + +#: application/views/options/oqrs.php:45 +msgid "Grouped search" +msgstr "" + +#: application/views/options/oqrs.php:47 application/views/options/oqrs.php:56 +msgid "Off" +msgstr "" + +#: application/views/options/oqrs.php:48 application/views/options/oqrs.php:57 +msgid "On" +msgstr "" + +#: application/views/options/oqrs.php:50 +msgid "" +"When this is on, all station locations with OQRS active, will be searched at " +"once." +msgstr "" + +#: application/views/options/oqrs.php:54 +msgid "Show station location name in grouped search results" +msgstr "" + +#: application/views/options/oqrs.php:59 +msgid "" +"If grouped search is ON, you can decide if the name of the station location " +"shall be shown in the results table." +msgstr "" + +#: application/views/options/radios.php:38 +msgid "Radio Timeout Warning" +msgstr "" + +#: application/views/options/radios.php:39 +msgid "" +"The Radio Timeout Warning is used on the QSO entry panel to alert you to " +"radio interface disconnects." +msgstr "" + +#: application/views/options/radios.php:41 +msgid "This number is in seconds." +msgstr "" + +#: application/views/options/sidebar.php:5 +msgid "Radios" +msgstr "" + +#: application/views/options/version_dialog.php:47 +msgid "Version Info Header" +msgstr "" + +#: application/views/options/version_dialog.php:49 +msgid "You can change the header of the version info dialog." +msgstr "" + +#: application/views/options/version_dialog.php:53 +msgid "Version Info Mode" +msgstr "" + +#: application/views/options/version_dialog.php:57 +msgid "Only Release Notes" +msgstr "" + +#: application/views/options/version_dialog.php:60 +msgid "Only Custom Text" +msgstr "" + +#: application/views/options/version_dialog.php:63 +msgid "Release Notes and Custom Text" +msgstr "" + +#: application/views/options/version_dialog.php:68 +msgid "" +"The Version Info is shown to every user. The user has the option to dismiss " +"the dialog after he read it. Select if you want to show only release notes " +"(fetched from github), only custom text or both." +msgstr "" + +#: application/views/options/version_dialog.php:72 +msgid "Version Info Custom Text" +msgstr "" + +#: application/views/options/version_dialog.php:74 +msgid "This is the custom text which is shown in the dialog." +msgstr "" + +#: application/views/options/version_dialog.php:84 +msgid "Show/Hide Version Info Dialog for all Users" +msgstr "" + +#: application/views/options/version_dialog.php:97 +msgid "Show for all Users" +msgstr "" + +#: application/views/options/version_dialog.php:99 +msgid "" +"This will show the version dialog automatically to all users on their next " +"page reload." +msgstr "" + +#: application/views/options/version_dialog.php:104 +msgid "Hide for all Users" +msgstr "" + +#: application/views/options/version_dialog.php:106 +msgid "" +"This will deactivate the automatic popup of the version dialog for all users." +msgstr "" + +#: application/views/oqrs/index.php:9 +msgid "Request a QSL card" +msgstr "" + +#: application/views/oqrs/index.php:26 +msgid "Enter your callsign" +msgstr "" + +#: application/views/oqrs/index.php:26 +msgid "This search will search in all station locations where OQRS is active." +msgstr "" + +#: application/views/oqrs/index.php:53 +msgid "Select station" +msgstr "" + +#: application/views/oqrs/notinlogform.php:2 +msgid "" +"If you can't find your QSO in the log, please fill out the form below. You " +"will be contacted after the log has been checked." +msgstr "" + +#: application/views/oqrs/notinlogform.php:9 +#: application/views/oqrs/request.php:16 +#: application/views/oqrs/request_grouped.php:9 +msgid "Time (UTC)" +msgstr "" + +#: application/views/oqrs/notinlogform.php:24 +msgid "Add line" +msgstr "" + +#: application/views/oqrs/notinlogform.php:30 +#: application/views/oqrs/request.php:56 +#: application/views/oqrs/request_grouped.php:60 +msgid "Any extra information we need to know about?" +msgstr "" + +#: application/views/oqrs/notinlogform.php:34 +#: application/views/oqrs/request.php:60 +#: application/views/oqrs/request_grouped.php:64 +#: application/views/oqrs/showrequests.php:87 +#: application/views/user/index.php:48 application/views/user/profile.php:24 +msgid "E-mail" +msgstr "" + +#: application/views/oqrs/notinlogform.php:36 +#: application/views/oqrs/request.php:62 +#: application/views/oqrs/request_grouped.php:66 +msgid "Your e-mail address where we can contact you" +msgstr "" + +#: application/views/oqrs/notinlogform.php:40 +msgid "Send not in log request" +msgstr "" + +#: application/views/oqrs/qsolist.php:11 +#: application/views/qslprint/qslprint.php:29 +#: application/views/qslprint/qsolist.php:13 +#: application/views/qso/edit_ajax.php:38 application/views/qso/index.php:24 +#: application/views/search/cqzones_result.php:16 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/search_result_ajax.php:127 +#: application/views/user/edit.php:478 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:88 +#: application/views/view_log/qso.php:506 +#: application/views/view_log/qso.php:510 +#: application/views/view_log/qso.php:514 +#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:531 +#: application/views/view_log/qso.php:538 +#: application/views/view_log/qso.php:545 +#: application/views/view_log/qso.php:552 +#: application/views/view_log/qso.php:559 +#: application/views/view_log/qso.php:566 +#: application/views/view_log/qso.php:573 +#: application/views/view_log/qso.php:580 +#: application/views/view_log/qso.php:585 +msgid "Station" +msgstr "" + +#: application/views/oqrs/qsolist.php:75 +#: application/views/qslprint/qslprint.php:28 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:83 +#: application/views/qso/index.php:598 +#: application/views/search/search_result_ajax.php:205 +#: application/views/view_log/partial/log_ajax.php:170 +#: src/QSLManager/QSO.php:302 +msgid "Via" +msgstr "" + +#: application/views/oqrs/qsolist.php:188 +#: application/views/qslprint/qsolist.php:196 +msgid "Add to print queue" +msgstr "" + +#: application/views/oqrs/qsolist.php:197 +msgid "No QSO's were found. It seems you were not active at this time." +msgstr "" + +#: application/views/oqrs/request.php:9 +#: application/views/oqrs/request_grouped.php:3 +msgid "" +"The following QSO(s) were found. Please fill out the date and time and " +"submit your request." +msgstr "" + +#: application/views/oqrs/request.php:40 +#: application/views/oqrs/request_grouped.php:44 +msgid "QSL Route" +msgstr "" + +#: application/views/oqrs/request.php:50 +#: application/views/oqrs/request_grouped.php:54 +msgid "Direct (write address in message below)" +msgstr "" + +#: application/views/oqrs/request.php:66 +#: application/views/oqrs/request_grouped.php:70 +msgid "Submit request" +msgstr "" + +#: application/views/oqrs/request_grouped.php:16 +msgid "Station Name" +msgstr "" + +#: application/views/oqrs/request_grouped.php:73 +#: application/views/oqrs/result.php:40 +msgid "No QSOs found in the log." +msgstr "" + +#: application/views/oqrs/result.php:5 +#, php-format +msgid "Log search result for %s" +msgstr "" + +#: application/views/oqrs/result.php:30 +#, php-format +msgid "has %d band slot" +msgid_plural "has %d band slots" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/views/oqrs/result.php:33 +#, php-format +msgid "and has %d QSO in the log" +msgid_plural "and has %d QSOs in the log" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/views/oqrs/result.php:37 +msgid "Request QSL" +msgstr "" + +#: application/views/oqrs/result.php:44 +msgid "Not in log?" +msgstr "" + +#: application/views/oqrs/showrequests.php:5 +#: application/views/oqrs/showrequests.php:50 +msgid "Open request" +msgstr "" + +#: application/views/oqrs/showrequests.php:6 +#: application/views/oqrs/showrequests.php:51 +msgid "Not in log request" +msgstr "" + +#: application/views/oqrs/showrequests.php:7 +#: application/views/oqrs/showrequests.php:52 +msgid "Request done" +msgstr "" + +#: application/views/oqrs/showrequests.php:47 +msgid "OQRS Status" +msgstr "" + +#: application/views/oqrs/showrequests.php:69 +msgid "With selected" +msgstr "" + +#: application/views/oqrs/showrequests.php:70 +msgid "Mark as done" +msgstr "" + +#: application/views/oqrs/showrequests.php:80 +msgid "Time of request" +msgstr "" + +#: application/views/oqrs/showrequests.php:81 +#: application/views/simplefle/index.php:74 +msgid "QSO Date" +msgstr "" + +#: application/views/oqrs/showrequests.php:82 +msgid "QSO Time" +msgstr "" + +#: application/views/oqrs/showrequests.php:85 +msgid "Request callsign" +msgstr "" + +#: application/views/oqrs/showrequests.php:89 +msgid "QSL route" +msgstr "" + +#: application/views/oqrs/showrequests.php:90 +msgid "Check log" +msgstr "" + +#: application/views/public_search/empty.php:2 +#: application/views/public_search/result.php:2 +msgid "Searching for" +msgstr "" + +#: application/views/qrbcalc/index.php:3 +msgid "Locator 1" +msgstr "" + +#: application/views/qrbcalc/index.php:10 +msgid "Locator 2" +msgstr "" + +#: application/views/qrbcalc/index.php:20 +msgid "Calculate" +msgstr "" + +#: application/views/qrz/export.php:27 +msgid "" +"Here you can see all QSOs which have not been previously uploaded to a QRZ " +"logbook." +msgstr "" + +#: application/views/qrz/export.php:28 +msgid "" +"You need to set a QRZ Logbook API key in your station profile. Only station " +"profiles with an API Key set are displayed." +msgstr "" + +#: application/views/qrz/export.php:73 +msgid "" +"If no startdate is given then all QSOs after last confirmation will be " +"downloaded/updated!" +msgstr "" + +#: application/views/qrz/export.php:81 +msgid "Download from QRZ Logbook" +msgstr "" + +#: application/views/qrz/export.php:107 +msgid "Mark QSOs as exported to QRZ Logbook" +msgstr "" + +#: application/views/qrz/mark_qrz.php:16 +msgid "The QSOs are marked as exported to QRZ Logbook." +msgstr "" + +#: application/views/qslcard/index.php:10 +#, php-format +msgid "You are using %s of disk space to store QSL Card assets" +msgstr "" + +#: application/views/qslcard/index.php:67 +msgid "Add Qsos" +msgstr "" + +#: application/views/qslcard/searchresult.php:193 +msgid "Add to QSL" +msgstr "" + +#: application/views/qslmanagement/index.php:13 +msgid "Incoming QSL Cards" +msgstr "" + +#: application/views/qslmanagement/index.php:25 +msgid "Report" +msgstr "" + +#: application/views/qslmanagement/index.php:26 +msgid "Option" +msgstr "" + +#: application/views/qslmanagement/index.php:46 +msgid "Outgoing QSL Cards" +msgstr "" + +#: application/views/qslprint/index.php:16 +msgid "Export Requested QSLs for Printing" +msgstr "" + +#: application/views/qslprint/index.php:29 +msgid "" +"Here you can export requested QSLs as CSV or ADIF files for printing and, " +"optionally, mark them as sent." +msgstr "" + +#: application/views/qslprint/index.php:30 +msgid "" +"Requested QSLs are any QSOs with a value of 'Requested' or 'Queued' in their " +"'QSL Sent' field." +msgstr "" + +#: application/views/qslprint/qslprint.php:30 +#: application/views/qslprint/qsolist.php:15 +msgid "Send Method" +msgstr "" + +#: application/views/qslprint/qslprint.php:31 +msgid "Mark as sent" +msgstr "" + +#: application/views/qslprint/qslprint.php:32 +msgid "Remove" +msgstr "" + +#: application/views/qslprint/qslprint.php:33 +#: application/views/simplefle/index.php:139 +msgid "QSO List" +msgstr "" + +#: application/views/qslprint/qslprint.php:67 +msgid "Mark selected QSOs as printed" +msgstr "" + +#: application/views/qslprint/qslprint.php:69 +msgid "Remove selected QSOs from the queue" +msgstr "" + +#: application/views/qslprint/qslprint.php:71 +msgid "Export CSV-file" +msgstr "" + +#: application/views/qslprint/qslprint.php:71 +msgid "Export requested QSLs to CSV-file" +msgstr "" + +#: application/views/qslprint/qslprint.php:73 +msgid "Export ADIF" +msgstr "" + +#: application/views/qslprint/qslprint.php:73 +msgid "Export requested QSLs to ADIF-file" +msgstr "" + +#: application/views/qslprint/qslprint.php:75 +msgid "Mark QSLs as printed" +msgstr "" + +#: application/views/qslprint/qslprint.php:75 +msgid "Mark requested QSLs as sent" +msgstr "" + +#: application/views/qslprint/qslprint.php:79 +msgid "No QSLs to print were found!" +msgstr "" + +#: application/views/qslprint/qsolist.php:205 +msgid "" +"No additional QSO's were found. That means they are probably already in the " +"queue." +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 +#, 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 +#, php-format +msgid "Function %d - Macro" +msgstr "" + +#: application/views/qso/edit_ajax.php:34 +msgid "Sats" +msgstr "" + +#: application/views/qso/edit_ajax.php:51 +msgid "Start Date/Time" +msgstr "" + +#: application/views/qso/edit_ajax.php:56 +msgid "End Date/Time" +msgstr "" + +#: application/views/qso/edit_ajax.php:76 +msgid "RX Frequency" +msgstr "" + +#: application/views/qso/edit_ajax.php:99 +msgid "RX Band" +msgstr "" + +#: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:346 +#: application/views/reg1test/index.php:114 +#: application/views/view_log/qso.php:545 +msgid "Transmit Power (W)" +msgstr "" + +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:348 +msgid "Give power value in Watts. Include only numbers in the input." +msgstr "" + +#: application/views/qso/edit_ajax.php:166 +msgid "Used for VUCC MultiGrids" +msgstr "" + +#: application/views/qso/edit_ajax.php:258 +msgid "Sat Name" +msgstr "" + +#: application/views/qso/edit_ajax.php:263 +msgid "Sat Mode" +msgstr "" + +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:545 +msgid "Antenna Azimuth (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:547 +msgid "Antenna azimuth in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:274 application/views/qso/index.php:551 +msgid "Antenna Elevation (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:276 application/views/qso/index.php:553 +msgid "Antenna elevation in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:383 application/views/qso/index.php:255 +#: application/views/qso/index.php:510 application/views/user/edit.php:599 +#: application/views/view_log/qso.php:335 +#: application/views/view_log/qso.php:585 +msgid "Sig Info" +msgstr "" + +#: application/views/qso/edit_ajax.php:396 +msgid "Notes (for internal usage only)" +msgstr "" + +#: application/views/qso/edit_ajax.php:430 +msgid "Sent Method" +msgstr "" + +#: application/views/qso/edit_ajax.php:433 +#: application/views/qso/edit_ajax.php:466 application/views/qso/index.php:585 +#: application/views/qso/index.php:588 +msgid "Method" +msgstr "" + +#: application/views/qso/edit_ajax.php:443 +msgid "Sent Via" +msgstr "" + +#: application/views/qso/edit_ajax.php:457 +#: application/views/qso/edit_ajax.php:498 +#: application/views/qso/edit_ajax.php:537 +msgid "Verified (Match)" +msgstr "" + +#: application/views/qso/edit_ajax.php:463 +msgid "Received Method" +msgstr "" + +#: application/views/qso/edit_ajax.php:504 application/views/qso/index.php:605 +msgid "This note content is exported to QSL services like eqsl.cc." +msgstr "" + +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:608 +msgid "Get the default message for eQSL, for this station." +msgstr "" + +#: application/views/qso/edit_ajax.php:557 +msgid "Change Station Profile" +msgstr "" + +#: application/views/qso/edit_ajax.php:603 +msgid "Exchange (R)" +msgstr "" + +#: application/views/qso/edit_ajax.php:608 +msgid "Exchange (S)" +msgstr "" + +#: application/views/qso/edit_ajax.php:620 +#: application/views/search/search_result_ajax.php:432 +#: application/views/view_log/partial/log.php:156 +#: application/views/view_log/partial/log_ajax.php:348 +msgid "Delete QSO" +msgstr "" + +#: application/views/qso/edit_ajax.php:623 +msgid "Save changes" +msgstr "" + +#: application/views/qso/index.php:4 +msgid "TimeOff is less than TimeOn" +msgstr "" + +#: application/views/qso/index.php:5 application/views/qso/index.php:718 +msgid "Previous Contacts" +msgstr "" + +#: application/views/qso/index.php:6 +msgid "times worked before" +msgstr "" + +#: application/views/qso/index.php:7 +msgid "Not worked before" +msgstr "" + +#: application/views/qso/index.php:20 +msgid "LIVE" +msgstr "" + +#: application/views/qso/index.php:20 +msgid "POST" +msgstr "" + +#: application/views/qso/index.php:33 +msgid "Sat" +msgstr "" + +#: application/views/qso/index.php:48 +msgid "Add Band/Mode to Favs" +msgstr "" + +#: application/views/qso/index.php:69 +msgid "Time on" +msgstr "" + +#: application/views/qso/index.php:81 +msgid "Time off" +msgstr "" + +#: application/views/qso/index.php:124 +msgid "Search DXCluster for latest Spot" +msgstr "" + +#: application/views/qso/index.php:196 application/views/qso/index.php:449 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 +#: application/views/user/edit.php:583 application/views/view_log/qso.php:285 +#: application/views/view_log/qso.php:552 +msgid "IOTA Reference" +msgstr "" + +#: application/views/qso/index.php:212 application/views/qso/index.php:466 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 +#: application/views/user/edit.php:587 application/views/view_log/qso.php:292 +#: application/views/view_log/qso.php:559 +msgid "SOTA Reference" +msgstr "" + +#: application/views/qso/index.php:322 application/views/view_log/qso.php:100 +msgid "Frequency (RX)" +msgstr "" + +#: application/views/qso/index.php:327 +msgid "Band (RX)" +msgstr "" + +#: application/views/qso/index.php:468 +msgid "For example: GM/NS-001." +msgstr "" + +#: application/views/qso/index.php:481 +msgid "For example: DLFF-0069." +msgstr "" + +#: application/views/qso/index.php:494 +msgid "For example: PA-0150. Multiple values allowed." +msgstr "" + +#: application/views/qso/index.php:506 +msgid "For example: GMA" +msgstr "" + +#: application/views/qso/index.php:512 +msgid "For example: DA/NW-357" +msgstr "" + +#: application/views/qso/index.php:520 +msgid "For example: Q03" +msgstr "" + +#: application/views/qso/index.php:529 application/views/view_log/qso.php:210 +msgid "Satellite Name" +msgstr "" + +#: application/views/qso/index.php:537 application/views/view_log/qso.php:217 +msgid "Satellite Mode" +msgstr "" + +#: application/views/qso/index.php:560 +msgid "" +"Note content is used within Wavelog only and is not exported to other " +"services." +msgstr "" + +#: application/views/qso/index.php:626 +msgid "Reset to Default" +msgstr "" + +#: application/views/qso/index.php:667 +msgid "Winkey" +msgstr "" + +#: application/views/qso/index.php:669 +msgid "Connect" +msgstr "" + +#: application/views/qso/index.php:678 +msgid "Stop" +msgstr "" + +#: application/views/qso/index.php:679 +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:680 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:686 +msgid "CW Speed" +msgstr "" + +#: application/views/qso/index.php:691 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:701 +msgid "Suggestions" +msgstr "" + +#: application/views/qso/index.php:708 +msgid "Profile Picture" +msgstr "" + +#: application/views/qso/index.php:732 +msgid "Max. 5 previous contacts are shown" +msgstr "" + +#: application/views/radio/index.php:16 +msgid "Active Radios" +msgstr "" + +#: application/views/radio/index.php:19 +msgid "Below is a list of active radios that are connected to Wavelog." +msgstr "" + +#: application/views/radio/index.php:20 +msgid "" +"If you haven't connected any radios yet, see the API page to generate API " +"keys." +msgstr "" + +#: application/views/radio/index.php:22 application/views/search/filter.php:69 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "" + +#: application/views/radio/index.php:22 +msgid "radio functions" +msgstr "" + +#: application/views/radio/index.php:27 +msgid "Please wait..." +msgstr "" + +#: application/views/reg1test/index.php:6 +msgid "Select Band" +msgstr "" + +#: application/views/reg1test/index.php:8 +msgid "" +"Bands below 50Mhz are not valid for the EDI REG1TEST format and will produce " +"invalid files." +msgstr "" + +#: application/views/reg1test/index.php:18 +msgid "Export a contest to a REG1TEST EDI log" +msgstr "" + +#: application/views/reg1test/index.php:48 +msgid "Sent Exchange" +msgstr "" + +#: application/views/reg1test/index.php:50 +msgid "" +"The exchange which was sent during the contest. Can be any type of " +"information, e.g. Province, DOK, County, State, Power, Name. Max. length: 6 " +"characters." +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:66 +msgid "Callsign of responsible operator" +msgstr "" + +#: application/views/reg1test/index.php:72 +msgid "" +"List of all operators. Seperated with a semicolon ';'. The responsible " +"operator is not needed here." +msgstr "" + +#: application/views/reg1test/index.php:75 +msgid "Contest Address 1" +msgstr "" + +#: application/views/reg1test/index.php:77 +msgid "Address of the QTH used during the contest." +msgstr "" + +#: application/views/reg1test/index.php:80 +msgid "Contest Address 2" +msgstr "" + +#: application/views/reg1test/index.php:84 +msgid "Operator Address 1" +msgstr "" + +#: application/views/reg1test/index.php:86 +msgid "Address of the responsible operator." +msgstr "" + +#: application/views/reg1test/index.php:89 +msgid "Operator Address 2" +msgstr "" + +#: application/views/reg1test/index.php:93 +msgid "Operator Address Postalcode" +msgstr "" + +#: application/views/reg1test/index.php:97 +msgid "Operator Address City" +msgstr "" + +#: application/views/reg1test/index.php:101 +msgid "Operator Address Country" +msgstr "" + +#: application/views/reg1test/index.php:105 +msgid "Operator Phone Number" +msgstr "" + +#: application/views/reg1test/index.php:109 +msgid "Transmit Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:111 +msgid "Short description of the used equipment." +msgstr "" + +#: application/views/reg1test/index.php:116 +msgid "TX Power during the contest in Watt." +msgstr "" + +#: application/views/reg1test/index.php:119 +msgid "Receive Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:121 +msgid "If you used another gear for RX, then describe it here." +msgstr "" + +#: application/views/reg1test/index.php:124 +msgid "Antenna Description" +msgstr "" + +#: application/views/reg1test/index.php:126 +msgid "What kind of antenna was used." +msgstr "" + +#: application/views/reg1test/index.php:129 +msgid "Antenna Height Above Ground (m)" +msgstr "" + +#: application/views/reg1test/index.php:131 +msgid "Height of the antenna above the ground." +msgstr "" + +#: application/views/reg1test/index.php:134 +msgid "Band multiplicator" +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:141 +msgid "Any other remarks." +msgstr "" + +#: application/views/satellite/create.php:23 +#: application/views/satellite/edit.php:7 +msgid "Satellite name" +msgstr "" + +#: application/views/satellite/create.php:25 +msgid "The name of the Satellite" +msgstr "" + +#: application/views/satellite/create.php:28 +#: application/views/satellite/edit.php:12 +#: application/views/satellite/index.php:22 +msgid "Export Name" +msgstr "" + +#: application/views/satellite/create.php:30 +#: application/views/satellite/edit.php:14 +msgid "If external services uses another name for the satellite, like LoTW" +msgstr "" + +#: application/views/satellite/create.php:37 +#: application/views/satellite/edit.php:21 +msgid "Enter which orbit the satellite has (LEO, MEO, GEO)" +msgstr "" + +#: application/views/satellite/create.php:40 +msgid "Satellite mode name" +msgstr "" + +#: application/views/satellite/create.php:42 +msgid "Enter satellite mode" +msgstr "" + +#: application/views/satellite/create.php:47 +#: application/views/satellite/edit.php:35 +msgid "Uplink mode" +msgstr "" + +#: application/views/satellite/create.php:49 +msgid "Enter modulation used for uplink" +msgstr "" + +#: application/views/satellite/create.php:52 +#: application/views/satellite/edit.php:36 +msgid "Uplink frequency" +msgstr "" + +#: application/views/satellite/create.php:54 +msgid "Enter frequency (in Hz) used for uplink" +msgstr "" + +#: application/views/satellite/create.php:59 +#: application/views/satellite/edit.php:37 +msgid "Downlink mode" +msgstr "" + +#: application/views/satellite/create.php:61 +msgid "Enter modulation used for downlink" +msgstr "" + +#: application/views/satellite/create.php:64 +#: application/views/satellite/edit.php:38 +msgid "Downlink frequency" +msgstr "" + +#: application/views/satellite/create.php:66 +msgid "Enter frequency (in Hz) used for downlink" +msgstr "" + +#: application/views/satellite/edit.php:9 +msgid "Name of the Satellite" +msgstr "" + +#: application/views/satellite/edit.php:25 +msgid "Save satellite" +msgstr "" + +#: application/views/satellite/edit.php:59 +msgid "Add satellite mode" +msgstr "" + +#: application/views/satellite/index.php:15 +msgid "Add a satellite" +msgstr "" + +#: application/views/satellite/pass.php:2 +msgid "Satellite passes" +msgstr "" + +#: application/views/satellite/pass.php:8 +msgid "Min. Satellite Elevation" +msgstr "" + +#: application/views/satellite/pass.php:12 +msgid "Min. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:20 +msgid "Max. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:32 +msgid "Altitude (meters)" +msgstr "" + +#: application/views/satellite/pass.php:36 application/views/user/edit.php:179 +msgid "Timezone" +msgstr "" + +#: application/views/satellite/pass.php:479 +msgid "Min. time" +msgstr "" + +#: application/views/satellite/pass.php:487 +msgid "Max. time" +msgstr "" + +#: application/views/satellite/pass.php:504 +msgid "Load predictions" +msgstr "" + +#: application/views/satellite/passtable.php:6 +msgid "AOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:7 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "" + +#: application/views/satellite/passtable.php:8 +msgid "AOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:9 +msgid "AOS El" +msgstr "" + +#: application/views/satellite/passtable.php:10 +msgid "Max El" +msgstr "" + +#: application/views/satellite/passtable.php:11 +msgid "LOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:12 +msgid "LOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:13 +msgid "LOS El" +msgstr "" + +#: application/views/sattimers/index.php:15 +#, php-format +msgid "" +"This data comes from %s and is calculated for the current stationlocation " +"grid %s." +msgstr "" + +#: application/views/sattimers/index.php:40 +msgid "Time(d)-Out" +msgstr "" + +#: application/views/sattimers/index.php:43 +#: application/views/sattimers/index.php:44 +msgid "Azimuth" +msgstr "" + +#: application/views/sattimers/index.php:45 +msgid "Max Elevation" +msgstr "" + +#: application/views/search/cqzones.php:5 +#: application/views/search/lotw_unconfirmed.php:5 +#: application/views/search/main.php:5 +msgid "Ready to find a QSO?" +msgstr "" + +#: application/views/search/cqzones.php:15 +#: application/views/search/filter.php:4 application/views/search/filter.php:23 +#: application/views/search/lotw_unconfirmed.php:15 +#: application/views/search/main.php:15 +msgid "Advanced Search" +msgstr "" + +#: application/views/search/cqzones.php:18 +#: application/views/search/filter.php:26 +#: application/views/search/lotw_unconfirmed.php:18 +#: application/views/search/main.php:18 +msgid "Incorrect CQ Zones" +msgstr "" + +#: application/views/search/cqzones.php:21 +#: application/views/search/filter.php:29 +#: application/views/search/lotw_unconfirmed.php:21 +#: application/views/search/main.php:21 +msgid "QSOs unconfirmed on LoTW" +msgstr "" + +#: application/views/search/cqzones.php:28 +msgid "Station location:" +msgstr "" + +#: application/views/search/cqzones_result.php:3 +msgid "" +"The following QSOs were found to have an incorrect CQ zone that this DXCC " +"normally has:" +msgstr "" + +#: application/views/search/cqzones_result.php:14 +msgid "DXCC CQ Zone" +msgstr "" + +#: application/views/search/cqzones_result.php:51 +msgid "No incorrect CQ Zones were found." +msgstr "" + +#: application/views/search/filter.php:43 +msgid "Save query" +msgstr "" + +#: application/views/search/filter.php:50 +msgid "Stored queries" +msgstr "" + +#: application/views/search/filter.php:69 +msgid "search filter functions" +msgstr "" + +#: application/views/search/filter.php:79 +msgid "Search Results" +msgstr "" + +#: application/views/search/lotw_unconfirmed.php:26 +msgid "" +"The search displays QSOs which are unconfirmed on LoTW, but the callsign " +"worked has uploaded to LoTW after your QSO date." +msgstr "" + +#: application/views/search/lotw_unconfirmed.php:29 +msgid "Station location" +msgstr "" + +#: application/views/search/lotw_unconfirmed_result.php:10 +msgid "Last LoTW upload" +msgstr "" + +#: application/views/search/lotw_unconfirmed_result.php:41 +msgid "No QSOs with outstanding LoTW upload were found." +msgstr "" + +#: application/views/search/main.php:28 +msgid "Callsign / Gridsquare" +msgstr "" + +#: application/views/search/result.php:2 +#, php-format +msgid "Results for %s" +msgstr "" + +#: application/views/search/result.php:4 +#, php-format +msgid "Sorry, but we didn't find any past QSOs with %s" +msgstr "" + +#: application/views/search/result.php:6 +#, php-format +msgid "Callbook Search for %s" +msgstr "" + +#: application/views/search/result_search.php:9 +#: application/views/statistics/custom_result.php:90 +#: application/views/widgets/qsos.php:31 +msgid "Rcvd" +msgstr "" + +#: application/views/search/search_result_ajax.php:409 +#: application/views/view_log/partial/log.php:140 +#: application/views/view_log/partial/log_ajax.php:325 +msgid "Mark QSL Sent (Bureau)" +msgstr "" + +#: application/views/search/search_result_ajax.php:410 +#: application/views/view_log/partial/log.php:141 +#: application/views/view_log/partial/log_ajax.php:326 +msgid "Mark QSL Sent (Direct)" +msgstr "" + +#: application/views/search/search_result_ajax.php:417 +#: application/views/view_log/partial/log.php:148 +#: application/views/view_log/partial/log_ajax.php:335 +#: application/views/view_log/qso.php:655 +msgid "Mark QSL Received (Bureau)" +msgstr "" + +#: application/views/search/search_result_ajax.php:418 +#: application/views/view_log/partial/log.php:149 +#: application/views/view_log/partial/log_ajax.php:336 +#: application/views/view_log/qso.php:657 +msgid "Mark QSL Received (Direct)" +msgstr "" + +#: application/views/search/search_result_ajax.php:419 +#: application/views/view_log/partial/log.php:150 +#: application/views/view_log/partial/log_ajax.php:327 +msgid "Mark QSL Card Requested" +msgstr "" + +#: application/views/search/search_result_ajax.php:420 +#: application/views/view_log/partial/log.php:151 +#: application/views/view_log/partial/log_ajax.php:328 +#: application/views/view_log/qso.php:669 +msgid "Mark QSL Card Not Required" +msgstr "" + +#: application/views/search/search_result_ajax.php:426 +#: application/views/view_log/partial/log_ajax.php:342 +msgid "Lookup on QRZ.com" +msgstr "" + +#: application/views/search/search_result_ajax.php:428 +#: application/views/view_log/partial/log_ajax.php:344 +msgid "Lookup on HamQTH" +msgstr "" + +#: application/views/search/stored_queries.php:9 +msgid "Query" +msgstr "" + +#: application/views/simplefle/index.php:13 +msgid "Simple Fast Log Entry (FLE)" +msgstr "" + +#: application/views/simplefle/index.php:14 +msgid "" +"'Fast Log Entry', or simply 'FLE' is a system to log QSOs very quickly and " +"efficiently. Due to its syntax, only a minimum of input is required to log " +"many QSOs with as little effort as possible." +msgstr "" + +#: application/views/simplefle/index.php:15 +msgid "" +"FLE was originally written by DF3CB. He offers a program for Windows on his " +"website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides " +"a web interface to log QSOs." +msgstr "" + +#: application/views/simplefle/index.php:16 +#, php-format +msgid "" +"A common use-case is if you have to import your paperlogs from an outdoor " +"session and now SimpleFLE is also available in Wavelog. Information about " +"the syntax and how FLE works can be found %s." +msgstr "" + +#: application/views/simplefle/index.php:17 +#: application/views/simplefle/index.php:176 +msgid "Syntax Help" +msgstr "" + +#: application/views/simplefle/index.php:18 +msgid "Syntax for FLE" +msgstr "" + +#: application/views/simplefle/index.php:19 +msgid "Close and Load Sample Data" +msgstr "" + +#: application/views/simplefle/index.php:23 +msgid "Band is missing!" +msgstr "" + +#: application/views/simplefle/index.php:24 +msgid "Mode is missing!" +msgstr "" + +#: application/views/simplefle/index.php:25 +msgid "Time is not set!" +msgstr "" + +#: application/views/simplefle/index.php:26 +msgid "Invalid date" +msgstr "" + +#: application/views/simplefle/index.php:29 +msgid "Station Call is not selected" +msgstr "" + +#: application/views/simplefle/index.php:30 +msgid "'Operator' Field is empty" +msgstr "" + +#: application/views/simplefle/index.php:31 +msgid "Warning! Do you really want to reset everything?" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: application/views/simplefle/index.php:34 +msgid "" +"Attention! The Data Field containes example data. First Clear Logging " +"Session!" +msgstr "" + +#: application/views/simplefle/index.php:35 +msgid "" +"Are you sure that you want to add these QSO to the Log and clear the session?" +msgstr "" + +#: application/views/simplefle/index.php:36 +msgid "QSO Logged!" +msgstr "" + +#: application/views/simplefle/index.php:37 +msgid "The QSO were successfully logged in the logbook!" +msgstr "" + +#: application/views/simplefle/index.php:40 +msgid "What is that?" +msgstr "" + +#: application/views/simplefle/index.php:43 +msgid "Current UTC Time" +msgstr "" + +#: application/views/simplefle/index.php:76 +msgid "If you don't choose a date, today's date will be used." +msgstr "" + +#: application/views/simplefle/index.php:88 +msgid "You can add the entered QSOs to a contest." +msgstr "" + +#: application/views/simplefle/index.php:95 +msgid "Station Call/Location" +msgstr "" + +#: application/views/simplefle/index.php:107 +#, php-format +msgid "" +"If you did operate from a new location, first create a new %sStation " +"Location%s" +msgstr "" + +#: application/views/simplefle/index.php:112 +msgid "e.g. OK2CQR" +msgstr "" + +#: application/views/simplefle/index.php:115 +msgid "This is callsign of the operator. Without any pre- or suffixes." +msgstr "" + +#: application/views/simplefle/index.php:125 +msgid "Enter the Data" +msgstr "" + +#: application/views/simplefle/index.php:154 +msgid "Refs" +msgstr "" + +#: application/views/simplefle/index.php:166 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" +msgstr "" + +#: application/views/simplefle/index.php:173 +msgid "Reload QSO List" +msgstr "" + +#: application/views/simplefle/index.php:174 +msgid "Save in Wavelog" +msgstr "" + +#: application/views/simplefle/index.php:175 +msgid "Clear Logging Session" +msgstr "" + +#: application/views/simplefle/options.php:20 +msgid "No Options yet" +msgstr "" + +#: application/views/simplefle/syntax_help.php:1 +msgid "Before starting to log a QSO, please note the basic rules." +msgstr "" + +#: application/views/simplefle/syntax_help.php:2 +msgid "- Each new QSO should be on a new line." +msgstr "" + +#: application/views/simplefle/syntax_help.php:3 +msgid "" +"- On each new line, only write data that has changed from the previous QSO." +msgstr "" + +#: application/views/simplefle/syntax_help.php:4 +msgid "" +"To begin, ensure you have already filled in the form on the left with the " +"date, station call, and operator's call. The main data includes the band (or " +"QRG in MHz, e.g., '7.145'), mode, and time. After the time, you provide the " +"first QSO, which is essentially the callsign." +msgstr "" + +#: application/views/simplefle/syntax_help.php:9 +msgid "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB." +msgstr "" + +#: application/views/simplefle/syntax_help.php:10 +msgid "" +"If you don't provide any RST information, the syntax will use 59 (599 for " +"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 "" + +#: application/views/simplefle/syntax_help.php:16 +msgid "" +"The first QSO was at 21:34, and the second one 2 minutes later at 21:36. We " +"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 "" + +#: application/views/simplefle/syntax_help.php:17 +msgid "" +"For our next QSO at 21:40 on 14th May, 2021, we changed the band to 40m but " +"still on SSB. If no RST information is given, the syntax will use 59 for " +"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 "" + +#: application/views/simplefle/syntax_help.php:28 +#, php-format +msgid "" +"A full summary of all commands and the necessary syntax can be found in " +"%sthis article%s of our Wiki." +msgstr "" + +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 +msgid "Location Name" +msgstr "" + +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 +msgctxt "Station Location Setup" +msgid "Home QTH" +msgstr "" + +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 +#, php-format +msgid "Shortname for the station location. For example: %s" +msgstr "" + +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 +msgid "Station callsign. For example: 4W7EST/P" +msgstr "" + +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 +msgid "Station Power (W)" +msgstr "" + +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 +msgid "Default station power in Watt. Overwritten by CAT." +msgstr "" + +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 +msgid "Station DXCC" +msgstr "" + +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 +msgctxt "DXCC selection" +msgid "None" +msgstr "" + +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 +msgid "Station DXCC entity. For example: Bolivia" +msgstr "" + +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 +msgid "Station City" +msgstr "" + +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 +msgid "Station city. For example: Oslo" +msgstr "" + +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 +msgid "Station state. Applies to certain countries only." +msgstr "" + +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 +msgid "Station County" +msgstr "" + +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 +msgid "Station County (Only used for USA/Alaska/Hawaii)." +msgstr "" + +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 +#, php-format +msgctxt "uses 'click here'" +msgid "If you don't know your CQ Zone then %s to find it!" +msgstr "" + +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 +msgid "click here" +msgstr "" + +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 +#, php-format +msgctxt "uses 'click here'" +msgid "If you don't know your ITU Zone then %s to find it!" +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 +msgid "Station Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 +msgid "Get Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 +#, php-format +msgctxt "uses 'click here'" +msgid "" +"Station gridsquare. For example: HM54AP. If you don't know your grid square " +"then %s!" +msgstr "" + +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 +msgid "" +"If you are located on a grid line, enter multiple grid squares separated " +"with commas. For example: IO77,IO78,IO87,IO88." +msgstr "" + +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 +msgid "Station IOTA reference. For example: EU-005" +msgstr "" + +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 +msgid "IOTA World website" +msgstr "" + +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 +#, php-format +msgid "You can look up IOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 +msgid "SOTA Maps website" +msgstr "" + +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 +#, php-format +msgid "Station SOTA reference. You can look up SOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 +msgid "GMA Map website" +msgstr "" + +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 +#, php-format +msgid "Station WWFF reference. You can look up WWFF references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 +msgid "POTA Map website" +msgstr "" + +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 +#, php-format +msgid "" +"Station POTA reference(s). Multiple comma separated values allowed. You can " +"look up POTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 +msgid "Signature Name" +msgstr "" + +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 +msgid "Station Signature (e.g. GMA).." +msgstr "" + +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 +msgid "Signature Information" +msgstr "" + +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 +msgid "Station Signature Info (e.g. DA/NW-357)." +msgstr "" + +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 +msgctxt "Probably no translation needed" +msgid "eQSL QTH Nickname" +msgstr "" + +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 +msgid "The QTH Nickname which is configured in your eQSL Profile" +msgstr "" + +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 +msgid "Default QSLMSG" +msgstr "" + +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 +msgid "" +"Define a default message that will be populated and sent for each QSO for " +"this station location." +msgstr "" + +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 +msgid "Ignore Clublog Upload" +msgstr "" + +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 +msgid "" +"If enabled, the QSOs made from this location will not be uploaded to " +"Clublog. If this is deactivated on it's own please check if the Call is " +"properly configured at Clublog" +msgstr "" + +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 +msgid "ClubLog Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 +msgid "HRDLog.net Username" +msgstr "" + +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 +msgid "" +"The username you are registered with at HRDlog.net (usually your callsign)." +msgstr "" + +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 +msgid "HRDLog.net API Key" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 +#, php-format +msgctxt "HRDLog.net Userprofile page" +msgid "Create your API Code on your %s" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 +msgid "HRDLog.net Userprofile page" +msgstr "" + +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 +msgid "HRDLog.net Logbook Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 +msgid "Subscription Required" +msgstr "" + +#: application/views/station_profile/create.php:255 +msgctxt "Probably no translation needed" +msgid "QRZ.com Logbook API Key" +msgstr "" + +#: application/views/station_profile/create.php:258 +msgid "Test API-Key" +msgstr "" + +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 +#, php-format +msgctxt "the QRZ.com Logbook settings page" +msgid "Find your API key on %s" +msgstr "" + +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 +msgid "the QRZ.com Logbook settings page" +msgstr "" + +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 +msgid "QRZ.com Logbook Upload" +msgstr "" + +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 +msgid "Realtime" +msgstr "" + +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 +msgctxt "Probably no translation needed" +msgid "QO-100 Dx Club API Key" +msgstr "" + +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 +#, php-format +msgctxt "QO-100 Dx Club's profile page" +msgid "Create your API key on your %s" +msgstr "" + +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 +msgid "QO-100 Dx Club's profile page" +msgstr "" + +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 +msgid "QO-100 Dx Club Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 +msgid "OQRS Enabled" +msgstr "" + +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 +msgid "OQRS Email alert" +msgstr "" + +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 +msgid "Make sure email is set up under admin and global options." +msgstr "" + +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 +msgid "OQRS Text" +msgstr "" + +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 +msgid "Some info you want to add regarding QSL'ing." +msgstr "" + +#: application/views/station_profile/edit.php:149 +msgid "Zones" +msgstr "" + +#: application/views/station_profile/edit.php:284 +msgid "Signature" +msgstr "" + +#: application/views/stationsetup/create.php:17 +msgid "Station Logbook Name" +msgstr "" + +#: application/views/stationsetup/create.php:19 +msgid "You can call a station logbook anything." +msgstr "" + +#: application/views/stationsetup/edit.php:18 +msgid "Container name" +msgstr "" + +#: application/views/stationsetup/edit.php:20 +msgid "You can call a container anything." +msgstr "" + +#: application/views/stationsetup/exportmapoptions.php:11 +msgctxt "Map Options" +msgid "CQ Zone overlay" +msgstr "" + +#: application/views/stationsetup/exportmapoptions.php:15 +msgctxt "Map Options" +msgid "Gridsquare overlay" +msgstr "" + +#: application/views/stationsetup/exportmapoptions.php:19 +msgctxt "Map Options" +msgid "Night shadow overlay" +msgstr "" + +#: application/views/stationsetup/exportmapoptions.php:27 +msgid "# QSOs shown" +msgstr "" + +#: application/views/stationsetup/exportmapoptions.php:46 +msgid "Visit export map" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:13 +msgid "Select Available Station Locations" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:25 +msgid "Link Location" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:31 +#: application/views/stationsetup/stationsetup.php:122 +msgid "Profile Name" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:34 +msgid "Unlink Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:21 +msgid "" +"Station Logbooks allow you to group Station Locations, this allows you to " +"see all the locations across one session from the logbook areas to the " +"analytics. Great for when your operating in multiple locations but they are " +"part of the same DXCC or VUCC Circle." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:32 +msgid "Linked locations" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:34 +msgid "Visitor site" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:91 +msgid "Station Locations" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:95 +msgid "" +"Station Locations define operating locations, such as your QTH, a friends " +"QTH, or a portable station." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:96 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:97 +msgid "" +"Only one station may be active at a time. In the table below this is shown " +"with the -Active Station- badge." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:98 +msgid "" +"The 'Linked' column shows if the station location is linked with the Active " +"Logbook selected above." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:101 +msgid "Create a Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:105 +msgid "" +"Attention: You need to set an active station location. Go to Callsign-" +">Station Location to select one." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:111 +msgid "" +"Due to recent changes within Wavelog you need to reassign QSOs to your " +"station profiles." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Maintenance" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Please reassign them at " +msgstr "" + +#: application/views/stationsetup/stationsetup.php:127 +msgid "Linked" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:134 +msgid "Favorite" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:180 +msgid "mark/unmark as favorite" +msgstr "" + +#: application/views/stationsetup/visitor.php:2 +msgid "" +"Setting a public slug allows you to share your logbook with anyone via a " +"custom website address, this slug can contain letters & numbers only." +msgstr "" + +#: application/views/stationsetup/visitor.php:3 +msgid "Later it looks like this:" +msgstr "" + +#: application/views/stationsetup/visitor.php:4 +msgid "[your slug]" +msgstr "" + +#: application/views/stationsetup/visitor.php:10 +msgid "Type in Public Slug choice" +msgstr "" + +#: application/views/stationsetup/visitor.php:17 +msgid "Visit Public Page" +msgstr "" + +#: application/views/statistics/custom.php:12 +#: application/views/statistics/custom_result.php:12 +#: application/views/statistics/index.php:28 +msgid "Explore the logbook." +msgstr "" + +#: application/views/statistics/custom.php:23 +#: application/views/statistics/custom_result.php:24 +msgid "Custom" +msgstr "" + +#: application/views/statistics/custom.php:27 +#: application/views/statistics/custom_result.php:29 +msgid "This is a work in-progress" +msgstr "" + +#: application/views/statistics/custom.php:74 +#: application/views/statistics/custom_result.php:71 +msgid "Finished your selection? time to search!" +msgstr "" + +#: application/views/statistics/custom.php:86 +msgid "Results go here" +msgstr "" + +#: application/views/statistics/index.php:14 +#: application/views/statistics/index.php:50 +msgid "Years" +msgstr "" + +#: application/views/statistics/index.php:17 +msgid "Number of QSOs worked each year" +msgstr "" + +#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:99 +msgid "Unique callsigns" +msgstr "" + +#: application/views/themes/add.php:4 application/views/themes/edit.php:4 +msgid "Theme Name" +msgstr "" + +#: application/views/themes/add.php:6 application/views/themes/edit.php:6 +msgid "This is the name that is used to display the theme in the theme list." +msgstr "" + +#: application/views/themes/add.php:10 application/views/themes/edit.php:10 +msgid "Folder Name" +msgstr "" + +#: application/views/themes/add.php:12 application/views/themes/edit.php:12 +msgid "" +"This is the name of the folder where your CSS-files are placed under assets/" +"css." +msgstr "" + +#: application/views/themes/add.php:16 application/views/themes/edit.php:16 +#: application/views/themes/index.php:84 +msgid "Theme Mode" +msgstr "" + +#: application/views/themes/add.php:18 application/views/themes/edit.php:18 +msgid "Light" +msgstr "" + +#: application/views/themes/add.php:19 application/views/themes/edit.php:19 +msgid "Dark" +msgstr "" + +#: application/views/themes/add.php:21 +msgid "This defines wherever the theme is a light or a dark one." +msgstr "" + +#: application/views/themes/add.php:25 application/views/themes/edit.php:25 +#: application/views/themes/index.php:85 +msgid "Header Logo" +msgstr "" + +#: application/views/themes/add.php:27 application/views/themes/add.php:33 +#: application/views/themes/edit.php:27 application/views/themes/edit.php:33 +msgid "Only PNG files with a size ratio of 1:1 are allowed." +msgstr "" + +#: application/views/themes/add.php:27 application/views/themes/edit.php:27 +#, php-format +msgid "" +"This is the name of the file which is used as %s small %s Logo in the header " +"placed in assets/logo." +msgstr "" + +#: application/views/themes/add.php:31 application/views/themes/edit.php:31 +#: application/views/themes/index.php:86 +msgid "Main Logo" +msgstr "" + +#: application/views/themes/add.php:33 application/views/themes/edit.php:33 +#, php-format +msgid "" +"This is the name of the file which is used as %s big %s Logo in the login " +"screen placed in assets/logo." +msgstr "" + +#: application/views/themes/add.php:36 +msgid "Add theme" +msgstr "" + +#: application/views/themes/edit.php:21 +msgid "" +"This defines wherever the theme is a light or a dark one. On this basis the " +"Logo is chosen." +msgstr "" + +#: application/views/themes/edit.php:36 +msgid "Update theme" +msgstr "" + +#: application/views/themes/index.php:22 +msgid "Themes list" +msgstr "" + +#: application/views/themes/index.php:28 +msgid "" +"In this menu you can add and edit themes to Wavelog. The process of adding a " +"theme is not really straightforward and should only be done by an admin who " +"is aware of their actions." +msgstr "" + +#: application/views/themes/index.php:29 +msgid "Also, it has to be said that this feature is still under development." +msgstr "" + +#: application/views/themes/index.php:35 +msgid "Process of adding a new theme" +msgstr "" + +#: application/views/themes/index.php:41 +msgid "1. Step" +msgstr "" + +#: application/views/themes/index.php:44 +#, php-format +msgid "" +"Create a new folder in 'assets/css/' and upload a 'bootstrap.min.css' file " +"which contains basic styling rules. We use the themes from %s" +msgstr "" + +#: application/views/themes/index.php:50 +msgid "2. Step" +msgstr "" + +#: application/views/themes/index.php:53 +msgid "" +"Create a file in this folder called 'overrides.css'. Place your custom CSS " +"code in there." +msgstr "" + +#: application/views/themes/index.php:59 +msgid "3. Step" +msgstr "" + +#: application/views/themes/index.php:62 +msgid "" +"For each new theme, you need two logo files. One for the login screen and " +"one for the header." +msgstr "" + +#: application/views/themes/index.php:63 +msgid "" +"Only PNG files are allowed, and they should have a pixel ratio of 1:1 (e.g., " +"1000px height and 1000px width)." +msgstr "" + +#: application/views/themes/index.php:64 +msgid "Place the two logo files in the folder 'assets/logo/'" +msgstr "" + +#: application/views/themes/index.php:70 +msgid "4. Step" +msgstr "" + +#: application/views/themes/index.php:73 +#, php-format +msgid "" +"Click here on 'Add a Theme' and type in the necessary data. Type in the " +"filenames for the logos %swithout%s the file extension '.png'" +msgstr "" + +#: application/views/themes/index.php:83 +msgid "Foldername" +msgstr "" + +#: application/views/themes/index.php:99 +msgid "Please edit" +msgstr "" + +#: application/views/themes/index.php:116 +msgid "Add a Theme" +msgstr "" + +#: application/views/timeplotter/index.php:2 +msgid "contacts were plotted" +msgstr "" + +#: application/views/timeplotter/index.php:3 +msgid "Time Distribution" +msgstr "" + +#: application/views/timeplotter/index.php:6 +msgid "Callsign(s) worked (max 5)" +msgstr "" + +#: application/views/timeplotter/index.php:10 +msgid "" +"The Timeplotter is used to analyze your logbook and find out at what times " +"you worked certain CQ zones or DXCC countries on a selected band." +msgstr "" + +#: application/views/update/index.php:8 +msgid "DXCC Lookup Data" +msgstr "" + +#: application/views/update/index.php:12 +msgid "Distance Data" +msgstr "" + +#: application/views/update/index.php:19 +msgid "" +"Here you can update the DXCC lookup data that is used for displaying " +"callsign information." +msgstr "" + +#: application/views/update/index.php:20 +msgid "This data is provided by" +msgstr "" + +#: application/views/update/index.php:24 +msgid "You must install php-xml for this to work." +msgstr "" + +#: application/views/update/index.php:27 +msgid "Check for DXCC Data Updates" +msgstr "" + +#: application/views/update/index.php:28 +msgid "Update DXCC Data" +msgstr "" + +#: application/views/update/index.php:30 +msgid "Status:" +msgstr "" + +#: application/views/update/index.php:34 +msgid "Apply DXCC Data to Logbook" +msgstr "" + +#: application/views/update/index.php:36 +msgid "" +"After updating, Wavelog can fill in missing callsign information in the " +"logbook using the newly-obtained DXCC data.\n" +"\t\t\t\t\t\t\tYou can choose to check just the QSOs in the logbook that are " +"missing DXCC metadata or to re-check the entire logbook\n" +"\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." +msgstr "" + +#: application/views/update/index.php:45 +msgid "Check QSOs missing DXCC data" +msgstr "" + +#: application/views/update/index.php:54 application/views/update/index.php:95 +msgid "Re-check all QSOs in logbook" +msgstr "" + +#: application/views/update/index.php:59 +msgid "Apply Continent Data to Logbook" +msgstr "" + +#: application/views/update/index.php:61 +msgid "" +"This function can be used to update QSO continent information for all QSOs " +"in Wavelog missing that information." +msgstr "" + +#: application/views/update/index.php:68 +msgid "Check QSOs missing continent data" +msgstr "" + +#: application/views/update/index.php:80 +msgid "Here you can update QSOs with missing distance information." +msgstr "" + +#: application/views/update/index.php:86 +msgid "Update distance data" +msgstr "" + +#: application/views/update/index.php:89 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" + +#: application/views/user/delete.php:5 +msgid "Delete User Account" +msgstr "" + +#: application/views/user/delete.php:10 +msgid "Are you sure you want to delete the user account" +msgstr "" + +#: application/views/user/delete.php:14 +msgid "No, do not delete this user" +msgstr "" + +#: application/views/user/delete.php:14 +msgid "Yes, delete this user" +msgstr "" + +#: application/views/user/edit.php:4 +msgid "Create User Account" +msgstr "" + +#: application/views/user/edit.php:6 +msgid "Edit Account" +msgstr "" + +#: application/views/user/edit.php:41 +msgid "General Information" +msgstr "" + +#: application/views/user/edit.php:52 application/views/user/login.php:58 +#: application/views/user/login.php:69 application/views/user/login.php:70 +#: application/views/user/profile.php:14 +msgid "Username" +msgstr "" + +#: application/views/user/edit.php:64 application/views/user/login.php:59 +#: application/views/user/login.php:73 application/views/user/login.php:74 +#: application/views/user/reset_password.php:21 +#: application/views/user/reset_password.php:23 +#: application/views/user/reset_password.php:30 +msgid "Password" +msgstr "" + +#: application/views/user/edit.php:77 +msgid "User Role" +msgstr "" + +#: application/views/user/edit.php:99 +msgid "Personal" +msgstr "" + +#: application/views/user/edit.php:102 +msgid "First Name" +msgstr "" + +#: application/views/user/edit.php:109 +msgid "Last Name" +msgstr "" + +#: application/views/user/edit.php:120 +msgid "Ham Radio" +msgstr "" + +#: application/views/user/edit.php:146 +msgid "Wavelog Preferences" +msgstr "" + +#: application/views/user/edit.php:157 +msgid "Stylesheet" +msgstr "" + +#: application/views/user/edit.php:169 +msgid "Wavelog Language" +msgstr "" + +#: application/views/user/edit.php:176 +msgid "Choose Wavelog language." +msgstr "" + +#: application/views/user/edit.php:187 +msgid "Date Format" +msgstr "" + +#: application/views/user/edit.php:200 +msgid "Select how you would like dates shown when logged into your account." +msgstr "" + +#: application/views/user/edit.php:204 +msgid "Measurement preference" +msgstr "" + +#: application/views/user/edit.php:208 +msgid "Kilometers" +msgstr "" + +#: application/views/user/edit.php:209 +msgid "Miles" +msgstr "" + +#: application/views/user/edit.php:210 +msgid "Nautical miles" +msgstr "" + +#: application/views/user/edit.php:212 +msgid "Choose which unit distances will be shown in" +msgstr "" + +#: application/views/user/edit.php:221 +msgid "Logbook fields" +msgstr "" + +#: application/views/user/edit.php:224 +msgid "Choose column 1" +msgstr "" + +#: application/views/user/edit.php:246 +msgid "Choose column 2" +msgstr "" + +#: application/views/user/edit.php:268 +msgid "Choose column 3" +msgstr "" + +#: application/views/user/edit.php:290 +msgid "Choose column 4" +msgstr "" + +#: application/views/user/edit.php:312 +msgid "Choose column 5 (only for logbook)" +msgstr "" + +#: application/views/user/edit.php:341 +msgid "QSO Logging Options" +msgstr "" + +#: application/views/user/edit.php:344 +msgid "Log End Times for QSOs Separately" +msgstr "" + +#: application/views/user/edit.php:350 +msgid "" +"Choose yes here if you want to log QSO start and end times separately. If " +"set to 'No' the end time will be the same as start time." +msgstr "" + +#: application/views/user/edit.php:355 +msgid "" +"Show profile picture of QSO partner from qrz.com/hamqth.com profile in the " +"log QSO section." +msgstr "" + +#: application/views/user/edit.php:361 +msgid "" +"Please set your qrz.com/hamqth.com credentials in the general config file." +msgstr "" + +#: application/views/user/edit.php:366 +msgid "Location auto lookup." +msgstr "" + +#: application/views/user/edit.php:372 +msgid "If set, gridsquare is fetched based on location name." +msgstr "" + +#: application/views/user/edit.php:376 +msgid "SOTA auto lookup gridsquare and name for summit." +msgstr "" + +#: application/views/user/edit.php:382 application/views/user/edit.php:392 +#: application/views/user/edit.php:402 +msgid "" +"If set, name and gridsquare is fetched from the API and filled in location " +"and locator." +msgstr "" + +#: application/views/user/edit.php:386 +msgid "WWFF auto lookup gridsquare and name for reference." +msgstr "" + +#: application/views/user/edit.php:396 +msgid "POTA auto lookup gridsquare and name for park." +msgstr "" + +#: application/views/user/edit.php:413 +msgid "Menu Options" +msgstr "" + +#: application/views/user/edit.php:416 +msgid "Show notes in the main menu." +msgstr "" + +#: application/views/user/edit.php:427 +msgid "Quicklog Field" +msgstr "" + +#: application/views/user/edit.php:433 +msgid "" +"With this feature, you can log callsigns using the search field in the " +"header." +msgstr "" + +#: application/views/user/edit.php:437 +msgid "Quicklog - Action on press Enter" +msgstr "" + +#: application/views/user/edit.php:440 +msgid "Log Callsign" +msgstr "" + +#: application/views/user/edit.php:443 +msgid "" +"What action should be performed when Enter is pressed in the quicklog field?" +msgstr "" + +#: application/views/user/edit.php:449 +msgid "Station Locations Quickswitch" +msgstr "" + +#: application/views/user/edit.php:454 +msgid "Show the Station Locations Quickswitch in the main menu" +msgstr "" + +#: application/views/user/edit.php:458 +msgid "UTC Time in Menu" +msgstr "" + +#: application/views/user/edit.php:463 +msgid "Show the current UTC Time in the menu" +msgstr "" + +#: application/views/user/edit.php:474 +msgid "Map Settings" +msgstr "" + +#: application/views/user/edit.php:481 +msgid "Icon" +msgstr "" + +#: application/views/user/edit.php:484 application/views/user/edit.php:488 +msgid "Not display" +msgstr "" + +#: application/views/user/edit.php:497 +msgid "QSO (by default)" +msgstr "" + +#: application/views/user/edit.php:516 +msgid "QSO (confirmed)" +msgstr "" + +#: application/views/user/edit.php:517 +msgid "(If 'No', displayed as 'QSO (by default))'" +msgstr "" + +#: application/views/user/edit.php:536 +msgid "Show Locator" +msgstr "" + +#: application/views/user/edit.php:555 +msgid "Previous QSL Type" +msgstr "" + +#: application/views/user/edit.php:559 +msgid "Select the type of QSL to show in the previous QSOs section." +msgstr "" + +#: application/views/user/edit.php:565 +msgid "QRZ" +msgstr "" + +#: application/views/user/edit.php:576 +msgid "Show Reference Fields on QSO Tab" +msgstr "" + +#: application/views/user/edit.php:580 +msgid "" +"The enabled items will be shown on the QSO tab rather than the General tab." +msgstr "" + +#: application/views/user/edit.php:619 +msgid "Default Values" +msgstr "" + +#: application/views/user/edit.php:627 +msgid "Settings for Default Band and Confirmation" +msgstr "" + +#: application/views/user/edit.php:630 +msgid "Default Band" +msgstr "" + +#: application/views/user/edit.php:640 +msgid "Default QSL-Methods" +msgstr "" + +#: application/views/user/edit.php:697 +msgid "Third Party Services" +msgstr "" + +#: application/views/user/edit.php:708 +msgid "Logbook of The World (LoTW) Username" +msgstr "" + +#: application/views/user/edit.php:714 +msgid "Logbook of The World (LoTW) Password" +msgstr "" + +#: application/views/user/edit.php:734 +msgid "eQSL.cc Username" +msgstr "" + +#: application/views/user/edit.php:740 +msgid "eQSL.cc Password" +msgstr "" + +#: application/views/user/edit.php:757 +msgid "Club Log" +msgstr "" + +#: application/views/user/edit.php:760 +msgid "Club Log Email/Callsign" +msgstr "" + +#: application/views/user/edit.php:762 +msgid "The Email or Callsign you use to login to Club Log" +msgstr "" + +#: application/views/user/edit.php:767 +msgid "Club Log Password" +msgstr "" + +#: application/views/user/edit.php:788 +msgid "Miscellaneous" +msgstr "" + +#: application/views/user/edit.php:796 +msgid "AMSAT Status Upload" +msgstr "" + +#: application/views/user/edit.php:799 +msgid "Upload status of SAT QSOs to" +msgstr "" + +#: application/views/user/edit.php:813 +msgid "Mastodonserver" +msgstr "" + +#: application/views/user/edit.php:816 +msgid "URL of Mastodonserver" +msgstr "" + +#: application/views/user/edit.php:818 +#, php-format +msgid "Main URL of your Mastodon server, e.g. %s" +msgstr "" + +#: application/views/user/edit.php:827 +msgid "Experimental" +msgstr "" + +#: application/views/user/edit.php:827 +msgid "Winkeyer" +msgstr "" + +#: application/views/user/edit.php:830 +msgid "Winkeyer Features Enabled" +msgstr "" + +#: application/views/user/edit.php:836 +#, php-format +msgid "" +"Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " +"before enabling." +msgstr "" + +#: application/views/user/edit.php:847 +msgid "Hams.at" +msgstr "" + +#: application/views/user/edit.php:850 +msgid "Private Feed Key" +msgstr "" + +#: application/views/user/edit.php:852 +#, php-format +msgctxt "Hint for Hamsat API Key; uses Link" +msgid "See your profile at %s." +msgstr "" + +#: application/views/user/edit.php:855 +msgid "Show Workable Passes Only" +msgstr "" + +#: application/views/user/edit.php:861 +msgid "" +"If enabled shows only workable passes based on the gridsquare set in your " +"hams.at account. Requires private feed key to be set." +msgstr "" + +#: application/views/user/edit.php:873 +msgid "Save Account" +msgstr "" + +#: application/views/user/forgot_password.php:33 +msgid "Forgot Password?" +msgstr "" + +#: application/views/user/forgot_password.php:34 +#: application/views/user/reset_password.php:9 +msgid "You can reset your password here." +msgstr "" + +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "" + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "" + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "" + +#: application/views/user/login.php:36 +msgid "MAINTENANCE MODE" +msgstr "" + +#: application/views/user/login.php:56 +msgid "Welcome to the Demo of Wavelog" +msgstr "" + +#: application/views/user/login.php:57 +msgid "This demo will be reset every night at 0200z." +msgstr "" + +#: application/views/user/login.php:60 +#, php-format +msgid "More Information about Wavelog on %sGithub%s." +msgstr "" + +#: application/views/user/login.php:79 +msgid "Forgot your password?" +msgstr "" + +#: application/views/user/login.php:85 +msgid "Keep me logged in" +msgstr "" + +#: application/views/user/profile.php:19 +msgid "Level" +msgstr "" + +#: application/views/user/profile.php:39 +msgid "First name" +msgstr "" + +#: application/views/user/profile.php:44 +msgid "Last name" +msgstr "" + +#: application/views/user/profile.php:50 +msgid "Edit profile" +msgstr "" + +#: application/views/user/reset_password.php:28 +msgid "Confirm Password" +msgstr "" + +#: application/views/version_dialog/index.php:20 +msgid "No Version Dialog text set. Go to the Admin Menu and set one." +msgstr "" + +#: application/views/version_dialog/index.php:60 +msgid "Error at parsing JSON-Data or got empty result from github." +msgstr "" + +#: application/views/version_dialog/index.php:63 +msgid "Error at getting the data from GitHub." +msgstr "" + +#: application/views/version_dialog/index.php:75 +msgid "Don't show again" +msgstr "" + +#: application/views/view_log/index.php:4 +msgid "" +"Displaying all QSOs of station locations which are linked to this logbook" +msgstr "" + +#: application/views/view_log/qso.php:6 +msgid "QSO Details" +msgstr "" + +#: application/views/view_log/qso.php:29 +msgid "QSL Management" +msgstr "" + +#: application/views/view_log/qso.php:131 +msgid "Total Distance" +msgstr "" + +#: application/views/view_log/qso.php:224 +msgid "Antenna Azimuth" +msgstr "" + +#: application/views/view_log/qso.php:231 +msgid "Antenna Elevation" +msgstr "" + +#: application/views/view_log/qso.php:373 +msgid "QSL Card has been sent via the bureau" +msgstr "" + +#: application/views/view_log/qso.php:375 +msgid "QSL Card has been sent via direct" +msgstr "" + +#: application/views/view_log/qso.php:377 +msgid "QSL Card has been sent electronically" +msgstr "" + +#: application/views/view_log/qso.php:379 +msgid "QSL Card has been sent via manager" +msgstr "" + +#: application/views/view_log/qso.php:381 +msgid "QSL Card has been sent" +msgstr "" + +#: application/views/view_log/qso.php:390 +msgid "QSL Card has been received via the bureau" +msgstr "" + +#: application/views/view_log/qso.php:392 +msgid "QSL Card has been received via direct" +msgstr "" + +#: application/views/view_log/qso.php:394 +msgid "QSL Card has been received electronically" +msgstr "" + +#: application/views/view_log/qso.php:396 +msgid "QSL Card has been received via manager" +msgstr "" + +#: application/views/view_log/qso.php:398 +msgid "QSL Card has been received" +msgstr "" + +#: application/views/view_log/qso.php:407 +msgid "This station uses LoTW." +msgstr "" + +#: application/views/view_log/qso.php:412 +#: application/views/view_log/qso.php:417 +#: application/views/view_log/qso.php:422 +#: application/views/view_log/qso.php:427 +msgid "This QSO was confirmed on" +msgstr "" + +#: application/views/view_log/qso.php:438 +msgid "More QSOs" +msgstr "" + +#: application/views/view_log/qso.php:506 +msgid "Details" +msgstr "" + +#: application/views/view_log/qso.php:633 +msgid "Uploaded QSL Card front image" +msgstr "" + +#: application/views/view_log/qso.php:638 +msgid "Upload QSL Card image" +msgstr "" + +#: application/views/view_log/qso.php:643 +msgid "Uploaded QSL Card back image" +msgstr "" + +#: application/views/view_log/qso.php:659 +msgid "Mark QSL Received (Electronic)" +msgstr "" + +#: application/views/view_log/qso.php:665 +msgid "Mark QSL Card Requested (Bureau)" +msgstr "" + +#: application/views/view_log/qso.php:667 +msgid "Mark QSL Card Requested (Direct)" +msgstr "" + +#: application/views/view_log/qso.php:682 +msgid "eQSL picture" +msgstr "" + +#: application/views/visitor/layout/footer.php:242 +msgid "CSV" +msgstr "" + +#: application/views/visitor/layout/header.php:74 +msgid "OQRS" +msgstr "" + +#: application/views/visitor/layout/header.php:82 +msgid "Visit Wavelog on Github" +msgstr "" + +#: application/views/visitor/layout/header.php:95 +msgid "Please enter a callsign!" +msgstr "" + +#: application/views/webadif/export.php:22 +msgid "" +"Here you can see and upload all QSOs which have not been previously uploaded " +"to QO-100 Dx Club." +msgstr "" + +#: application/views/webadif/export.php:33 +msgid "" +"You need to set a QO-100 Dx Club API key in your station profile. Only " +"station profiles with an API Key are displayed." +msgstr "" + +#: application/views/webadif/export.php:63 +msgid "" +"There are currently no outstanding QSOs that need to be uploaded to the " +"QO-100 Dx Club's API." +msgstr "" + +#: application/views/webadif/export.php:64 +msgid "Go ahead and turn on your QO-100 station!" +msgstr "" + +#: application/views/webadif/export.php:73 +#: application/views/webadif/export.php:113 +msgid "" +"None of your Logbooks are configured to export data to the QO-100 Dx Club's " +"API." +msgstr "" + +#: application/views/webadif/export.php:74 +#: application/views/webadif/export.php:114 +msgid "QO-100 Dx Club" +msgstr "" + +#: application/views/webadif/export.php:74 +#: application/views/webadif/export.php:114 +#, php-format +msgid "" +"To configure this feature, go to your profile page at the %s and %s Create " +"%s an API key." +msgstr "" + +#: application/views/webadif/export.php:75 +#: application/views/webadif/export.php:115 +#, php-format +msgid "" +"Then, navigate to your %s and configure your station with the key you have " +"created at the club." +msgstr "" + +#: application/views/webadif/export.php:83 +msgid "" +"Here you can mark as uploaded your QSOs which have not been previously " +"uploaded to QO-100 Dx Club." +msgstr "" + +#: application/views/webadif/export.php:107 +msgid "Mark QSOs as exported to QO-100 Dx Club" +msgstr "" + +#: application/views/webadif/mark_webadif.php:16 +msgid "The QSOs are marked as exported to QO-100 Dx Club." +msgstr "" + +#: application/views/widgets/oqrs.php:21 +msgid "Wavelog OQRS" +msgstr "" + +#: application/views/widgets/oqrs.php:76 +msgid "Wavelog OQRS Request" +msgstr "" + +#: application/views/widgets/oqrs.php:79 +#, php-format +msgid "Request a QSL card for your QSO with %s." +msgstr "" + +#: application/views/widgets/oqrs.php:83 +msgid "Your Callsign:" +msgstr "" + +#: application/views/widgets/oqrs.php:90 +msgid "Submit Request" +msgstr "" diff --git a/application/locale/bs/index.html b/application/locale/bs/index.html new file mode 100644 index 000000000..67f2d8864 --- /dev/null +++ b/application/locale/bs/index.html @@ -0,0 +1,11 @@ + + + + 403 Forbidden + + + +

Directory access is forbidden.

+ + + diff --git a/application/locale/cnr/LC_MESSAGES/messages.mo b/application/locale/cnr/LC_MESSAGES/messages.mo new file mode 100644 index 000000000..ee8d5a589 Binary files /dev/null and b/application/locale/cnr/LC_MESSAGES/messages.mo differ diff --git a/application/locale/cnr/LC_MESSAGES/messages.po b/application/locale/cnr/LC_MESSAGES/messages.po new file mode 100644 index 000000000..a2850966a --- /dev/null +++ b/application/locale/cnr/LC_MESSAGES/messages.po @@ -0,0 +1,11427 @@ +# WAVELOG PO FILE +# Copyright (c) 2024 Wavelog by DF2ET, DJ7NT, HB9HIL and LA8AJA. +# This file is distributed under the MIT licence. +# +# Fabian Berg <80885850+HB9HIL@users.noreply.github.com>, 2024. +msgid "" +msgstr "" +"Report-Msgid-Bugs-To: translations@wavelog.org\n" +"POT-Creation-Date: 2024-09-07 07:18+0000\n" +"PO-Revision-Date: 2024-08-17 10:49+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Montenegrin \n" +"Language: cnr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 5.6.2\n" + +#: application/controllers/Accumulated.php:12 +#: application/controllers/Activators.php:13 +#: application/controllers/Activatorsmap.php:13 +#: application/controllers/Adif.php:13 application/controllers/Awards.php:16 +#: application/controllers/Backup.php:13 application/controllers/Backup.php:26 +#: application/controllers/Backup.php:63 application/controllers/Band.php:15 +#: application/controllers/Bandmap.php:9 +#: application/controllers/Cabrillo.php:16 +#: application/controllers/Cabrillo.php:53 +#: application/controllers/Cabrillo.php:80 +#: application/controllers/Cabrillo.php:135 +#: application/controllers/Calltester.php:11 +#: application/controllers/Cfdexport.php:18 +#: application/controllers/Cfdexport.php:29 +#: application/controllers/Components.php:13 +#: application/controllers/Contestcalendar.php:15 +#: application/controllers/Contesting.php:14 +#: application/controllers/Cron.php:26 application/controllers/Cron.php:162 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: application/controllers/Distancerecords.php:11 +#: application/controllers/Distances.php:11 +#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29 +#: application/controllers/Dxatlas.php:51 +#: application/controllers/Dxatlas.php:108 +#: application/controllers/Dxcalendar.php:8 +#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23 +#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 +#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 +#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:353 +#: application/controllers/Eqsl.php:420 application/controllers/Eqsl.php:436 +#: application/controllers/Eqsl.php:497 application/controllers/Hamsat.php:13 +#: application/controllers/Kmlexport.php:18 +#: application/controllers/Kmlexport.php:33 +#: application/controllers/Labels.php:26 +#: application/controllers/Logbookadvanced.php:16 +#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 +#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 +#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 +#: application/controllers/Notes.php:10 application/controllers/Options.php:15 +#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 +#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 +#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 +#: application/controllers/Qso.php:9 application/controllers/Qso.php:19 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:600 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Reg1test.php:18 +#: application/controllers/Reg1test.php:63 +#: application/controllers/Reg1test.php:102 +#: application/controllers/Reg1test.php:130 +#: application/controllers/Reg1test.php:164 +#: application/controllers/Satellite.php:18 +#: application/controllers/Satellite.php:37 +#: application/controllers/Satellite.php:44 +#: application/controllers/Satellite.php:53 +#: application/controllers/Satellite.php:72 +#: application/controllers/Satellite.php:87 +#: application/controllers/Satellite.php:95 +#: application/controllers/Satellite.php:103 +#: application/controllers/Satellite.php:117 +#: application/controllers/Satellite.php:135 +#: application/controllers/Satellite.php:146 +#: application/controllers/Satellite.php:162 +#: application/controllers/Satellite.php:190 +#: application/controllers/Satellite.php:201 +#: application/controllers/Satellite.php:223 +#: application/controllers/Satellite.php:236 +#: application/controllers/Satellite.php:244 +#: application/controllers/Sattimers.php:9 +#: application/controllers/Search.php:13 +#: application/controllers/Simplefle.php:7 +#: application/controllers/Station.php:17 +#: application/controllers/Stationsetup.php:15 +#: application/controllers/Themes.php:17 +#: application/controllers/Timeline.php:10 +#: application/controllers/Timeplotter.php:11 +#: application/controllers/Update.php:24 application/controllers/Update.php:273 +#: application/controllers/Update.php:284 +#: application/controllers/Update.php:295 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 +#: application/controllers/User_options.php:9 +msgid "You're not allowed to do that!" +msgstr "" + +#: application/controllers/Accumulated.php:19 +#: application/views/interface_assets/header.php:152 +msgid "Accumulated Statistics" +msgstr "" + +#: application/controllers/Activated_gridmap.php:10 +#: application/views/activated_gridmap/index.php:5 +msgid "Activated Gridsquare Map" +msgstr "" + +#: application/controllers/Activated_gridmap.php:31 +#: application/controllers/Awards.php:919 +#: application/controllers/Awards.php:951 +#: application/controllers/Gridmap.php:31 +#: application/controllers/Visitor.php:385 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: application/views/visitor/layout/footer.php:22 +#: application/views/visitor/layout/header.php:68 +msgid "Gridsquares" +msgstr "" + +#: application/controllers/Activated_gridmap.php:32 +#: application/controllers/Gridmap.php:32 +#: application/controllers/Visitor.php:386 +msgid "Gridsquares confirmed" +msgstr "" + +#: application/controllers/Activated_gridmap.php:33 +#: application/controllers/Gridmap.php:33 +#: application/controllers/Visitor.php:387 +msgid "Gridsquares not confirmed" +msgstr "" + +#: application/controllers/Activated_gridmap.php:34 +msgid "Total gridsquares activated" +msgstr "" + +#: application/controllers/Activators.php:20 +#: application/views/activators/index.php:5 +#: application/views/interface_assets/header.php:142 +msgid "Gridsquare Activators" +msgstr "" + +#: application/controllers/Activatorsmap.php:17 +#: application/views/activators/index.php:2 +msgid "Activators Map" +msgstr "" + +#: application/controllers/Adif.php:18 +msgid "valid date" +msgstr "" + +#: application/controllers/Adif.php:20 +msgid "date incorrect" +msgstr "" + +#: application/controllers/Adif.php:29 application/views/adif/import.php:24 +msgid "ADIF Export" +msgstr "" + +#: application/controllers/Adif.php:145 +#: application/views/interface_assets/header.php:388 +msgid "ADIF Import / Export" +msgstr "" + +#: application/controllers/Adif.php:169 application/views/adif/import.php:21 +#: application/views/lotw/import.php:3 +msgid "ADIF Import" +msgstr "" + +#: application/controllers/Adif.php:209 +msgid "Unsupported Filetype" +msgstr "" + +#: application/controllers/Adif.php:240 +#: application/views/adif/import_failed.php:12 +msgid "ADIF Import failed!" +msgstr "" + +#: application/controllers/Adif.php:254 +msgid "Station Profile not valid for User" +msgstr "" + +#: application/controllers/Adif.php:261 +#: application/views/adif/import_success.php:12 +msgid "ADIF Imported" +msgstr "" + +#: application/controllers/Adif.php:272 +msgid "DCL Import" +msgstr "" + +#: application/controllers/Adif.php:328 +msgid "DCL Data Imported" +msgstr "" + +#: application/controllers/Api.php:26 +msgid "API" +msgstr "" + +#: application/controllers/Api.php:50 application/views/api/description.php:26 +msgid "API Description" +msgstr "" + +#: application/controllers/Api.php:51 +msgid "API Key is required. Do not change this field" +msgstr "" + +#: application/controllers/Api.php:57 +msgid "Edit API Description" +msgstr "" + +#: application/controllers/Api.php:69 +#, php-format +msgid "API Key %s description has been updated." +msgstr "" + +#: application/controllers/Api.php:109 +#, php-format +msgid "API Key %s has been deleted" +msgstr "" + +#: application/controllers/Awards.php:22 +#: application/views/interface_assets/header.php:160 +#: application/views/qso/edit_ajax.php:35 +msgid "Awards" +msgstr "" + +#: application/controllers/Awards.php:92 application/controllers/Awards.php:172 +#: application/controllers/Awards.php:327 +#: application/controllers/Awards.php:375 +#: application/controllers/Awards.php:486 +#: application/controllers/Awards.php:503 +#: application/controllers/Awards.php:520 +#: application/controllers/Awards.php:591 +#: application/controllers/Awards.php:652 +#: application/controllers/Awards.php:714 +#: application/controllers/Awards.php:776 +#: application/controllers/Awards.php:856 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:939 +#: application/controllers/Awards.php:1140 +#: application/controllers/Awards.php:1639 +#: application/controllers/Awards.php:1779 +#: application/controllers/Awards.php:1908 +#, php-format +msgid "Awards - %s" +msgstr "" + +#: application/controllers/Awards.php:92 +#: application/views/awards/dok/index.php:149 +#: application/views/bands/index.php:47 +#: application/views/contesting/index.php:53 +#: application/views/interface_assets/header.php:198 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/qso/edit_ajax.php:388 application/views/qso/index.php:264 +#: application/views/qso/index.php:518 application/views/user/edit.php:603 +#: application/views/view_log/qso.php:354 +msgid "DOK" +msgstr "" + +#: application/controllers/Awards.php:172 application/views/awards/index.php:7 +#: application/views/bandmap/list.php:112 application/views/bands/index.php:48 +#: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 +#: application/views/dxcalendar/index.php:11 +#: application/views/interface_assets/header.php:166 +#: application/views/kml/index.php:47 +#: application/views/logbookadvanced/edit.php:7 +#: application/views/logbookadvanced/index.php:156 +#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/lookup/index.php:4 +#: application/views/lotw_views/index.php:36 +#: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 +#: application/views/search/cqzones_result.php:15 +#: application/views/search/result.php:27 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:33 +#: application/views/timeplotter/index.php:24 +msgid "DXCC" +msgstr "" + +#: application/controllers/Awards.php:251 +msgid "Awards - WAJA" +msgstr "" + +#: application/controllers/Awards.php:327 application/views/bands/index.php:51 +#: application/views/interface_assets/header.php:214 +msgid "JCC" +msgstr "" + +#: application/controllers/Awards.php:375 application/views/bands/index.php:57 +#: application/views/interface_assets/header.php:172 +msgid "VUCC" +msgstr "" + +#: application/controllers/Awards.php:405 +msgid "Log View - VUCC" +msgstr "" + +#: application/controllers/Awards.php:453 +#: application/controllers/Distancerecords.php:59 +#: application/controllers/Timeline.php:105 +#: application/controllers/Timeline.php:108 +#: application/controllers/Timeline.php:111 +#: application/controllers/Timeline.php:114 +#: application/controllers/Timeline.php:117 +#: application/controllers/Timeline.php:120 +msgid "Log View" +msgstr "" + +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr "" + +#: application/controllers/Awards.php:457 +msgid " and sat " +msgstr "" + +#: application/controllers/Awards.php:460 +msgid " and orbit type " +msgstr "" + +#: application/controllers/Awards.php:464 +msgid " and propagation " +msgstr "" + +#: application/controllers/Awards.php:467 +msgid " and mode " +msgstr "" + +#: application/controllers/Awards.php:470 +msgid " and " +msgstr "" + +#: application/controllers/Awards.php:486 +#: application/controllers/Logbook.php:1289 +#: application/views/awards/index.php:8 application/views/bands/index.php:55 +#: application/views/dashboard/index.php:9 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/index.php:270 +#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/lookup/index.php:7 +#: application/views/qslcard/searchresult.php:17 +#: application/views/qslcard/searchresult.php:33 +#: application/views/qslcard/searchresult.php:49 +#: application/views/qslcard/searchresult.php:65 +#: application/views/qslcard/searchresult.php:81 +#: application/views/qso/components/previous_contacts.php:82 +#: application/views/qso/edit_ajax.php:363 +#: application/views/search/search_result_ajax.php:9 +#: application/views/station_profile/edit.php:243 +#: application/views/user/edit.php:234 application/views/user/edit.php:256 +#: application/views/user/edit.php:278 application/views/user/edit.php:300 +#: application/views/user/edit.php:323 +#: application/views/view_log/partial/log_ajax.php:9 +#: application/views/visitor/index.php:21 +msgid "SOTA" +msgstr "" + +#: application/controllers/Awards.php:503 +#: application/controllers/Logbook.php:1290 +#: application/views/bands/index.php:60 +#: application/views/dashboard/index.php:10 +#: application/views/interface_assets/header.php:176 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/index.php:290 +#: application/views/logbookadvanced/useroptions.php:134 +#: application/views/lookup/index.php:9 +#: application/views/qso/components/previous_contacts.php:83 +#: application/views/qso/edit_ajax.php:368 +#: application/views/search/search_result_ajax.php:10 +#: application/views/station_profile/edit.php:256 +#: application/views/user/edit.php:235 application/views/user/edit.php:257 +#: application/views/user/edit.php:279 application/views/user/edit.php:301 +#: application/views/user/edit.php:324 +#: application/views/view_log/partial/log_ajax.php:10 +msgid "WWFF" +msgstr "" + +#: application/controllers/Awards.php:520 +#: application/controllers/Logbook.php:1291 +#: application/views/bands/index.php:52 +#: application/views/dashboard/index.php:11 +#: application/views/interface_assets/header.php:186 +#: application/views/logbookadvanced/edit.php:13 +#: application/views/logbookadvanced/index.php:274 +#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/qso/components/previous_contacts.php:84 +#: application/views/qso/edit_ajax.php:373 +#: application/views/search/search_result_ajax.php:11 +#: application/views/station_profile/edit.php:269 +#: application/views/user/edit.php:236 application/views/user/edit.php:258 +#: application/views/user/edit.php:280 application/views/user/edit.php:302 +#: application/views/user/edit.php:325 +#: application/views/view_log/partial/log_ajax.php:11 +msgid "POTA" +msgstr "" + +#: application/controllers/Awards.php:591 +msgid "CQ Magazine WAZ" +msgstr "" + +#: application/controllers/Awards.php:652 +#: application/views/accumulate/index.php:54 +#: application/views/timeline/index.php:45 +msgid "Worked All States (WAS)" +msgstr "" + +#: application/controllers/Awards.php:714 application/views/bands/index.php:53 +#: application/views/interface_assets/header.php:192 +msgid "RAC" +msgstr "" + +#: application/controllers/Awards.php:776 application/views/bands/index.php:49 +msgid "H26" +msgstr "" + +#: application/controllers/Awards.php:856 +msgid "IOTA (Island On The Air)" +msgstr "" + +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 +#: application/views/interface_assets/header.php:234 +msgid "US Counties" +msgstr "" + +#: application/controllers/Awards.php:896 +msgid "Log View - Counties" +msgstr "" + +#: application/controllers/Awards.php:903 +msgid "Awards - " +msgstr "" + +#: application/controllers/Awards.php:920 +#: application/controllers/Awards.php:952 +msgid "Gridsquares worked" +msgstr "" + +#: application/controllers/Awards.php:921 +#: application/controllers/Awards.php:953 +msgid "Gridsquares confirmed on LoTW" +msgstr "" + +#: application/controllers/Awards.php:922 +#: application/controllers/Awards.php:954 +msgid "Gridsquares confirmed by paper QSL" +msgstr "" + +#: application/controllers/Awards.php:939 +msgid "Fred Fish Memorial Award (FFMA)" +msgstr "" + +#: application/controllers/Awards.php:1140 +#: application/views/interface_assets/header.php:170 +#: application/views/logbookadvanced/useroptions.php:138 +msgid "SIG" +msgstr "" + +#: application/controllers/Awards.php:1158 +msgid "Awards - SIG - " +msgstr "" + +#: application/controllers/Awards.php:1779 +#: application/views/awards/itu/index.php:20 +msgid "ITU Zones" +msgstr "" + +#: application/controllers/Awards.php:1908 +#: application/views/awards/wac/index.php:8 +#: application/views/interface_assets/header.php:174 +msgid "Worked All Continents (WAC)" +msgstr "" + +#: application/controllers/Backup.php:15 application/views/backup/main.php:14 +#: application/views/interface_assets/header.php:284 +msgid "Backup" +msgstr "" + +#: application/controllers/Backup.php:50 +msgid "ADIF - Backup" +msgstr "" + +#: application/controllers/Backup.php:84 +msgid "Notes - Backup" +msgstr "" + +#: application/controllers/Band.php:25 application/views/bands/index.php:28 +#: application/views/bands/index.php:32 +#: application/views/interface_assets/header.php:383 +#: application/views/statistics/index.php:16 +#: application/views/statistics/index.php:56 +msgid "Bands" +msgstr "" + +#: application/controllers/Band.php:40 application/controllers/Mode.php:41 +msgid "Create Mode" +msgstr "" + +#: application/controllers/Band.php:59 application/views/bands/index.php:150 +msgid "Edit Band" +msgstr "" + +#: application/controllers/Bandmap.php:28 +#: application/controllers/Bandmap.php:69 +#: application/controllers/Options.php:145 +#: application/controllers/Options.php:156 +#: application/views/options/sidebar.php:10 +msgid "DXCluster" +msgstr "" + +#: application/controllers/Cabrillo.php:20 +msgid "Export Cabrillo" +msgstr "" + +#: application/controllers/Cfdexport.php:20 +#: application/views/interface_assets/header.php:402 +msgid "CFD Export" +msgstr "" + +#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12 +#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19 +#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14 +#: application/controllers/Update.php:16 +msgid "Maintenance Mode is active. Try again later." +msgstr "" + +#: application/controllers/Clublog.php:44 +#: application/controllers/Clublog.php:66 +msgid "No user has configured Clublog." +msgstr "" + +#: application/controllers/Contestcalendar.php:19 +#: application/views/interface_assets/header.php:251 +msgid "Contest Calendar" +msgstr "" + +#: application/controllers/Contesting.php:47 +#: application/views/contesting/index.php:3 +msgid "Contest Logging" +msgstr "" + +#: application/controllers/Contesting.php:113 +#: application/views/interface_assets/header.php:278 +msgid "Contests" +msgstr "" + +#: application/controllers/Contesting.php:127 +msgid "Update Contest" +msgstr "" + +#: application/controllers/Continents.php:25 +#: application/views/awards/dxcc/index.php:83 +#: application/views/awards/iota/index.php:57 +#: application/views/interface_assets/header.php:156 +msgid "Continents" +msgstr "" + +#: application/controllers/Cron.php:38 +#: application/views/interface_assets/header.php:288 +msgid "Cron Manager" +msgstr "" + +#: application/controllers/Cron.php:154 application/views/cron/edit.php:5 +msgid "Edit Cronjob" +msgstr "" + +#: application/controllers/Cron.php:274 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:278 +#, php-format +msgid "" +"Last run occurred more than %s seconds ago.%sPlease check your master cron! " +"It should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:281 +#, php-format +msgid "" +"Last run occurred more than %s minutes ago.%sSeems like your Mastercron " +"isn't running!%sIt should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:286 application/views/cron/index.php:29 +msgctxt "Master Cron" +msgid "Not running" +msgstr "" + +#: application/controllers/Csv.php:20 application/views/csv/index.php:3 +#: application/views/interface_assets/header.php:396 +msgid "SOTA CSV Export" +msgstr "" + +#: application/controllers/Dashboard.php:123 +#: application/controllers/Visitor.php:134 +msgid "Dashboard" +msgstr "" + +#: application/controllers/Dayswithqso.php:18 +msgid "Number of days with QSOs each year" +msgstr "" + +#: application/controllers/Debug.php:93 +msgid "Debug" +msgstr "" + +#: application/controllers/Debug.php:132 +msgid "Migrate data now" +msgstr "" + +#: application/controllers/Debug.php:135 +msgid "Migration already done. Run again?" +msgstr "" + +#: application/controllers/Debug.php:139 +msgid "No data to migrate" +msgstr "" + +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 +msgid "No migration possible" +msgstr "" + +#: application/controllers/Debug.php:213 +msgid "Wavelog was updated successfully!" +msgstr "" + +#: application/controllers/Debug.php:231 +msgid "Selfupdate() not available. Check the Error Log." +msgstr "" + +#: application/controllers/Debug.php:275 +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:278 +msgid "File Migration failed. Please check the Error Log." +msgstr "" + +#: application/controllers/Distancerecords.php:42 +#: application/controllers/Distancerecords.php:59 +#: application/views/interface_assets/header.php:146 +msgid "Satellite Distance Records" +msgstr "" + +#: application/controllers/Distances.php:17 +#: application/views/distances/index.php:5 +#: application/views/distances/index.php:8 +#: application/views/interface_assets/header.php:144 +msgid "Distances Worked" +msgstr "" + +#: application/controllers/Distances.php:83 +#: application/views/distances/index.php:15 +msgid "QSOs with" +msgstr "" + +#: application/controllers/Distances.php:83 +msgid "and band" +msgstr "" + +#: application/controllers/Distances.php:83 +msgid "and propagation" +msgstr "" + +#: application/controllers/Dxatlas.php:19 +#: application/views/interface_assets/header.php:394 +msgid "DX Atlas Gridsquare Export" +msgstr "" + +#: application/controllers/Dxcalendar.php:10 +#: application/views/interface_assets/header.php:249 +msgid "DX Calendar" +msgstr "" + +#: application/controllers/Eqsl.php:34 +#: application/views/dashboard/index.php:325 +#: application/views/eqslcard/index.php:5 +#: application/views/visitor/index.php:306 +msgid "eQSL Cards" +msgstr "" + +#: application/controllers/Eqsl.php:124 +msgid "eQSL Import" +msgstr "" + +#: application/controllers/Eqsl.php:134 +msgid "eQSL Import Information" +msgstr "" + +#: application/controllers/Eqsl.php:158 +msgid "eQSL QSO Upload" +msgstr "" + +#: application/controllers/Eqsl.php:424 +msgid "eQSL Tools" +msgstr "" + +#: application/controllers/Eqsl.php:472 +msgid " / Errors: " +msgstr "" + +#: application/controllers/Eqsl.php:472 +msgid "Successfully downloaded: " +msgstr "" + +#: application/controllers/Eqsl.php:481 +msgid "eQSL Card Image Download" +msgstr "" + +#: application/controllers/Gridmap.php:10 +#: application/views/interface_assets/header.php:138 +msgid "Gridsquare Map" +msgstr "" + +#: application/controllers/Gridmap.php:34 +#: application/controllers/Visitor.php:388 +msgid "Total gridsquares worked" +msgstr "" + +#: application/controllers/Hamsat.php:59 +msgid "Hamsat - Satellite Roving" +msgstr "" + +#: application/controllers/Hrdlog.php:71 +#, php-format +msgid "%d QSO is now uploaded to HRDlog" +msgid_plural "%d QSOs are now uploaded to HRDlog" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/controllers/Hrdlog.php:76 +msgid "No QSOs found to upload." +msgstr "" + +#: application/controllers/Kmlexport.php:24 +#: application/views/interface_assets/header.php:392 +#: application/views/kml/index.php:3 +msgid "KML Export" +msgstr "" + +#: application/controllers/Labels.php:40 application/views/labels/index.php:30 +msgid "QSL Card Labels" +msgstr "" + +#: application/controllers/Labels.php:71 +msgid "Create Label Type" +msgstr "" + +#: application/controllers/Labels.php:78 application/controllers/Labels.php:406 +#: application/views/labels/create.php:22 application/views/labels/edit.php:22 +msgid "Label Name" +msgstr "" + +#: application/controllers/Labels.php:79 application/controllers/Labels.php:407 +#: application/views/labels/create.php:28 application/views/labels/edit.php:28 +#: application/views/labels/index.php:76 +msgid "Paper Type" +msgstr "" + +#: application/controllers/Labels.php:80 application/controllers/Labels.php:408 +#: application/views/labels/index.php:42 application/views/labels/index.php:77 +msgid "Measurement" +msgstr "" + +#: application/controllers/Labels.php:81 application/controllers/Labels.php:409 +msgid "Top Margin" +msgstr "" + +#: application/controllers/Labels.php:82 application/controllers/Labels.php:410 +msgid "Left Margin" +msgstr "" + +#: application/controllers/Labels.php:83 application/controllers/Labels.php:411 +msgid "QSLs Horizontally" +msgstr "" + +#: application/controllers/Labels.php:84 application/controllers/Labels.php:412 +msgid "QSLs Vertically" +msgstr "" + +#: application/controllers/Labels.php:85 application/controllers/Labels.php:413 +msgid "Horizontal Space" +msgstr "" + +#: application/controllers/Labels.php:86 application/controllers/Labels.php:414 +msgid "Vertical Space" +msgstr "" + +#: application/controllers/Labels.php:87 application/controllers/Labels.php:415 +msgid "Label width" +msgstr "" + +#: application/controllers/Labels.php:88 application/controllers/Labels.php:416 +msgid "Label height" +msgstr "" + +#: application/controllers/Labels.php:89 application/controllers/Labels.php:417 +msgid "Size of Font" +msgstr "" + +#: application/controllers/Labels.php:90 application/controllers/Labels.php:418 +msgid "Number of QSOs on label" +msgstr "" + +#: application/controllers/Labels.php:115 +msgid "Create Paper Type" +msgstr "" + +#: application/controllers/Labels.php:119 +#: application/controllers/Labels.php:465 +msgid "Paper Name" +msgstr "" + +#: application/controllers/Labels.php:120 +#: application/controllers/Labels.php:466 +msgid "Paper Width" +msgstr "" + +#: application/controllers/Labels.php:121 +#: application/controllers/Labels.php:467 +msgid "Paper Height" +msgstr "" + +#: application/controllers/Labels.php:132 +#: application/controllers/Labels.php:475 +msgid "" +"Your paper could not be saved. Remember that it can't have the same name as " +"existing paper types." +msgstr "" + +#: application/controllers/Labels.php:205 +#: application/controllers/Labels.php:208 +msgid "You need to assign a paperType to the label before printing" +msgstr "" + +#: application/controllers/Labels.php:215 +#: application/controllers/Labels.php:218 +msgid "You need to create a label and set it to be used for print." +msgstr "" + +#: application/controllers/Labels.php:225 +#: application/controllers/Labels.php:228 +msgid "" +"Something went wrong! The label could not be generated. Check label size and " +"font size." +msgstr "" + +#: application/controllers/Labels.php:251 +msgid "0 QSOs found for print!" +msgstr "" + +#: application/controllers/Labels.php:395 +msgid "Edit Label" +msgstr "" + +#: application/controllers/Labels.php:424 +msgid "Label was saved." +msgstr "" + +#: application/controllers/Labels.php:432 +msgid "Label was deleted." +msgstr "" + +#: application/controllers/Labels.php:454 +msgid "Edit Paper" +msgstr "" + +#: application/controllers/Labels.php:479 +msgid "Paper was saved." +msgstr "" + +#: application/controllers/Labels.php:492 +msgid "Paper was deleted." +msgstr "" + +#: application/controllers/Logbook.php:37 +msgid "" +"No logbooks were found. You need to define a logbook under Station Logbooks! " +"Do it here:" +msgstr "" + +#: application/controllers/Logbook.php:37 +#: application/views/stationsetup/stationsetup.php:18 +msgid "Station Logbooks" +msgstr "" + +#: application/controllers/Logbook.php:60 +#: application/views/interface_assets/header.php:97 +#: application/views/logbookadvanced/useroptions.php:4 +#: application/views/view_log/index.php:11 +msgid "Logbook" +msgstr "" + +#: application/controllers/Logbook.php:657 +#: application/controllers/Logbook.php:672 +#: application/views/activated_gridmap/index.php:58 +#: application/views/awards/dok/index.php:55 +#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/helvetia/index.php:55 +#: application/views/awards/jcc/index.php:52 +#: application/views/awards/rac/index.php:47 +#: application/views/awards/vucc/band.php:15 +#: application/views/awards/wab/index.php:72 +#: application/views/awards/waja/index.php:55 +#: application/views/awards/was/index.php:55 +#: application/views/gridmap/index.php:101 +#: application/views/logbookadvanced/index.php:596 +#: application/views/logbookadvanced/useroptions.php:62 +#: application/views/oqrs/qsolist.php:12 +#: application/views/qslprint/qslprint.php:28 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:16 +#: application/views/qso/edit_ajax.php:37 application/views/qso/index.php:42 +#: application/views/search/result_search.php:13 +#: application/views/timeline/index.php:56 application/views/user/edit.php:562 +#: application/views/user/edit.php:649 +msgid "QSL" +msgstr "" + +#: application/controllers/Logbook.php:660 +#: application/views/activated_gridmap/index.php:66 +#: application/views/awards/cq/index.php:60 +#: application/views/awards/dok/index.php:59 +#: application/views/awards/dxcc/index.php:65 +#: application/views/awards/helvetia/index.php:59 +#: application/views/awards/itu/index.php:60 +#: application/views/awards/jcc/index.php:56 +#: application/views/awards/rac/index.php:51 +#: application/views/awards/vucc/band.php:16 +#: application/views/awards/wab/index.php:80 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:260 +#: application/views/gridmap/index.php:109 +#: application/views/logbookadvanced/useroptions.php:66 +#: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 +#: application/views/oqrs/qsolist.php:174 +#: application/views/qslprint/qsolist.php:21 +#: application/views/qslprint/qsolist.php:167 +#: application/views/qslprint/qsolist.php:182 +#: application/views/qso/edit_ajax.php:411 +#: application/views/search/result_search.php:22 +#: application/views/search/search_result_ajax.php:298 +#: application/views/search/search_result_ajax.php:313 +#: application/views/timeline/index.php:60 application/views/user/edit.php:563 +#: application/views/user/edit.php:659 application/views/view_log/qso.php:411 +msgid "LoTW" +msgstr "" + +#: application/controllers/Logbook.php:663 +#: application/views/activated_gridmap/index.php:74 +#: application/views/awards/cq/index.php:64 +#: application/views/awards/dok/index.php:63 +#: application/views/awards/dxcc/index.php:69 +#: application/views/awards/helvetia/index.php:63 +#: application/views/awards/itu/index.php:64 +#: application/views/awards/jcc/index.php:60 +#: application/views/awards/rac/index.php:55 +#: application/views/awards/wab/index.php:88 +#: application/views/awards/wac/index.php:52 +#: application/views/awards/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:260 +#: application/views/gridmap/index.php:117 +#: application/views/logbookadvanced/useroptions.php:70 +#: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:143 +#: application/views/qslprint/qsolist.php:18 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:151 +#: application/views/qso/edit_ajax.php:408 +#: application/views/search/result_search.php:16 +#: application/views/search/search_result_ajax.php:260 +#: application/views/search/search_result_ajax.php:273 +#: application/views/station_profile/edit.php:305 +#: application/views/timeline/index.php:64 application/views/user/edit.php:564 +#: application/views/user/edit.php:667 application/views/user/edit.php:731 +msgid "eQSL" +msgstr "" + +#: application/controllers/Logbook.php:669 +#: application/views/awards/dok/index.php:71 +#: application/views/awards/dxcc/index.php:77 +#: application/views/awards/jcc/index.php:68 +#: application/views/awards/wab/index.php:104 +#: application/views/awards/waja/index.php:71 +#: application/views/logbookadvanced/useroptions.php:74 +#: application/views/search/search_result_ajax.php:124 +#: application/views/station_profile/edit.php:352 +#: application/views/timeline/index.php:68 +#: application/views/update/index.php:20 application/views/user/edit.php:566 +#: application/views/user/edit.php:683 +#: application/views/view_log/partial/log_ajax.php:85 +#: application/views/view_log/qso.php:426 +msgid "Clublog" +msgstr "" + +#: application/controllers/Logbook.php:1284 +#: application/controllers/Radio.php:49 +#: application/views/accumulate/index.php:31 +#: application/views/activated_gridmap/index.php:39 +#: application/views/adif/dcl_success.php:33 +#: application/views/awards/cq/index.php:88 +#: application/views/awards/dok/index.php:91 +#: application/views/awards/dxcc/index.php:162 +#: application/views/awards/helvetia/index.php:87 +#: application/views/awards/iota/index.php:105 +#: application/views/awards/itu/index.php:88 +#: application/views/awards/jcc/index.php:88 +#: application/views/awards/rac/index.php:79 +#: application/views/awards/sig/qso_list.php:12 +#: application/views/awards/wab/index.php:53 +#: application/views/awards/wac/index.php:110 +#: application/views/awards/waja/index.php:91 +#: application/views/awards/was/index.php:87 +#: application/views/components/hamsat/table.php:30 +#: application/views/contesting/index.php:108 +#: application/views/contesting/index.php:250 +#: application/views/continents/index.php:39 application/views/csv/index.php:42 +#: application/views/dashboard/index.php:4 +#: application/views/debug/index.php:548 +#: 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/logbookadvanced/edit.php:11 +#: application/views/logbookadvanced/index.php:181 +#: application/views/logbookadvanced/index.php:572 +#: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/mode/index.php:28 +#: application/views/oqrs/notinlogform.php:11 +#: application/views/oqrs/qsolist.php:9 application/views/oqrs/request.php:18 +#: application/views/oqrs/request_grouped.php:11 +#: application/views/oqrs/showrequests.php:84 +#: application/views/public_search/result.php:15 +#: application/views/qslcard/index.php:29 +#: application/views/qslcard/searchresult.php:12 +#: application/views/qslcard/searchresult.php:28 +#: application/views/qslcard/searchresult.php:44 +#: application/views/qslcard/searchresult.php:60 +#: application/views/qslcard/searchresult.php:76 +#: application/views/qslprint/qslprint.php:24 +#: application/views/qslprint/qsolist.php:9 +#: application/views/qso/components/previous_contacts.php:77 +#: application/views/qso/edit_ajax.php:119 application/views/qso/index.php:136 +#: application/views/satellite/index.php:24 +#: application/views/search/cqzones_result.php:10 +#: application/views/search/lotw_unconfirmed_result.php:8 +#: application/views/search/result_search.php:7 +#: application/views/search/search_result_ajax.php:4 +#: application/views/simplefle/index.php:150 +#: application/views/statistics/custom.php:60 +#: application/views/statistics/custom_result.php:62 +#: application/views/statistics/custom_result.php:88 +#: application/views/statistics/index.php:15 +#: application/views/statistics/index.php:20 +#: application/views/statistics/index.php:53 +#: application/views/timeline/index.php:19 application/views/user/edit.php:229 +#: application/views/user/edit.php:251 application/views/user/edit.php:273 +#: application/views/user/edit.php:295 application/views/user/edit.php:318 +#: application/views/view_log/partial/log.php:9 +#: application/views/view_log/partial/log_ajax.php:4 +#: application/views/view_log/qso.php:107 application/views/visitor/index.php:6 +#: application/views/widgets/qsos.php:29 +msgid "Mode" +msgstr "" + +#: application/controllers/Logbook.php:1285 +#: application/views/awards/pota/index.php:36 +#: application/views/awards/wwff/index.php:36 +#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:251 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/useroptions.php:38 +#: application/views/qslcard/searchresult.php:13 +#: application/views/qslcard/searchresult.php:29 +#: application/views/qslcard/searchresult.php:45 +#: application/views/qslcard/searchresult.php:61 +#: application/views/qslcard/searchresult.php:77 +#: application/views/qslprint/qslprint.php:26 +#: application/views/qslprint/qsolist.php:11 +#: application/views/qso/components/previous_contacts.php:78 +#: application/views/qso/edit_ajax.php:142 application/views/qso/index.php:177 +#: application/views/search/search_result_ajax.php:5 +#: application/views/simplefle/index.php:151 +#: application/views/user/edit.php:230 application/views/user/edit.php:252 +#: application/views/user/edit.php:274 application/views/user/edit.php:296 +#: application/views/user/edit.php:319 +#: application/views/view_log/partial/log.php:10 +#: application/views/view_log/partial/log_ajax.php:5 +#: application/views/view_log/qso.php:112 application/views/visitor/index.php:9 +msgid "RST (S)" +msgstr "" + +#: application/controllers/Logbook.php:1286 +#: application/views/awards/pota/index.php:37 +#: application/views/awards/wwff/index.php:37 +#: application/views/contesting/index.php:189 +#: application/views/contesting/index.php:252 +#: application/views/logbookadvanced/index.php:578 +#: application/views/logbookadvanced/useroptions.php:42 +#: application/views/qslcard/searchresult.php:14 +#: application/views/qslcard/searchresult.php:30 +#: application/views/qslcard/searchresult.php:46 +#: application/views/qslcard/searchresult.php:62 +#: application/views/qslcard/searchresult.php:78 +#: application/views/qslprint/qslprint.php:27 +#: application/views/qslprint/qsolist.php:12 +#: application/views/qso/components/previous_contacts.php:79 +#: application/views/qso/edit_ajax.php:147 application/views/qso/index.php:182 +#: application/views/search/search_result_ajax.php:6 +#: application/views/simplefle/index.php:152 +#: application/views/user/edit.php:231 application/views/user/edit.php:253 +#: application/views/user/edit.php:275 application/views/user/edit.php:297 +#: application/views/user/edit.php:320 +#: application/views/view_log/partial/log.php:11 +#: application/views/view_log/partial/log_ajax.php:6 +#: application/views/view_log/qso.php:117 +#: application/views/visitor/index.php:12 +msgid "RST (R)" +msgstr "" + +#: application/controllers/Logbook.php:1287 +#: application/views/dashboard/index.php:7 +#: application/views/qslcard/searchresult.php:15 +#: application/views/qslcard/searchresult.php:31 +#: application/views/qslcard/searchresult.php:47 +#: application/views/qslcard/searchresult.php:63 +#: application/views/qslcard/searchresult.php:79 +#: application/views/qso/components/previous_contacts.php:80 +#: application/views/search/result_search.php:11 +#: application/views/search/search_result_ajax.php:7 +#: application/views/stationsetup/stationsetup.php:124 +#: application/views/statistics/custom_result.php:92 +#: application/views/timeline/index.php:151 application/views/user/edit.php:232 +#: application/views/user/edit.php:254 application/views/user/edit.php:276 +#: application/views/user/edit.php:298 application/views/user/edit.php:321 +#: application/views/view_log/partial/log.php:13 +#: application/views/view_log/partial/log_ajax.php:7 +#: application/views/view_log/qso.php:238 +#: application/views/view_log/qso.php:531 +#: application/views/visitor/index.php:15 +msgid "Country" +msgstr "" + +#: application/controllers/Logbook.php:1288 +#: application/views/awards/iota/index.php:169 +#: application/views/bands/index.php:50 application/views/dashboard/index.php:8 +#: application/views/interface_assets/header.php:184 +#: application/views/logbookadvanced/edit.php:9 +#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:620 +#: application/views/logbookadvanced/qslcarousel.php:38 +#: application/views/logbookadvanced/useroptions.php:102 +#: application/views/lookup/index.php:6 +#: application/views/qslcard/searchresult.php:16 +#: application/views/qslcard/searchresult.php:32 +#: application/views/qslcard/searchresult.php:48 +#: application/views/qslcard/searchresult.php:64 +#: application/views/qslcard/searchresult.php:80 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/edit_ajax.php:345 +#: application/views/search/search_result_ajax.php:8 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:235 application/views/user/edit.php:233 +#: application/views/user/edit.php:255 application/views/user/edit.php:277 +#: application/views/user/edit.php:299 application/views/user/edit.php:322 +#: application/views/view_log/partial/log_ajax.php:8 +#: application/views/visitor/index.php:18 +msgid "IOTA" +msgstr "" + +#: application/controllers/Logbook.php:1292 +#: application/views/awards/counties/details.php:12 +#: application/views/awards/counties/index.php:20 +#: application/views/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 +#: application/views/contesting/index.php:56 +#: application/views/dashboard/index.php:12 +#: application/views/logbookadvanced/edit.php:21 +#: application/views/logbookadvanced/edit.php:66 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:611 +#: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/qslcard/searchresult.php:18 +#: application/views/qslcard/searchresult.php:34 +#: application/views/qslcard/searchresult.php:50 +#: application/views/qslcard/searchresult.php:66 +#: application/views/qslcard/searchresult.php:82 +#: application/views/qso/components/previous_contacts.php:85 +#: application/views/search/search_result_ajax.php:12 +#: application/views/timeline/index.php:210 application/views/user/edit.php:237 +#: application/views/user/edit.php:259 application/views/user/edit.php:281 +#: application/views/user/edit.php:303 application/views/user/edit.php:326 +#: application/views/view_log/partial/log_ajax.php:12 +#: application/views/visitor/index.php:24 +msgid "State" +msgstr "" + +#: application/controllers/Logbook.php:1293 +#: application/views/activated_gridmap/index.php:106 +#: application/views/awards/ffma/index.php:34 +#: application/views/awards/gridmaster/index.php:33 +#: application/views/awards/vucc/band.php:12 +#: application/views/contesting/index.php:17 +#: application/views/contesting/index.php:257 +#: application/views/dashboard/index.php:13 +#: application/views/distancerecords/index.php:20 +#: application/views/gridmap/index.php:152 +#: application/views/labels/index.php:125 +#: application/views/logbookadvanced/edit.php:8 +#: application/views/logbookadvanced/index.php:10 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/qslcarousel.php:39 +#: application/views/logbookadvanced/useroptions.php:126 +#: application/views/lookup/index.php:5 +#: application/views/qslcard/searchresult.php:19 +#: application/views/qslcard/searchresult.php:35 +#: application/views/qslcard/searchresult.php:51 +#: application/views/qslcard/searchresult.php:67 +#: application/views/qslcard/searchresult.php:83 +#: application/views/qso/components/previous_contacts.php:86 +#: application/views/qso/edit_ajax.php:156 application/views/qso/index.php:279 +#: application/views/satellite/pass.php:28 +#: application/views/search/cqzones_result.php:12 +#: application/views/search/result.php:33 +#: application/views/search/search_result_ajax.php:13 +#: application/views/simplefle/index.php:153 +#: application/views/stationsetup/stationsetup.php:125 +#: application/views/timeline/index.php:290 application/views/user/edit.php:130 +#: application/views/user/edit.php:238 application/views/user/edit.php:260 +#: application/views/user/edit.php:282 application/views/user/edit.php:304 +#: application/views/user/edit.php:327 application/views/user/profile.php:34 +#: application/views/view_log/partial/log_ajax.php:13 +#: application/views/view_log/qso.php:518 +#: application/views/visitor/index.php:27 +msgid "Gridsquare" +msgstr "" + +#: application/controllers/Logbook.php:1294 +#: application/views/activated_gridmap/index.php:108 +#: application/views/awards/ffma/index.php:36 +#: application/views/awards/gridmaster/index.php:35 +#: 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/logbookadvanced/index.php:12 +#: application/views/qslcard/searchresult.php:20 +#: application/views/qslcard/searchresult.php:36 +#: application/views/qslcard/searchresult.php:52 +#: application/views/qslcard/searchresult.php:68 +#: application/views/qslcard/searchresult.php:84 +#: application/views/qso/components/previous_contacts.php:87 +#: application/views/search/search_result_ajax.php:14 +#: application/views/user/edit.php:239 application/views/user/edit.php:261 +#: application/views/user/edit.php:283 application/views/user/edit.php:305 +#: application/views/user/edit.php:328 +#: application/views/view_log/partial/log_ajax.php:14 +#: application/views/visitor/index.php:30 +msgid "Distance" +msgstr "" + +#: application/controllers/Logbook.php:1295 +#: application/views/accumulate/index.php:21 +#: application/views/activated_gridmap/index.php:8 +#: application/views/activators/index.php:10 +#: application/views/adif/dcl_success.php:32 +#: application/views/awards/cq/index.php:74 +#: application/views/awards/dok/index.php:77 +#: application/views/awards/dxcc/index.php:117 +#: application/views/awards/helvetia/index.php:73 +#: application/views/awards/iota/index.php:91 +#: application/views/awards/itu/index.php:74 +#: application/views/awards/jcc/index.php:74 +#: application/views/awards/pota/index.php:35 +#: application/views/awards/rac/index.php:65 +#: application/views/awards/sig/qso_list.php:13 +#: application/views/awards/sota/index.php:26 +#: application/views/awards/vucc/index.php:21 +#: application/views/awards/wab/index.php:22 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/waja/index.php:77 +#: application/views/awards/was/index.php:73 +#: application/views/awards/wwff/index.php:35 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 +#: application/views/bands/create.php:24 application/views/bands/edit.php:6 +#: application/views/bands/index.php:45 +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:249 +#: application/views/continents/index.php:30 application/views/csv/index.php:31 +#: application/views/dashboard/index.php:15 +#: application/views/debug/index.php:549 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/logbookadvanced/edit.php:3 +#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/oqrs/notinlogform.php:10 +#: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 +#: application/views/oqrs/request_grouped.php:10 +#: application/views/oqrs/showrequests.php:83 +#: application/views/public_search/result.php:16 +#: application/views/qslcard/index.php:32 +#: application/views/qslcard/searchresult.php:21 +#: application/views/qslcard/searchresult.php:37 +#: application/views/qslcard/searchresult.php:39 +#: application/views/qslcard/searchresult.php:53 +#: application/views/qslcard/searchresult.php:69 +#: application/views/qslcard/searchresult.php:85 +#: application/views/qslmanagement/index.php:24 +#: application/views/qslprint/qslprint.php:25 +#: application/views/qslprint/qsolist.php:10 +#: application/views/qso/components/previous_contacts.php:88 +#: application/views/qso/edit_ajax.php:83 application/views/qso/index.php:151 +#: application/views/search/cqzones_result.php:11 +#: application/views/search/lotw_unconfirmed_result.php:9 +#: application/views/search/result_search.php:10 +#: application/views/search/search_result_ajax.php:15 +#: application/views/simplefle/index.php:149 +#: application/views/stationsetup/exportmapoptions.php:31 +#: application/views/statistics/custom.php:53 +#: application/views/statistics/custom_result.php:55 +#: application/views/statistics/custom_result.php:91 +#: application/views/statistics/index.php:21 +#: application/views/timeline/index.php:7 +#: application/views/timeplotter/index.php:14 +#: application/views/user/edit.php:227 application/views/user/edit.php:249 +#: application/views/user/edit.php:271 application/views/user/edit.php:293 +#: application/views/user/edit.php:316 +#: application/views/view_log/partial/log.php:12 +#: application/views/view_log/partial/log_ajax.php:15 +#: application/views/view_log/qso.php:87 application/views/visitor/index.php:33 +#: application/views/widgets/qsos.php:32 +msgid "Band" +msgstr "" + +#: application/controllers/Logbook.php:1296 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 +#: application/views/contesting/index.php:138 +#: application/views/dashboard/index.php:16 +#: application/views/qslcard/searchresult.php:22 +#: application/views/qslcard/searchresult.php:38 +#: application/views/qslcard/searchresult.php:54 +#: application/views/qslcard/searchresult.php:70 +#: application/views/qslcard/searchresult.php:86 +#: application/views/qso/components/previous_contacts.php:89 +#: application/views/qso/edit_ajax.php:71 application/views/qso/index.php:169 +#: application/views/search/search_result_ajax.php:16 +#: application/views/user/edit.php:228 application/views/user/edit.php:250 +#: application/views/user/edit.php:272 application/views/user/edit.php:294 +#: application/views/user/edit.php:317 +#: application/views/view_log/partial/log_ajax.php:16 +#: application/views/view_log/qso.php:94 application/views/visitor/index.php:36 +msgid "Frequency" +msgstr "" + +#: application/controllers/Logbook.php:1297 +#: application/views/dashboard/index.php:17 +#: application/views/logbookadvanced/edit.php:12 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:626 +#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/qslcard/searchresult.php:23 +#: application/views/qslcard/searchresult.php:55 +#: application/views/qslcard/searchresult.php:71 +#: application/views/qslcard/searchresult.php:87 +#: application/views/qso/components/previous_contacts.php:90 +#: application/views/search/search_result_ajax.php:17 +#: application/views/simplefle/index.php:112 +#: application/views/user/edit.php:240 application/views/user/edit.php:262 +#: application/views/user/edit.php:284 application/views/user/edit.php:306 +#: application/views/user/edit.php:329 +#: application/views/view_log/partial/log_ajax.php:17 +#: application/views/view_log/qso.php:538 +#: application/views/visitor/index.php:39 +msgid "Operator" +msgstr "" + +#: application/controllers/Logbook.php:1318 +#: application/controllers/Stationsetup.php:381 +#: application/views/awards/dxcc/index.php:28 +#: application/views/awards/dxcc/index.php:238 +#: application/views/csv/index.php:65 application/views/dashboard/index.php:28 +#: application/views/dxatlas/index.php:65 +#: application/views/interface_assets/footer.php:675 +#: application/views/kml/index.php:54 +#: application/views/logbookadvanced/index.php:165 +#: application/views/lookup/index.php:31 +#: application/views/lotw_views/index.php:52 +#: application/views/qso/components/previous_contacts.php:59 +#: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:45 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/timeline/index.php:167 +#: application/views/timeplotter/index.php:33 +#: application/views/view_log/partial/log_ajax.php:29 +#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:532 +msgid "Deleted DXCC" +msgstr "" + +#: application/controllers/Logbookadvanced.php:31 +msgid "Advanced logbook" +msgstr "" + +#: application/controllers/Lookup.php:22 +msgid "Quick Lookup" +msgstr "" + +#: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83 +#: application/controllers/Lotw.php:125 application/views/adif/import.php:27 +#: application/views/interface_assets/header.php:429 +#: application/views/lotw/import.php:3 +#: application/views/lotw_views/index.php:12 +#: application/views/lotw_views/upload_cert.php:3 +#: application/views/user/edit.php:705 application/views/visitor/index.php:324 +msgid "Logbook of the World" +msgstr "" + +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "" + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "" + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "" + +#: application/controllers/Lotw.php:413 +#, 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:617 +msgid "LoTW ADIF Information" +msgstr "" + +#: application/controllers/Lotw.php:725 +msgid "LoTW ADIF Import" +msgstr "" + +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "" + +#: application/controllers/Lotw.php:837 +msgid "LoTW .TQ8 Upload" +msgstr "" + +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "" + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 +msgid "LoTW .TQ8 Sent" +msgstr "" + +#: application/controllers/Lotw.php:946 +msgid "LoTW .TQ8 Not Sent" +msgstr "" + +#: application/controllers/Mode.php:25 +#: application/views/interface_assets/header.php:276 +#: application/views/mode/index.php:15 +msgid "Modes" +msgstr "" + +#: application/controllers/Mode.php:62 +msgid "Edit Mode" +msgstr "" + +#: application/controllers/Notes.php:18 +#: application/views/interface_assets/header.php:128 +#: application/views/notes/add.php:9 application/views/notes/edit.php:10 +#: application/views/notes/main.php:5 application/views/notes/main.php:8 +#: application/views/notes/view.php:6 application/views/notes/view.php:9 +#: application/views/qso/edit_ajax.php:36 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:38 +#: application/views/qso/index.php:563 application/views/qso/index.php:608 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:593 +msgid "Notes" +msgstr "" + +#: application/controllers/Notes.php:37 +msgid "Add Notes" +msgstr "" + +#: application/controllers/Notes.php:64 +#: application/views/oqrs/showrequests.php:88 +msgid "Note" +msgstr "" + +#: application/controllers/Notes.php:92 application/views/notes/edit.php:7 +#: application/views/notes/view.php:19 +msgid "Edit Note" +msgstr "" + +#: application/controllers/Options.php:31 +#: application/controllers/Options.php:41 +#: application/controllers/Options.php:56 +#: application/controllers/Options.php:144 +#: application/controllers/Options.php:155 +#: application/controllers/Options.php:192 +#: application/controllers/Options.php:203 +#: application/controllers/Options.php:236 +#: application/controllers/Options.php:247 +#: application/controllers/Options.php:317 +#: application/controllers/Options.php:327 +#: application/controllers/Options.php:395 +#: application/controllers/Options.php:405 +msgid "Wavelog Options" +msgstr "" + +#: application/controllers/Options.php:42 +#: application/controllers/Options.php:57 +#: application/views/options/sidebar.php:4 +msgid "Appearance" +msgstr "" + +#: application/controllers/Options.php:78 +#: application/controllers/Options.php:86 +#: application/controllers/Options.php:94 +#: application/controllers/Options.php:102 +#: application/controllers/Options.php:110 +#: application/controllers/Options.php:118 +#: application/controllers/Options.php:126 +#: application/controllers/Options.php:134 +msgid "Options saved" +msgstr "" + +#: application/controllers/Options.php:173 +msgid "de continent changed to " +msgstr "" + +#: application/controllers/Options.php:178 +msgid "Maximum age of spots changed to " +msgstr "" + +#: application/controllers/Options.php:183 +msgid "DXCluster Cache URL changed to " +msgstr "" + +#: application/controllers/Options.php:193 +#: application/controllers/Options.php:204 +msgid "Radio Settings" +msgstr "" + +#: application/controllers/Options.php:225 +msgid "Radio Timeout Warning changed to " +msgstr "" + +#: application/controllers/Options.php:237 +#: application/controllers/Options.php:248 +#: application/views/options/sidebar.php:6 +msgid "Email" +msgstr "" + +#: application/controllers/Options.php:305 +msgid "The settings were saved successfully." +msgstr "" + +#: application/controllers/Options.php:307 +msgid "Something went wrong with saving the settings. Try again." +msgstr "" + +#: application/controllers/Options.php:318 +#: application/controllers/Options.php:328 +#: application/views/options/sidebar.php:8 +msgid "OQRS Options" +msgstr "" + +#: application/controllers/Options.php:341 +msgid "OQRS options have been saved." +msgstr "" + +#: application/controllers/Options.php:381 +#: application/controllers/Options.php:386 +msgid "Testmail failed. Something went wrong." +msgstr "" + +#: application/controllers/Options.php:383 +msgid "Testmail sent. Email settings seem to be correct." +msgstr "" + +#: application/controllers/Options.php:396 +#: application/controllers/Options.php:406 +msgid "Version Info Settings" +msgstr "" + +#: application/controllers/Options.php:412 +msgid "Version Info Header changed to" +msgstr "" + +#: application/controllers/Options.php:416 +msgid "Version Info Mode changed to" +msgstr "" + +#: application/controllers/Options.php:421 +msgid "Version Info Custom Text saved!" +msgstr "" + +#: application/controllers/Options.php:432 +msgid "Version Info will be shown to all users again" +msgstr "" + +#: application/controllers/Options.php:440 +msgid "Version Info will not be shown to any user" +msgstr "" + +#: application/controllers/Oqrs.php:46 application/controllers/Oqrs.php:85 +#: application/controllers/Oqrs.php:97 +msgid "Log Search & OQRS" +msgstr "" + +#: application/controllers/Oqrs.php:127 +#: application/views/interface_assets/header.php:419 +msgid "OQRS Requests" +msgstr "" + +#: application/controllers/Qrbcalc.php:17 +msgid "QRB Calculator" +msgstr "" + +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "" + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" + +#: application/controllers/Qrz.php:173 +#: application/views/interface_assets/header.php:432 +msgid "QRZ Logbook" +msgstr "" + +#: application/controllers/Qrz.php:253 +msgid "QRZ QSL Import" +msgstr "" + +#: application/controllers/Qrz.php:307 +msgid "QRZ ADIF Information" +msgstr "" + +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:277 +#: application/views/qslcard/index.php:5 +#: application/views/visitor/index.php:283 +msgid "QSL Cards" +msgstr "" + +#: application/controllers/Qsl.php:35 +msgid "Upload QSL Cards" +msgstr "" + +#: application/controllers/Qslmanagement.php:14 +msgid "QSL Card Management" +msgstr "" + +#: application/controllers/Qslprint.php:46 +msgid "Print Requested QSLs" +msgstr "" + +#: application/controllers/Qso.php:102 +msgid "Add QSO" +msgstr "" + +#: application/controllers/Radio.php:17 +#: application/views/interface_assets/header.php:438 +msgid "Hardware Interfaces" +msgstr "" + +#: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 +#: application/views/bandmap/list.php:60 +#: application/views/contesting/index.php:143 +#: application/views/qso/index.php:312 +msgid "Radio" +msgstr "" + +#: application/controllers/Radio.php:50 +msgid "Timestamp" +msgstr "" + +#: application/controllers/Radio.php:52 +#: application/views/logbookadvanced/index.php:550 +#: application/views/lotw_views/index.php:43 +#: application/views/simplefle/index.php:20 +#: application/views/simplefle/index.php:177 +#: application/views/stationsetup/exportmapoptions.php:5 +#: application/views/statistics/custom.php:31 +#: application/views/statistics/custom_result.php:33 +msgid "Options" +msgstr "" + +#: application/controllers/Radio.php:90 +#: application/views/contesting/index.php:147 +#: application/views/qso/index.php:316 +msgid "last updated" +msgstr "" + +#: application/controllers/Radio.php:97 application/controllers/Radio.php:100 +msgid "Set as default radio" +msgstr "" + +#: application/controllers/Radio.php:102 +msgid "Default (click to release)" +msgstr "" + +#: application/controllers/Radio.php:105 +#: application/controllers/Stationsetup.php:372 +#: application/views/api/help.php:61 application/views/contesting/add.php:62 +#: application/views/interface_assets/footer.php:2337 +#: application/views/interface_assets/footer.php:2355 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:542 +#: application/views/lotw_views/index.php:114 +#: application/views/mode/index.php:55 +#: application/views/oqrs/showrequests.php:71 +#: application/views/qslcard/index.php:65 +#: application/views/satellite/edit.php:40 +#: application/views/satellite/index.php:26 +#: application/views/search/stored_queries.php:22 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:192 +#: application/views/themes/index.php:107 application/views/user/index.php:57 +#: application/views/view_log/qso.php:616 +msgid "Delete" +msgstr "" + +#: application/controllers/Radio.php:111 +msgid "No CAT interfaced radios found." +msgstr "" + +#: application/controllers/Reg1test.php:25 +msgid "Export EDI" +msgstr "" + +#: application/controllers/Satellite.php:39 +msgid "Create Satellite" +msgstr "" + +#: application/controllers/Satellite.php:66 +msgid "Edit Satellite" +msgstr "" + +#: application/controllers/Sattimers.php:41 +#, php-format +msgid "You have no station locations. Go %s to create it!" +msgstr "" + +#: application/controllers/Sattimers.php:41 +#: application/views/awards/counties/index.php:8 +#: application/views/awards/dok/index.php:10 +#: application/views/awards/iota/index.php:19 +#: application/views/awards/was/index.php:23 +#: application/views/simplefle/index.php:16 +msgid "here" +msgstr "" + +#: application/controllers/Sattimers.php:44 +#: application/views/sattimers/index.php:13 +msgid "Satellite Timers" +msgstr "" + +#: application/controllers/Search.php:19 +#: application/views/continents/index.php:49 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:340 +#: application/views/interface_assets/header.php:347 +#: application/views/logbookadvanced/index.php:538 +#: application/views/oqrs/index.php:28 +#: application/views/oqrs/showrequests.php:67 +#: application/views/qslcard/searchform.php:8 +#: application/views/search/cqzones.php:4 +#: application/views/search/cqzones.php:12 +#: application/views/search/cqzones.php:36 +#: application/views/search/filter.php:20 +#: application/views/search/filter.php:38 +#: application/views/search/lotw_unconfirmed.php:4 +#: application/views/search/lotw_unconfirmed.php:12 +#: application/views/search/lotw_unconfirmed.php:37 +#: application/views/search/main.php:4 application/views/search/main.php:12 +#: application/views/search/main.php:33 +#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:98 +msgid "Search" +msgstr "" + +#: application/controllers/Search.php:28 +msgid "Search & Filter Logbook" +msgstr "" + +#: application/controllers/Search.php:58 +msgid "Incorrectly logged CQ zones" +msgstr "" + +#: application/controllers/Search.php:70 +msgid "" +"QSOs unconfirmed on LoTW, but the callsign has uploaded to LoTW after QSO " +"date" +msgstr "" + +#: application/controllers/Station.php:36 +#: application/controllers/Stationsetup.php:226 +msgid "Create Station Location" +msgstr "" + +#: application/controllers/Station.php:51 +msgid "Edit Station Location: " +msgstr "" + +#: application/controllers/Station.php:59 application/views/csv/index.php:19 +#: application/views/dxatlas/index.php:19 +#: application/views/labels/index.php:124 +#: application/views/logbookadvanced/edit.php:19 +#: application/views/qslprint/index.php:20 application/views/qso/index.php:300 +#: application/views/search/search_result_ajax.php:18 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 +#: application/views/user/edit.php:331 +#: application/views/view_log/partial/log_ajax.php:18 +#: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 +#: application/views/webadif/export.php:115 +msgid "Station Location" +msgstr "" + +#: application/controllers/Station.php:73 +msgid "Duplicate Station Location:" +msgstr "" + +#: application/controllers/Stationsetup.php:35 +#: application/views/interface_assets/header.php:381 +#: application/views/interface_assets/header.php:494 +msgid "Station Setup" +msgstr "" + +#: application/controllers/Stationsetup.php:50 +#: application/controllers/Stationsetup.php:68 +#: application/controllers/Stationsetup.php:395 +#: application/controllers/Stationsetup.php:409 +msgid "Not allowed" +msgstr "" + +#: application/controllers/Stationsetup.php:72 +#: application/controllers/Stationsetup.php:86 +#: application/controllers/Stationsetup.php:105 +#: application/controllers/Stationsetup.php:118 +#: application/controllers/Stationsetup.php:131 +#: application/controllers/Stationsetup.php:152 +#: application/controllers/Stationsetup.php:436 +#: application/views/qso/index.php:630 +msgid "Error" +msgstr "" + +#: application/controllers/Stationsetup.php:159 +#: application/views/stationsetup/stationsetup.php:22 +msgid "Create Station Logbook" +msgstr "" + +#: application/controllers/Stationsetup.php:166 +msgid "Edit container name" +msgstr "" + +#: application/controllers/Stationsetup.php:181 +msgid "Edit linked locations" +msgstr "" + +#: application/controllers/Stationsetup.php:190 +msgid "Edit visitor site" +msgstr "" + +#: application/controllers/Stationsetup.php:212 +msgid "Error. Link is already in use!" +msgstr "" + +#: application/controllers/Stationsetup.php:253 +#: application/views/options/appearance.php:57 +#: application/views/options/appearance.php:64 +#: application/views/options/appearance.php:73 +#: application/views/options/appearance.php:83 +#: application/views/options/appearance.php:92 +#: application/views/options/appearance.php:101 +#: application/views/options/appearance.php:110 +#: application/views/options/version_dialog.php:66 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 +#: application/views/stationsetup/stationsetup.php:76 +#: application/views/user/edit.php:451 application/views/user/edit.php:460 +msgid "Disabled" +msgstr "" + +#: application/controllers/Stationsetup.php:261 +#: application/views/stationsetup/stationsetup.php:44 +msgid "Set as Active Logbook" +msgstr "" + +#: application/controllers/Stationsetup.php:263 +#: application/views/interface_assets/header.php:492 +#: application/views/stationsetup/stationsetup.php:46 +#: application/views/view_log/index.php:4 +msgid "Active Logbook" +msgstr "" + +#: application/controllers/Stationsetup.php:270 +#: application/views/stationsetup/stationsetup.php:55 +msgid "" +"Are you sure you want to delete the following station logbook? You must re-" +"link any locations linked here to another logbook.: " +msgstr "" + +#: application/controllers/Stationsetup.php:280 +#: application/views/stationsetup/stationsetup.php:65 +msgid "View Public Page for Logbook: " +msgstr "" + +#: application/controllers/Stationsetup.php:281 +msgid "Are you sure you want to delete the public slug?" +msgstr "" + +#: application/controllers/Stationsetup.php:349 +#: application/views/stationsetup/stationsetup.php:154 +msgid "" +"Are you sure you want to make the following station the active station: " +msgstr "" + +#: application/controllers/Stationsetup.php:349 +#: application/views/stationsetup/stationsetup.php:154 +msgid "Set Active" +msgstr "" + +#: application/controllers/Stationsetup.php:351 +#: application/views/stationsetup/stationsetup.php:156 +msgid "Active Station" +msgstr "" + +#: application/controllers/Stationsetup.php:354 +#: application/views/interface_assets/header.php:113 +#: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 +#: application/views/simplefle/index.php:28 +#: application/views/stationsetup/stationsetup.php:161 +#: application/views/user/index.php:90 application/views/user/index.php:92 +msgid "QSO" +msgstr "" + +#: application/controllers/Stationsetup.php:359 +#: application/views/api/help.php:57 application/views/contesting/add.php:59 +#: application/views/cron/index.php:58 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 +#: application/views/labels/index.php:47 application/views/labels/index.php:83 +#: application/views/logbookadvanced/index.php:541 +#: application/views/mode/index.php:52 application/views/satellite/edit.php:39 +#: application/views/satellite/index.php:25 +#: application/views/search/stored_queries.php:21 +#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:165 +#: application/views/themes/index.php:104 application/views/user/index.php:52 +msgid "Edit" +msgstr "" + +#: application/controllers/Stationsetup.php:363 +#: application/views/stationsetup/stationsetup.php:185 +msgid "Are you sure you want to delete all QSOs within this station profile?" +msgstr "" + +#: application/controllers/Stationsetup.php:363 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:187 +msgid "Empty Log" +msgstr "" + +#: application/controllers/Stationsetup.php:367 +#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:168 +msgid "Copy" +msgstr "" + +#: application/controllers/Stationsetup.php:372 +#: application/views/stationsetup/stationsetup.php:191 +#, php-format +msgid "" +"Are you sure you want delete station profile '%s'? This will delete all QSOs " +"within this station profile." +msgstr "" + +#: application/controllers/Stationsetup.php:379 +#: application/views/qso/edit_ajax.php:221 +msgid "NONE" +msgstr "" + +#: application/controllers/Stationsetup.php:462 +msgid "Edit Export Map options" +msgstr "" + +#: application/controllers/Statistics.php:27 +#: application/views/interface_assets/header.php:134 +msgid "Statistics" +msgstr "" + +#: application/controllers/Statistics.php:50 +msgid "Custom Statistics" +msgstr "" + +#: application/controllers/Statistics.php:232 +#: application/views/interface_assets/header.php:136 +#: application/views/statistics/qsltable.php:5 +msgid "QSL Statistics" +msgstr "" + +#: application/controllers/Themes.php:27 +#: application/views/interface_assets/header.php:282 +msgid "Themes" +msgstr "" + +#: application/controllers/Themes.php:46 +msgid "Create Theme" +msgstr "" + +#: application/controllers/Themes.php:65 +msgid "Edit Theme" +msgstr "" + +#: application/controllers/Timeline.php:15 +#: application/views/interface_assets/header.php:150 +#: application/views/timeline/index.php:2 +msgid "Timeline" +msgstr "" + +#: application/controllers/Timeplotter.php:17 +#: application/views/interface_assets/header.php:154 +#: application/views/timeplotter/index.php:9 +msgid "Timeplotter" +msgstr "" + +#: application/controllers/Update.php:26 +msgid "Updates" +msgstr "" + +#: application/controllers/Update.php:78 +msgid "Preparing DXCC-Entries: " +msgstr "" + +#: application/controllers/Update.php:122 +msgid "Preparing DXCC Exceptions: " +msgstr "" + +#: application/controllers/Update.php:166 +msgid "Preparing DXCC Prefixes: " +msgstr "" + +#: application/controllers/Update.php:230 +msgid "DONE" +msgstr "" + +#: application/controllers/Update.php:244 +msgid "Updating..." +msgstr "" + +#: application/controllers/Update.php:247 +msgid "Dxcc Entities:" +msgstr "" + +#: application/controllers/Update.php:248 +msgid "Dxcc Exceptions:" +msgstr "" + +#: application/controllers/Update.php:249 +msgid "Dxcc Prefixes:" +msgstr "" + +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:272 +msgid "User Accounts" +msgstr "" + +#: application/controllers/User.php:76 +msgid "Add User" +msgstr "" + +#: application/controllers/User.php:190 +msgid "Users" +msgstr "" + +#: application/controllers/User.php:264 application/controllers/User.php:697 +msgid "Edit User" +msgstr "" + +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 +msgid "User" +msgstr "" + +#: application/controllers/User.php:689 application/controllers/User.php:692 +msgid "edited" +msgstr "" + +#: application/controllers/User.php:746 +msgid "Profile" +msgstr "" + +#: application/controllers/User.php:803 +msgid "" +"Congrats! Wavelog was successfully installed. You can now login for the " +"first time." +msgstr "" + +#: application/controllers/User.php:867 application/controllers/User.php:877 +msgid "Login failed. Try again." +msgstr "" + +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:360 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:87 +msgid "Login" +msgstr "" + +#: application/controllers/User.php:922 +msgid "" +"Sorry. This instance is currently in maintenance mode. If this message " +"appears unexpectedly or keeps showing up, please contact an administrator. " +"Only administrators are currently allowed to log in." +msgstr "" + +#: application/controllers/User.php:925 +msgid "Incorrect username or password!" +msgstr "" + +#: application/controllers/User.php:942 +#, php-format +msgid "User %s logged out." +msgstr "" + +#: application/controllers/User.php:956 +msgid "Password Reset is disabled on the Demo!" +msgstr "" + +#: application/controllers/User.php:969 +msgid "Forgot Password" +msgstr "" + +#: application/controllers/User.php:1019 application/views/user/index.php:8 +msgid "Email settings are incorrect." +msgstr "" + +#: application/controllers/User.php:1023 application/controllers/User.php:1028 +msgid "Password Reset Processed." +msgstr "" + +#: application/controllers/User.php:1129 +#: application/views/user/forgot_password.php:51 +#: application/views/user/reset_password.php:8 +#: application/views/user/reset_password.php:35 +msgid "Reset Password" +msgstr "" + +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "" + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "" + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "" + +#: application/controllers/Visitor.php:50 +#: application/controllers/Visitor.php:81 +#: application/controllers/Visitor.php:148 +#: application/controllers/Visitor.php:175 +#: application/controllers/Visitor.php:210 +#: application/controllers/Visitor.php:472 +#: application/controllers/Widgets.php:40 +msgid "Unknown Public Page." +msgstr "" + +#: application/controllers/Visitor.php:76 +#: application/controllers/Visitor.php:171 +#: application/controllers/Visitor.php:206 +#: application/controllers/Visitor.php:468 +#: application/controllers/Widgets.php:36 +msgid "Empty Logbook" +msgstr "" + +#: application/controllers/Visitor.php:216 +msgid "Satellite Gridsquare Map" +msgstr "" + +#: application/controllers/Visitor.php:405 +#: application/views/stationsetup/stationsetup.php:35 +msgid "Public Search" +msgstr "" + +#: application/controllers/Visitor.php:438 +msgid "Export Map" +msgstr "" + +#: application/controllers/Webadif.php:90 +#: application/controllers/Webadif.php:137 +#: application/views/interface_assets/header.php:433 +msgid "QO-100 Dx Club Upload" +msgstr "" + +#: application/controllers/Widgets.php:21 +msgid "Unknown Public Page, please make sure the public slug is correct." +msgstr "" + +#: application/controllers/Widgets.php:54 application/views/oqrs/index.php:69 +msgid "No stations found that are using Wavelog OQRS." +msgstr "" + +#: application/libraries/Subdivisions.php:31 +msgctxt "Division Name (States in various countries)." +msgid "Province" +msgstr "" + +#: application/libraries/Subdivisions.php:39 +msgctxt "Division Name (States in various countries)." +msgid "Oblast" +msgstr "" + +#: application/libraries/Subdivisions.php:41 +#: application/libraries/Subdivisions.php:47 +msgctxt "Division Name (States in various countries)." +msgid "Region" +msgstr "" + +#: application/libraries/Subdivisions.php:45 +msgctxt "Division Name (States in various countries)." +msgid "Department" +msgstr "" + +#: application/libraries/Subdivisions.php:49 +msgctxt "Division Name (States in various countries)." +msgid "Municipality" +msgstr "" + +#: application/libraries/Subdivisions.php:51 +msgctxt "Division Name (States in various countries)." +msgid "Federal State" +msgstr "" + +#: application/libraries/Subdivisions.php:56 +#: application/libraries/Subdivisions.php:94 +msgctxt "Division Name (States in various countries)." +msgid "County" +msgstr "" + +#: application/libraries/Subdivisions.php:60 +#: application/libraries/Subdivisions.php:85 +msgctxt "Division Name (States in various countries)." +msgid "District" +msgstr "" + +#: application/libraries/Subdivisions.php:62 +msgctxt "Division Name (States in various countries)." +msgid "Canton" +msgstr "" + +#: application/libraries/Subdivisions.php:64 +msgctxt "Division Name (States in various countries)." +msgid "US State" +msgstr "" + +#: application/libraries/Subdivisions.php:67 +msgctxt "Division Name (States in various countries)." +msgid "Prefecture" +msgstr "" + +#: application/libraries/Subdivisions.php:69 +msgctxt "Division Name (States in various countries)." +msgid "State" +msgstr "" + +#: application/libraries/Subdivisions.php:78 +msgctxt "Division Name (States in various countries)." +msgid "US County" +msgstr "" + +#: application/libraries/Subdivisions.php:90 +msgctxt "Division Name (States in various countries)." +msgid "DME" +msgstr "" + +#: application/libraries/Subdivisions.php:92 +msgctxt "Division Name (States in various countries)." +msgid "City / Ku / Gun" +msgstr "" + +#: application/models/Eqslmethods_model.php:281 +msgid "Your eQSL username and/or password is incorrect." +msgstr "" + +#: application/models/Eqslmethods_model.php:287 +msgid "Something went wrong with eQSL.cc!" +msgstr "" + +#: application/models/Eqslmethods_model.php:303 +msgid "eQSL.cc is experiencing issues. Please try exporting QSOs later." +msgstr "" + +#: application/models/Eqslmethods_model.php:309 +msgid "" +"There was an error in one of the QSOs. You might want to manually upload " +"them." +msgstr "" + +#: application/models/Eqslmethods_model.php:315 +msgid "" +"It seems that the eQSL site has changed. Please open up an issue on GitHub." +msgstr "" + +#: application/models/Hrdlog_model.php:22 +msgid "" +"HRDlog: QSOs have been uploaded to hrdlog.net for the station callsign: " +msgstr "" + +#: application/models/Hrdlog_model.php:25 +msgid "HRDlog: No QSOs found to upload for the station callsign: " +msgstr "" + +#: application/models/Hrdlog_model.php:31 +msgid "HRDlog: No station profiles with HRDlog Credentials found." +msgstr "" + +#: application/models/Logbook_model.php:4255 +msgid "QSO could not be matched" +msgstr "" + +#: application/models/Logbook_model.php:4261 +msgid "confirmed by LoTW/Clublog/eQSL/Contest" +msgstr "" + +#: application/models/Logbook_model.php:4266 +msgid "confirmed by award manager" +msgstr "" + +#: application/models/Logbook_model.php:4269 +msgid "confirmed by cross-check of DCL data" +msgstr "" + +#: application/models/Logbook_model.php:4272 +msgid "confirmation pending" +msgstr "" + +#: application/models/Logbook_model.php:4275 +msgid "unconfirmed" +msgstr "" + +#: application/models/Logbook_model.php:4278 +msgid "unknown" +msgstr "" + +#: application/views/accumulate/index.php:2 +msgid "Accumulated number of DXCCs worked" +msgstr "" + +#: application/views/accumulate/index.php:3 +msgid "Accumulated number of States worked" +msgstr "" + +#: application/views/accumulate/index.php:4 +msgid "Accumulated number of IOTAs worked" +msgstr "" + +#: application/views/accumulate/index.php:5 +msgid "Accumulated number of CQ Zones worked" +msgstr "" + +#: application/views/accumulate/index.php:6 +msgid "Accumulated number of VUCC Grids worked" +msgstr "" + +#: application/views/accumulate/index.php:7 +msgid "Accumulated number of WAJA worked" +msgstr "" + +#: application/views/accumulate/index.php:8 +#: application/views/dashboard/index.php:238 +#: application/views/dayswithqso/index.php:16 +#: application/views/statistics/index.php:18 +#: application/views/visitor/index.php:246 +msgid "Year" +msgstr "" + +#: application/views/accumulate/index.php:9 +#: application/views/accumulate/index.php:67 +msgid "Yearly" +msgstr "" + +#: application/views/accumulate/index.php:10 +#: application/views/dashboard/index.php:243 +#: application/views/visitor/index.php:251 +msgid "Month" +msgstr "" + +#: application/views/accumulate/index.php:11 +#: application/views/accumulate/index.php:73 +msgid "Monthly" +msgstr "" + +#: application/views/accumulate/index.php:12 +msgid "Difference" +msgstr "" + +#: application/views/accumulate/index.php:24 +#: application/views/accumulate/index.php:34 +#: application/views/accumulate/index.php:83 +#: application/views/activated_gridmap/index.php:10 +#: application/views/activated_gridmap/index.php:22 +#: application/views/activated_gridmap/index.php:32 +#: application/views/activated_gridmap/index.php:41 +#: application/views/activators/index.php:13 +#: application/views/awards/cq/index.php:77 +#: application/views/awards/cq/index.php:91 +#: application/views/awards/dok/index.php:94 +#: application/views/awards/dxcc/index.php:134 +#: application/views/awards/dxcc/index.php:150 +#: application/views/awards/dxcc/index.php:165 +#: application/views/awards/helvetia/index.php:90 +#: application/views/awards/iota/index.php:108 +#: application/views/awards/itu/index.php:77 +#: application/views/awards/itu/index.php:91 +#: application/views/awards/jcc/index.php:91 +#: application/views/awards/rac/index.php:82 +#: application/views/awards/wab/index.php:24 +#: application/views/awards/wab/index.php:36 +#: application/views/awards/wab/index.php:46 +#: application/views/awards/wab/index.php:55 +#: application/views/awards/wac/index.php:81 +#: application/views/awards/wac/index.php:97 +#: application/views/awards/wac/index.php:113 +#: application/views/awards/waja/index.php:94 +#: application/views/awards/was/index.php:90 +#: application/views/bandmap/list.php:71 application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:90 application/views/bands/index.php:117 +#: application/views/cabrillo/index.php:65 +#: application/views/continents/index.php:32 +#: application/views/continents/index.php:41 application/views/csv/index.php:21 +#: application/views/csv/index.php:33 application/views/csv/index.php:44 +#: application/views/csv/index.php:60 application/views/csv/index.php:82 +#: application/views/csv/index.php:94 application/views/distances/index.php:21 +#: application/views/distances/index.php:36 +#: application/views/distances/index.php:46 +#: application/views/distances/index.php:56 +#: application/views/dxatlas/index.php:21 +#: application/views/dxatlas/index.php:33 +#: application/views/dxatlas/index.php:44 +#: 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/interface_assets/footer.php:1448 +#: application/views/interface_assets/footer.php:1587 +#: application/views/kml/index.php:21 application/views/kml/index.php:33 +#: application/views/kml/index.php:49 application/views/kml/index.php:67 +#: application/views/kml/index.php:79 +#: application/views/logbookadvanced/index.php:183 +#: application/views/logbookadvanced/index.php:194 +#: application/views/logbookadvanced/index.php:205 +#: application/views/logbookadvanced/index.php:214 +#: application/views/logbookadvanced/index.php:223 +#: application/views/logbookadvanced/index.php:248 +#: application/views/logbookadvanced/index.php:259 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:423 +#: application/views/lotw/import.php:54 +#: application/views/oqrs/showrequests.php:33 +#: application/views/oqrs/showrequests.php:49 +#: application/views/oqrs/showrequests.php:62 +#: application/views/qslprint/index.php:22 +#: application/views/search/cqzones.php:30 +#: application/views/search/lotw_unconfirmed.php:31 +#: application/views/stationsetup/exportmapoptions.php:33 +#: application/views/timeline/index.php:10 +#: application/views/timeline/index.php:22 +#: application/views/timeline/index.php:77 +#: application/views/timeplotter/index.php:17 +#: application/views/timeplotter/index.php:27 +#: application/views/timeplotter/index.php:47 +#: application/views/user/edit.php:633 +#: application/views/visitor/layout/footer.php:171 +msgid "All" +msgstr "" + +#: application/views/accumulate/index.php:50 +#: application/views/timeline/index.php:41 +msgid "Award" +msgstr "" + +#: application/views/accumulate/index.php:53 +#: application/views/timeline/index.php:44 +msgid "DX Century Club (DXCC)" +msgstr "" + +#: application/views/accumulate/index.php:55 +#: application/views/timeline/index.php:46 +msgid "Islands On The Air (IOTA)" +msgstr "" + +#: application/views/accumulate/index.php:56 +#: application/views/timeline/index.php:47 +msgid "Worked All Zones (WAZ)" +msgstr "" + +#: application/views/accumulate/index.php:57 +#: application/views/timeline/index.php:48 +msgid "VHF / UHF Century Club (VUCC)" +msgstr "" + +#: application/views/accumulate/index.php:58 +#: application/views/timeline/index.php:49 +msgid "Worked All Japan (WAJA)" +msgstr "" + +#: application/views/accumulate/index.php:62 +msgid "Period" +msgstr "" + +#: application/views/accumulate/index.php:80 +#: application/views/distances/index.php:53 +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/timeline/index.php:74 +msgid "Propagation" +msgstr "" + +#: application/views/accumulate/index.php:84 +#: application/views/distances/index.php:57 +#: application/views/timeline/index.php:78 +msgid "All but SAT" +msgstr "" + +#: application/views/accumulate/index.php:85 +#: application/views/distances/index.php:58 +#: application/views/gridmap/index.php:42 +#: application/views/logbookadvanced/edit.php:142 +#: application/views/logbookadvanced/index.php:307 +#: application/views/timeline/index.php:79 +msgid "None/Empty" +msgstr "" + +#: application/views/accumulate/index.php:86 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/logbookadvanced/index.php:225 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:414 +#: application/views/timeline/index.php:80 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/accumulate/index.php:87 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/logbookadvanced/index.php:226 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:415 +#: application/views/timeline/index.php:81 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/accumulate/index.php:88 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/logbookadvanced/index.php:227 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:416 +#: application/views/timeline/index.php:82 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/accumulate/index.php:89 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/logbookadvanced/index.php:228 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:417 +#: application/views/timeline/index.php:83 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/accumulate/index.php:90 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/logbookadvanced/index.php:229 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:418 +#: application/views/timeline/index.php:84 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/accumulate/index.php:91 +#: 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/logbookadvanced/index.php:230 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:419 +#: application/views/timeline/index.php:85 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/accumulate/index.php:92 +#: 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/logbookadvanced/index.php:231 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:420 +#: application/views/timeline/index.php:86 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/accumulate/index.php:93 +#: 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/logbookadvanced/index.php:232 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:421 +#: application/views/timeline/index.php:87 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/accumulate/index.php:94 +#: 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/logbookadvanced/index.php:233 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:422 +#: application/views/timeline/index.php:88 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/accumulate/index.php:95 +#: 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/logbookadvanced/index.php:234 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:423 +#: application/views/timeline/index.php:89 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/accumulate/index.php:96 +#: 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/logbookadvanced/index.php:235 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:424 +#: application/views/timeline/index.php:90 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/accumulate/index.php:97 +#: 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/logbookadvanced/index.php:236 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:425 +#: application/views/timeline/index.php:91 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/accumulate/index.php:98 +#: 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/logbookadvanced/index.php:237 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:426 +#: application/views/timeline/index.php:92 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/accumulate/index.php:99 +#: 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/logbookadvanced/index.php:238 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:427 +#: application/views/timeline/index.php:93 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/accumulate/index.php:100 +#: 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/logbookadvanced/index.php:239 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:428 +#: application/views/timeline/index.php:94 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/accumulate/index.php:101 +#: 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/logbookadvanced/index.php:240 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:429 +#: application/views/timeline/index.php:95 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "" + +#: application/views/accumulate/index.php:102 +#: 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/logbookadvanced/index.php:241 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:430 +#: application/views/timeline/index.php:96 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/accumulate/index.php:103 +#: 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/logbookadvanced/index.php:242 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:431 +#: application/views/timeline/index.php:97 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/accumulate/index.php:112 +#: application/views/activators/index.php:53 +#: application/views/awards/cq/index.php:113 +#: application/views/awards/dok/index.php:127 +#: application/views/awards/dxcc/index.php:187 +#: application/views/awards/helvetia/index.php:112 +#: application/views/awards/iota/index.php:130 +#: application/views/awards/itu/index.php:113 +#: application/views/awards/jcc/index.php:113 +#: application/views/awards/rac/index.php:104 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:79 +#: application/views/logbookadvanced/useroptions.php:17 +#: application/views/lookup/index.php:63 +#: application/views/stationsetup/exportmapoptions.php:6 +#: application/views/timeline/index.php:105 +#: application/views/timeline/index.php:170 +#: application/views/timeline/index.php:197 +#: application/views/timeline/index.php:222 +#: application/views/timeline/index.php:251 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:303 +#: application/views/timeplotter/index.php:59 +msgid "Show" +msgstr "" + +#: application/views/activated_gridmap/index.php:20 +#: application/views/awards/dxcc/index.php:131 +#: application/views/awards/wab/index.php:34 +#: application/views/awards/wac/index.php:78 +#: 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/logbookadvanced/edit.php:17 +#: application/views/logbookadvanced/index.php:203 +#: application/views/satellite/flightpath.php:34 +#: application/views/satellite/passtable.php:5 +#: application/views/sattimers/index.php:38 +#: application/views/statistics/index.php:112 +msgid "Satellite" +msgstr "" + +#: application/views/activated_gridmap/index.php:30 +#: application/views/awards/dxcc/index.php:147 +#: application/views/awards/wab/index.php:44 +#: application/views/awards/wac/index.php:94 +#: application/views/distances/index.php:44 +#: application/views/gridmap/index.php:80 +#: application/views/logbookadvanced/index.php:212 +#: application/views/satellite/create.php:35 +#: application/views/satellite/edit.php:19 +#: application/views/satellite/index.php:23 +msgid "Orbit" +msgstr "" + +#: application/views/activated_gridmap/index.php:50 +#: application/views/awards/wab/index.php:64 +#: application/views/gridmap/index.php:92 +#: application/views/timeline/index.php:52 +msgid "Confirmation" +msgstr "" + +#: application/views/activated_gridmap/index.php:82 +#: application/views/awards/cq/index.php:68 +#: application/views/awards/dok/index.php:67 +#: application/views/awards/dxcc/index.php:73 +#: application/views/awards/helvetia/index.php:67 +#: application/views/awards/itu/index.php:68 +#: application/views/awards/jcc/index.php:64 +#: application/views/awards/rac/index.php:59 +#: application/views/awards/wab/index.php:96 +#: application/views/awards/wac/index.php:56 +#: application/views/awards/waja/index.php:67 +#: application/views/awards/was/index.php:67 +#: application/views/gridmap/index.php:125 application/views/user/edit.php:675 +msgid "QRZ.com" +msgstr "" + +#: application/views/activated_gridmap/index.php:86 +#: application/views/gridmap/index.php:130 +#: application/views/satellite/flightpath.php:42 +msgid "Plot" +msgstr "" + +#: application/views/activated_gridmap/index.php:87 +#: application/views/gridmap/index.php:131 +msgid "Clear Markers" +msgstr "" + +#: application/views/activated_gridmap/index.php:102 +#: application/views/awards/ffma/index.php:30 +#: application/views/awards/gridmaster/index.php:29 +#: application/views/gridmap/index.php:148 +#: application/views/logbookadvanced/index.php:8 +msgid "Latitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:104 +#: application/views/awards/ffma/index.php:32 +#: application/views/awards/gridmaster/index.php:31 +#: application/views/gridmap/index.php:150 +#: application/views/logbookadvanced/index.php:9 +msgid "Longitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:110 +#: application/views/awards/ffma/index.php:38 +#: application/views/awards/gridmaster/index.php:37 +#: application/views/gridmap/index.php:156 +#: application/views/logbookadvanced/index.php:13 +msgid "Bearing" +msgstr "" + +#: application/views/activators/index.php:26 +msgctxt "Orbiter LEO or GEO" +msgid "Both" +msgstr "" + +#: application/views/activators/index.php:33 +msgid "Minimum Count" +msgstr "" + +#: application/views/activators/index.php:76 +#: application/views/awards/counties/details.php:27 +#: application/views/awards/counties/index.php:46 +#: application/views/awards/cq/index.php:198 +#: application/views/awards/dok/index.php:196 +#: application/views/awards/dxcc/index.php:280 +#: application/views/awards/helvetia/index.php:200 +#: application/views/awards/iota/index.php:224 +#: application/views/awards/itu/index.php:198 +#: application/views/awards/jcc/index.php:236 +#: application/views/awards/pota/index.php:67 +#: application/views/awards/rac/index.php:192 +#: application/views/awards/sig/index.php:45 +#: application/views/awards/sota/index.php:53 +#: application/views/awards/vucc/band.php:41 +#: application/views/awards/vucc/index.php:39 +#: application/views/awards/wac/index.php:199 +#: application/views/awards/waja/index.php:202 +#: application/views/awards/was/index.php:200 +#: application/views/awards/wwff/index.php:64 +#: application/views/distancerecords/index.php:50 +#: application/views/public_search/empty.php:3 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:135 +msgid "Nothing found!" +msgstr "" + +#: application/views/activators/index.php:98 +#: application/views/adif/import.php:66 application/views/adif/import.php:182 +#: application/views/adif/import.php:227 +#: application/views/awards/pota/index.php:34 +#: application/views/awards/sig/qso_list.php:11 +#: application/views/awards/sota/index.php:25 +#: application/views/awards/wwff/index.php:34 +#: application/views/cabrillo/index.php:31 +#: application/views/components/hamsat/table.php:27 +#: application/views/contesting/index.php:156 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:168 +#: application/views/distancerecords/index.php:18 +#: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41 +#: application/views/eqslcard/index.php:28 +#: application/views/hamsat/index.php:30 application/views/labels/index.php:123 +#: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/lotw_views/index.php:35 +#: application/views/oqrs/qsolist.php:6 +#: application/views/oqrs/request_grouped.php:12 +#: application/views/qslcard/index.php:28 +#: application/views/qslcard/searchform.php:3 +#: application/views/qslprint/index.php:24 +#: application/views/qslprint/qslprint.php:21 +#: application/views/qslprint/qsolist.php:6 +#: application/views/qso/edit_ajax.php:62 application/views/qso/index.php:124 +#: application/views/reg1test/index.php:33 +#: application/views/search/cqzones.php:32 +#: application/views/search/cqzones_result.php:9 +#: application/views/search/lotw_unconfirmed.php:33 +#: application/views/search/lotw_unconfirmed_result.php:6 +#: application/views/search/result.php:11 +#: application/views/simplefle/index.php:148 +#: application/views/station_profile/edit.php:63 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 +#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:510 +msgid "Callsign" +msgstr "" + +#: application/views/activators/index.php:99 +msgid "Count" +msgstr "" + +#: application/views/activators/index.php:101 +#: application/views/timeline/index.php:154 +#: application/views/timeline/index.php:186 +#: application/views/timeline/index.php:211 +#: application/views/timeline/index.php:238 +#: application/views/timeline/index.php:265 +#: application/views/timeline/index.php:291 +msgid "Show QSO's" +msgstr "" + +#: application/views/activators/index.php:102 +msgid "Show Map" +msgstr "" + +#: application/views/adif/dcl_success.php:12 +msgid "Results of DCL DOK Update" +msgstr "" + +#: application/views/adif/dcl_success.php:17 +msgid "DCL information for DOKs has been updated." +msgstr "" + +#: application/views/adif/dcl_success.php:19 +msgid "No QSOs found which could be updated." +msgstr "" + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs ignored" +msgstr "" + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs unmatched" +msgstr "" + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs updated" +msgstr "" + +#: application/views/adif/dcl_success.php:25 +msgid "DOK Errors" +msgstr "" + +#: application/views/adif/dcl_success.php:26 +msgid "There is different data for DOK in your log compared to DCL" +msgstr "" + +#: application/views/adif/dcl_success.php:29 +#: application/views/awards/pota/index.php:32 +#: application/views/awards/wwff/index.php:32 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:25 +#: application/views/contesting/index.php:93 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:163 +#: application/views/debug/index.php:545 +#: application/views/distancerecords/index.php:16 +#: application/views/eqsl/analysis.php:36 +#: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 +#: application/views/eqslcard/index.php:30 +#: application/views/hamsat/index.php:28 +#: application/views/logbookadvanced/edit.php:4 +#: application/views/oqrs/notinlogform.php:8 +#: application/views/oqrs/qsolist.php:7 application/views/oqrs/request.php:15 +#: application/views/oqrs/request_grouped.php:8 +#: application/views/public_search/result.php:13 +#: application/views/qslcard/index.php:30 +#: application/views/qslcard/searchresult.php:4 +#: application/views/qslprint/qslprint.php:22 +#: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:64 +#: application/views/qso/index.php:100 application/views/satellite/pass.php:473 +#: application/views/search/cqzones_result.php:7 +#: application/views/search/result_search.php:4 +#: application/views/search/search_result_ajax.php:89 +#: application/views/simplefle/index.php:146 +#: application/views/statistics/custom.php:38 +#: application/views/statistics/custom_result.php:40 +#: application/views/statistics/custom_result.php:85 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:184 +#: application/views/timeline/index.php:209 +#: application/views/timeline/index.php:234 +#: application/views/timeline/index.php:263 +#: application/views/timeline/index.php:288 +#: application/views/view_log/partial/log.php:4 +#: application/views/view_log/partial/log_ajax.php:59 +#: application/views/visitor/index.php:147 +#: application/views/widgets/qsos.php:24 +msgid "Date" +msgstr "" + +#: application/views/adif/dcl_success.php:30 +#: application/views/awards/pota/index.php:33 +#: application/views/awards/wwff/index.php:33 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:26 +#: application/views/contesting/index.php:98 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:166 +#: application/views/debug/index.php:546 +#: application/views/distancerecords/index.php:17 +#: application/views/eqsl/analysis.php:37 +#: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 +#: application/views/eqslcard/index.php:31 +#: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 +#: application/views/qslcard/index.php:31 +#: application/views/qslcard/searchresult.php:6 +#: application/views/qslprint/qslprint.php:23 +#: application/views/qslprint/qsolist.php:8 application/views/qso/index.php:105 +#: application/views/search/cqzones_result.php:8 +#: application/views/search/result_search.php:5 +#: application/views/search/search_result_ajax.php:91 +#: application/views/simplefle/index.php:147 +#: application/views/statistics/custom_result.php:86 +#: application/views/timeline/index.php:289 +#: application/views/timeplotter/index.php:5 +#: application/views/view_log/partial/log.php:6 +#: application/views/view_log/partial/log_ajax.php:61 +#: application/views/visitor/index.php:150 +#: application/views/widgets/qsos.php:26 +msgid "Time" +msgstr "" + +#: application/views/adif/dcl_success.php:31 +#: application/views/awards/vucc/band.php:18 +#: application/views/bandmap/list.php:111 +#: application/views/contesting/index.php:248 +#: application/views/debug/index.php:547 application/views/debug/index.php:582 +#: application/views/dxcalendar/index.php:12 +#: application/views/eqsl/analysis.php:38 +#: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 +#: application/views/public_search/result.php:14 +#: application/views/qslcard/searchresult.php:8 +#: application/views/qso/components/previous_contacts.php:7 +#: application/views/search/result_search.php:6 +#: application/views/search/search_result_ajax.php:93 +#: application/views/statistics/custom_result.php:87 +#: application/views/view_log/partial/log.php:8 +#: application/views/view_log/partial/log_ajax.php:63 +#: application/views/visitor/index.php:152 +#: application/views/widgets/qsos.php:28 +msgid "Call" +msgstr "" + +#: application/views/adif/dcl_success.php:34 +msgid "DOK in Log" +msgstr "" + +#: application/views/adif/dcl_success.php:35 +msgid "DOK in DCL" +msgstr "" + +#: application/views/adif/dcl_success.php:36 +msgid "DCL QSL Status" +msgstr "" + +#: application/views/adif/import.php:36 application/views/adif/import.php:252 +msgid "DARC DCL" +msgstr "" + +#: application/views/adif/import.php:55 +#: application/views/dashboard/index.php:112 +#: application/views/dashboard/index.php:133 +#: application/views/dashboard/index.php:139 +#: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 +#: application/views/lotw_views/index.php:4 +msgid "Important" +msgstr "" + +#: application/views/adif/import.php:55 +msgid "Log Files must have the file type *.adi" +msgstr "" + +#: application/views/adif/import.php:56 application/views/view_log/qso.php:625 +msgid "Maximum file upload size is " +msgstr "" + +#: application/views/adif/import.php:56 application/views/adif/import.php:230 +#: application/views/adif/import.php:268 application/views/debug/index.php:175 +#: application/views/debug/index.php:192 application/views/debug/index.php:537 +#: application/views/hrdlog/export.php:25 +#: application/views/hrdlog/export.php:74 +#: application/views/interface_assets/footer.php:34 +#: application/views/qrz/export.php:73 application/views/qrz/export.php:94 +#: application/views/stationsetup/stationsetup.php:111 +#: application/views/view_log/qso.php:625 +#: application/views/webadif/export.php:34 +#: application/views/webadif/export.php:94 +msgid "Warning" +msgstr "" + +#: application/views/adif/import.php:60 application/views/adif/import.php:62 +#: application/views/adif/import.php:178 application/views/adif/import.php:225 +#: application/views/eqsl/import.php:36 application/views/hrdlog/export.php:69 +#: application/views/qrz/export.php:89 application/views/reg1test/index.php:30 +#: application/views/webadif/export.php:89 +msgid "Select Station Location" +msgstr "" + +#: application/views/adif/import.php:69 +msgid "Add QSOs to Contest" +msgstr "" + +#: application/views/adif/import.php:71 +#: application/views/simplefle/index.php:82 +msgid "No Contest" +msgstr "" + +#: application/views/adif/import.php:77 +msgid "ADIF File" +msgstr "" + +#: application/views/adif/import.php:84 +msgid "Import duplicate QSOs" +msgstr "" + +#: application/views/adif/import.php:93 +msgid "Mark imported QSOs as uploaded to LoTW" +msgstr "" + +#: application/views/adif/import.php:95 application/views/adif/import.php:105 +#: application/views/adif/import.php:115 application/views/adif/import.php:125 +#: application/views/adif/import.php:135 +msgid "Select if ADIF being imported does not contain this information." +msgstr "" + +#: application/views/adif/import.php:103 +msgid "Mark imported QSOs as uploaded to eQSL Logbook" +msgstr "" + +#: application/views/adif/import.php:113 +msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" +msgstr "" + +#: application/views/adif/import.php:123 +msgid "Mark imported QSOs as uploaded to QRZ Logbook" +msgstr "" + +#: application/views/adif/import.php:133 +msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgstr "" + +#: application/views/adif/import.php:143 +msgid "Use DXCC information from ADIF" +msgstr "" + +#: application/views/adif/import.php:145 +msgid "" +"If not selected, Wavelog will attempt to determine DXCC information " +"automatically." +msgstr "" + +#: application/views/adif/import.php:153 +msgid "Always use login-callsign as operator-name on import" +msgstr "" + +#: application/views/adif/import.php:162 +#: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2133 +msgid "DANGER" +msgstr "" + +#: application/views/adif/import.php:162 +msgid "Ignore Stationcallsign on import" +msgstr "" + +#: application/views/adif/import.php:164 +#, php-format +msgid "" +"If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " +"regardless if they match to the chosen station-location." +msgstr "" + +#: application/views/adif/import.php:168 application/views/adif/import.php:283 +#: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 +#: application/views/webadif/export.php:55 +msgid "Upload" +msgstr "" + +#: application/views/adif/import.php:175 +msgid "Take your logbook file anywhere!" +msgstr "" + +#: application/views/adif/import.php:176 +msgid "" +"Exporting ADIFs allows you to import contacts into third party applications " +"like LoTW, Awards or just for keeping a backup." +msgstr "" + +#: application/views/adif/import.php:186 application/views/adif/import.php:232 +#: application/views/cfd/index.php:15 application/views/csv/index.php:118 +#: application/views/dxatlas/index.php:118 +#: application/views/hrdlog/export.php:77 application/views/kml/index.php:103 +#: application/views/lotw/import.php:38 application/views/qrz/export.php:76 +#: application/views/qrz/export.php:97 application/views/webadif/export.php:97 +msgid "From date" +msgstr "" + +#: application/views/adif/import.php:189 application/views/adif/import.php:235 +#: application/views/cfd/index.php:20 application/views/csv/index.php:123 +#: application/views/dxatlas/index.php:123 +#: application/views/hrdlog/export.php:82 application/views/kml/index.php:108 +#: application/views/qrz/export.php:102 +#: application/views/webadif/export.php:102 +msgid "To date" +msgstr "" + +#: application/views/adif/import.php:197 +msgid "Mark exported QSOs as uploaded to LoTW" +msgstr "" + +#: application/views/adif/import.php:205 +msgid "Export QSOs not uploaded to LoTW" +msgstr "" + +#: application/views/adif/import.php:210 +msgid "Export QSO's" +msgstr "" + +#: application/views/adif/import.php:215 +msgid "Export Satellite-Only QSOs" +msgstr "" + +#: application/views/adif/import.php:216 +msgid "Export All Satellite QSOs" +msgstr "" + +#: application/views/adif/import.php:218 +msgid "Export All Satellite QSOs Confirmed on LoTW" +msgstr "" + +#: application/views/adif/import.php:230 application/views/hrdlog/export.php:74 +#: application/views/qrz/export.php:94 application/views/webadif/export.php:94 +msgid "If a date range is not selected then all QSOs will be marked!" +msgstr "" + +#: application/views/adif/import.php:238 +msgid "Mark QSOs as exported to LoTW" +msgstr "" + +#: application/views/adif/import.php:252 +#, php-format +msgid "" +"Go to %s and export your logbook with confirmed DOKs. To speed up the " +"process you can select only DL QSOs to download (i.e. put 'DL' into Prefix " +"List). The downloaded ADIF file can be uploaded here in order to update QSOs " +"with DOK info." +msgstr "" + +#: application/views/adif/import.php:259 +msgid "Only import DOK data from QSOs confirmed on DCL." +msgstr "" + +#: application/views/adif/import.php:261 +msgid "" +"Uncheck if you also want to update DOK with data from unconfirmed QSOs in " +"DCL." +msgstr "" + +#: application/views/adif/import.php:268 +msgid "Overwrites exisiting DOK in log by DCL (if different)." +msgstr "" + +#: application/views/adif/import.php:270 +msgid "" +"If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " +"log." +msgstr "" + +#: application/views/adif/import.php:277 +msgid "Ignore QSOs that cannot be matched." +msgstr "" + +#: application/views/adif/import.php:279 +msgid "" +"If unchecked, information about QSOs which could not be found in Wavelog " +"will be displayed." +msgstr "" + +#: application/views/adif/import_failed.php:15 +msgid "The ADIF file could not be parsed correctly." +msgstr "" + +#: application/views/adif/import_failed.php:16 +msgid "" +"At least one of the ADIF fields could not be parsed and/or inserted into the " +"database. Please check the imported ADIF file. You can use an online ADIF " +"file checker. For example:" +msgstr "" + +#: application/views/adif/import_success.php:15 +msgid "Yay, its imported!" +msgstr "" + +#: application/views/adif/import_success.php:16 +msgid "The ADIF File has been imported." +msgstr "" + +#: application/views/adif/import_success.php:18 +msgid "Dupes were inserted!" +msgstr "" + +#: application/views/adif/import_success.php:20 +msgid "Dupes were skipped." +msgstr "" + +#: application/views/adif/import_success.php:24 +msgid "ADIF Errors" +msgstr "" + +#: application/views/adif/import_success.php:25 +msgid "" +"You have ADIF errors, the QSOs have still been added but these fields have " +"not been populated." +msgstr "" + +#: application/views/adif/mark_lotw.php:12 +#: application/views/hrdlog/mark_hrdlog.php:12 +#: application/views/qrz/mark_qrz.php:12 +#: application/views/webadif/mark_webadif.php:12 +msgid "QSOs marked" +msgstr "" + +#: application/views/adif/mark_lotw.php:15 +msgid "Yay, its done!" +msgstr "" + +#: application/views/adif/mark_lotw.php:16 +msgid "The QSOs are marked as exported to LoTW." +msgstr "" + +#: application/views/api/description.php:15 +msgid "Editing Description for API Key" +msgstr "" + +#: application/views/api/description.php:28 +msgid "Simple name to describe what you use this API for." +msgstr "" + +#: application/views/api/description.php:33 +#: application/views/bands/create.php:49 application/views/bands/edit.php:31 +#: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 +#: application/views/operator/index.php:23 +#: application/views/options/appearance.php:116 +#: application/views/options/dxcluster.php:67 +#: application/views/options/email.php:112 +#: application/views/options/oqrs.php:63 +#: application/views/options/radios.php:45 +#: application/views/options/version_dialog.php:78 +#: application/views/satellite/create.php:70 +#: application/views/simplefle/index.php:22 +msgid "Save" +msgstr "" + +#: application/views/api/help.php:14 +#: application/views/interface_assets/header.php:437 +msgid "API Keys" +msgstr "" + +#: application/views/api/help.php:17 +msgid "" +"The Wavelog API (Application Programming Interface) lets third party systems " +"access Wavelog in a controlled way. Access to the API is managed via API " +"keys." +msgstr "" + +#: application/views/api/help.php:18 +msgid "" +"You will need to generate an API key for each tool you wish to use (e.g. " +"WLgate). Generate a read-write key if the application needs to send data to " +"Wavelog. Generate a read-only key if the application only needs to obtain " +"data from Wavelog." +msgstr "" + +#: application/views/api/help.php:19 +msgid "API URL" +msgstr "" + +#: application/views/api/help.php:19 application/views/api/help.php:38 +#: application/views/cron/index.php:22 application/views/debug/index.php:36 +msgid "Copy to clipboard" +msgstr "" + +#: application/views/api/help.php:19 +msgid "The API URL for this Wavelog instance is" +msgstr "" + +#: application/views/api/help.php:20 application/views/dxcalendar/index.php:15 +#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:504 +#: application/views/qso/index.php:560 application/views/qso/index.php:605 +#: application/views/radio/index.php:22 +#: application/views/sattimers/index.php:67 +#: application/views/sattimers/index.php:69 +#: application/views/sattimers/index.php:71 +#: application/views/sattimers/index.php:73 +#: application/views/sattimers/index.php:75 +#: application/views/sattimers/index.php:77 +#: application/views/search/filter.php:69 +msgid "Info" +msgstr "" + +#: application/views/api/help.php:20 +msgid "" +"It's good practice to delete a key if you are no longer using the associated " +"application." +msgstr "" + +#: application/views/api/help.php:27 +msgid "API Key" +msgstr "" + +#: application/views/api/help.php:28 application/views/cron/edit.php:30 +#: application/views/cron/index.php:53 +#: application/views/search/stored_queries.php:8 +msgid "Description" +msgstr "" + +#: application/views/api/help.php:29 +msgid "Last Used" +msgstr "" + +#: application/views/api/help.php:30 +msgid "Permissions" +msgstr "" + +#: application/views/api/help.php:31 application/views/cron/index.php:54 +#: application/views/lotw_views/index.php:41 +#: application/views/mode/index.php:31 +#: application/views/oqrs/showrequests.php:91 +#: application/views/sattimers/index.php:39 +#: application/views/stationsetup/stationsetup.php:31 +#: application/views/timeline/index.php:152 +msgid "Status" +msgstr "" + +#: application/views/api/help.php:32 application/views/hrdlog/export.php:39 +#: application/views/logbookadvanced/index.php:519 +#: application/views/qrz/export.php:43 application/views/webadif/export.php:45 +msgid "Actions" +msgstr "" + +#: application/views/api/help.php:45 +msgid "Read & Write" +msgstr "" + +#: application/views/api/help.php:47 +msgid "Read-Only" +msgstr "" + +#: application/views/api/help.php:49 +msgid "Unknown" +msgstr "" + +#: application/views/api/help.php:59 +msgid "Test" +msgstr "" + +#: application/views/api/help.php:71 +msgid "You have no API Keys." +msgstr "" + +#: application/views/api/help.php:75 +msgid "Create a read & write key" +msgstr "" + +#: application/views/api/help.php:76 +msgid "Create a read-only key" +msgstr "" + +#: application/views/awards/counties/details.php:4 +#: application/views/awards/details.php:1 +#: application/views/awards/vucc/band.php:4 +#: application/views/distancerecords/details.php:1 +#: application/views/timeline/details.php:2 +msgid "Filtering on" +msgstr "" + +#: application/views/awards/counties/details.php:13 +msgid "County" +msgstr "" + +#: application/views/awards/counties/index.php:6 +#: application/views/awards/counties/index.php:13 +#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:26 +#: application/views/awards/dok/index.php:6 +#: application/views/awards/dok/index.php:13 +#: application/views/awards/dxcc/index.php:13 +#: application/views/awards/dxcc/index.php:20 +#: application/views/awards/ffma/index.php:7 +#: application/views/awards/ffma/index.php:14 +#: application/views/awards/gridmaster/index.php:6 +#: application/views/awards/gridmaster/index.php:13 +#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:26 +#: application/views/awards/iota/index.php:15 +#: application/views/awards/iota/index.php:22 +#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:26 +#: application/views/awards/jcc/index.php:15 +#: application/views/awards/jcc/index.php:22 +#: application/views/awards/pota/index.php:6 +#: application/views/awards/pota/index.php:13 +#: application/views/awards/sig/index.php:6 +#: application/views/awards/sig/index.php:13 +#: application/views/awards/sota/index.php:6 +#: application/views/awards/sota/index.php:13 +#: application/views/awards/vucc/index.php:6 +#: application/views/awards/vucc/index.php:13 +#: application/views/awards/wab/index.php:11 +#: application/views/awards/wab/index.php:18 +#: application/views/awards/wac/index.php:7 +#: application/views/awards/wac/index.php:14 +#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:25 +#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:26 +#: application/views/awards/wwff/index.php:6 +#: application/views/awards/wwff/index.php:13 +msgid "Award Info" +msgstr "" + +#: application/views/awards/counties/index.php:7 +msgid "US County Award" +msgstr "" + +#: application/views/awards/counties/index.php:8 +#, php-format +msgid "" +"The United States of America Counties Award (USA-CA), sponsored by CQ " +"magazine, is issued for confirmed two-way radio contacts with specified " +"numbers of U.S. counties under rules and conditions you can find %s." +msgstr "" + +#: application/views/awards/counties/index.php:9 +msgid "" +"USA-CA is available to all licensed amateurs worldwide and is issued to " +"individuals for all county contacts made, regardless of callsigns used, " +"operating locations, or dates." +msgstr "" + +#: application/views/awards/counties/index.php:10 +msgid "Special USA-CA awards are also available to SWLs on a heard basis." +msgstr "" + +#: application/views/awards/counties/index.php:21 +msgid "Counties Worked" +msgstr "" + +#: application/views/awards/counties/index.php:22 +msgid "Counties Confirmed" +msgstr "" + +#: application/views/awards/counties/index.php:39 +#: application/views/awards/cq/index.php:176 +#: application/views/awards/dok/index.php:174 +#: application/views/awards/dxcc/index.php:257 +#: application/views/awards/helvetia/index.php:179 +#: application/views/awards/iota/index.php:201 +#: application/views/awards/itu/index.php:176 +#: application/views/awards/jcc/index.php:185 +#: application/views/awards/rac/index.php:171 +#: application/views/awards/wac/index.php:177 +#: application/views/awards/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:233 +#: application/views/simplefle/index.php:27 +#: application/views/statistics/qsltable.php:54 +#: application/views/statistics/qsltable.php:109 +#: application/views/statistics/qsotable.php:10 +#: application/views/statistics/qsotable.php:23 +#: application/views/statistics/satqsotable.php:10 +#: application/views/statistics/satqsotable.php:22 +#: application/views/statistics/satuniquetable.php:10 +#: application/views/statistics/satuniquetable.php:22 +#: application/views/statistics/uniquetable.php:10 +#: application/views/statistics/uniquetable.php:23 +#: application/views/visitor/index.php:241 +msgid "Total" +msgstr "" + +#: application/views/awards/cq/index.php:3 +#: application/views/awards/cq/index.php:150 application/views/csv/index.php:80 +#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/logbookadvanced/edit.php:6 +#: application/views/logbookadvanced/index.php:246 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:284 +#: application/views/qso/index.php:390 +#: application/views/search/cqzones_result.php:13 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:264 +#: application/views/timeplotter/index.php:44 +msgid "CQ Zone" +msgstr "" + +#: application/views/awards/cq/index.php:4 +#: application/views/awards/itu/index.php:4 +msgid "Hover over a zone" +msgstr "" + +#: application/views/awards/cq/index.php:20 +msgid "CQ Magazine WAZ Award" +msgstr "" + +#: application/views/awards/cq/index.php:21 +msgid "" +"The CQ Magazine is located in the US and one of the most popular amateur " +"radio magazines in the world. The magazine first appeared in January 1945 " +"and focuses on awards and the practical aspects of amateur radio." +msgstr "" + +#: application/views/awards/cq/index.php:22 +msgid "" +"The WAZ Award stands for 'Worked All Zones' and requires radio contacts to " +"all 40 CQ Zones along with the corresponding confirmation." +msgstr "" + +#: application/views/awards/cq/index.php:23 +#, php-format +msgctxt "uses 'CQ Magazine'" +msgid "You can find all the information and rules on the Website of the %s." +msgstr "" + +#: application/views/awards/cq/index.php:25 +msgid "Awards - CQ Magazine WAZ" +msgstr "" + +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wab/list.php:6 +#: application/views/awards/wac/index.php:22 +#: application/views/bandmap/list.php:73 +#: application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:378 +#: application/views/interface_assets/footer.php:40 +#: application/views/visitor/index.php:266 +msgid "Confirmed" +msgstr "" + +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wac/index.php:22 +#: application/views/bandmap/list.php:72 +#: application/views/dashboard/index.php:256 +#: application/views/dashboard/index.php:372 +#: application/views/visitor/index.php:262 +msgid "Worked" +msgstr "" + +#: application/views/awards/cq/index.php:38 +#: application/views/awards/dok/index.php:41 +#: application/views/awards/dxcc/index.php:43 +#: application/views/awards/helvetia/index.php:37 +#: application/views/awards/iota/index.php:43 +#: application/views/awards/itu/index.php:38 +#: application/views/awards/jcc/index.php:34 +#: application/views/awards/rac/index.php:29 +#: application/views/awards/wac/index.php:26 +#: application/views/awards/waja/index.php:37 +#: application/views/awards/was/index.php:37 +msgid "Show worked" +msgstr "" + +#: application/views/awards/cq/index.php:42 +#: application/views/awards/dok/index.php:45 +#: application/views/awards/dxcc/index.php:47 +#: application/views/awards/helvetia/index.php:41 +#: application/views/awards/iota/index.php:47 +#: application/views/awards/itu/index.php:42 +#: application/views/awards/jcc/index.php:38 +#: application/views/awards/rac/index.php:33 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/waja/index.php:41 +#: application/views/awards/was/index.php:41 +msgid "Show confirmed" +msgstr "" + +#: application/views/awards/cq/index.php:46 +#: application/views/awards/dxcc/index.php:51 +#: application/views/awards/helvetia/index.php:45 +#: application/views/awards/iota/index.php:51 +#: application/views/awards/itu/index.php:46 +#: application/views/awards/jcc/index.php:42 +#: application/views/awards/rac/index.php:37 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/waja/index.php:45 +#: application/views/awards/was/index.php:45 +msgid "Show not worked" +msgstr "" + +#: application/views/awards/cq/index.php:52 +#: application/views/awards/dok/index.php:51 +#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/helvetia/index.php:51 +#: application/views/awards/itu/index.php:52 +#: application/views/awards/jcc/index.php:48 +#: application/views/awards/rac/index.php:43 +#: application/views/awards/wac/index.php:40 +#: application/views/awards/waja/index.php:51 +#: application/views/awards/was/index.php:51 +msgid "Show QSO with QSL Type" +msgstr "" + +#: application/views/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/awards/wac/index.php:44 +#: application/views/interface_assets/footer.php:2112 +#: application/views/qso/edit_ajax.php:405 +#: application/views/view_log/qso.php:25 +msgid "QSL Card" +msgstr "" + +#: application/views/awards/cq/index.php:112 +#: application/views/awards/dok/index.php:126 +#: application/views/awards/dxcc/index.php:186 +#: application/views/awards/helvetia/index.php:111 +#: application/views/awards/iota/index.php:129 +#: application/views/awards/itu/index.php:112 +#: application/views/awards/jcc/index.php:112 +#: application/views/awards/rac/index.php:103 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/waja/index.php:115 +#: application/views/awards/was/index.php:111 +#: application/views/continents/index.php:50 +#: application/views/logbookadvanced/index.php:551 +#: application/views/oqrs/showrequests.php:68 +#: application/views/qrbcalc/index.php:19 +#: application/views/search/filter.php:40 application/views/user/edit.php:607 +msgid "Reset" +msgstr "" + +#: application/views/awards/cq/index.php:115 +msgid "Show CQ Zone Map" +msgstr "" + +#: application/views/awards/cq/index.php:124 +#: application/views/awards/dxcc/index.php:199 +#: application/views/awards/helvetia/index.php:124 +#: application/views/awards/iota/index.php:142 +#: application/views/awards/itu/index.php:124 +#: application/views/awards/rac/index.php:116 +#: application/views/awards/waja/index.php:128 +#: application/views/awards/was/index.php:124 +msgid "Table" +msgstr "" + +#: application/views/awards/cq/index.php:127 +#: application/views/awards/dok/index.php:128 +#: application/views/awards/dxcc/index.php:202 +#: application/views/awards/helvetia/index.php:127 +#: application/views/awards/iota/index.php:145 +#: application/views/awards/itu/index.php:127 +#: application/views/awards/jcc/index.php:129 +#: application/views/awards/rac/index.php:119 +#: application/views/awards/wab/index.php:108 +#: application/views/awards/waja/index.php:131 +#: application/views/awards/was/index.php:127 +#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/useroptions.php:7 +msgid "Map" +msgstr "" + +#: application/views/awards/cq/index.php:167 +#: application/views/awards/dok/index.php:165 +#: application/views/awards/dxcc/index.php:248 +#: application/views/awards/helvetia/index.php:170 +#: application/views/awards/iota/index.php:192 +#: application/views/awards/itu/index.php:167 +#: application/views/awards/jcc/index.php:168 +#: application/views/awards/rac/index.php:162 +#: application/views/awards/wac/index.php:168 +#: application/views/awards/waja/index.php:170 +#: application/views/awards/was/index.php:170 +msgid "Summary" +msgstr "" + +#: application/views/awards/cq/index.php:180 +#: application/views/awards/dok/index.php:178 +#: application/views/awards/dxcc/index.php:262 +#: application/views/awards/helvetia/index.php:183 +#: application/views/awards/iota/index.php:206 +#: application/views/awards/itu/index.php:180 +#: application/views/awards/jcc/index.php:195 +#: application/views/awards/rac/index.php:175 +#: application/views/awards/wac/index.php:181 +#: application/views/awards/waja/index.php:184 +#: application/views/awards/was/index.php:183 +msgid "Total worked" +msgstr "" + +#: application/views/awards/cq/index.php:187 +#: application/views/awards/dok/index.php:185 +#: application/views/awards/dxcc/index.php:269 +#: application/views/awards/helvetia/index.php:190 +#: application/views/awards/iota/index.php:213 +#: application/views/awards/itu/index.php:187 +#: application/views/awards/jcc/index.php:214 +#: application/views/awards/rac/index.php:182 +#: application/views/awards/wac/index.php:188 +#: application/views/awards/waja/index.php:191 +#: application/views/awards/was/index.php:190 +msgid "Total confirmed" +msgstr "" + +#: application/views/awards/dok/index.php:7 +msgid "DOK Award" +msgstr "" + +#: application/views/awards/dok/index.php:8 +msgid "" +"Germany extends over 630 km from East to West and nearly 900 km from North " +"to South. Around 70,000 of Germany's 82 million inhabitants are licensed " +"hams, with more than 40,000 of them being members of DARC. DOK is a system " +"that provides individual local chapters with an identifier and means " +"'Deutscher Ortsverband Kenner' (English: 'German Local Association " +"Identifier')." +msgstr "" + +#: application/views/awards/dok/index.php:9 +msgid "" +"The DOK consists of a letter for the district and a two-digit number for the " +"local chapter, like P03 Friedrichshafen (city of the 'Hamradio exhibition') " +"or F41 Baunatal (location of the DARC headquarters). Note: A zero in a DOK " +"is a common mistake, often being logged as the letter O." +msgstr "" + +#: application/views/awards/dok/index.php:10 +msgid "DARC website" +msgstr "" + +#: application/views/awards/dok/index.php:10 +#, php-format +msgctxt "uses 'DARC Website' and 'here'" +msgid "" +"This information is provided by the %s. Information about the DOK Awards and " +"its rules can be found %s." +msgstr "" + +#: application/views/awards/dok/index.php:20 +msgid "DOK / SDOK" +msgstr "" + +#: application/views/awards/dok/index.php:23 +msgid "DOK + SDOK" +msgstr "" + +#: application/views/awards/dok/index.php:37 +#: application/views/awards/dxcc/index.php:39 +#: application/views/awards/helvetia/index.php:33 +#: application/views/awards/iota/index.php:39 +#: application/views/awards/jcc/index.php:30 +#: application/views/awards/rac/index.php:25 +#: application/views/awards/waja/index.php:33 +#: application/views/awards/was/index.php:33 +msgid "Worked / Confirmed" +msgstr "" + +#: application/views/awards/dok/index.php:80 +#: application/views/awards/dxcc/index.php:120 +#: application/views/awards/helvetia/index.php:76 +#: application/views/awards/iota/index.php:94 +#: application/views/awards/jcc/index.php:77 +#: application/views/awards/rac/index.php:68 +#: application/views/awards/wac/index.php:66 +#: application/views/awards/waja/index.php:80 +#: application/views/awards/was/index.php:76 +msgid "Every band" +msgstr "" + +#: application/views/awards/dxcc/index.php:14 +msgid "DXCC Award" +msgstr "" + +#: application/views/awards/dxcc/index.php:15 +msgid "'How to Count Countries Worked, A New DX Scoring System'" +msgstr "" + +#: application/views/awards/dxcc/index.php:15 +#, php-format +msgid "" +"DXCC stands for 'DX Century Club,' an award based on worked countries. The " +"DXCC List is based on an article created in 1935 by Clinton B. DeSoto, " +"W1CBD, titled %s." +msgstr "" + +#: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 +msgid "ARRL website" +msgstr "" + +#: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 +#, php-format +msgid "You can find all information about the DXCC Award on the %s." +msgstr "" + +#: application/views/awards/dxcc/index.php:17 +msgid "" +"Important Note: Over time, the criteria for the DXCC List have changed. The " +"List remains unchanged until an entity no longer satisfies the criteria " +"under which it was added, at which time it is moved to the Deleted List. You " +"will find Deleted DXCC entities also in the lists on Wavelog. Be aware that " +"these DXCC entities are outdated and no longer valid." +msgstr "" + +#: application/views/awards/dxcc/index.php:32 +#: application/views/awards/iota/index.php:33 +msgid "Include deleted" +msgstr "" + +#: application/views/awards/dxcc/index.php:87 +#: application/views/awards/iota/index.php:61 +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/logbookadvanced/edit.php:144 +#: application/views/logbookadvanced/index.php:309 +#: application/views/options/dxcluster.php:56 +#: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 +#: application/views/view_log/qso.php:253 +msgid "Antarctica" +msgstr "" + +#: application/views/awards/dxcc/index.php:91 +#: application/views/awards/iota/index.php:65 +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/logbookadvanced/edit.php:143 +#: application/views/logbookadvanced/index.php:308 +#: application/views/options/dxcluster.php:55 +#: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 +#: application/views/view_log/qso.php:250 +msgid "Africa" +msgstr "" + +#: application/views/awards/dxcc/index.php:95 +#: application/views/awards/iota/index.php:69 +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/logbookadvanced/edit.php:146 +#: application/views/logbookadvanced/index.php:311 +#: application/views/options/dxcluster.php:57 +#: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 +#: application/views/view_log/qso.php:256 +msgid "Asia" +msgstr "" + +#: application/views/awards/dxcc/index.php:99 +#: application/views/awards/iota/index.php:73 +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/logbookadvanced/edit.php:147 +#: application/views/logbookadvanced/index.php:312 +#: application/views/options/dxcluster.php:58 +#: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 +#: application/views/view_log/qso.php:259 +msgid "Europe" +msgstr "" + +#: application/views/awards/dxcc/index.php:103 +#: application/views/awards/iota/index.php:77 +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/logbookadvanced/edit.php:145 +#: application/views/logbookadvanced/index.php:310 +#: application/views/options/dxcluster.php:59 +#: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 +#: application/views/view_log/qso.php:262 +msgid "North America" +msgstr "" + +#: application/views/awards/dxcc/index.php:107 +#: application/views/awards/iota/index.php:81 +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/logbookadvanced/edit.php:148 +#: application/views/logbookadvanced/index.php:313 +#: application/views/options/dxcluster.php:61 +#: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 +#: application/views/view_log/qso.php:268 +msgid "South America" +msgstr "" + +#: application/views/awards/dxcc/index.php:111 +#: application/views/awards/iota/index.php:85 +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/logbookadvanced/edit.php:149 +#: application/views/logbookadvanced/index.php:314 +#: application/views/options/dxcluster.php:60 +#: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 +#: application/views/view_log/qso.php:265 +msgid "Oceania" +msgstr "" + +#: application/views/awards/dxcc/index.php:189 +msgid "Show DXCC Map" +msgstr "" + +#: application/views/awards/dxcc/index.php:225 +msgid "DXCC Name" +msgstr "" + +#: application/views/awards/dxcc/index.php:226 +#: application/views/awards/iota/index.php:170 +#: application/views/timeline/index.php:150 +#: application/views/timeline/index.php:237 +msgid "Prefix" +msgstr "" + +#: application/views/awards/ffma/index.php:8 +#: application/views/interface_assets/header.php:240 +msgid "Fred Fish Memorial Award" +msgstr "" + +#: application/views/awards/ffma/index.php:9 +msgid "" +"The Fred Fish Memorial Award was created in honor of Fred Fish, W5FF (SK), " +"who was the first amateur to have worked and confirmed all 488 Maidenhead " +"grid squares in the 48 contiguous United States on 6 Meters." +msgstr "" + +#: application/views/awards/ffma/index.php:10 +msgid "" +"The award will be given to any amateur who can duplicate W5FF's " +"accomplishment." +msgstr "" + +#: application/views/awards/ffma/index.php:11 +#, php-format +msgid "For more information, you can visit this link: %s." +msgstr "" + +#: application/views/awards/gridmaster/index.php:7 +msgid "US Gridmaster Award" +msgstr "" + +#: application/views/awards/gridmaster/index.php:8 +msgid "" +"The GridMaster Award is the most prestigious AMSAT award, first introduced " +"in 2014 by the Star Comm Group. It is available to all amateur radio " +"operators worldwide who manage to work all 488 grid squares in the USA via " +"satellite and can provide QSL confirmations for each contact." +msgstr "" + +#: application/views/awards/gridmaster/index.php:9 +#, php-format +msgid "" +"Official information from the %s: Two-way communication must be established " +"via amateur satellite with each grid. There is no minimum signal report " +"required. Contacts must be made from the same location or from locations no " +"two of which are more than 200 kilometers apart. The applicant's attestation " +"in the award application serves as affirmation of abidance by the distance " +"rule. Individuals may apply for and be granted multiple GridMaster awards " +"when achieved from another location, which is in a different 200-kilometer " +"circle." +msgstr "" + +#: application/views/awards/gridmaster/index.php:9 +msgid "website" +msgstr "" + +#: application/views/awards/gridmaster/index.php:10 +msgid "This map shows only QSOs worked on SAT." +msgstr "" + +#: application/views/awards/helvetia/index.php:3 +msgctxt "Switzerland Canton" +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:4 +msgid "Hover over a canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:20 +msgid "HELVETIA 26 | SWITZERLAND AWARD" +msgstr "" + +#: application/views/awards/helvetia/index.php:21 +msgid "" +"The USKA (Union of Swiss Shortwave Amateurs) sponsors two awards, the " +"HELVETIA 26 (H26) Award and the SWITZERLAND Award, aimed at promoting " +"activities on the bands by encouraging contacts across as many Swiss cantons " +"as possible on multiple bands." +msgstr "" + +#: application/views/awards/helvetia/index.php:22 +msgid "" +"These awards come in two versions: one for HF bands and the other for VHF " +"(including SHF and UHF) bands. Valid connections for these awards date back " +"to January 1, 1980" +msgstr "" + +#: application/views/awards/helvetia/index.php:23 +#: application/views/awards/jcc/index.php:19 +#: application/views/awards/sota/index.php:10 +#: application/views/awards/wab/index.php:15 +#: application/views/awards/waja/index.php:22 +#: application/views/awards/wwff/index.php:10 +#, php-format +msgid "For more information, please visit: %s." +msgstr "" + +#: application/views/awards/helvetia/index.php:114 +msgid "Show Helvetia Map" +msgstr "" + +#: application/views/awards/helvetia/index.php:151 +msgid "Canton" +msgstr "" + +#: application/views/awards/index.php:9 application/views/bands/index.php:46 +#: application/views/interface_assets/header.php:164 +msgid "CQ" +msgstr "" + +#: application/views/awards/iota/index.php:16 +msgid "IOTA Awards" +msgstr "" + +#: application/views/awards/iota/index.php:17 +msgid "" +"IOTA is an exciting and innovative activity program that has captured the " +"interest of thousands of radio amateurs worldwide. Established in 1964, it " +"promotes radio contacts with stations located on islands around the world to " +"enhance the experience of all those active on the amateur bands. To achieve " +"this, it draws on the widespread mystique surrounding islands." +msgstr "" + +#: application/views/awards/iota/index.php:18 +msgid "" +"It is administered by Islands On The Air (IOTA) Ltd (referred to as IOTA " +"Management) in partnership with the Radio Society of Great Britain (RSGB). " +"IOTA Management has grouped the world's islands into approximately 1200 " +"'IOTA groups,' each having varying numbers of 'counters,' which are " +"qualifying islands. These listings are published in the IOTA Directory and " +"on the IOTA website. The objective for the IOTA Island Chaser is to make " +"radio contact with at least one counter in as many of these groups as " +"possible. The program has a well-defined set of rules and encourages " +"friendly competition among chasers by publishing participant performance in " +"an Honor Roll and annual listings, as well as recognizing it with " +"certificates and prestigious awards." +msgstr "" + +#: application/views/awards/iota/index.php:19 +#, php-format +msgid "You can also find this information on %s." +msgstr "" + +#: application/views/awards/iota/index.php:29 +msgid "Deleted IOTA" +msgstr "" + +#: application/views/awards/iota/index.php:132 +msgid "Show IOTA Map" +msgstr "" + +#: application/views/awards/iota/index.php:171 +#: application/views/contesting/add.php:25 +#: application/views/contesting/create.php:24 +#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:214 +#: application/views/dashboard/index.php:18 +#: application/views/labels/index.php:41 application/views/labels/index.php:75 +#: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/qslcarousel.php:34 +#: application/views/logbookadvanced/useroptions.php:54 +#: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 +#: application/views/satellite/edit.php:34 +#: application/views/satellite/index.php:21 +#: application/views/search/result.php:16 +#: application/views/search/search_result_ajax.php:19 +#: application/views/stationsetup/stationsetup.php:30 +#: application/views/themes/index.php:82 +#: application/views/timeline/index.php:236 application/views/user/edit.php:241 +#: application/views/user/edit.php:263 application/views/user/edit.php:285 +#: application/views/user/edit.php:307 application/views/user/edit.php:330 +#: application/views/view_log/partial/log_ajax.php:19 +#: application/views/view_log/qso.php:194 +#: application/views/view_log/qso.php:514 +msgid "Name" +msgstr "" + +#: application/views/awards/iota/index.php:173 +msgid "Deleted" +msgstr "" + +#: application/views/awards/itu/index.php:3 +#: application/views/awards/itu/index.php:150 +#: application/views/logbookadvanced/edit.php:10 +#: application/views/logbookadvanced/index.php:257 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:400 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 +msgid "ITU Zone" +msgstr "" + +#: application/views/awards/itu/index.php:21 +msgid "" +"The Classic Worked ITU Zones award may be claimed by producing evidence of " +"having contacted land based amateur radio stations in at least 70 of the 75 " +"broadcasting zones as defined by the International Telecommunications Union " +"(ITU)." +msgstr "" + +#: application/views/awards/itu/index.php:22 +#, php-format +msgctxt "uses 'RSGB'" +msgid "You can find more information on the website of %s." +msgstr "" + +#: application/views/awards/itu/index.php:25 +msgid "Awards - ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:115 +msgid "Show ITU Zone Map" +msgstr "" + +#: application/views/awards/jcc/index.php:16 +msgid "JCC - Japan Century Cities Award" +msgstr "" + +#: application/views/awards/jcc/index.php:17 +msgid "" +"May be claimed for having contacted (heard) and received a QSL card from an " +"amateur station located in each of at least 100 different cities of Japan." +msgstr "" + +#: application/views/awards/jcc/index.php:18 +msgid "" +"JCC-200, 300, 400, 500, 600, 700 and 800 will be issued as separate awards. " +"A list of QSL cards should be arranged in order of JCC reference number, " +"however names of city may be omitted. An additional sticker will be issued " +"at every 50 contacts like 150, 250, 350, 450, 550, 650, 750 cities." +msgstr "" + +#: application/views/awards/jcc/index.php:115 +msgid "Show JCC Map" +msgstr "" + +#: application/views/awards/jcc/index.php:116 +#: application/views/cabrillo/index.php:180 application/views/cfd/index.php:25 +#: application/views/csv/index.php:128 application/views/dxatlas/index.php:128 +#: application/views/kml/index.php:113 application/views/reg1test/index.php:145 +msgid "Export" +msgstr "" + +#: application/views/awards/jcc/index.php:126 +#: application/views/public_search/empty.php:2 +#: application/views/public_search/result.php:2 +msgid "Results" +msgstr "" + +#: application/views/awards/jcc/index.php:151 +#: application/views/awards/waja/index.php:153 +#: application/views/distancerecords/index.php:13 +msgid "Number" +msgstr "" + +#: application/views/awards/jcc/index.php:152 +#: application/views/search/result.php:21 +#: application/views/view_log/qso.php:524 +msgid "City" +msgstr "" + +#: application/views/awards/jcc/index.php:187 +#: application/views/dashboard/index.php:368 +#: application/views/distances/index.php:23 +msgid "SAT" +msgstr "" + +#: application/views/awards/pota/index.php:7 +msgid "POTA Awards" +msgstr "" + +#: application/views/awards/pota/index.php:8 +msgid "" +"Parks on the Air® (POTA) started in early 2017 when the ARRL's National " +"Parks on the Air special event ended. A group of volunteers wanted to " +"continue the fun beyond the one-year event, and thus, POTA was born." +msgstr "" + +#: application/views/awards/pota/index.php:9 +msgid "" +"POTA works similarly to SOTA, with Activators and Hunters. For the awards, " +"there are several categories based on the number of parks, geographic areas, " +"and more." +msgstr "" + +#: application/views/awards/pota/index.php:10 +#, php-format +msgctxt "uses 'the website'" +msgid "" +"For more information about the available awards and categories, please visit " +"the %s." +msgstr "" + +#: application/views/awards/pota/index.php:31 +#: application/views/qso/index.php:236 application/views/qso/index.php:492 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 +#: application/views/user/edit.php:595 application/views/view_log/qso.php:306 +#: application/views/view_log/qso.php:573 +msgid "POTA Reference(s)" +msgstr "" + +#: application/views/awards/rac/index.php:3 +msgctxt "Canada Province" +msgid "Province" +msgstr "" + +#: application/views/awards/rac/index.php:4 +msgid "Hover over a province" +msgstr "" + +#: application/views/awards/rac/index.php:106 +msgid "Show RAC Map" +msgstr "" + +#: application/views/awards/sig/index.php:7 +msgid "SIG Information" +msgstr "" + +#: application/views/awards/sig/index.php:8 +msgid "" +"The SIG or Signature Category provides the possibility to use any kind of " +"'Award Signature' for awards that are not implemented in Wavelog." +msgstr "" + +#: application/views/awards/sig/index.php:9 +msgid "" +"The reason for this is that the common ADIF format provides only a few " +"dedicated fields for certain awards. SIG still makes it possible to use and " +"evaluate all other types of signature markers." +msgstr "" + +#: application/views/awards/sig/index.php:10 +msgid "" +"In the QSO processing, you will find two fields: 'SIG' contains the actual " +"marker, which is also visible in the award evaluation, and 'SIG INFO,' which " +"contains a description of the signature. Both fields are freely customizable." +msgstr "" + +#: application/views/awards/sig/index.php:21 +msgid "Award Type" +msgstr "" + +#: application/views/awards/sig/index.php:22 +#: application/views/continents/index.php:17 +#: application/views/distances/index.php:12 +#: application/views/timeplotter/index.php:4 +msgid "Number of QSOs" +msgstr "" + +#: application/views/awards/sig/index.php:23 +msgid "Number of Refs" +msgstr "" + +#: application/views/awards/sig/qso_list.php:9 +#: application/views/awards/sota/index.php:23 +msgid "Reference" +msgstr "" + +#: application/views/awards/sig/qso_list.php:10 +#: application/views/awards/sota/index.php:24 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/logbookadvanced/useroptions.php:22 +#: application/views/qslmanagement/index.php:23 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/search/lotw_unconfirmed_result.php:7 +#: application/views/view_log/qso.php:71 +msgid "Date/Time" +msgstr "" + +#: application/views/awards/sig/qso_list.php:14 +#: application/views/awards/sota/index.php:27 +msgid "RST Sent" +msgstr "" + +#: application/views/awards/sig/qso_list.php:15 +#: application/views/awards/sota/index.php:28 +msgid "RST Received" +msgstr "" + +#: application/views/awards/sig/qso_list.php:34 +msgid "Export QSOs to ADIF" +msgstr "" + +#: application/views/awards/sota/index.php:7 +msgid "SOTA Awards" +msgstr "" + +#: application/views/awards/sota/index.php:8 +msgid "" +"SOTA (Summits On The Air) is an award scheme for radio amateurs that " +"encourages portable operation in mountainous areas." +msgstr "" + +#: application/views/awards/sota/index.php:9 +msgid "" +"It is fully operational in nearly a hundred countries worldwide. Each " +"country has its own Association that defines the recognized SOTA summits " +"within that Association. Each summit earns the activators and chasers a " +"score related to the height of the summit. Certificates are available for " +"various scores, leading to the prestigious 'Mountain Goat' and 'Shack Sloth' " +"trophies. An Honor Roll for Activators and Chasers is maintained in the SOTA " +"online database." +msgstr "" + +#: application/views/awards/vucc/index.php:7 +msgid "VUCC - VHF/UHF Century Club Award" +msgstr "" + +#: application/views/awards/vucc/index.php:8 +msgid "" +"The VHF/UHF Century Club Award is given for a minimum number of worked and " +"confirmed gridsquares on a desired band." +msgstr "" + +#: application/views/awards/vucc/index.php:9 +#, php-format +msgid "Official information and the rules can be found in this document: %s." +msgstr "" + +#: application/views/awards/vucc/index.php:10 +msgid "Only VHF/UHF bands are relevant." +msgstr "" + +#: application/views/awards/vucc/index.php:22 +msgid "Grids Worked" +msgstr "" + +#: application/views/awards/vucc/index.php:23 +msgid "Grids Confirmed" +msgstr "" + +#: application/views/awards/wab/index.php:12 +msgid "WAB - Worked All Britain Award" +msgstr "" + +#: application/views/awards/wab/index.php:13 +msgid "" +"WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham " +"radio operators to work all the squares in Great Britain." +msgstr "" + +#: application/views/awards/wab/index.php:14 +msgid "" +"May be claimed for having contacted an amateur station located in the " +"required amount of squares, described on the page linked below." +msgstr "" + +#: application/views/awards/wab/index.php:109 +msgid "List" +msgstr "" + +#: application/views/awards/wab/list.php:5 +msgid "WAB Square" +msgstr "" + +#: application/views/awards/wac/index.php:9 +msgid "" +"Sponsored by the International Amateur Radio Union (IARU), the Worked All " +"Continents award is issued for working and confirming all six continents. " +"These are North America, South America, Oceania, Asia, Europe and Africa." +msgstr "" + +#: application/views/awards/wac/index.php:13 +msgid "Awards - Worked All Continents (WAC)" +msgstr "" + +#: application/views/awards/wac/index.php:151 +#: application/views/continents/index.php:62 +#: application/views/logbookadvanced/edit.php:25 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 +#: application/views/view_log/qso.php:245 +msgid "Continent" +msgstr "" + +#: application/views/awards/waja/index.php:3 +msgctxt "Japan Prefecture" +msgid "Prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:4 +msgid "Hover over a prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:19 +msgid "WAJA - Worked All Japan prefectures Award" +msgstr "" + +#: application/views/awards/waja/index.php:20 +msgid "" +"WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " +"radio operators to work all the prefectures in Japan." +msgstr "" + +#: application/views/awards/waja/index.php:21 +msgid "" +"May be claimed for having contacted (heard) and received a QSL card from an " +"amateur station located in each of the 47 prefectures of Japan. A list of " +"QSL cards should be arranged in order of WAJA (HAJA) reference number, " +"however names of prefectures may be omitted." +msgstr "" + +#: application/views/awards/waja/index.php:118 +msgid "Show WAJA Map" +msgstr "" + +#: application/views/awards/waja/index.php:154 +#: application/views/timeline/index.php:185 +msgid "Prefecture" +msgstr "" + +#: application/views/awards/was/index.php:3 +msgctxt "USA State" +msgid "State" +msgstr "" + +#: application/views/awards/was/index.php:4 +msgid "Hover over a state" +msgstr "" + +#: application/views/awards/was/index.php:20 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:21 +msgid "" +"ARRL's most popular award is the Worked All States Award. Thousands upon " +"thousands of awards have been issued to hams around the world. In ARRL's " +"101st year, they have redesigned the certificates and the program in hopes " +"of streamlining and improving the award program." +msgstr "" + +#: application/views/awards/was/index.php:22 +msgid "" +"The WAS (Worked All States) Award is available to all amateurs worldwide who " +"submit proof with written confirmation of contacts with each of the 50 " +"states of the United States of America. Amateurs in the U.S. and its " +"possessions must be members of ARRL to apply for a WAS. Applicants from " +"outside the U.S. are exempt from this requirement." +msgstr "" + +#: application/views/awards/was/index.php:23 +#, php-format +msgctxt "uses 'here'" +msgid "All information and rules for the ARRL WAS Award can be found %s." +msgstr "" + +#: application/views/awards/was/index.php:114 +msgid "Show WAS Map" +msgstr "" + +#: application/views/awards/wwff/index.php:7 +msgid "WWFF - World Wide Flora and Fauna Award" +msgstr "" + +#: application/views/awards/wwff/index.php:8 +msgid "" +"WWFF, World Wide Flora and Fauna in Amateur Radio, encourages licensed ham " +"radio operators to leave their shacks and operate portable in Protected " +"Flora & Fauna areas (PFF) worldwide." +msgstr "" + +#: application/views/awards/wwff/index.php:9 +msgid "" +"More than 26,000 Protected Flora & Fauna (PFF) areas worldwide are already " +"registered in the WWFF Directory. Hunters and Activators can apply for " +"colorful awards, both globally and nationally." +msgstr "" + +#: application/views/awards/wwff/index.php:31 +#: application/views/qso/index.php:224 application/views/qso/index.php:479 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 +#: application/views/user/edit.php:591 application/views/view_log/qso.php:299 +#: application/views/view_log/qso.php:566 +msgid "WWFF Reference" +msgstr "" + +#: application/views/backup/adif_view.php:7 +msgid "" +"The backup of your log completed successfully. The output can be found at" +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 "" + +#: application/views/backup/adif_view.php:13 +#: application/views/backup/notes_view.php:13 +msgid "" +"Something went wrong during the backup process. Check that the backup folder " +"exists and is writeable by your web server user / group." +msgstr "" + +#: application/views/backup/main.php:17 +msgid "" +"Some of the data stored in Wavelog can be exported so that you can keep a " +"backup copy elsewhere." +msgstr "" + +#: application/views/backup/main.php:18 +msgid "" +"It's recommended to create backups on a regular basis to protect your data." +msgstr "" + +#: application/views/backup/main.php:19 +msgid "Backup ADIF data" +msgstr "" + +#: application/views/backup/main.php:20 +msgid "Backup Notes" +msgstr "" + +#: application/views/backup/notes_view.php:7 +msgid "" +"The backup of your notes completed successfully. The output can be found at" +msgstr "" + +#: application/views/bandmap/index.php:15 application/views/bandmap/list.php:49 +msgid "BandMap" +msgstr "" + +#: application/views/bandmap/index.php:18 application/views/bandmap/list.php:52 +msgid "BandList" +msgstr "" + +#: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 +#: application/views/contesting/index.php:15 +#: application/views/contesting/index.php:52 +#: application/views/contesting/index.php:145 +#: application/views/qso/index.php:314 +msgid "None" +msgstr "" + +#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:76 +msgid "Spots de" +msgstr "" + +#: application/views/bandmap/list.php:69 +msgid "DXCC-Status" +msgstr "" + +#: application/views/bandmap/list.php:74 +msgid "Not Confirmed" +msgstr "" + +#: application/views/bandmap/list.php:113 +msgid "Spotter" +msgstr "" + +#: application/views/bandmap/list.php:114 +#: application/views/oqrs/notinlogform.php:28 +#: application/views/oqrs/request.php:54 +#: application/views/oqrs/request_grouped.php:58 +msgid "Message" +msgstr "" + +#: application/views/bands/create.php:26 application/views/bands/edit.php:8 +msgid "Name of Band (E.g. 20m)" +msgstr "" + +#: application/views/bands/create.php:29 application/views/bands/edit.php:11 +#: application/views/bands/index.php:61 +msgid "Bandgroup" +msgstr "" + +#: application/views/bands/create.php:31 application/views/bands/edit.php:13 +msgid "Name of bandgroup (E.g. hf, vhf, uhf, shf)" +msgstr "" + +#: application/views/bands/create.php:34 application/views/bands/edit.php:16 +#: application/views/bands/index.php:62 +msgid "SSB QRG" +msgstr "" + +#: application/views/bands/create.php:36 application/views/bands/edit.php:18 +msgid "Frequency for SSB QRG in band (must be in Hz)" +msgstr "" + +#: application/views/bands/create.php:39 application/views/bands/edit.php:21 +#: application/views/bands/index.php:63 +msgid "DATA QRG" +msgstr "" + +#: application/views/bands/create.php:41 application/views/bands/edit.php:23 +msgid "Frequency for DATA QRG in band (must be in Hz)" +msgstr "" + +#: application/views/bands/create.php:44 application/views/bands/edit.php:26 +#: application/views/bands/index.php:64 +msgid "CW QRG" +msgstr "" + +#: application/views/bands/create.php:46 application/views/bands/edit.php:28 +msgid "Frequency for CW QRG in band (must be in Hz)" +msgstr "" + +#: application/views/bands/index.php:36 +msgid "" +"Using the band list you can control which bands are shown when creating a " +"new QSO." +msgstr "" + +#: application/views/bands/index.php:37 +msgid "" +"Active bands will be shown in the QSO 'Band' drop-down, while inactive bands " +"will be hidden and cannot be selected." +msgstr "" + +#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 +#: application/views/qso/index.php:248 application/views/qso/index.php:504 +#: application/views/user/edit.php:599 application/views/view_log/qso.php:328 +#: application/views/view_log/qso.php:580 +msgid "Sig" +msgstr "" + +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:339 +#: application/views/qso/index.php:443 +msgid "USA County" +msgstr "" + +#: application/views/bands/index.php:58 +#: application/views/interface_assets/header.php:212 +msgid "WAJA" +msgstr "" + +#: application/views/bands/index.php:59 +#: application/views/interface_assets/header.php:236 +msgid "WAS" +msgstr "" + +#: application/views/bands/index.php:65 +msgid "QRG Unit" +msgstr "" + +#: application/views/bands/index.php:98 +msgid "Hz" +msgstr "" + +#: application/views/bands/index.php:99 +msgid "kHz" +msgstr "" + +#: application/views/bands/index.php:100 +msgid "MHz" +msgstr "" + +#: application/views/bands/index.php:101 +msgid "GHz" +msgstr "" + +#: application/views/bands/index.php:151 application/views/bands/index.php:157 +msgid "Create a band" +msgstr "" + +#: application/views/bands/index.php:152 +#: application/views/contesting/add.php:74 +#: application/views/contesting/index.php:83 +#: application/views/interface_assets/footer.php:44 +#: application/views/simplefle/index.php:21 +#: application/views/version_dialog/index.php:79 +msgid "Close" +msgstr "" + +#: application/views/bands/index.php:153 +msgid "Warning! Are you sure you want to delete the following band: " +msgstr "" + +#: application/views/bands/index.php:154 +msgid "Warning! Are you sure you want to activate all bands?" +msgstr "" + +#: application/views/bands/index.php:155 +msgid "Warning! Are you sure you want to deactivate all bands?" +msgstr "" + +#: application/views/bands/index.php:158 +#: application/views/contesting/add.php:77 application/views/mode/index.php:77 +msgid "Activate All" +msgstr "" + +#: application/views/bands/index.php:159 +#: application/views/contesting/add.php:78 application/views/mode/index.php:78 +msgid "Deactivate All" +msgstr "" + +#: application/views/cabrillo/index.php:2 +#: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:59 +#: application/views/reg1test/index.php:2 +#: application/views/reg1test/index.php:36 +msgid "Proceed" +msgstr "" + +#: application/views/cabrillo/index.php:3 +#: application/views/reg1test/index.php:3 +msgid "Select Year" +msgstr "" + +#: application/views/cabrillo/index.php:4 +#: application/views/reg1test/index.php:4 +msgid "Select Contest" +msgstr "" + +#: application/views/cabrillo/index.php:5 +#: application/views/reg1test/index.php:5 +msgid "Select Date Range" +msgstr "" + +#: application/views/cabrillo/index.php:6 +#: application/views/reg1test/index.php:7 +msgid "No contests were found for this station location!" +msgstr "" + +#: application/views/cabrillo/index.php:16 +msgid "Export a contest to a Cabrillo log" +msgstr "" + +#: application/views/cabrillo/index.php:28 +msgid "Select Station Location:" +msgstr "" + +#: application/views/cabrillo/index.php:44 +#: application/views/reg1test/index.php:53 +msgid "Club" +msgstr "" + +#: application/views/cabrillo/index.php:48 +#: application/views/reg1test/index.php:58 +msgid "Category Operator" +msgstr "" + +#: application/views/cabrillo/index.php:56 +msgid "Category Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:63 +msgid "Category Band" +msgstr "" + +#: application/views/cabrillo/index.php:89 +msgid "Light/Laser" +msgstr "" + +#: application/views/cabrillo/index.php:90 +msgid "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)" +msgstr "" + +#: application/views/cabrillo/index.php:94 +msgid "Category Mode" +msgstr "" + +#: application/views/cabrillo/index.php:105 +msgid "Category Power" +msgstr "" + +#: application/views/cabrillo/index.php:113 +msgid "Category Station" +msgstr "" + +#: application/views/cabrillo/index.php:129 +msgid "Category Transmitter" +msgstr "" + +#: application/views/cabrillo/index.php:139 +msgid "Category Overlay" +msgstr "" + +#: application/views/cabrillo/index.php:150 +#: application/views/reg1test/index.php:70 +msgid "Operators" +msgstr "" + +#: application/views/cabrillo/index.php:155 +#: application/views/reg1test/index.php:139 +msgid "Soapbox" +msgstr "" + +#: application/views/cabrillo/index.php:159 +msgid "Address" +msgstr "" + +#: application/views/cabrillo/index.php:163 +msgid "Address City" +msgstr "" + +#: application/views/cabrillo/index.php:167 +msgid "Address State/Province" +msgstr "" + +#: application/views/cabrillo/index.php:171 +msgid "Address Postalcode" +msgstr "" + +#: application/views/cabrillo/index.php:175 +msgid "Address Country" +msgstr "" + +#: application/views/cabrillo/index.php:186 +#: application/views/reg1test/index.php:150 +msgid "No contests were found in your log." +msgstr "" + +#: application/views/cfd/index.php:7 +#, php-format +msgid "Export of CFD-File for DARC-Toplist (See %s)" +msgstr "" + +#: application/views/components/hamsat/table.php:3 +#: application/views/hamsat/index.php:7 +msgid "Hamsat - Satellite Rovers" +msgstr "" + +#: application/views/components/hamsat/table.php:4 +#: application/views/contestcalendar/index.php:4 +#: application/views/dxcalendar/index.php:4 +#: application/views/hamsat/index.php:8 +msgid "This data comes from" +msgstr "" + +#: application/views/components/hamsat/table.php:11 +msgid "Show All Passes" +msgstr "" + +#: application/views/components/hamsat/table.php:14 +msgid "Private feed key empty. Please set the feed key in your profile." +msgstr "" + +#: application/views/components/hamsat/table.php:19 +msgid "No upcoming activations found. Please check back later." +msgstr "" + +#: application/views/components/hamsat/table.php:28 +#: application/views/contesting/index.php:219 +#: application/views/hamsat/index.php:31 +#: application/views/logbookadvanced/edit.php:5 +#: application/views/logbookadvanced/index.php:629 +#: application/views/logbookadvanced/useroptions.php:114 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 +#: application/views/view_log/qso.php:202 +msgid "Comment" +msgstr "" + +#: application/views/components/hamsat/table.php:31 +#: application/views/hamsat/index.php:34 +msgid "Gridsquare(s)" +msgstr "" + +#: application/views/components/hamsat/table.php:32 +#: application/views/hamsat/index.php:35 +msgid "Workable" +msgstr "" + +#: application/views/components/hamsat/table.php:134 +msgctxt "Hamsat - Track Satellites" +msgid "Track" +msgstr "" + +#: application/views/components/hamsat/table.php:146 +msgid "Sked" +msgstr "" + +#: application/views/components/radio_display_table.php:5 +msgid "Radio Status" +msgstr "" + +#: application/views/contestcalendar/index.php:9 +msgid "No Contests" +msgstr "" + +#: application/views/contestcalendar/index.php:14 +#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:635 +#: application/views/logbookadvanced/useroptions.php:122 +#: application/views/qso/edit_ajax.php:39 +#: application/views/simplefle/index.php:80 +msgid "Contest" +msgstr "" + +#: application/views/contestcalendar/index.php:15 +#: application/views/statistics/custom.php:41 +#: application/views/statistics/custom_result.php:43 +msgid "Start" +msgstr "" + +#: application/views/contestcalendar/index.php:16 +#: application/views/statistics/custom.php:46 +#: application/views/statistics/custom_result.php:48 +msgid "End" +msgstr "" + +#: application/views/contestcalendar/index.php:17 +msgid "Link" +msgstr "" + +#: application/views/contestcalendar/index.php:26 +msgid "Show Details" +msgstr "" + +#: application/views/contestcalendar/index.php:38 +#: application/views/dashboard/index.php:278 +#: application/views/dashboard/index.php:305 +#: application/views/dashboard/index.php:326 +#: application/views/dashboard/index.php:347 +#: application/views/satellite/pass.php:475 +msgid "Today" +msgstr "" + +#: application/views/contestcalendar/index.php:48 +msgid "Weekend" +msgstr "" + +#: application/views/contestcalendar/index.php:59 +msgid "Next Week" +msgstr "" + +#: application/views/contesting/add.php:16 +msgid "" +"Using the contest list, you can control which Contests are shown when " +"logging QSOs in a contest." +msgstr "" + +#: application/views/contesting/add.php:19 +msgid "" +"Active contests will be shown in the Contest Name drop-down, while inactive " +"contests will be hidden and cannot be selected." +msgstr "" + +#: application/views/contesting/add.php:26 +#: application/views/contesting/create.php:30 +msgid "ADIF Name" +msgstr "" + +#: application/views/contesting/add.php:27 +#: application/views/contesting/add.php:41 +#: application/views/contesting/add.php:44 +#: application/views/contesting/edit.php:43 +#: application/views/contesting/edit.php:46 +#: application/views/interface_assets/header.php:472 +#: application/views/mode/create.php:46 application/views/mode/create.php:48 +#: application/views/mode/edit.php:57 application/views/mode/edit.php:60 +#: application/views/mode/index.php:43 +msgid "Active" +msgstr "" + +#: application/views/contesting/add.php:39 +#: application/views/contesting/add.php:44 +#: application/views/contesting/edit.php:49 +msgid "Not Active" +msgstr "" + +#: application/views/contesting/add.php:40 +#: application/views/contesting/add.php:49 application/views/mode/index.php:48 +msgid "Activate" +msgstr "" + +#: application/views/contesting/add.php:42 +#: application/views/contesting/add.php:47 application/views/mode/index.php:46 +msgid "Deactivate" +msgstr "" + +#: application/views/contesting/add.php:54 +msgid "DANGER!" +msgstr "" + +#: application/views/contesting/add.php:55 +msgid "Warning! Are you sure you want to delete the following contest: " +msgstr "" + +#: application/views/contesting/add.php:56 +msgid "Warning! Are you sure you want to activate all contests?" +msgstr "" + +#: application/views/contesting/add.php:57 +msgid "Warning! Are you sure you want to deactivate all contests?" +msgstr "" + +#: application/views/contesting/add.php:73 +#: application/views/contesting/add.php:76 +msgid "Add a Contest" +msgstr "" + +#: application/views/contesting/create.php:26 +#: application/views/contesting/edit.php:33 +msgid "Name of the Contest" +msgstr "" + +#: application/views/contesting/create.php:32 +#: application/views/contesting/edit.php:39 +msgid "Name of Contest in ADIF-specification" +msgstr "" + +#: application/views/contesting/create.php:35 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 +msgid "Create" +msgstr "" + +#: application/views/contesting/edit.php:31 +#: application/views/contesting/index.php:25 +#: application/views/qso/edit_ajax.php:575 +#: application/views/view_log/qso.php:278 +msgid "Contest Name" +msgstr "" + +#: application/views/contesting/edit.php:37 +msgid "Contest ADIF Name" +msgstr "" + +#: application/views/contesting/edit.php:52 +msgid "Set to active if to be listed in Contest-list" +msgstr "" + +#: application/views/contesting/index.php:2 +msgid "Start new Contest Session" +msgstr "" + +#: application/views/contesting/index.php:11 +msgid "Exchange Type" +msgstr "" + +#: application/views/contesting/index.php:16 +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:18 +msgid "Serial" +msgstr "" + +#: application/views/contesting/index.php:19 +msgid "Serial + Exchange" +msgstr "" + +#: application/views/contesting/index.php:20 +msgid "Serial + Gridsquare" +msgstr "" + +#: application/views/contesting/index.php:21 +msgid "Serial + Gridsquare + Exchange" +msgstr "" + +#: application/views/contesting/index.php:35 +#: application/views/operator/index.php:5 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:352 +msgid "Operator Callsign" +msgstr "" + +#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:45 +msgid "More Settings" +msgstr "" + +#: application/views/contesting/index.php:49 +msgid "Copy received exchange to" +msgstr "" + +#: application/views/contesting/index.php:51 +msgid "Exchange is only copied if it is matching rules for the selected field!" +msgstr "" + +#: application/views/contesting/index.php:55 +msgid "Age" +msgstr "" + +#: application/views/contesting/index.php:57 +msgid "RX Power (W)" +msgstr "" + +#: application/views/contesting/index.php:58 +msgid "Locator" +msgstr "" + +#: application/views/contesting/index.php:59 +#: application/views/qso/edit_ajax.php:177 +msgid "QTH" +msgstr "" + +#: application/views/contesting/index.php:64 +msgid "Sequence of Exchanges" +msgstr "" + +#: application/views/contesting/index.php:67 +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 "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Grid" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Serial" +msgstr "" + +#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:255 +#: application/views/qso/edit_ajax.php:598 +msgid "Serial (S)" +msgstr "" + +#: application/views/contesting/index.php:177 +msgid "Gridsquare (S)" +msgstr "" + +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:253 +msgid "Exch (S)" +msgstr "" + +#: application/views/contesting/index.php:196 +#: application/views/contesting/index.php:256 +#: application/views/qso/edit_ajax.php:593 +msgid "Serial (R)" +msgstr "" + +#: application/views/contesting/index.php:201 +msgid "Gridsquare (R)" +msgstr "" + +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:254 +msgid "Exch (R)" +msgstr "" + +#: application/views/contesting/index.php:224 +msgid "Reset QSO" +msgstr "" + +#: application/views/contesting/index.php:225 +#: application/views/qso/index.php:629 +msgid "Save QSO" +msgstr "" + +#: application/views/contesting/index.php:234 +msgid "Callsign Suggestions" +msgstr "" + +#: application/views/contesting/index.php:241 +msgid "Contest Logbook" +msgstr "" + +#: application/views/contesting/index.php:258 +#: application/views/qso/edit_ajax.php:164 +msgid "VUCC Gridsquare" +msgstr "" + +#: application/views/continents/index.php:63 +#: application/views/statistics/index.php:19 +#: application/views/statistics/index.php:113 +msgid "# of QSO's worked" +msgstr "" + +#: application/views/cron/edit.php:11 +msgid "Identifier" +msgstr "" + +#: application/views/cron/edit.php:22 +#: application/views/options/appearance.php:56 +#: application/views/options/appearance.php:63 +#: application/views/options/appearance.php:72 +#: application/views/options/appearance.php:82 +#: application/views/options/appearance.php:91 +#: application/views/options/appearance.php:100 +#: application/views/options/appearance.php:109 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 +#: application/views/stationsetup/stationsetup.php:73 +#: application/views/user/edit.php:452 application/views/user/edit.php:461 +msgid "Enabled" +msgstr "" + +#: application/views/cron/edit.php:36 application/views/cron/index.php:55 +msgid "Intervall" +msgstr "" + +#: application/views/cron/edit.php:38 +msgid "Choose a preset from the dropdown" +msgstr "" + +#: application/views/cron/edit.php:43 +msgid "Every 5 Minutes" +msgstr "" + +#: application/views/cron/edit.php:44 +msgid "Every 15 Minutes" +msgstr "" + +#: application/views/cron/edit.php:45 +msgid "Every Hour" +msgstr "" + +#: application/views/cron/edit.php:46 +msgid "Every 2 Hours" +msgstr "" + +#: application/views/cron/edit.php:47 +msgid "Every Day at Midnight" +msgstr "" + +#: application/views/cron/edit.php:48 +msgid "Every Monday at 03:00" +msgstr "" + +#: application/views/cron/edit.php:49 +msgid "First Day of Every Month at midnight" +msgstr "" + +#: application/views/cron/edit.php:50 +msgid "Every 2 Months at 02:00" +msgstr "" + +#: application/views/cron/edit.php:62 +msgid "OR" +msgstr "" + +#: application/views/cron/edit.php:63 +msgid "Enter your own Cron Expression" +msgstr "" + +#: application/views/cron/edit.php:74 +#: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 +msgid "Cancel" +msgstr "" + +#: application/views/cron/index.php:9 +msgid "How it works" +msgstr "" + +#: application/views/cron/index.php:15 +msgid "" +"The Cron Manager assists the administrator in managing cron jobs without " +"requiring CLI access." +msgstr "" + +#: application/views/cron/index.php:19 +msgid "" +"To execute cron jobs based on the data below, remove all old cron jobs and " +"create a new one:" +msgstr "" + +#: application/views/cron/index.php:29 application/views/cron/index.php:33 +msgid "Status Master-Cron:" +msgstr "" + +#: application/views/cron/index.php:33 +msgctxt "PHP Version" +msgid "Min. Version is" +msgstr "" + +#: application/views/cron/index.php:33 +msgid "PHP Version not supported." +msgstr "" + +#: application/views/cron/index.php:43 +msgid "Cron List" +msgstr "" + +#: application/views/cron/index.php:52 +#: application/views/stationsetup/stationsetup.php:121 +msgid "ID" +msgstr "" + +#: application/views/cron/index.php:56 +msgid "Last Run" +msgstr "" + +#: application/views/cron/index.php:57 +msgid "Next Run" +msgstr "" + +#: application/views/cron/index.php:70 +msgid "healthy" +msgstr "" + +#: application/views/cron/index.php:72 +msgid "failed" +msgstr "" + +#: application/views/cron/index.php:74 +msgid "pending" +msgstr "" + +#: application/views/cron/index.php:79 +msgid "disabled" +msgstr "" + +#: application/views/cron/index.php:83 application/views/cron/index.php:85 +#: application/views/cron/index.php:87 application/views/debug/index.php:494 +#: application/views/debug/index.php:500 application/views/debug/index.php:505 +#: application/views/debug/index.php:510 application/views/debug/index.php:515 +#: application/views/debug/index.php:520 application/views/debug/index.php:525 +#: application/views/user/index.php:138 +msgid "never" +msgstr "" + +#: application/views/cron/index.php:102 +msgid "Your Mastercron isn't running." +msgstr "" + +#: application/views/cron/index.php:103 +msgid "" +"Copy the cron above to a external cron service or into your server's cron to " +"use this cron manager." +msgstr "" + +#: application/views/cron/index.php:104 +msgid "" +"On a basic linux server with shell access use this command to edit your " +"crons:" +msgstr "" + +#: application/views/cron/index.php:111 +#, php-format +msgid "" +"You need to upgrade your PHP version. Minimum version is %s. Your Version is " +"%s" +msgstr "" + +#: application/views/csv/index.php:7 +msgid "Export your logbook for SOTA uploads." +msgstr "" + +#: application/views/csv/index.php:11 +msgid "Only QSOs with SOTA information will be exported!" +msgstr "" + +#: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 +#: application/views/eqsl/download.php:42 +#: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:411 +msgid "Propagation Mode" +msgstr "" + +#: application/views/dashboard/index.php:5 +msgid "RSTS" +msgstr "" + +#: application/views/dashboard/index.php:6 +msgid "RSTR" +msgstr "" + +#: application/views/dashboard/index.php:58 +msgid "" +"You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +msgstr "" + +#: application/views/dashboard/index.php:65 +#, php-format +msgctxt "Dashboard Warning" +msgid "You need to update country files! Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:73 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station locations. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:81 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station logbook. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:89 +#, php-format +msgctxt "Dashboard Warning" +msgid "" +"Your active Station Location isn't linked to your Logbook. Click %shere%s to " +"do it." +msgstr "" + +#: application/views/dashboard/index.php:97 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station linked to your Logbook. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:106 +#, php-format +msgid "You have had %d QSO today" +msgid_plural "You have had %d QSOs today" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/views/dashboard/index.php:112 +msgid "You have made no QSOs today; time to turn on the radio!" +msgstr "" + +#: application/views/dashboard/index.php:119 +msgid "Attention: you need to set an active station location." +msgstr "" + +#: application/views/dashboard/index.php:125 +msgid "" +"You have themes without defined theme mode. Please ask the admin to edit the " +"themes." +msgstr "" + +#: application/views/dashboard/index.php:133 +msgid "At least one of your LoTW certificates is expired!" +msgstr "" + +#: application/views/dashboard/index.php:139 +msgid "At least one of your LoTW certificates is about to expire!" +msgstr "" + +#: application/views/dashboard/index.php:229 +#: application/views/visitor/index.php:237 +msgid "QSOs Breakdown" +msgstr "" + +#: application/views/dashboard/index.php:252 +#: application/views/visitor/index.php:258 +msgid "Countries Breakdown" +msgstr "" + +#: application/views/dashboard/index.php:269 +#: application/views/visitor/index.php:275 +msgid "Needed" +msgstr "" + +#: application/views/dashboard/index.php:282 +#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:330 +#: application/views/dashboard/index.php:351 +#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:159 +#: application/views/qslprint/qsolist.php:58 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:167 +#: application/views/qso/edit_ajax.php:417 +#: application/views/qso/edit_ajax.php:478 +#: application/views/qso/edit_ajax.php:518 application/views/qso/index.php:572 +#: application/views/search/result_search.php:8 +#: application/views/search/search_result_ajax.php:180 +#: application/views/search/search_result_ajax.php:260 +#: application/views/search/search_result_ajax.php:298 +#: application/views/search/search_result_ajax.php:332 +#: application/views/search/search_result_ajax.php:362 +#: application/views/statistics/custom_result.php:89 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:289 +#: application/views/view_log/partial/log_ajax.php:297 +#: application/views/visitor/index.php:287 +#: application/views/visitor/index.php:310 +#: application/views/visitor/index.php:328 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:270 +#: src/QSLManager/QSO.php:373 src/QSLManager/QSO.php:425 +#: src/QSLManager/QSO.php:461 +msgid "Sent" +msgstr "" + +#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:315 +#: application/views/dashboard/index.php:336 +#: application/views/dashboard/index.php:357 +#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 +#: application/views/oqrs/qsolist.php:174 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:151 +#: application/views/qslprint/qsolist.php:182 +#: application/views/qso/edit_ajax.php:450 +#: application/views/qso/edit_ajax.php:491 +#: application/views/qso/edit_ajax.php:530 +#: application/views/search/search_result_ajax.php:222 +#: application/views/search/search_result_ajax.php:273 +#: application/views/search/search_result_ajax.php:313 +#: application/views/search/search_result_ajax.php:345 +#: application/views/search/search_result_ajax.php:375 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:265 +#: application/views/view_log/partial/log_ajax.php:290 +#: application/views/view_log/partial/log_ajax.php:298 +#: application/views/visitor/index.php:292 +#: application/views/visitor/index.php:315 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:315 +#: src/QSLManager/QSO.php:396 src/QSLManager/QSO.php:438 +#: src/QSLManager/QSO.php:474 +msgid "Received" +msgstr "" + +#: application/views/dashboard/index.php:294 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:415 +#: application/views/logbookadvanced/index.php:426 +#: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 +#: application/views/qslprint/qsolist.php:64 +#: application/views/qslprint/qsolist.php:106 +#: application/views/qso/edit_ajax.php:422 +#: application/views/qso/edit_ajax.php:455 +#: application/views/qso/edit_ajax.php:483 +#: application/views/qso/edit_ajax.php:496 +#: application/views/qso/edit_ajax.php:523 +#: application/views/qso/edit_ajax.php:535 application/views/qso/index.php:577 +#: application/views/search/search_result_ajax.php:186 +#: application/views/search/search_result_ajax.php:228 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +#: application/views/view_log/partial/log_ajax.php:249 +#: application/views/view_log/partial/log_ajax.php:275 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:276 +#: src/QSLManager/QSO.php:321 src/QSLManager/QSO.php:381 +#: src/QSLManager/QSO.php:404 +msgid "Requested" +msgstr "" + +#: application/views/dashboard/index.php:304 +msgctxt "Probably no translation needed as this is a name." +msgid "Logbook of the World" +msgstr "" + +#: application/views/dashboard/index.php:367 +msgid "VUCC-Grids" +msgstr "" + +#: application/views/dayswithqso/index.php:2 +#: application/views/interface_assets/header.php:148 +msgid "Days with QSOs" +msgstr "" + +#: application/views/dayswithqso/index.php:25 +msgid "Days" +msgstr "" + +#: application/views/dayswithqso/index.php:37 +msgid "Longest streak with QSOs in the log" +msgstr "" + +#: application/views/dayswithqso/index.php:38 +msgid "A maximum of the 10 longest streaks are shown!" +msgstr "" + +#: application/views/dayswithqso/index.php:56 +msgid "Streak (continuous days with QSOs)" +msgstr "" + +#: application/views/dayswithqso/index.php:57 +#: application/views/dayswithqso/index.php:85 +#: application/views/dayswithqso/index.php:107 +msgid "Start Date" +msgstr "" + +#: application/views/dayswithqso/index.php:58 +#: application/views/dayswithqso/index.php:86 +#: application/views/dayswithqso/index.php:108 +#: application/views/timeline/index.php:153 +msgid "End Date" +msgstr "" + +#: application/views/dayswithqso/index.php:74 +msgctxt "Days with QSOs" +msgid "No streak found!" +msgstr "" + +#: application/views/dayswithqso/index.php:78 +msgid "Current streak with QSOs in the log" +msgstr "" + +#: application/views/dayswithqso/index.php:84 +#: application/views/dayswithqso/index.php:106 +msgid "Current streak (continuous days with QSOs)" +msgstr "" + +#: application/views/dayswithqso/index.php:101 +msgid "" +"If you make a QSO today, you can continue to extend your streak... or else " +"your current streak will be broken!" +msgstr "" + +#: application/views/dayswithqso/index.php:122 +msgid "No current streak found!" +msgstr "" + +#: application/views/debug/index.php:23 +msgid "Wavelog Information" +msgstr "" + +#: application/views/debug/index.php:27 +msgid "Version" +msgstr "" + +#: application/views/debug/index.php:31 +msgid "Language" +msgstr "" + +#: application/views/debug/index.php:35 +msgid "Base URL" +msgstr "" + +#: application/views/debug/index.php:39 +msgid "Migration" +msgstr "" + +#: application/views/debug/index.php:40 +msgid "There is something wrong with your Migration in Database!" +msgstr "" + +#: application/views/debug/index.php:45 +msgid "Migration is outdated and locked!" +msgstr "" + +#: application/views/debug/index.php:46 +#, php-format +msgid "" +"The current migration is not the version it is supposed to be. Reload this " +"page after %s seconds. If this warning persists, your migration is likely " +"locked due to a previously failed process. Delete the file %s to force the " +"migration to run again." +msgstr "" + +#: application/views/debug/index.php:47 +#, php-format +msgid "Check this wiki article %shere%s for more information." +msgstr "" + +#: application/views/debug/index.php:48 +#, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format +msgid "Migration should be %s" +msgstr "" + +#: application/views/debug/index.php:54 +msgid "Environment" +msgstr "" + +#: application/views/debug/index.php:62 +msgid "Total QSO on this instance" +msgstr "" + +#: application/views/debug/index.php:70 +msgid "Server Information" +msgstr "" + +#: application/views/debug/index.php:74 +msgid "Server Software" +msgstr "" + +#: application/views/debug/index.php:79 +msgid "PHP Version" +msgstr "" + +#: application/views/debug/index.php:85 +msgid "Deprecated" +msgstr "" + +#: application/views/debug/index.php:92 +msgid "MySQL Version" +msgstr "" + +#: application/views/debug/index.php:96 +msgid "Codeigniter Version" +msgstr "" + +#: application/views/debug/index.php:104 +msgid "Folder Permissions" +msgstr "" + +#: application/views/debug/index.php:106 +msgid "" +"This verifies that the folders used by Wavelog have read and write " +"permissions by PHP." +msgstr "" + +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 +msgid "Success" +msgstr "" + +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 +msgid "Failed" +msgstr "" + +#: application/views/debug/index.php:169 +msgid "Config Maintenance" +msgstr "" + +#: application/views/debug/index.php:175 +msgid "Your authentication mode is outdated and possibly unsafe" +msgstr "" + +#: application/views/debug/index.php:177 application/views/debug/index.php:194 +#, php-format +msgid "Please edit your %s File:" +msgstr "" + +#: application/views/debug/index.php:178 +msgid "" +"Go to your application/config Folder and compare config.sample.php with your " +"config.php" +msgstr "" + +#: application/views/debug/index.php:179 +#, php-format +msgid "Change %s to the value %s (Strongly recommended)" +msgstr "" + +#: application/views/debug/index.php:185 +msgid "Authentication Mode is set correctly" +msgstr "" + +#: application/views/debug/index.php:185 application/views/debug/index.php:202 +msgid "Ok" +msgstr "" + +#: application/views/debug/index.php:192 +msgid "You use the default encryption key. You should change it!" +msgstr "" + +#: application/views/debug/index.php:195 +msgid "This will also enable the 'Keep me logged in' feature." +msgstr "" + +#: application/views/debug/index.php:196 +#, php-format +msgid "" +"Change the value of %s to a new encryption key other then " +"'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" +msgstr "" + +#: application/views/debug/index.php:202 +msgid "You do not use the default encryption key" +msgstr "" + +#: application/views/debug/index.php:209 +msgid "Migrate Userdata" +msgstr "" + +#: application/views/debug/index.php:211 +msgid "" +"Here you can migrate existing QSL cards and eQSL cards to the new userdata " +"folder." +msgstr "" + +#: application/views/debug/index.php:224 +msgid "Modules" +msgstr "" + +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 +msgid "Installed" +msgstr "" + +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 +msgid "Not Installed" +msgstr "" + +#: application/views/debug/index.php:283 application/views/qso/index.php:671 +msgid "Settings" +msgstr "" + +#: application/views/debug/index.php:412 +msgid "Git Information" +msgstr "" + +#: application/views/debug/index.php:416 +msgid "Branch" +msgstr "" + +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 +msgid "n/a" +msgstr "" + +#: application/views/debug/index.php:433 +msgid "Commit" +msgstr "" + +#: application/views/debug/index.php:443 +msgid "Tag" +msgstr "" + +#: application/views/debug/index.php:453 +msgid "Last Fetch" +msgstr "" + +#: application/views/debug/index.php:465 +msgid "Check for new version" +msgstr "" + +#: application/views/debug/index.php:466 +msgid "Update now" +msgstr "" + +#: application/views/debug/index.php:484 +msgid "File download date" +msgstr "" + +#: application/views/debug/index.php:488 +msgid "File" +msgstr "" + +#: application/views/debug/index.php:489 +msgid "Last update" +msgstr "" + +#: application/views/debug/index.php:493 +msgid "DXCC update from Club Log" +msgstr "" + +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 +#: application/views/station_profile/edit.php:49 +msgid "Update" +msgstr "" + +#: application/views/debug/index.php:499 +msgid "DOK file download" +msgstr "" + +#: application/views/debug/index.php:504 +msgid "LoTW users download" +msgstr "" + +#: application/views/debug/index.php:509 +msgid "POTA file download" +msgstr "" + +#: application/views/debug/index.php:514 +msgid "SCP file download" +msgstr "" + +#: application/views/debug/index.php:519 +msgid "SOTA file download" +msgstr "" + +#: application/views/debug/index.php:524 +msgid "WWFF file download" +msgstr "" + +#: application/views/debug/index.php:533 +msgid "QSO-DB Maintenance" +msgstr "" + +#: application/views/debug/index.php:537 +#, 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] "" +msgstr[1] "" +msgstr[2] "" + +#: application/views/debug/index.php:550 +#: application/views/public_search/result.php:17 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 +#: application/views/stationsetup/linkedlocations.php:32 +#: application/views/stationsetup/stationsetup.php:123 +msgid "Station Callsign" +msgstr "" + +#: application/views/debug/index.php:575 +msgid "Please mark QSOs and reassign them to an existing station location:" +msgstr "" + +#: application/views/debug/index.php:583 +msgctxt "Stationlocation" +msgid "Target Location" +msgstr "" + +#: application/views/debug/index.php:584 application/views/debug/index.php:595 +msgid "Reassign" +msgstr "" + +#: application/views/debug/index.php:604 +msgid "Every QSO in your Database is assigned to a station-profile (location)" +msgstr "" + +#: application/views/debug/index.php:604 +msgid "Everything ok" +msgstr "" + +#: application/views/debug/index.php:629 +msgid "Albanian" +msgstr "" + +#: application/views/debug/index.php:630 +msgid "Bosnian" +msgstr "" + +#: application/views/debug/index.php:631 +msgid "Bulgarian" +msgstr "" + +#: application/views/debug/index.php:632 +msgid "Chinese (Simplified)" +msgstr "" + +#: application/views/debug/index.php:633 +msgid "Croatian" +msgstr "" + +#: application/views/debug/index.php:634 +msgid "Czech" +msgstr "" + +#: application/views/debug/index.php:635 +msgid "Dutch" +msgstr "" + +#: application/views/debug/index.php:636 +msgid "English" +msgstr "" + +#: application/views/debug/index.php:637 +msgid "Finnish" +msgstr "" + +#: application/views/debug/index.php:638 +msgid "French" +msgstr "" + +#: application/views/debug/index.php:639 +msgid "German" +msgstr "" + +#: application/views/debug/index.php:640 +msgid "Greek" +msgstr "" + +#: application/views/debug/index.php:641 +msgid "Italian" +msgstr "" + +#: application/views/debug/index.php:642 +msgid "Montenegrin" +msgstr "" + +#: application/views/debug/index.php:643 +msgid "Polish" +msgstr "" + +#: application/views/debug/index.php:644 +msgid "Portuguese" +msgstr "" + +#: application/views/debug/index.php:645 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:646 +msgid "Serbian" +msgstr "" + +#: application/views/debug/index.php:647 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:648 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:649 +msgid "Turkish" +msgstr "" + +#: application/views/distancerecords/index.php:4 +msgid "This page lists distance records per satellite based on gridsquares." +msgstr "" + +#: application/views/distances/index.php:7 +#: application/views/interface_assets/footer.php:30 +#: application/views/simplefle/index.php:68 +msgid "QSO Data" +msgstr "" + +#: application/views/distances/index.php:9 +#, php-format +msgid "contacts were plotted.%s Your furthest contact was with" +msgstr "" + +#: application/views/distances/index.php:10 +msgid "in gridsquare" +msgstr "" + +#: application/views/distances/index.php:11 +msgid "the distance was" +msgstr "" + +#: application/views/distances/index.php:14 +msgid "Callsign(s) worked (max 5 shown)" +msgstr "" + +#: application/views/distances/index.php:19 +msgid "Band selection" +msgstr "" + +#: application/views/dxatlas/index.php:3 +msgid "DX Atlas Export" +msgstr "" + +#: application/views/dxatlas/index.php:7 +msgid "" +"Export your logbook for use in DX Atlas to display worked / confirmed " +"gridsquares." +msgstr "" + +#: application/views/dxatlas/index.php:11 application/views/kml/index.php:11 +msgid "Only QSOs with a gridsquare defined will be exported!" +msgstr "" + +#: application/views/dxcalendar/index.php:9 +msgid "Date from" +msgstr "" + +#: application/views/dxcalendar/index.php:10 +msgid "Date to" +msgstr "" + +#: application/views/dxcalendar/index.php:13 +#: application/views/view_log/qso.php:369 +msgid "QSL Info" +msgstr "" + +#: application/views/dxcalendar/index.php:14 +msgid "Source" +msgstr "" + +#: application/views/eqsl/analysis.php:11 application/views/eqsl/download.php:9 +#: application/views/eqsl/export.php:8 application/views/eqsl/import.php:7 +#: application/views/eqsl/result.php:11 application/views/eqsl/tools.php:7 +#: application/views/qrz/export.php:14 +msgid "Download QSOs" +msgstr "" + +#: application/views/eqsl/analysis.php:14 +#: application/views/eqsl/download.php:13 application/views/eqsl/export.php:12 +#: application/views/eqsl/import.php:11 application/views/eqsl/result.php:14 +#: application/views/eqsl/tools.php:11 +msgid "Upload QSOs" +msgstr "" + +#: application/views/eqsl/analysis.php:17 +#: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 +#: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 +#: application/views/eqsl/tools.php:15 +#: application/views/interface_assets/header.php:247 +msgid "Tools" +msgstr "" + +#: application/views/eqsl/analysis.php:20 +#: application/views/eqsl/download.php:20 application/views/eqsl/export.php:19 +#: application/views/eqsl/import.php:18 application/views/eqsl/result.php:20 +#: application/views/eqsl/tools.php:19 +msgid "Download eQSL cards" +msgstr "" + +#: application/views/eqsl/analysis.php:40 +#: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 +msgid "Submode" +msgstr "" + +#: application/views/eqsl/analysis.php:41 +msgid "Log Status" +msgstr "" + +#: application/views/eqsl/analysis.php:42 application/views/eqsl/result.php:38 +msgid "eQSL Status" +msgstr "" + +#: application/views/eqsl/analysis.php:62 +msgid "There are no QSO confirmations waiting for you at eQSL.cc" +msgstr "" + +#: application/views/eqsl/download.php:31 +msgid "" +"Below is a table of QSOs that have been confirmed on eQSL but QSL images " +"have not been downloaded yet." +msgstr "" + +#: application/views/eqsl/download.php:43 +msgid "Action" +msgstr "" + +#: application/views/eqsl/download.php:60 +msgid "View/Download" +msgstr "" + +#: application/views/eqsl/download.php:71 application/views/eqsl/import.php:53 +msgid "" +"Wavelog will use the eQSL credentials from your Wavelog user profile to " +"connect to eQSL and download confirmations." +msgstr "" + +#: application/views/eqsl/download.php:73 +msgid "" +"Due to a rate limit of approximately 10 seconds per eQSL picture download " +"calling this function will take a long time to complete! Thus you may have " +"to call this function several times depending on the amount of outstanding " +"cards. This may run into a script timeout depending on the PHP configuration." +msgstr "" + +#: application/views/eqsl/download.php:81 +msgid "" +"There are no QSOs whose eQSL card images have not yet been downloaded. Go " +"log some more QSOs!" +msgstr "" + +#: application/views/eqsl/export.php:31 +msgid "Below is a table of QSOs that have not yet been sent to eQSL." +msgstr "" + +#: application/views/eqsl/export.php:33 +msgid "" +"Please make sure the 'eQSL QTH Nickname' field is set in your station " +"profile and that the value matches the QTH Nickname you set within eQSL." +msgstr "" + +#: application/views/eqsl/export.php:37 +msgid "Clicking 'Upload QSOs' will send QSO information to eQSL.cc." +msgstr "" + +#: application/views/eqsl/export.php:46 +msgid "The following QSOs were sent to eQSL." +msgstr "" + +#: application/views/eqsl/export.php:51 +msgid "" +"There are no QSOs that need to be sent to eQSL at this time. Go log some " +"more QSOs!" +msgstr "" + +#: application/views/eqsl/import.php:30 +msgid "Import from file..." +msgstr "" + +#: application/views/eqsl/import.php:33 +msgid "Download Inbox" +msgstr "" + +#: application/views/eqsl/import.php:33 +#, php-format +msgid "" +"Upload the Exported ADIF file from eQSL from the %s page, to mark QSOs as " +"confirmed on eQSL." +msgstr "" + +#: application/views/eqsl/import.php:34 +msgid "Choose Station(location) eQSL File belongs to:" +msgstr "" + +#: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 +msgid "Log files must have the file type .adi" +msgstr "" + +#: application/views/eqsl/import.php:52 +msgid "Import directly from eQSL" +msgstr "" + +#: application/views/eqsl/tools.php:27 +msgid "" +"This does NOT upload any QSOs. It only marks QSOs as sent. If you use this " +"button you need to upload them manually on the eQSL.cc website." +msgstr "" + +#: application/views/eqsl/tools.php:29 +msgid "Mark All QSOs as Sent to eQSL" +msgstr "" + +#: application/views/eqsl/tools.php:29 +msgid "" +"Use this if you have lots of QSOs to upload to eQSL it will save the server " +"timing out." +msgstr "" + +#: application/views/eqslcard/index.php:10 +#, php-format +msgid "You are using %s of disk space to store eQSL Card assets" +msgstr "" + +#: application/views/eqslcard/index.php:34 +#: application/views/qslcard/index.php:33 +msgid "QSL Date" +msgstr "" + +#: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2338 +#: application/views/interface_assets/footer.php:2356 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 +#: application/views/qslcard/index.php:66 +#: application/views/view_log/qso.php:617 +msgid "View" +msgstr "" + +#: application/views/gridmap/index.php:43 +msgid "All except SAT" +msgstr "" + +#: application/views/hamsat/index.php:22 +#, php-format +msgid "" +"Cannot filter workable passes only without private feed key. Please set the " +"feed key in %s." +msgstr "" + +#: application/views/hamsat/index.php:22 +msgid "your profile" +msgstr "" + +#: application/views/hrdlog/export.php:10 application/views/qrz/export.php:10 +#: application/views/webadif/export.php:10 +msgid "Upload Logbook" +msgstr "" + +#: application/views/hrdlog/export.php:13 application/views/qrz/export.php:18 +#: application/views/webadif/export.php:13 +msgid "Mark QSOs" +msgstr "" + +#: application/views/hrdlog/export.php:22 +msgid "" +"Here you can see all QSOs which have not been previously uploaded to a " +"HRDLog logbook." +msgstr "" + +#: application/views/hrdlog/export.php:23 +msgid "" +"You need to set a HRDLog Logbook API Code in your station profile. Only " +"station profiles with an API Key set are displayed." +msgstr "" + +#: application/views/hrdlog/export.php:24 +#, php-format +msgid "The Code can be requested at %s" +msgstr "" + +#: application/views/hrdlog/export.php:25 +#: application/views/webadif/export.php:34 +msgid "This might take a while as QSO uploads are processed sequentially." +msgstr "" + +#: application/views/hrdlog/export.php:34 application/views/qrz/export.php:38 +#: application/views/webadif/export.php:41 +msgid "Profile name" +msgstr "" + +#: application/views/hrdlog/export.php:35 +#: application/views/oqrs/showrequests.php:86 +#: application/views/qrz/export.php:39 application/views/webadif/export.php:42 +msgid "Station callsign" +msgstr "" + +#: application/views/hrdlog/export.php:36 application/views/qrz/export.php:40 +msgid "Edited QSOs not uploaded" +msgstr "" + +#: application/views/hrdlog/export.php:37 application/views/qrz/export.php:41 +#: application/views/webadif/export.php:43 +msgid "Total QSOs not uploaded" +msgstr "" + +#: application/views/hrdlog/export.php:38 application/views/qrz/export.php:42 +#: application/views/webadif/export.php:44 +msgid "Total QSOs uploaded" +msgstr "" + +#: application/views/hrdlog/export.php:60 +msgid "" +"No Station Locations with valid HRDlog-Settings found. Check the HRDlog " +"Credentials in the Station Location Settings!" +msgstr "" + +#: application/views/hrdlog/export.php:87 +msgid "Mark QSOs as exported to HRDLog Logbook" +msgstr "" + +#: application/views/hrdlog/mark_hrdlog.php:15 +#: application/views/qrz/mark_qrz.php:15 +#: application/views/webadif/mark_webadif.php:15 +msgid "Yay, it's done!" +msgstr "" + +#: application/views/hrdlog/mark_hrdlog.php:16 +msgid "The QSOs are marked as exported to HRDLog Logbook." +msgstr "" + +#: application/views/interface_assets/footer.php:31 +#: application/views/search/search_result_ajax.php:404 +#: application/views/view_log/partial/log.php:135 +#: application/views/view_log/partial/log_ajax.php:320 +#: application/views/view_log/qso.php:437 +msgid "Edit QSO" +msgstr "" + +#: application/views/interface_assets/footer.php:33 +msgid "Attention" +msgstr "" + +#: application/views/interface_assets/footer.php:38 +msgid "Warning! Are you sure you want delete QSO with " +msgstr "" + +#: application/views/interface_assets/footer.php:39 +#: application/views/user/edit.php:493 +msgid "Colors" +msgstr "" + +#: application/views/interface_assets/footer.php:41 +msgid "Worked not confirmed" +msgstr "" + +#: application/views/interface_assets/footer.php:42 +msgid "Not worked" +msgstr "" + +#: application/views/interface_assets/footer.php:46 +#: application/views/qso/index.php:623 +#: application/views/visitor/layout/footer.php:246 +msgid "Clear" +msgstr "" + +#: application/views/interface_assets/footer.php:47 +#: application/views/qso/edit_ajax.php:211 +#: application/views/qso/edit_ajax.php:539 +msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." +msgstr "" + +#: application/views/interface_assets/footer.php:48 +msgid "No states for this DXCC available" +msgstr "" + +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "" + +#: application/views/interface_assets/footer.php:132 +#: application/views/interface_assets/header.php:440 +#: application/views/options/sidebar.php:11 +msgid "Version Info" +msgstr "" + +#: application/views/interface_assets/footer.php:398 +msgid "Description:" +msgstr "" + +#: application/views/interface_assets/footer.php:401 +msgid "Query description" +msgstr "" + +#: application/views/interface_assets/footer.php:417 +msgid "Your query has been saved!" +msgstr "" + +#: application/views/interface_assets/footer.php:419 +#: application/views/search/filter.php:46 +msgid "Edit queries" +msgstr "" + +#: application/views/interface_assets/footer.php:421 +msgid "Stored queries:" +msgstr "" + +#: application/views/interface_assets/footer.php:426 +#: application/views/search/filter.php:60 +msgid "Run Query" +msgstr "" + +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 +msgid "Stored Queries" +msgstr "" + +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 +msgid "You need to make a query before you search!" +msgstr "" + +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 +#: application/views/search/filter.php:79 +msgid "Export to ADIF" +msgstr "" + +#: application/views/interface_assets/footer.php:502 +msgid "Warning! Are you sure you want delete this stored query?" +msgstr "" + +#: application/views/interface_assets/footer.php:516 +msgid "The stored query has been deleted!" +msgstr "" + +#: application/views/interface_assets/footer.php:525 +msgid "The stored query could not be deleted. Please try again!" +msgstr "" + +#: application/views/interface_assets/footer.php:551 +msgid "The query description has been updated!" +msgstr "" + +#: application/views/interface_assets/footer.php:555 +msgid "Something went wrong with the save. Please try again!" +msgstr "" + +#: application/views/interface_assets/footer.php:678 +msgid "" +"Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " +"Check which DXCC for this particular location is the correct one. If you are " +"sure, ignore this warning." +msgstr "" + +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:533 +msgid "Callsign: " +msgstr "" + +#: application/views/interface_assets/footer.php:731 +msgid "Count: " +msgstr "" + +#: application/views/interface_assets/footer.php:732 +msgid "Grids: " +msgstr "" + +#: application/views/interface_assets/footer.php:1167 +#, php-format +msgid "You're not logged in. Please %slogin%s" +msgstr "" + +#: application/views/interface_assets/footer.php:1375 +#: application/views/interface_assets/footer.php:1379 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1523 +#: application/views/interface_assets/footer.php:1526 +msgid "grid square" +msgstr "" + +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1526 +msgid "Total count" +msgstr "" + +#: application/views/interface_assets/footer.php:2114 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2134 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2174 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2176 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2349 +#: application/views/interface_assets/footer.php:2388 +#: application/views/view_log/qso.php:607 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2368 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2406 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2417 +#: application/views/interface_assets/footer.php:2442 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2453 +msgid "Something went wrong. Please try again!" +msgstr "" + +#: application/views/interface_assets/header.php:86 +msgid "Developer Mode" +msgstr "" + +#: application/views/interface_assets/header.php:89 +msgid "Maintenance Mode" +msgstr "" + +#: application/views/interface_assets/header.php:99 +msgid "Overview" +msgstr "" + +#: application/views/interface_assets/header.php:101 +msgid "Advanced" +msgstr "" + +#: application/views/interface_assets/header.php:104 +msgid "View QSL Cards" +msgstr "" + +#: application/views/interface_assets/header.php:107 +msgid "View eQSL Cards" +msgstr "" + +#: application/views/interface_assets/header.php:115 +msgid "Live QSO" +msgstr "" + +#: application/views/interface_assets/header.php:117 +msgid "Post QSO" +msgstr "" + +#: application/views/interface_assets/header.php:119 +msgid "Simple Fast Log Entry" +msgstr "" + +#: application/views/interface_assets/header.php:121 +msgid "Live Contest Logging" +msgstr "" + +#: application/views/interface_assets/header.php:123 +msgid "Post Contest Logging" +msgstr "" + +#: application/views/interface_assets/header.php:132 +msgid "Analytics" +msgstr "" + +#: application/views/interface_assets/header.php:140 +msgid "Activated Gridsquares" +msgstr "" + +#: application/views/interface_assets/header.php:162 +msgid "International" +msgstr "" + +#: application/views/interface_assets/header.php:168 +msgid "ITU" +msgstr "" + +#: application/views/interface_assets/header.php:190 +msgid "Canada" +msgstr "" + +#: application/views/interface_assets/header.php:196 +msgid "Germany" +msgstr "" + +#: application/views/interface_assets/header.php:200 +msgid "DL Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:204 +msgid "Great Britain" +msgstr "" + +#: application/views/interface_assets/header.php:206 +msgid "WAB" +msgstr "" + +#: application/views/interface_assets/header.php:210 +msgid "Japan" +msgstr "" + +#: application/views/interface_assets/header.php:216 +msgid "JA Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:220 +msgid "Luxemburg" +msgstr "" + +#: application/views/interface_assets/header.php:222 +msgid "LX Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:226 +msgid "Switzerland" +msgstr "" + +#: application/views/interface_assets/header.php:232 +msgid "USA" +msgstr "" + +#: application/views/interface_assets/header.php:238 +msgid "US Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:255 +msgid "Bandmap" +msgstr "" + +#: application/views/interface_assets/header.php:257 +msgid "SAT Timers" +msgstr "" + +#: application/views/interface_assets/header.php:260 +msgid "Satellite Flightpath" +msgstr "" + +#: application/views/interface_assets/header.php:262 +msgid "Satellite Pass" +msgstr "" + +#: application/views/interface_assets/header.php:269 +#: application/views/stationsetup/stationsetup.php:113 +msgid "Admin" +msgstr "" + +#: application/views/interface_assets/header.php:274 +msgid "Global Options" +msgstr "" + +#: application/views/interface_assets/header.php:280 +#: application/views/notes/add.php:38 application/views/notes/edit.php:39 +#: application/views/satellite/index.php:11 +#: application/views/satellite/pass.php:495 +#: application/views/statistics/custom.php:20 +#: application/views/statistics/custom_result.php:21 +#: application/views/statistics/index.php:39 +#: application/views/statistics/index.php:93 +msgid "Satellites" +msgstr "" + +#: application/views/interface_assets/header.php:286 +msgid "Update Country Files" +msgstr "" + +#: application/views/interface_assets/header.php:290 +msgid "Debug Information" +msgstr "" + +#: application/views/interface_assets/header.php:337 +msgid "Add/Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:339 +msgid "Log" +msgstr "" + +#: application/views/interface_assets/header.php:346 +#: application/views/logbookadvanced/index.php:474 +#: application/views/oqrs/index.php:27 application/views/user/edit.php:441 +#: application/views/visitor/layout/header.php:95 +msgid "Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:375 +#: application/views/user/edit.php:49 +msgid "Account" +msgstr "" + +#: application/views/interface_assets/header.php:390 +msgid "Other Export Options" +msgstr "" + +#: application/views/interface_assets/header.php:398 +msgid "Cabrillo Export" +msgstr "" + +#: application/views/interface_assets/header.php:400 +msgid "EDI Export" +msgstr "" + +#: application/views/interface_assets/header.php:424 +msgid "QSL Queue" +msgstr "" + +#: application/views/interface_assets/header.php:425 +msgid "Labels" +msgstr "" + +#: application/views/interface_assets/header.php:427 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:430 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:431 +msgid "HRDLog Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:441 +msgid "Help" +msgstr "" + +#: application/views/interface_assets/header.php:442 +msgid "Forum" +msgstr "" + +#: application/views/interface_assets/header.php:444 +msgid "Logout" +msgstr "" + +#: application/views/interface_assets/header.php:452 +msgid "Select a Location" +msgstr "" + +#: application/views/interface_assets/header.php:531 +msgid "Extras" +msgstr "" + +#: application/views/kml/index.php:7 +msgid "Export your logbook to a KML file for use in Google Earth." +msgstr "" + +#: application/views/labels/create.php:24 +msgid "" +"Label name used for display purposes, so pick something meaningful, perhaps " +"the label style." +msgstr "" + +#: 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 "" + +#: application/views/labels/create.php:42 +#: application/views/labels/createpaper.php:44 +#: application/views/labels/edit.php:44 +#: application/views/labels/editpaper.php:44 +msgid "Millimeters" +msgstr "" + +#: application/views/labels/create.php:43 +#: application/views/labels/createpaper.php:45 +#: application/views/labels/edit.php:45 +#: application/views/labels/editpaper.php:45 +msgid "Inches" +msgstr "" + +#: application/views/labels/create.php:49 application/views/labels/edit.php:51 +msgid "Margin Top" +msgstr "" + +#: application/views/labels/create.php:52 application/views/labels/edit.php:54 +msgid "Top margin of labels" +msgstr "" + +#: application/views/labels/create.php:55 application/views/labels/edit.php:57 +msgid "Margin Left" +msgstr "" + +#: application/views/labels/create.php:58 application/views/labels/edit.php:60 +msgid "Left margin of labels." +msgstr "" + +#: application/views/labels/create.php:63 application/views/labels/edit.php:65 +msgid "Labels horizontally" +msgstr "" + +#: application/views/labels/create.php:66 application/views/labels/edit.php:68 +msgid "Number of labels horizontally across the page." +msgstr "" + +#: application/views/labels/create.php:69 application/views/labels/edit.php:71 +msgid "Labels vertically" +msgstr "" + +#: application/views/labels/create.php:72 application/views/labels/edit.php:74 +msgid "Number of labels vertically across the page." +msgstr "" + +#: application/views/labels/create.php:77 application/views/labels/edit.php:79 +msgid "Horizontal space" +msgstr "" + +#: application/views/labels/create.php:80 application/views/labels/edit.php:82 +msgid "Horizontal space between 2 labels." +msgstr "" + +#: application/views/labels/create.php:83 application/views/labels/edit.php:85 +msgid "Vertical space" +msgstr "" + +#: application/views/labels/create.php:86 application/views/labels/edit.php:88 +msgid "Vertical space between 2 labels." +msgstr "" + +#: application/views/labels/create.php:91 application/views/labels/edit.php:93 +msgid "Width of label" +msgstr "" + +#: application/views/labels/create.php:94 application/views/labels/edit.php:96 +msgid "Total width of one label." +msgstr "" + +#: application/views/labels/create.php:97 application/views/labels/edit.php:99 +msgid "Height of label" +msgstr "" + +#: application/views/labels/create.php:100 +#: application/views/labels/edit.php:102 +msgid "Total height of one label" +msgstr "" + +#: application/views/labels/create.php:105 +#: application/views/labels/edit.php:107 application/views/labels/index.php:80 +msgid "Font Size" +msgstr "" + +#: 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 "" + +#: application/views/labels/create.php:111 +#: application/views/labels/edit.php:113 +msgid "QSOs on label" +msgstr "" + +#: application/views/labels/create.php:117 +#: application/views/labels/edit.php:118 +msgid "Save Label Type" +msgstr "" + +#: application/views/labels/createpaper.php:36 +#: application/views/labels/editpaper.php:36 +msgid "Paper Type Name" +msgstr "" + +#: application/views/labels/createpaper.php:39 +#: application/views/labels/editpaper.php:39 +msgid "Paper name used for display purposes, so pick something meaningful." +msgstr "" + +#: application/views/labels/createpaper.php:51 +#: application/views/labels/editpaper.php:51 +msgid "Width of paper" +msgstr "" + +#: application/views/labels/createpaper.php:54 +#: application/views/labels/editpaper.php:54 +#: application/views/labels/editpaper.php:60 +msgid "Total width of paper." +msgstr "" + +#: application/views/labels/createpaper.php:57 +#: application/views/labels/editpaper.php:57 +msgid "Height of paper" +msgstr "" + +#: application/views/labels/createpaper.php:60 +msgid "Total height of paper" +msgstr "" + +#: 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 "" + +#: application/views/labels/createpaper.php:68 +#: application/views/labels/editpaper.php:68 +#: application/views/labels/index.php:60 +msgctxt "Orientation" +msgid "Landscape" +msgstr "" + +#: application/views/labels/createpaper.php:69 +#: application/views/labels/editpaper.php:69 +#: application/views/labels/index.php:60 +msgctxt "Orientation" +msgid "Portrait" +msgstr "" + +#: application/views/labels/createpaper.php:75 +#: application/views/labels/editpaper.php:75 +msgid "Save Paper Type" +msgstr "" + +#: application/views/labels/edit.php:24 +msgid "" +"Label name used for display purposes so pick something meaningful perhaps " +"the label style." +msgstr "" + +#: application/views/labels/index.php:2 +#: application/views/logbookadvanced/startatform.php:27 +msgid "Mark QSL as printed" +msgstr "" + +#: application/views/labels/index.php:3 application/views/labels/index.php:128 +msgid "Print" +msgstr "" + +#: application/views/labels/index.php:33 +msgid "Create New Label Type" +msgstr "" + +#: application/views/labels/index.php:34 +msgid "Create New Paper Type" +msgstr "" + +#: application/views/labels/index.php:37 +msgid "Paper types" +msgstr "" + +#: application/views/labels/index.php:43 application/views/labels/index.php:78 +msgid "Width" +msgstr "" + +#: application/views/labels/index.php:44 application/views/labels/index.php:79 +msgid "Height" +msgstr "" + +#: application/views/labels/index.php:45 +msgid "Used by labels" +msgstr "" + +#: application/views/labels/index.php:46 +msgid "Orientation" +msgstr "" + +#: application/views/labels/index.php:71 +msgid "Label types" +msgstr "" + +#: application/views/labels/index.php:81 +#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:96 +#: application/views/widgets/qsos.php:3 +msgid "QSOs" +msgstr "" + +#: application/views/labels/index.php:82 +msgid "Use For Print" +msgstr "" + +#: application/views/labels/index.php:92 +msgid "No paper assigned" +msgstr "" + +#: application/views/labels/index.php:117 +msgid "QSL Card Labels Pending" +msgstr "" + +#: application/views/labels/index.php:126 +msgid "QSOs Waiting" +msgstr "" + +#: application/views/labels/index.php:127 +msgid "View QSOs" +msgstr "" + +#: application/views/labels/startatform.php:4 +#: application/views/logbookadvanced/startatform.php:3 +msgid "Include Grid?" +msgstr "" + +#: application/views/labels/startatform.php:10 +#: application/views/logbookadvanced/startatform.php:9 +msgid "" +"Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" +msgstr "" + +#: application/views/labels/startatform.php:16 +msgid "Include Via (if filled)?" +msgstr "" + +#: application/views/labels/startatform.php:22 +#: application/views/logbookadvanced/startatform.php:21 +msgid "Start printing at?" +msgstr "" + +#: application/views/logbookadvanced/edit.php:15 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/useroptions.php:58 +msgid "QSL via" +msgstr "" + +#: application/views/logbookadvanced/edit.php:23 +msgid "LoTW Sent" +msgstr "" + +#: application/views/logbookadvanced/edit.php:24 +msgid "LoTW Received" +msgstr "" + +#: application/views/logbookadvanced/edit.php:75 +msgid "SAT Mode" +msgstr "" + +#: application/views/logbookadvanced/edit.php:89 +msgid "Band RX" +msgstr "" + +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:174 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:144 +msgid "From" +msgstr "" + +#: application/views/logbookadvanced/index.php:148 +msgid "To" +msgstr "" + +#: application/views/logbookadvanced/index.php:152 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/useroptions.php:30 +#: application/views/oqrs/showrequests.php:42 +msgid "Dx" +msgstr "" + +#: application/views/logbookadvanced/index.php:159 +msgctxt "Logbook Advanced DXCC Select" +msgid "- NONE - (e.g. /MM, /AM)" +msgstr "" + +#: application/views/logbookadvanced/index.php:224 +msgctxt "Propagation Mode" +msgid "None/Empty" +msgstr "" + +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:540 +msgid "Invalid" +msgstr "" + +#: application/views/logbookadvanced/index.php:324 +msgid "QSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:439 +#: application/views/lookup/lotwuser.php:12 +#: application/views/qso/edit_ajax.php:421 +#: application/views/qso/edit_ajax.php:454 +#: application/views/qso/edit_ajax.php:482 +#: application/views/qso/edit_ajax.php:495 +#: application/views/qso/edit_ajax.php:522 +#: application/views/qso/edit_ajax.php:534 application/views/qso/index.php:576 +#: application/views/search/result.php:58 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 +#: application/views/station_profile/create.php:293 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 +#: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 +#: application/views/user/edit.php:347 application/views/user/edit.php:358 +#: application/views/user/edit.php:369 application/views/user/edit.php:379 +#: application/views/user/edit.php:389 application/views/user/edit.php:399 +#: application/views/user/edit.php:419 application/views/user/edit.php:430 +#: application/views/user/edit.php:540 application/views/user/edit.php:802 +#: application/views/user/edit.php:834 application/views/user/edit.php:859 +msgid "Yes" +msgstr "" + +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:440 +#: application/views/lookup/lotwuser.php:14 +#: application/views/qso/edit_ajax.php:420 +#: application/views/qso/edit_ajax.php:453 +#: application/views/qso/edit_ajax.php:481 +#: application/views/qso/edit_ajax.php:494 +#: application/views/qso/edit_ajax.php:521 +#: application/views/qso/edit_ajax.php:533 application/views/qso/index.php:575 +#: application/views/search/result.php:60 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 +#: application/views/station_profile/create.php:292 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 +#: application/views/user/edit.php:348 application/views/user/edit.php:359 +#: application/views/user/edit.php:370 application/views/user/edit.php:380 +#: application/views/user/edit.php:390 application/views/user/edit.php:400 +#: application/views/user/edit.php:420 application/views/user/edit.php:431 +#: application/views/user/edit.php:522 application/views/user/edit.php:526 +#: application/views/user/edit.php:541 application/views/user/edit.php:803 +#: application/views/user/edit.php:833 application/views/user/edit.php:858 +msgid "No" +msgstr "" + +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:416 +#: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 +#: application/views/qslprint/qsolist.php:61 +#: application/views/qslprint/qsolist.php:103 +#: application/views/qso/edit_ajax.php:423 +#: application/views/qso/edit_ajax.php:484 +#: application/views/qso/edit_ajax.php:524 application/views/qso/index.php:578 +#: application/views/search/search_result_ajax.php:183 +#: application/views/search/search_result_ajax.php:225 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +#: src/QSLManager/QSO.php:273 src/QSLManager/QSO.php:318 +msgid "Queued" +msgstr "" + +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:373 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:417 +#: application/views/logbookadvanced/index.php:427 +#: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 +#: application/views/oqrs/qsolist.php:166 +#: application/views/oqrs/qsolist.php:181 +#: application/views/qslprint/qsolist.php:67 +#: application/views/qslprint/qsolist.php:109 +#: application/views/qslprint/qsolist.php:174 +#: application/views/qslprint/qsolist.php:189 +#: application/views/qso/edit_ajax.php:424 +#: application/views/qso/edit_ajax.php:456 +#: application/views/qso/edit_ajax.php:485 +#: application/views/qso/edit_ajax.php:497 +#: application/views/qso/edit_ajax.php:525 +#: application/views/qso/edit_ajax.php:536 application/views/qso/index.php:579 +#: application/views/search/search_result_ajax.php:189 +#: application/views/search/search_result_ajax.php:231 +#: application/views/search/search_result_ajax.php:305 +#: application/views/search/search_result_ajax.php:320 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +#: application/views/view_log/partial/log_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:270 +#: src/QSLManager/QSO.php:279 src/QSLManager/QSO.php:324 +#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:400 +msgid "Invalid (Ignore)" +msgstr "" + +#: application/views/logbookadvanced/index.php:335 +msgid "QSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:428 +msgid "Verified" +msgstr "" + +#: application/views/logbookadvanced/index.php:346 +msgid "QSL send. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:359 +#: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 +#: application/views/oqrs/request.php:45 +#: application/views/oqrs/request_grouped.php:49 +#: application/views/oqrs/showrequests.php:12 +#: application/views/qslprint/qslprint.php:5 +#: application/views/qslprint/qsolist.php:77 +#: application/views/qslprint/qsolist.php:119 +#: application/views/qslprint/qsolist.php:210 +#: application/views/qso/edit_ajax.php:435 +#: application/views/qso/edit_ajax.php:468 application/views/qso/index.php:590 +#: application/views/search/search_result_ajax.php:199 +#: application/views/search/search_result_ajax.php:241 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +#: src/QSLManager/QSO.php:296 src/QSLManager/QSO.php:339 +msgid "Bureau" +msgstr "" + +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:360 +#: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 +#: application/views/oqrs/showrequests.php:13 +#: application/views/qslprint/qslprint.php:6 +#: application/views/qslprint/qsolist.php:80 +#: application/views/qslprint/qsolist.php:122 +#: application/views/qslprint/qsolist.php:211 +#: application/views/qso/edit_ajax.php:434 +#: application/views/qso/edit_ajax.php:467 application/views/qso/index.php:589 +#: application/views/search/search_result_ajax.php:202 +#: application/views/search/search_result_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +#: src/QSLManager/QSO.php:299 src/QSLManager/QSO.php:342 +msgid "Direct" +msgstr "" + +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 +#: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 +#: application/views/oqrs/showrequests.php:14 +#: application/views/qslprint/qslprint.php:7 +#: application/views/qslprint/qsolist.php:86 +#: application/views/qslprint/qsolist.php:128 +#: application/views/qslprint/qsolist.php:212 +#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:591 +#: application/views/search/search_result_ajax.php:208 +#: application/views/search/search_result_ajax.php:250 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +#: src/QSLManager/QSO.php:305 src/QSLManager/QSO.php:348 +msgid "Electronic" +msgstr "" + +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:362 +#: application/views/oqrs/qsolist.php:117 +#: application/views/qslprint/qsolist.php:125 +#: application/views/qso/edit_ajax.php:437 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:592 +#: application/views/search/search_result_ajax.php:247 +#: application/views/view_log/partial/log_ajax.php:208 +msgid "Manager" +msgstr "" + +#: application/views/logbookadvanced/index.php:356 +msgid "QSL recv. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:366 +msgid "LoTW sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:377 +msgid "LoTW received" +msgstr "" + +#: application/views/logbookadvanced/index.php:388 +msgid "Clublog sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:399 +msgid "Clublog received" +msgstr "" + +#: application/views/logbookadvanced/index.php:410 +msgid "eQSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:421 +msgid "eQSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:436 +msgid "QSL Images" +msgstr "" + +#: application/views/logbookadvanced/index.php:448 +msgid "Warning! Are you sure you want to delete the marked QSO(s)?" +msgstr "" + +#: application/views/logbookadvanced/index.php:451 +msgid "With selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:452 +#: application/views/qso/edit_ajax.php:622 +msgid "Update from Callbook" +msgstr "" + +#: application/views/logbookadvanced/index.php:453 +msgid "Queue Bureau" +msgstr "" + +#: application/views/logbookadvanced/index.php:454 +msgid "Queue Direct" +msgstr "" + +#: application/views/logbookadvanced/index.php:455 +msgid "Queue Electronic" +msgstr "" + +#: application/views/logbookadvanced/index.php:456 +msgid "Sent (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:457 +msgid "Sent (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:458 +msgid "Sent (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:459 +msgid "Not Sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:460 +msgid "QSL Not Required" +msgstr "" + +#: application/views/logbookadvanced/index.php:461 +msgid "Not Received" +msgstr "" + +#: application/views/logbookadvanced/index.php:462 +msgid "Received (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:463 +msgid "Received (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:464 +msgid "Received (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:465 +msgid "Create ADIF" +msgstr "" + +#: application/views/logbookadvanced/index.php:466 +msgid "Print Label" +msgstr "" + +#: application/views/logbookadvanced/index.php:467 +msgid "QSL Slideshow" +msgstr "" + +#: application/views/logbookadvanced/index.php:472 +msgid "Quicksearch with selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:477 +msgid "Search DXCC" +msgstr "" + +#: application/views/logbookadvanced/index.php:480 +msgid "Search State" +msgstr "" + +#: application/views/logbookadvanced/index.php:483 +msgid "Search Gridsquare" +msgstr "" + +#: application/views/logbookadvanced/index.php:486 +msgid "Search CQ Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:489 +msgid "Search ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:492 +msgid "Search Mode" +msgstr "" + +#: application/views/logbookadvanced/index.php:495 +msgid "Search Band" +msgstr "" + +#: application/views/logbookadvanced/index.php:498 +msgid "Search IOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:501 +msgid "Search SOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:504 +msgid "Search POTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:507 +msgid "Search WWFF" +msgstr "" + +#: application/views/logbookadvanced/index.php:510 +msgid "Search Operator" +msgstr "" + +#: application/views/logbookadvanced/index.php:516 +msgid "Quickfilters" +msgstr "" + +#: application/views/logbookadvanced/index.php:517 +msgid "QSL Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:518 +#: application/views/mode/index.php:68 +msgid "Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:520 +#: application/views/oqrs/showrequests.php:56 +msgid "# Results" +msgstr "" + +#: application/views/logbookadvanced/index.php:527 +#: application/views/qso/index.php:272 +#: application/views/station_profile/edit.php:92 +msgid "Location" +msgstr "" + +#: application/views/logbookadvanced/index.php:539 +msgid "Dupes" +msgstr "" + +#: application/views/logbookadvanced/index.php:547 +msgid "Globe map" +msgstr "" + +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/useroptions.php:26 +#: application/views/oqrs/showrequests.php:31 +msgid "De" +msgstr "" + +#: application/views/logbookadvanced/index.php:605 +#: application/views/logbookadvanced/useroptions.php:78 +msgid "QSL Msg" +msgstr "" + +#: application/views/logbookadvanced/index.php:650 +#: application/views/logbookadvanced/useroptions.php:50 +msgid "My Refs" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:59 +#: application/views/qslcard/qslcarousel.php:25 +msgid "QSL picture #" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:67 +#: application/views/qslcard/qslcarousel.php:32 +msgid "Previous" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:71 +#: application/views/qslcard/qslcarousel.php:36 +msgid "Next" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:15 +msgid "Include Via" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:16 +msgid "Column" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:152 +msgctxt "Map Options" +msgid "Layer" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:153 +msgid "Default on" +msgstr "" + +#: application/views/lookup/index.php:8 +msgid "US State" +msgstr "" + +#: application/views/lookup/index.php:10 +msgid "LoTW user" +msgstr "" + +#: application/views/lookup/index.php:46 +msgid "Choose a State" +msgstr "" + +#: application/views/lookup/lotwuser.php:2 +#: application/views/lookup/lotwuser.php:12 +#: application/views/search/result.php:46 +#: application/views/search/result.php:58 +msgid "LoTW User" +msgstr "" + +#: application/views/lookup/lotwuser.php:12 +#: application/views/search/result.php:58 +#, php-format +msgid "%d day ago" +msgid_plural "%d days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/views/lookup/lotwuser.php:12 +#: application/views/search/result.php:58 +msgid "last upload" +msgstr "" + +#: application/views/lookup/lotwuser.php:14 +msgid "No LoTW User" +msgstr "" + +#: 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 "" + +#: application/views/lotw/import.php:12 +msgid "Import Options" +msgstr "" + +#: application/views/lotw/import.php:22 +msgid "Upload a File" +msgstr "" + +#: application/views/lotw/import.php:24 +msgid "Download Report" +msgstr "" + +#: application/views/lotw/import.php:24 +#, php-format +msgid "" +"Upload the Exported ADIF file from LoTW from the %s Area, to mark QSOs as " +"confirmed on LoTW." +msgstr "" + +#: application/views/lotw/import.php:27 +msgid "Choose file" +msgstr "" + +#: application/views/lotw/import.php:36 +msgid "Pull LoTW data for me" +msgstr "" + +#: application/views/lotw/import.php:47 +msgid "Select callsign to pull LoTW confirmations for." +msgstr "" + +#: application/views/lotw/import.php:61 +msgid "" +"Wavelog will use the LoTW username and password stored in your user profile " +"to download a report from LoTW for you. The report Wavelog downloads will " +"have all confirmations since chosen date, or since your last LoTW " +"confirmation (fetched from your log), up until now." +msgstr "" + +#: application/views/lotw/import.php:64 +msgid "Import LoTW Matches" +msgstr "" + +#: application/views/lotw_views/index.php:4 +msgid "Upload folder is not writable. Please contact your admin." +msgstr "" + +#: application/views/lotw_views/index.php:10 +msgid "LoTW Import" +msgstr "" + +#: application/views/lotw_views/index.php:17 +msgid "Available Certificates" +msgstr "" + +#: application/views/lotw_views/index.php:17 +msgid "Upload Certificate" +msgstr "" + +#: application/views/lotw_views/index.php:37 +msgid "QSO Start Date" +msgstr "" + +#: application/views/lotw_views/index.php:38 +msgid "QSO End Date" +msgstr "" + +#: application/views/lotw_views/index.php:39 +msgid "Date Created" +msgstr "" + +#: application/views/lotw_views/index.php:40 +msgid "Date Expires" +msgstr "" + +#: application/views/lotw_views/index.php:42 +#: application/views/view_log/qso.php:407 +msgid "Last Upload" +msgstr "" + +#: application/views/lotw_views/index.php:87 +msgid "Expired" +msgstr "" + +#: application/views/lotw_views/index.php:89 +msgid "Expiring" +msgstr "" + +#: application/views/lotw_views/index.php:91 +msgid "Valid" +msgstr "" + +#: application/views/lotw_views/index.php:101 +#, php-format +msgid "Last success: %s" +msgstr "" + +#: application/views/lotw_views/index.php:104 +#, php-format +msgid "Last fail: %s" +msgstr "" + +#: application/views/lotw_views/index.php:110 +msgid "Not Synced" +msgstr "" + +#: application/views/lotw_views/index.php:125 +msgid "You need to upload some LoTW p12 certificates to use this area." +msgstr "" + +#: application/views/lotw_views/index.php:140 +msgid "Information" +msgstr "" + +#: application/views/lotw_views/index.php:145 +msgid "Manual Sync" +msgstr "" + +#: application/views/lotw_views/upload_cert.php:8 +#: application/views/lotw_views/upload_cert.php:31 +msgid "Upload Logbook of the World .p12 Certificate" +msgstr "" + +#: application/views/lotw_views/upload_cert.php:19 +msgid "Export .p12 File Instructions" +msgstr "" + +#: application/views/lotw_views/upload_cert.php:22 +msgid "Open TQSL and go to the Callsign Certificates Tab" +msgstr "" + +#: application/views/lotw_views/upload_cert.php:23 +msgid "Right click on desired Callsign" +msgstr "" + +#: application/views/lotw_views/upload_cert.php:24 +msgid "Click 'Save Callsign Certificate File' and do not add a password" +msgstr "" + +#: application/views/lotw_views/upload_cert.php:25 +msgid "Upload File below." +msgstr "" + +#: application/views/lotw_views/upload_cert.php:35 +msgid "Upload File" +msgstr "" + +#: application/views/mode/create.php:24 application/views/mode/edit.php:33 +msgctxt "Name of mode in ADIF-specification" +msgid "ADIF Mode" +msgstr "" + +#: application/views/mode/create.php:26 application/views/mode/edit.php:35 +msgid "Name of mode in ADIF-specification" +msgstr "" + +#: application/views/mode/create.php:30 application/views/mode/edit.php:39 +msgctxt "Name of sub-mode in ADIF-specification" +msgid "ADIF Sub-Mode" +msgstr "" + +#: application/views/mode/create.php:32 application/views/mode/edit.php:41 +msgid "Name of sub-mode in ADIF-specification" +msgstr "" + +#: application/views/mode/create.php:42 application/views/mode/edit.php:53 +msgid "Defines the QRG-segment in bandplan." +msgstr "" + +#: application/views/mode/create.php:49 application/views/mode/edit.php:61 +#: application/views/mode/index.php:43 +msgid "Not active" +msgstr "" + +#: application/views/mode/create.php:51 application/views/mode/edit.php:64 +msgid "Set to active if to be listed in Modes-list" +msgstr "" + +#: application/views/mode/create.php:54 +msgid "Create mode" +msgstr "" + +#: application/views/mode/edit.php:67 +msgid "Update mode" +msgstr "" + +#: application/views/mode/index.php:19 +msgid "" +"Using the modes list you can control which modes are shown when creating a " +"new QSO." +msgstr "" + +#: application/views/mode/index.php:22 +msgid "" +"Active modes will be shown in the QSO 'Mode' drop-down, while inactive modes " +"will be hidden and cannot be selected." +msgstr "" + +#: application/views/mode/index.php:29 +msgid "Sub-Mode" +msgstr "" + +#: application/views/mode/index.php:76 +msgid "Create a Mode" +msgstr "" + +#: application/views/notes/add.php:6 application/views/notes/add.php:12 +#: application/views/notes/edit.php:13 application/views/notes/main.php:11 +#: application/views/notes/view.php:12 +msgid "Create Note" +msgstr "" + +#: application/views/notes/add.php:29 application/views/notes/edit.php:30 +msgid "Title" +msgstr "" + +#: application/views/notes/add.php:34 application/views/notes/edit.php:35 +msgid "Category" +msgstr "" + +#: application/views/notes/add.php:36 application/views/notes/edit.php:37 +#: application/views/qso/index.php:28 +#: application/views/statistics/custom.php:17 +#: application/views/statistics/custom_result.php:18 +#: application/views/statistics/index.php:35 +#: application/views/user/edit.php:154 +msgid "General" +msgstr "" + +#: application/views/notes/add.php:37 application/views/notes/edit.php:38 +msgid "Antennas" +msgstr "" + +#: application/views/notes/add.php:43 application/views/notes/edit.php:44 +msgid "Note Contents" +msgstr "" + +#: application/views/notes/add.php:48 application/views/notes/edit.php:50 +msgid "Save Note" +msgstr "" + +#: application/views/notes/main.php:22 +msgid "Your Notes" +msgstr "" + +#: application/views/notes/main.php:32 +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 " +"than paper as you can't lose them!" +msgstr "" + +#: application/views/notes/view.php:21 +msgid "Delete Note" +msgstr "" + +#: application/views/operator/index.php:9 +msgid "" +"Please provide your personal call sign. This makes sure that QSOs are logged " +"and exported with correct operator information." +msgstr "" + +#: application/views/operator/index.php:13 +msgid "Your personal Callsign:" +msgstr "" + +#: application/views/operator/index.php:16 +msgid "You have to provide your personal callsign." +msgstr "" + +#: application/views/options/appearance.php:39 +#: application/views/user/edit.php:157 +msgid "Theme" +msgstr "" + +#: application/views/options/appearance.php:51 +msgid "Global Theme Choice, this is used when users arent logged in." +msgstr "" + +#: application/views/options/appearance.php:61 +msgid "Dashboard Notification Banner" +msgstr "" + +#: application/views/options/appearance.php:66 +msgid "This allows to disable the global notification banner on the dashboard." +msgstr "" + +#: application/views/options/appearance.php:70 +msgid "Dashboard Map" +msgstr "" + +#: application/views/options/appearance.php:74 +msgid "Map at right" +msgstr "" + +#: application/views/options/appearance.php:76 +msgid "" +"This allows the map on the dashboard to be disabled or placed on the right." +msgstr "" + +#: application/views/options/appearance.php:80 +msgid "Logbook Map" +msgstr "" + +#: application/views/options/appearance.php:85 +msgid "This allows to disable the map in the logbook." +msgstr "" + +#: application/views/options/appearance.php:89 +msgid "Public Maps" +msgstr "" + +#: application/views/options/appearance.php:94 +msgid "" +"This allows to disable all maps in the public view. This affects the main " +"map and the gridsquares map." +msgstr "" + +#: application/views/options/appearance.php:98 +msgid "Public Github Button" +msgstr "" + +#: application/views/options/appearance.php:103 +msgid "This enables the button to Wavelog's Github page in the public view" +msgstr "" + +#: application/views/options/appearance.php:107 +msgid "Public Login Button" +msgstr "" + +#: application/views/options/appearance.php:112 +msgid "This enables the button to login to Wavelog in the public view" +msgstr "" + +#: application/views/options/dxcluster.php:38 +msgid "Provider of DXClusterCache" +msgstr "" + +#: application/views/options/dxcluster.php:39 +msgid "DXClusterAPI" +msgstr "" + +#: application/views/options/dxcluster.php:39 +#, php-format +msgid "" +"The Provider of the DXCluster-Cache. You can set up your own Cache with %s " +"or use a public one" +msgstr "" + +#: application/views/options/dxcluster.php:41 +#, php-format +msgid "URL of the DXCluster-Cache. e.g. %s" +msgstr "" + +#: application/views/options/dxcluster.php:44 +msgid "Maximum Age of spots taken care of" +msgstr "" + +#: application/views/options/dxcluster.php:46 +msgid "2 Hours" +msgstr "" + +#: application/views/options/dxcluster.php:47 +msgid "60 Minutes" +msgstr "" + +#: application/views/options/dxcluster.php:48 +msgid "30 Minutes" +msgstr "" + +#: application/views/options/dxcluster.php:50 +msgid "The Age in Minutes of spots, that will be taken care at bandplan/lookup" +msgstr "" + +#: application/views/options/dxcluster.php:53 +msgid "Show spots which are spotted from following continent" +msgstr "" + +#: application/views/options/dxcluster.php:63 +msgid "Only spots by spotters from this continent are shown" +msgstr "" + +#: application/views/options/email.php:45 +msgid "Outgoing Protocol" +msgstr "" + +#: application/views/options/email.php:50 +msgid "The protocol that will be used to send out emails." +msgstr "" + +#: application/views/options/email.php:54 +msgid "SMTP Encryption" +msgstr "" + +#: application/views/options/email.php:56 +msgid "No Encryption" +msgstr "" + +#: application/views/options/email.php:60 +msgid "Choose whether emails should be sent with TLS or SSL." +msgstr "" + +#: application/views/options/email.php:64 +msgid "Email Sender Name" +msgstr "" + +#: application/views/options/email.php:67 +msgid "The email sender name, e.g. 'Wavelog'" +msgstr "" + +#: application/views/options/email.php:72 application/views/user/edit.php:58 +#: application/views/user/forgot_password.php:47 +msgid "Email Address" +msgstr "" + +#: application/views/options/email.php:75 +msgid "" +"The email address from which the emails are sent, e.g. 'wavelog@example.com'" +msgstr "" + +#: application/views/options/email.php:80 +msgid "SMTP Host" +msgstr "" + +#: application/views/options/email.php:83 +msgid "" +"The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' " +"or 'tls://')" +msgstr "" + +#: application/views/options/email.php:88 +msgid "SMTP Port" +msgstr "" + +#: application/views/options/email.php:91 +msgid "" +"The SMTP port of the mail server, e.g. if TLS is used -> '587', if SSL is " +"used -> '465'" +msgstr "" + +#: application/views/options/email.php:96 +msgid "SMTP Username" +msgstr "" + +#: application/views/options/email.php:99 +msgid "" +"The username to log in to the mail server, usually this is the email address " +"that is used." +msgstr "" + +#: application/views/options/email.php:104 +msgid "SMTP Password" +msgstr "" + +#: application/views/options/email.php:107 +msgid "The password to log in to the mail server." +msgstr "" + +#: application/views/options/email.php:116 +msgid "Send Test-Mail" +msgstr "" + +#: application/views/options/email.php:117 +msgid "The email will be sent to the address defined in your account settings." +msgstr "" + +#: application/views/options/index.php:13 +msgid "" +"Wavelog Options are global settings used for all users of the installation, " +"which are overridden if there's a setting on a user level." +msgstr "" + +#: application/views/options/oqrs.php:39 +msgid "Global text" +msgstr "" + +#: application/views/options/oqrs.php:41 +msgid "" +"This text is an optional text that can be displayed on top of the OQRS page." +msgstr "" + +#: application/views/options/oqrs.php:45 +msgid "Grouped search" +msgstr "" + +#: application/views/options/oqrs.php:47 application/views/options/oqrs.php:56 +msgid "Off" +msgstr "" + +#: application/views/options/oqrs.php:48 application/views/options/oqrs.php:57 +msgid "On" +msgstr "" + +#: application/views/options/oqrs.php:50 +msgid "" +"When this is on, all station locations with OQRS active, will be searched at " +"once." +msgstr "" + +#: application/views/options/oqrs.php:54 +msgid "Show station location name in grouped search results" +msgstr "" + +#: application/views/options/oqrs.php:59 +msgid "" +"If grouped search is ON, you can decide if the name of the station location " +"shall be shown in the results table." +msgstr "" + +#: application/views/options/radios.php:38 +msgid "Radio Timeout Warning" +msgstr "" + +#: application/views/options/radios.php:39 +msgid "" +"The Radio Timeout Warning is used on the QSO entry panel to alert you to " +"radio interface disconnects." +msgstr "" + +#: application/views/options/radios.php:41 +msgid "This number is in seconds." +msgstr "" + +#: application/views/options/sidebar.php:5 +msgid "Radios" +msgstr "" + +#: application/views/options/version_dialog.php:47 +msgid "Version Info Header" +msgstr "" + +#: application/views/options/version_dialog.php:49 +msgid "You can change the header of the version info dialog." +msgstr "" + +#: application/views/options/version_dialog.php:53 +msgid "Version Info Mode" +msgstr "" + +#: application/views/options/version_dialog.php:57 +msgid "Only Release Notes" +msgstr "" + +#: application/views/options/version_dialog.php:60 +msgid "Only Custom Text" +msgstr "" + +#: application/views/options/version_dialog.php:63 +msgid "Release Notes and Custom Text" +msgstr "" + +#: application/views/options/version_dialog.php:68 +msgid "" +"The Version Info is shown to every user. The user has the option to dismiss " +"the dialog after he read it. Select if you want to show only release notes " +"(fetched from github), only custom text or both." +msgstr "" + +#: application/views/options/version_dialog.php:72 +msgid "Version Info Custom Text" +msgstr "" + +#: application/views/options/version_dialog.php:74 +msgid "This is the custom text which is shown in the dialog." +msgstr "" + +#: application/views/options/version_dialog.php:84 +msgid "Show/Hide Version Info Dialog for all Users" +msgstr "" + +#: application/views/options/version_dialog.php:97 +msgid "Show for all Users" +msgstr "" + +#: application/views/options/version_dialog.php:99 +msgid "" +"This will show the version dialog automatically to all users on their next " +"page reload." +msgstr "" + +#: application/views/options/version_dialog.php:104 +msgid "Hide for all Users" +msgstr "" + +#: application/views/options/version_dialog.php:106 +msgid "" +"This will deactivate the automatic popup of the version dialog for all users." +msgstr "" + +#: application/views/oqrs/index.php:9 +msgid "Request a QSL card" +msgstr "" + +#: application/views/oqrs/index.php:26 +msgid "Enter your callsign" +msgstr "" + +#: application/views/oqrs/index.php:26 +msgid "This search will search in all station locations where OQRS is active." +msgstr "" + +#: application/views/oqrs/index.php:53 +msgid "Select station" +msgstr "" + +#: application/views/oqrs/notinlogform.php:2 +msgid "" +"If you can't find your QSO in the log, please fill out the form below. You " +"will be contacted after the log has been checked." +msgstr "" + +#: application/views/oqrs/notinlogform.php:9 +#: application/views/oqrs/request.php:16 +#: application/views/oqrs/request_grouped.php:9 +msgid "Time (UTC)" +msgstr "" + +#: application/views/oqrs/notinlogform.php:24 +msgid "Add line" +msgstr "" + +#: application/views/oqrs/notinlogform.php:30 +#: application/views/oqrs/request.php:56 +#: application/views/oqrs/request_grouped.php:60 +msgid "Any extra information we need to know about?" +msgstr "" + +#: application/views/oqrs/notinlogform.php:34 +#: application/views/oqrs/request.php:60 +#: application/views/oqrs/request_grouped.php:64 +#: application/views/oqrs/showrequests.php:87 +#: application/views/user/index.php:48 application/views/user/profile.php:24 +msgid "E-mail" +msgstr "" + +#: application/views/oqrs/notinlogform.php:36 +#: application/views/oqrs/request.php:62 +#: application/views/oqrs/request_grouped.php:66 +msgid "Your e-mail address where we can contact you" +msgstr "" + +#: application/views/oqrs/notinlogform.php:40 +msgid "Send not in log request" +msgstr "" + +#: application/views/oqrs/qsolist.php:11 +#: application/views/qslprint/qslprint.php:29 +#: application/views/qslprint/qsolist.php:13 +#: application/views/qso/edit_ajax.php:38 application/views/qso/index.php:24 +#: application/views/search/cqzones_result.php:16 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/search_result_ajax.php:127 +#: application/views/user/edit.php:478 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:88 +#: application/views/view_log/qso.php:506 +#: application/views/view_log/qso.php:510 +#: application/views/view_log/qso.php:514 +#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:531 +#: application/views/view_log/qso.php:538 +#: application/views/view_log/qso.php:545 +#: application/views/view_log/qso.php:552 +#: application/views/view_log/qso.php:559 +#: application/views/view_log/qso.php:566 +#: application/views/view_log/qso.php:573 +#: application/views/view_log/qso.php:580 +#: application/views/view_log/qso.php:585 +msgid "Station" +msgstr "" + +#: application/views/oqrs/qsolist.php:75 +#: application/views/qslprint/qslprint.php:28 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:83 +#: application/views/qso/index.php:598 +#: application/views/search/search_result_ajax.php:205 +#: application/views/view_log/partial/log_ajax.php:170 +#: src/QSLManager/QSO.php:302 +msgid "Via" +msgstr "" + +#: application/views/oqrs/qsolist.php:188 +#: application/views/qslprint/qsolist.php:196 +msgid "Add to print queue" +msgstr "" + +#: application/views/oqrs/qsolist.php:197 +msgid "No QSO's were found. It seems you were not active at this time." +msgstr "" + +#: application/views/oqrs/request.php:9 +#: application/views/oqrs/request_grouped.php:3 +msgid "" +"The following QSO(s) were found. Please fill out the date and time and " +"submit your request." +msgstr "" + +#: application/views/oqrs/request.php:40 +#: application/views/oqrs/request_grouped.php:44 +msgid "QSL Route" +msgstr "" + +#: application/views/oqrs/request.php:50 +#: application/views/oqrs/request_grouped.php:54 +msgid "Direct (write address in message below)" +msgstr "" + +#: application/views/oqrs/request.php:66 +#: application/views/oqrs/request_grouped.php:70 +msgid "Submit request" +msgstr "" + +#: application/views/oqrs/request_grouped.php:16 +msgid "Station Name" +msgstr "" + +#: application/views/oqrs/request_grouped.php:73 +#: application/views/oqrs/result.php:40 +msgid "No QSOs found in the log." +msgstr "" + +#: application/views/oqrs/result.php:5 +#, php-format +msgid "Log search result for %s" +msgstr "" + +#: application/views/oqrs/result.php:30 +#, php-format +msgid "has %d band slot" +msgid_plural "has %d band slots" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/views/oqrs/result.php:33 +#, php-format +msgid "and has %d QSO in the log" +msgid_plural "and has %d QSOs in the log" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/views/oqrs/result.php:37 +msgid "Request QSL" +msgstr "" + +#: application/views/oqrs/result.php:44 +msgid "Not in log?" +msgstr "" + +#: application/views/oqrs/showrequests.php:5 +#: application/views/oqrs/showrequests.php:50 +msgid "Open request" +msgstr "" + +#: application/views/oqrs/showrequests.php:6 +#: application/views/oqrs/showrequests.php:51 +msgid "Not in log request" +msgstr "" + +#: application/views/oqrs/showrequests.php:7 +#: application/views/oqrs/showrequests.php:52 +msgid "Request done" +msgstr "" + +#: application/views/oqrs/showrequests.php:47 +msgid "OQRS Status" +msgstr "" + +#: application/views/oqrs/showrequests.php:69 +msgid "With selected" +msgstr "" + +#: application/views/oqrs/showrequests.php:70 +msgid "Mark as done" +msgstr "" + +#: application/views/oqrs/showrequests.php:80 +msgid "Time of request" +msgstr "" + +#: application/views/oqrs/showrequests.php:81 +#: application/views/simplefle/index.php:74 +msgid "QSO Date" +msgstr "" + +#: application/views/oqrs/showrequests.php:82 +msgid "QSO Time" +msgstr "" + +#: application/views/oqrs/showrequests.php:85 +msgid "Request callsign" +msgstr "" + +#: application/views/oqrs/showrequests.php:89 +msgid "QSL route" +msgstr "" + +#: application/views/oqrs/showrequests.php:90 +msgid "Check log" +msgstr "" + +#: application/views/public_search/empty.php:2 +#: application/views/public_search/result.php:2 +msgid "Searching for" +msgstr "" + +#: application/views/qrbcalc/index.php:3 +msgid "Locator 1" +msgstr "" + +#: application/views/qrbcalc/index.php:10 +msgid "Locator 2" +msgstr "" + +#: application/views/qrbcalc/index.php:20 +msgid "Calculate" +msgstr "" + +#: application/views/qrz/export.php:27 +msgid "" +"Here you can see all QSOs which have not been previously uploaded to a QRZ " +"logbook." +msgstr "" + +#: application/views/qrz/export.php:28 +msgid "" +"You need to set a QRZ Logbook API key in your station profile. Only station " +"profiles with an API Key set are displayed." +msgstr "" + +#: application/views/qrz/export.php:73 +msgid "" +"If no startdate is given then all QSOs after last confirmation will be " +"downloaded/updated!" +msgstr "" + +#: application/views/qrz/export.php:81 +msgid "Download from QRZ Logbook" +msgstr "" + +#: application/views/qrz/export.php:107 +msgid "Mark QSOs as exported to QRZ Logbook" +msgstr "" + +#: application/views/qrz/mark_qrz.php:16 +msgid "The QSOs are marked as exported to QRZ Logbook." +msgstr "" + +#: application/views/qslcard/index.php:10 +#, php-format +msgid "You are using %s of disk space to store QSL Card assets" +msgstr "" + +#: application/views/qslcard/index.php:67 +msgid "Add Qsos" +msgstr "" + +#: application/views/qslcard/searchresult.php:193 +msgid "Add to QSL" +msgstr "" + +#: application/views/qslmanagement/index.php:13 +msgid "Incoming QSL Cards" +msgstr "" + +#: application/views/qslmanagement/index.php:25 +msgid "Report" +msgstr "" + +#: application/views/qslmanagement/index.php:26 +msgid "Option" +msgstr "" + +#: application/views/qslmanagement/index.php:46 +msgid "Outgoing QSL Cards" +msgstr "" + +#: application/views/qslprint/index.php:16 +msgid "Export Requested QSLs for Printing" +msgstr "" + +#: application/views/qslprint/index.php:29 +msgid "" +"Here you can export requested QSLs as CSV or ADIF files for printing and, " +"optionally, mark them as sent." +msgstr "" + +#: application/views/qslprint/index.php:30 +msgid "" +"Requested QSLs are any QSOs with a value of 'Requested' or 'Queued' in their " +"'QSL Sent' field." +msgstr "" + +#: application/views/qslprint/qslprint.php:30 +#: application/views/qslprint/qsolist.php:15 +msgid "Send Method" +msgstr "" + +#: application/views/qslprint/qslprint.php:31 +msgid "Mark as sent" +msgstr "" + +#: application/views/qslprint/qslprint.php:32 +msgid "Remove" +msgstr "" + +#: application/views/qslprint/qslprint.php:33 +#: application/views/simplefle/index.php:139 +msgid "QSO List" +msgstr "" + +#: application/views/qslprint/qslprint.php:67 +msgid "Mark selected QSOs as printed" +msgstr "" + +#: application/views/qslprint/qslprint.php:69 +msgid "Remove selected QSOs from the queue" +msgstr "" + +#: application/views/qslprint/qslprint.php:71 +msgid "Export CSV-file" +msgstr "" + +#: application/views/qslprint/qslprint.php:71 +msgid "Export requested QSLs to CSV-file" +msgstr "" + +#: application/views/qslprint/qslprint.php:73 +msgid "Export ADIF" +msgstr "" + +#: application/views/qslprint/qslprint.php:73 +msgid "Export requested QSLs to ADIF-file" +msgstr "" + +#: application/views/qslprint/qslprint.php:75 +msgid "Mark QSLs as printed" +msgstr "" + +#: application/views/qslprint/qslprint.php:75 +msgid "Mark requested QSLs as sent" +msgstr "" + +#: application/views/qslprint/qslprint.php:79 +msgid "No QSLs to print were found!" +msgstr "" + +#: application/views/qslprint/qsolist.php:205 +msgid "" +"No additional QSO's were found. That means they are probably already in the " +"queue." +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 +#, 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 +#, php-format +msgid "Function %d - Macro" +msgstr "" + +#: application/views/qso/edit_ajax.php:34 +msgid "Sats" +msgstr "" + +#: application/views/qso/edit_ajax.php:51 +msgid "Start Date/Time" +msgstr "" + +#: application/views/qso/edit_ajax.php:56 +msgid "End Date/Time" +msgstr "" + +#: application/views/qso/edit_ajax.php:76 +msgid "RX Frequency" +msgstr "" + +#: application/views/qso/edit_ajax.php:99 +msgid "RX Band" +msgstr "" + +#: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:346 +#: application/views/reg1test/index.php:114 +#: application/views/view_log/qso.php:545 +msgid "Transmit Power (W)" +msgstr "" + +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:348 +msgid "Give power value in Watts. Include only numbers in the input." +msgstr "" + +#: application/views/qso/edit_ajax.php:166 +msgid "Used for VUCC MultiGrids" +msgstr "" + +#: application/views/qso/edit_ajax.php:258 +msgid "Sat Name" +msgstr "" + +#: application/views/qso/edit_ajax.php:263 +msgid "Sat Mode" +msgstr "" + +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:545 +msgid "Antenna Azimuth (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:547 +msgid "Antenna azimuth in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:274 application/views/qso/index.php:551 +msgid "Antenna Elevation (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:276 application/views/qso/index.php:553 +msgid "Antenna elevation in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:383 application/views/qso/index.php:255 +#: application/views/qso/index.php:510 application/views/user/edit.php:599 +#: application/views/view_log/qso.php:335 +#: application/views/view_log/qso.php:585 +msgid "Sig Info" +msgstr "" + +#: application/views/qso/edit_ajax.php:396 +msgid "Notes (for internal usage only)" +msgstr "" + +#: application/views/qso/edit_ajax.php:430 +msgid "Sent Method" +msgstr "" + +#: application/views/qso/edit_ajax.php:433 +#: application/views/qso/edit_ajax.php:466 application/views/qso/index.php:585 +#: application/views/qso/index.php:588 +msgid "Method" +msgstr "" + +#: application/views/qso/edit_ajax.php:443 +msgid "Sent Via" +msgstr "" + +#: application/views/qso/edit_ajax.php:457 +#: application/views/qso/edit_ajax.php:498 +#: application/views/qso/edit_ajax.php:537 +msgid "Verified (Match)" +msgstr "" + +#: application/views/qso/edit_ajax.php:463 +msgid "Received Method" +msgstr "" + +#: application/views/qso/edit_ajax.php:504 application/views/qso/index.php:605 +msgid "This note content is exported to QSL services like eqsl.cc." +msgstr "" + +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:608 +msgid "Get the default message for eQSL, for this station." +msgstr "" + +#: application/views/qso/edit_ajax.php:557 +msgid "Change Station Profile" +msgstr "" + +#: application/views/qso/edit_ajax.php:603 +msgid "Exchange (R)" +msgstr "" + +#: application/views/qso/edit_ajax.php:608 +msgid "Exchange (S)" +msgstr "" + +#: application/views/qso/edit_ajax.php:620 +#: application/views/search/search_result_ajax.php:432 +#: application/views/view_log/partial/log.php:156 +#: application/views/view_log/partial/log_ajax.php:348 +msgid "Delete QSO" +msgstr "" + +#: application/views/qso/edit_ajax.php:623 +msgid "Save changes" +msgstr "" + +#: application/views/qso/index.php:4 +msgid "TimeOff is less than TimeOn" +msgstr "" + +#: application/views/qso/index.php:5 application/views/qso/index.php:718 +msgid "Previous Contacts" +msgstr "" + +#: application/views/qso/index.php:6 +msgid "times worked before" +msgstr "" + +#: application/views/qso/index.php:7 +msgid "Not worked before" +msgstr "" + +#: application/views/qso/index.php:20 +msgid "LIVE" +msgstr "" + +#: application/views/qso/index.php:20 +msgid "POST" +msgstr "" + +#: application/views/qso/index.php:33 +msgid "Sat" +msgstr "" + +#: application/views/qso/index.php:48 +msgid "Add Band/Mode to Favs" +msgstr "" + +#: application/views/qso/index.php:69 +msgid "Time on" +msgstr "" + +#: application/views/qso/index.php:81 +msgid "Time off" +msgstr "" + +#: application/views/qso/index.php:124 +msgid "Search DXCluster for latest Spot" +msgstr "" + +#: application/views/qso/index.php:196 application/views/qso/index.php:449 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 +#: application/views/user/edit.php:583 application/views/view_log/qso.php:285 +#: application/views/view_log/qso.php:552 +msgid "IOTA Reference" +msgstr "" + +#: application/views/qso/index.php:212 application/views/qso/index.php:466 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 +#: application/views/user/edit.php:587 application/views/view_log/qso.php:292 +#: application/views/view_log/qso.php:559 +msgid "SOTA Reference" +msgstr "" + +#: application/views/qso/index.php:322 application/views/view_log/qso.php:100 +msgid "Frequency (RX)" +msgstr "" + +#: application/views/qso/index.php:327 +msgid "Band (RX)" +msgstr "" + +#: application/views/qso/index.php:468 +msgid "For example: GM/NS-001." +msgstr "" + +#: application/views/qso/index.php:481 +msgid "For example: DLFF-0069." +msgstr "" + +#: application/views/qso/index.php:494 +msgid "For example: PA-0150. Multiple values allowed." +msgstr "" + +#: application/views/qso/index.php:506 +msgid "For example: GMA" +msgstr "" + +#: application/views/qso/index.php:512 +msgid "For example: DA/NW-357" +msgstr "" + +#: application/views/qso/index.php:520 +msgid "For example: Q03" +msgstr "" + +#: application/views/qso/index.php:529 application/views/view_log/qso.php:210 +msgid "Satellite Name" +msgstr "" + +#: application/views/qso/index.php:537 application/views/view_log/qso.php:217 +msgid "Satellite Mode" +msgstr "" + +#: application/views/qso/index.php:560 +msgid "" +"Note content is used within Wavelog only and is not exported to other " +"services." +msgstr "" + +#: application/views/qso/index.php:626 +msgid "Reset to Default" +msgstr "" + +#: application/views/qso/index.php:667 +msgid "Winkey" +msgstr "" + +#: application/views/qso/index.php:669 +msgid "Connect" +msgstr "" + +#: application/views/qso/index.php:678 +msgid "Stop" +msgstr "" + +#: application/views/qso/index.php:679 +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:680 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:686 +msgid "CW Speed" +msgstr "" + +#: application/views/qso/index.php:691 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:701 +msgid "Suggestions" +msgstr "" + +#: application/views/qso/index.php:708 +msgid "Profile Picture" +msgstr "" + +#: application/views/qso/index.php:732 +msgid "Max. 5 previous contacts are shown" +msgstr "" + +#: application/views/radio/index.php:16 +msgid "Active Radios" +msgstr "" + +#: application/views/radio/index.php:19 +msgid "Below is a list of active radios that are connected to Wavelog." +msgstr "" + +#: application/views/radio/index.php:20 +msgid "" +"If you haven't connected any radios yet, see the API page to generate API " +"keys." +msgstr "" + +#: application/views/radio/index.php:22 application/views/search/filter.php:69 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "" + +#: application/views/radio/index.php:22 +msgid "radio functions" +msgstr "" + +#: application/views/radio/index.php:27 +msgid "Please wait..." +msgstr "" + +#: application/views/reg1test/index.php:6 +msgid "Select Band" +msgstr "" + +#: application/views/reg1test/index.php:8 +msgid "" +"Bands below 50Mhz are not valid for the EDI REG1TEST format and will produce " +"invalid files." +msgstr "" + +#: application/views/reg1test/index.php:18 +msgid "Export a contest to a REG1TEST EDI log" +msgstr "" + +#: application/views/reg1test/index.php:48 +msgid "Sent Exchange" +msgstr "" + +#: application/views/reg1test/index.php:50 +msgid "" +"The exchange which was sent during the contest. Can be any type of " +"information, e.g. Province, DOK, County, State, Power, Name. Max. length: 6 " +"characters." +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:66 +msgid "Callsign of responsible operator" +msgstr "" + +#: application/views/reg1test/index.php:72 +msgid "" +"List of all operators. Seperated with a semicolon ';'. The responsible " +"operator is not needed here." +msgstr "" + +#: application/views/reg1test/index.php:75 +msgid "Contest Address 1" +msgstr "" + +#: application/views/reg1test/index.php:77 +msgid "Address of the QTH used during the contest." +msgstr "" + +#: application/views/reg1test/index.php:80 +msgid "Contest Address 2" +msgstr "" + +#: application/views/reg1test/index.php:84 +msgid "Operator Address 1" +msgstr "" + +#: application/views/reg1test/index.php:86 +msgid "Address of the responsible operator." +msgstr "" + +#: application/views/reg1test/index.php:89 +msgid "Operator Address 2" +msgstr "" + +#: application/views/reg1test/index.php:93 +msgid "Operator Address Postalcode" +msgstr "" + +#: application/views/reg1test/index.php:97 +msgid "Operator Address City" +msgstr "" + +#: application/views/reg1test/index.php:101 +msgid "Operator Address Country" +msgstr "" + +#: application/views/reg1test/index.php:105 +msgid "Operator Phone Number" +msgstr "" + +#: application/views/reg1test/index.php:109 +msgid "Transmit Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:111 +msgid "Short description of the used equipment." +msgstr "" + +#: application/views/reg1test/index.php:116 +msgid "TX Power during the contest in Watt." +msgstr "" + +#: application/views/reg1test/index.php:119 +msgid "Receive Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:121 +msgid "If you used another gear for RX, then describe it here." +msgstr "" + +#: application/views/reg1test/index.php:124 +msgid "Antenna Description" +msgstr "" + +#: application/views/reg1test/index.php:126 +msgid "What kind of antenna was used." +msgstr "" + +#: application/views/reg1test/index.php:129 +msgid "Antenna Height Above Ground (m)" +msgstr "" + +#: application/views/reg1test/index.php:131 +msgid "Height of the antenna above the ground." +msgstr "" + +#: application/views/reg1test/index.php:134 +msgid "Band multiplicator" +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:141 +msgid "Any other remarks." +msgstr "" + +#: application/views/satellite/create.php:23 +#: application/views/satellite/edit.php:7 +msgid "Satellite name" +msgstr "" + +#: application/views/satellite/create.php:25 +msgid "The name of the Satellite" +msgstr "" + +#: application/views/satellite/create.php:28 +#: application/views/satellite/edit.php:12 +#: application/views/satellite/index.php:22 +msgid "Export Name" +msgstr "" + +#: application/views/satellite/create.php:30 +#: application/views/satellite/edit.php:14 +msgid "If external services uses another name for the satellite, like LoTW" +msgstr "" + +#: application/views/satellite/create.php:37 +#: application/views/satellite/edit.php:21 +msgid "Enter which orbit the satellite has (LEO, MEO, GEO)" +msgstr "" + +#: application/views/satellite/create.php:40 +msgid "Satellite mode name" +msgstr "" + +#: application/views/satellite/create.php:42 +msgid "Enter satellite mode" +msgstr "" + +#: application/views/satellite/create.php:47 +#: application/views/satellite/edit.php:35 +msgid "Uplink mode" +msgstr "" + +#: application/views/satellite/create.php:49 +msgid "Enter modulation used for uplink" +msgstr "" + +#: application/views/satellite/create.php:52 +#: application/views/satellite/edit.php:36 +msgid "Uplink frequency" +msgstr "" + +#: application/views/satellite/create.php:54 +msgid "Enter frequency (in Hz) used for uplink" +msgstr "" + +#: application/views/satellite/create.php:59 +#: application/views/satellite/edit.php:37 +msgid "Downlink mode" +msgstr "" + +#: application/views/satellite/create.php:61 +msgid "Enter modulation used for downlink" +msgstr "" + +#: application/views/satellite/create.php:64 +#: application/views/satellite/edit.php:38 +msgid "Downlink frequency" +msgstr "" + +#: application/views/satellite/create.php:66 +msgid "Enter frequency (in Hz) used for downlink" +msgstr "" + +#: application/views/satellite/edit.php:9 +msgid "Name of the Satellite" +msgstr "" + +#: application/views/satellite/edit.php:25 +msgid "Save satellite" +msgstr "" + +#: application/views/satellite/edit.php:59 +msgid "Add satellite mode" +msgstr "" + +#: application/views/satellite/index.php:15 +msgid "Add a satellite" +msgstr "" + +#: application/views/satellite/pass.php:2 +msgid "Satellite passes" +msgstr "" + +#: application/views/satellite/pass.php:8 +msgid "Min. Satellite Elevation" +msgstr "" + +#: application/views/satellite/pass.php:12 +msgid "Min. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:20 +msgid "Max. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:32 +msgid "Altitude (meters)" +msgstr "" + +#: application/views/satellite/pass.php:36 application/views/user/edit.php:179 +msgid "Timezone" +msgstr "" + +#: application/views/satellite/pass.php:479 +msgid "Min. time" +msgstr "" + +#: application/views/satellite/pass.php:487 +msgid "Max. time" +msgstr "" + +#: application/views/satellite/pass.php:504 +msgid "Load predictions" +msgstr "" + +#: application/views/satellite/passtable.php:6 +msgid "AOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:7 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "" + +#: application/views/satellite/passtable.php:8 +msgid "AOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:9 +msgid "AOS El" +msgstr "" + +#: application/views/satellite/passtable.php:10 +msgid "Max El" +msgstr "" + +#: application/views/satellite/passtable.php:11 +msgid "LOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:12 +msgid "LOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:13 +msgid "LOS El" +msgstr "" + +#: application/views/sattimers/index.php:15 +#, php-format +msgid "" +"This data comes from %s and is calculated for the current stationlocation " +"grid %s." +msgstr "" + +#: application/views/sattimers/index.php:40 +msgid "Time(d)-Out" +msgstr "" + +#: application/views/sattimers/index.php:43 +#: application/views/sattimers/index.php:44 +msgid "Azimuth" +msgstr "" + +#: application/views/sattimers/index.php:45 +msgid "Max Elevation" +msgstr "" + +#: application/views/search/cqzones.php:5 +#: application/views/search/lotw_unconfirmed.php:5 +#: application/views/search/main.php:5 +msgid "Ready to find a QSO?" +msgstr "" + +#: application/views/search/cqzones.php:15 +#: application/views/search/filter.php:4 application/views/search/filter.php:23 +#: application/views/search/lotw_unconfirmed.php:15 +#: application/views/search/main.php:15 +msgid "Advanced Search" +msgstr "" + +#: application/views/search/cqzones.php:18 +#: application/views/search/filter.php:26 +#: application/views/search/lotw_unconfirmed.php:18 +#: application/views/search/main.php:18 +msgid "Incorrect CQ Zones" +msgstr "" + +#: application/views/search/cqzones.php:21 +#: application/views/search/filter.php:29 +#: application/views/search/lotw_unconfirmed.php:21 +#: application/views/search/main.php:21 +msgid "QSOs unconfirmed on LoTW" +msgstr "" + +#: application/views/search/cqzones.php:28 +msgid "Station location:" +msgstr "" + +#: application/views/search/cqzones_result.php:3 +msgid "" +"The following QSOs were found to have an incorrect CQ zone that this DXCC " +"normally has:" +msgstr "" + +#: application/views/search/cqzones_result.php:14 +msgid "DXCC CQ Zone" +msgstr "" + +#: application/views/search/cqzones_result.php:51 +msgid "No incorrect CQ Zones were found." +msgstr "" + +#: application/views/search/filter.php:43 +msgid "Save query" +msgstr "" + +#: application/views/search/filter.php:50 +msgid "Stored queries" +msgstr "" + +#: application/views/search/filter.php:69 +msgid "search filter functions" +msgstr "" + +#: application/views/search/filter.php:79 +msgid "Search Results" +msgstr "" + +#: application/views/search/lotw_unconfirmed.php:26 +msgid "" +"The search displays QSOs which are unconfirmed on LoTW, but the callsign " +"worked has uploaded to LoTW after your QSO date." +msgstr "" + +#: application/views/search/lotw_unconfirmed.php:29 +msgid "Station location" +msgstr "" + +#: application/views/search/lotw_unconfirmed_result.php:10 +msgid "Last LoTW upload" +msgstr "" + +#: application/views/search/lotw_unconfirmed_result.php:41 +msgid "No QSOs with outstanding LoTW upload were found." +msgstr "" + +#: application/views/search/main.php:28 +msgid "Callsign / Gridsquare" +msgstr "" + +#: application/views/search/result.php:2 +#, php-format +msgid "Results for %s" +msgstr "" + +#: application/views/search/result.php:4 +#, php-format +msgid "Sorry, but we didn't find any past QSOs with %s" +msgstr "" + +#: application/views/search/result.php:6 +#, php-format +msgid "Callbook Search for %s" +msgstr "" + +#: application/views/search/result_search.php:9 +#: application/views/statistics/custom_result.php:90 +#: application/views/widgets/qsos.php:31 +msgid "Rcvd" +msgstr "" + +#: application/views/search/search_result_ajax.php:409 +#: application/views/view_log/partial/log.php:140 +#: application/views/view_log/partial/log_ajax.php:325 +msgid "Mark QSL Sent (Bureau)" +msgstr "" + +#: application/views/search/search_result_ajax.php:410 +#: application/views/view_log/partial/log.php:141 +#: application/views/view_log/partial/log_ajax.php:326 +msgid "Mark QSL Sent (Direct)" +msgstr "" + +#: application/views/search/search_result_ajax.php:417 +#: application/views/view_log/partial/log.php:148 +#: application/views/view_log/partial/log_ajax.php:335 +#: application/views/view_log/qso.php:655 +msgid "Mark QSL Received (Bureau)" +msgstr "" + +#: application/views/search/search_result_ajax.php:418 +#: application/views/view_log/partial/log.php:149 +#: application/views/view_log/partial/log_ajax.php:336 +#: application/views/view_log/qso.php:657 +msgid "Mark QSL Received (Direct)" +msgstr "" + +#: application/views/search/search_result_ajax.php:419 +#: application/views/view_log/partial/log.php:150 +#: application/views/view_log/partial/log_ajax.php:327 +msgid "Mark QSL Card Requested" +msgstr "" + +#: application/views/search/search_result_ajax.php:420 +#: application/views/view_log/partial/log.php:151 +#: application/views/view_log/partial/log_ajax.php:328 +#: application/views/view_log/qso.php:669 +msgid "Mark QSL Card Not Required" +msgstr "" + +#: application/views/search/search_result_ajax.php:426 +#: application/views/view_log/partial/log_ajax.php:342 +msgid "Lookup on QRZ.com" +msgstr "" + +#: application/views/search/search_result_ajax.php:428 +#: application/views/view_log/partial/log_ajax.php:344 +msgid "Lookup on HamQTH" +msgstr "" + +#: application/views/search/stored_queries.php:9 +msgid "Query" +msgstr "" + +#: application/views/simplefle/index.php:13 +msgid "Simple Fast Log Entry (FLE)" +msgstr "" + +#: application/views/simplefle/index.php:14 +msgid "" +"'Fast Log Entry', or simply 'FLE' is a system to log QSOs very quickly and " +"efficiently. Due to its syntax, only a minimum of input is required to log " +"many QSOs with as little effort as possible." +msgstr "" + +#: application/views/simplefle/index.php:15 +msgid "" +"FLE was originally written by DF3CB. He offers a program for Windows on his " +"website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides " +"a web interface to log QSOs." +msgstr "" + +#: application/views/simplefle/index.php:16 +#, php-format +msgid "" +"A common use-case is if you have to import your paperlogs from an outdoor " +"session and now SimpleFLE is also available in Wavelog. Information about " +"the syntax and how FLE works can be found %s." +msgstr "" + +#: application/views/simplefle/index.php:17 +#: application/views/simplefle/index.php:176 +msgid "Syntax Help" +msgstr "" + +#: application/views/simplefle/index.php:18 +msgid "Syntax for FLE" +msgstr "" + +#: application/views/simplefle/index.php:19 +msgid "Close and Load Sample Data" +msgstr "" + +#: application/views/simplefle/index.php:23 +msgid "Band is missing!" +msgstr "" + +#: application/views/simplefle/index.php:24 +msgid "Mode is missing!" +msgstr "" + +#: application/views/simplefle/index.php:25 +msgid "Time is not set!" +msgstr "" + +#: application/views/simplefle/index.php:26 +msgid "Invalid date" +msgstr "" + +#: application/views/simplefle/index.php:29 +msgid "Station Call is not selected" +msgstr "" + +#: application/views/simplefle/index.php:30 +msgid "'Operator' Field is empty" +msgstr "" + +#: application/views/simplefle/index.php:31 +msgid "Warning! Do you really want to reset everything?" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: application/views/simplefle/index.php:34 +msgid "" +"Attention! The Data Field containes example data. First Clear Logging " +"Session!" +msgstr "" + +#: application/views/simplefle/index.php:35 +msgid "" +"Are you sure that you want to add these QSO to the Log and clear the session?" +msgstr "" + +#: application/views/simplefle/index.php:36 +msgid "QSO Logged!" +msgstr "" + +#: application/views/simplefle/index.php:37 +msgid "The QSO were successfully logged in the logbook!" +msgstr "" + +#: application/views/simplefle/index.php:40 +msgid "What is that?" +msgstr "" + +#: application/views/simplefle/index.php:43 +msgid "Current UTC Time" +msgstr "" + +#: application/views/simplefle/index.php:76 +msgid "If you don't choose a date, today's date will be used." +msgstr "" + +#: application/views/simplefle/index.php:88 +msgid "You can add the entered QSOs to a contest." +msgstr "" + +#: application/views/simplefle/index.php:95 +msgid "Station Call/Location" +msgstr "" + +#: application/views/simplefle/index.php:107 +#, php-format +msgid "" +"If you did operate from a new location, first create a new %sStation " +"Location%s" +msgstr "" + +#: application/views/simplefle/index.php:112 +msgid "e.g. OK2CQR" +msgstr "" + +#: application/views/simplefle/index.php:115 +msgid "This is callsign of the operator. Without any pre- or suffixes." +msgstr "" + +#: application/views/simplefle/index.php:125 +msgid "Enter the Data" +msgstr "" + +#: application/views/simplefle/index.php:154 +msgid "Refs" +msgstr "" + +#: application/views/simplefle/index.php:166 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" +msgstr "" + +#: application/views/simplefle/index.php:173 +msgid "Reload QSO List" +msgstr "" + +#: application/views/simplefle/index.php:174 +msgid "Save in Wavelog" +msgstr "" + +#: application/views/simplefle/index.php:175 +msgid "Clear Logging Session" +msgstr "" + +#: application/views/simplefle/options.php:20 +msgid "No Options yet" +msgstr "" + +#: application/views/simplefle/syntax_help.php:1 +msgid "Before starting to log a QSO, please note the basic rules." +msgstr "" + +#: application/views/simplefle/syntax_help.php:2 +msgid "- Each new QSO should be on a new line." +msgstr "" + +#: application/views/simplefle/syntax_help.php:3 +msgid "" +"- On each new line, only write data that has changed from the previous QSO." +msgstr "" + +#: application/views/simplefle/syntax_help.php:4 +msgid "" +"To begin, ensure you have already filled in the form on the left with the " +"date, station call, and operator's call. The main data includes the band (or " +"QRG in MHz, e.g., '7.145'), mode, and time. After the time, you provide the " +"first QSO, which is essentially the callsign." +msgstr "" + +#: application/views/simplefle/syntax_help.php:9 +msgid "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB." +msgstr "" + +#: application/views/simplefle/syntax_help.php:10 +msgid "" +"If you don't provide any RST information, the syntax will use 59 (599 for " +"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 "" + +#: application/views/simplefle/syntax_help.php:16 +msgid "" +"The first QSO was at 21:34, and the second one 2 minutes later at 21:36. We " +"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 "" + +#: application/views/simplefle/syntax_help.php:17 +msgid "" +"For our next QSO at 21:40 on 14th May, 2021, we changed the band to 40m but " +"still on SSB. If no RST information is given, the syntax will use 59 for " +"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 "" + +#: application/views/simplefle/syntax_help.php:28 +#, php-format +msgid "" +"A full summary of all commands and the necessary syntax can be found in " +"%sthis article%s of our Wiki." +msgstr "" + +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 +msgid "Location Name" +msgstr "" + +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 +msgctxt "Station Location Setup" +msgid "Home QTH" +msgstr "" + +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 +#, php-format +msgid "Shortname for the station location. For example: %s" +msgstr "" + +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 +msgid "Station callsign. For example: 4W7EST/P" +msgstr "" + +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 +msgid "Station Power (W)" +msgstr "" + +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 +msgid "Default station power in Watt. Overwritten by CAT." +msgstr "" + +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 +msgid "Station DXCC" +msgstr "" + +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 +msgctxt "DXCC selection" +msgid "None" +msgstr "" + +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 +msgid "Station DXCC entity. For example: Bolivia" +msgstr "" + +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 +msgid "Station City" +msgstr "" + +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 +msgid "Station city. For example: Oslo" +msgstr "" + +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 +msgid "Station state. Applies to certain countries only." +msgstr "" + +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 +msgid "Station County" +msgstr "" + +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 +msgid "Station County (Only used for USA/Alaska/Hawaii)." +msgstr "" + +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 +#, php-format +msgctxt "uses 'click here'" +msgid "If you don't know your CQ Zone then %s to find it!" +msgstr "" + +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 +msgid "click here" +msgstr "" + +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 +#, php-format +msgctxt "uses 'click here'" +msgid "If you don't know your ITU Zone then %s to find it!" +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 +msgid "Station Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 +msgid "Get Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 +#, php-format +msgctxt "uses 'click here'" +msgid "" +"Station gridsquare. For example: HM54AP. If you don't know your grid square " +"then %s!" +msgstr "" + +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 +msgid "" +"If you are located on a grid line, enter multiple grid squares separated " +"with commas. For example: IO77,IO78,IO87,IO88." +msgstr "" + +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 +msgid "Station IOTA reference. For example: EU-005" +msgstr "" + +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 +msgid "IOTA World website" +msgstr "" + +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 +#, php-format +msgid "You can look up IOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 +msgid "SOTA Maps website" +msgstr "" + +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 +#, php-format +msgid "Station SOTA reference. You can look up SOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 +msgid "GMA Map website" +msgstr "" + +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 +#, php-format +msgid "Station WWFF reference. You can look up WWFF references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 +msgid "POTA Map website" +msgstr "" + +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 +#, php-format +msgid "" +"Station POTA reference(s). Multiple comma separated values allowed. You can " +"look up POTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 +msgid "Signature Name" +msgstr "" + +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 +msgid "Station Signature (e.g. GMA).." +msgstr "" + +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 +msgid "Signature Information" +msgstr "" + +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 +msgid "Station Signature Info (e.g. DA/NW-357)." +msgstr "" + +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 +msgctxt "Probably no translation needed" +msgid "eQSL QTH Nickname" +msgstr "" + +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 +msgid "The QTH Nickname which is configured in your eQSL Profile" +msgstr "" + +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 +msgid "Default QSLMSG" +msgstr "" + +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 +msgid "" +"Define a default message that will be populated and sent for each QSO for " +"this station location." +msgstr "" + +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 +msgid "Ignore Clublog Upload" +msgstr "" + +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 +msgid "" +"If enabled, the QSOs made from this location will not be uploaded to " +"Clublog. If this is deactivated on it's own please check if the Call is " +"properly configured at Clublog" +msgstr "" + +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 +msgid "ClubLog Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 +msgid "HRDLog.net Username" +msgstr "" + +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 +msgid "" +"The username you are registered with at HRDlog.net (usually your callsign)." +msgstr "" + +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 +msgid "HRDLog.net API Key" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 +#, php-format +msgctxt "HRDLog.net Userprofile page" +msgid "Create your API Code on your %s" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 +msgid "HRDLog.net Userprofile page" +msgstr "" + +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 +msgid "HRDLog.net Logbook Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 +msgid "Subscription Required" +msgstr "" + +#: application/views/station_profile/create.php:255 +msgctxt "Probably no translation needed" +msgid "QRZ.com Logbook API Key" +msgstr "" + +#: application/views/station_profile/create.php:258 +msgid "Test API-Key" +msgstr "" + +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 +#, php-format +msgctxt "the QRZ.com Logbook settings page" +msgid "Find your API key on %s" +msgstr "" + +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 +msgid "the QRZ.com Logbook settings page" +msgstr "" + +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 +msgid "QRZ.com Logbook Upload" +msgstr "" + +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 +msgid "Realtime" +msgstr "" + +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 +msgctxt "Probably no translation needed" +msgid "QO-100 Dx Club API Key" +msgstr "" + +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 +#, php-format +msgctxt "QO-100 Dx Club's profile page" +msgid "Create your API key on your %s" +msgstr "" + +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 +msgid "QO-100 Dx Club's profile page" +msgstr "" + +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 +msgid "QO-100 Dx Club Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 +msgid "OQRS Enabled" +msgstr "" + +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 +msgid "OQRS Email alert" +msgstr "" + +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 +msgid "Make sure email is set up under admin and global options." +msgstr "" + +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 +msgid "OQRS Text" +msgstr "" + +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 +msgid "Some info you want to add regarding QSL'ing." +msgstr "" + +#: application/views/station_profile/edit.php:149 +msgid "Zones" +msgstr "" + +#: application/views/station_profile/edit.php:284 +msgid "Signature" +msgstr "" + +#: application/views/stationsetup/create.php:17 +msgid "Station Logbook Name" +msgstr "" + +#: application/views/stationsetup/create.php:19 +msgid "You can call a station logbook anything." +msgstr "" + +#: application/views/stationsetup/edit.php:18 +msgid "Container name" +msgstr "" + +#: application/views/stationsetup/edit.php:20 +msgid "You can call a container anything." +msgstr "" + +#: application/views/stationsetup/exportmapoptions.php:11 +msgctxt "Map Options" +msgid "CQ Zone overlay" +msgstr "" + +#: application/views/stationsetup/exportmapoptions.php:15 +msgctxt "Map Options" +msgid "Gridsquare overlay" +msgstr "" + +#: application/views/stationsetup/exportmapoptions.php:19 +msgctxt "Map Options" +msgid "Night shadow overlay" +msgstr "" + +#: application/views/stationsetup/exportmapoptions.php:27 +msgid "# QSOs shown" +msgstr "" + +#: application/views/stationsetup/exportmapoptions.php:46 +msgid "Visit export map" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:13 +msgid "Select Available Station Locations" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:25 +msgid "Link Location" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:31 +#: application/views/stationsetup/stationsetup.php:122 +msgid "Profile Name" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:34 +msgid "Unlink Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:21 +msgid "" +"Station Logbooks allow you to group Station Locations, this allows you to " +"see all the locations across one session from the logbook areas to the " +"analytics. Great for when your operating in multiple locations but they are " +"part of the same DXCC or VUCC Circle." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:32 +msgid "Linked locations" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:34 +msgid "Visitor site" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:91 +msgid "Station Locations" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:95 +msgid "" +"Station Locations define operating locations, such as your QTH, a friends " +"QTH, or a portable station." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:96 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:97 +msgid "" +"Only one station may be active at a time. In the table below this is shown " +"with the -Active Station- badge." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:98 +msgid "" +"The 'Linked' column shows if the station location is linked with the Active " +"Logbook selected above." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:101 +msgid "Create a Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:105 +msgid "" +"Attention: You need to set an active station location. Go to Callsign-" +">Station Location to select one." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:111 +msgid "" +"Due to recent changes within Wavelog you need to reassign QSOs to your " +"station profiles." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Maintenance" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Please reassign them at " +msgstr "" + +#: application/views/stationsetup/stationsetup.php:127 +msgid "Linked" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:134 +msgid "Favorite" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:180 +msgid "mark/unmark as favorite" +msgstr "" + +#: application/views/stationsetup/visitor.php:2 +msgid "" +"Setting a public slug allows you to share your logbook with anyone via a " +"custom website address, this slug can contain letters & numbers only." +msgstr "" + +#: application/views/stationsetup/visitor.php:3 +msgid "Later it looks like this:" +msgstr "" + +#: application/views/stationsetup/visitor.php:4 +msgid "[your slug]" +msgstr "" + +#: application/views/stationsetup/visitor.php:10 +msgid "Type in Public Slug choice" +msgstr "" + +#: application/views/stationsetup/visitor.php:17 +msgid "Visit Public Page" +msgstr "" + +#: application/views/statistics/custom.php:12 +#: application/views/statistics/custom_result.php:12 +#: application/views/statistics/index.php:28 +msgid "Explore the logbook." +msgstr "" + +#: application/views/statistics/custom.php:23 +#: application/views/statistics/custom_result.php:24 +msgid "Custom" +msgstr "" + +#: application/views/statistics/custom.php:27 +#: application/views/statistics/custom_result.php:29 +msgid "This is a work in-progress" +msgstr "" + +#: application/views/statistics/custom.php:74 +#: application/views/statistics/custom_result.php:71 +msgid "Finished your selection? time to search!" +msgstr "" + +#: application/views/statistics/custom.php:86 +msgid "Results go here" +msgstr "" + +#: application/views/statistics/index.php:14 +#: application/views/statistics/index.php:50 +msgid "Years" +msgstr "" + +#: application/views/statistics/index.php:17 +msgid "Number of QSOs worked each year" +msgstr "" + +#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:99 +msgid "Unique callsigns" +msgstr "" + +#: application/views/themes/add.php:4 application/views/themes/edit.php:4 +msgid "Theme Name" +msgstr "" + +#: application/views/themes/add.php:6 application/views/themes/edit.php:6 +msgid "This is the name that is used to display the theme in the theme list." +msgstr "" + +#: application/views/themes/add.php:10 application/views/themes/edit.php:10 +msgid "Folder Name" +msgstr "" + +#: application/views/themes/add.php:12 application/views/themes/edit.php:12 +msgid "" +"This is the name of the folder where your CSS-files are placed under assets/" +"css." +msgstr "" + +#: application/views/themes/add.php:16 application/views/themes/edit.php:16 +#: application/views/themes/index.php:84 +msgid "Theme Mode" +msgstr "" + +#: application/views/themes/add.php:18 application/views/themes/edit.php:18 +msgid "Light" +msgstr "" + +#: application/views/themes/add.php:19 application/views/themes/edit.php:19 +msgid "Dark" +msgstr "" + +#: application/views/themes/add.php:21 +msgid "This defines wherever the theme is a light or a dark one." +msgstr "" + +#: application/views/themes/add.php:25 application/views/themes/edit.php:25 +#: application/views/themes/index.php:85 +msgid "Header Logo" +msgstr "" + +#: application/views/themes/add.php:27 application/views/themes/add.php:33 +#: application/views/themes/edit.php:27 application/views/themes/edit.php:33 +msgid "Only PNG files with a size ratio of 1:1 are allowed." +msgstr "" + +#: application/views/themes/add.php:27 application/views/themes/edit.php:27 +#, php-format +msgid "" +"This is the name of the file which is used as %s small %s Logo in the header " +"placed in assets/logo." +msgstr "" + +#: application/views/themes/add.php:31 application/views/themes/edit.php:31 +#: application/views/themes/index.php:86 +msgid "Main Logo" +msgstr "" + +#: application/views/themes/add.php:33 application/views/themes/edit.php:33 +#, php-format +msgid "" +"This is the name of the file which is used as %s big %s Logo in the login " +"screen placed in assets/logo." +msgstr "" + +#: application/views/themes/add.php:36 +msgid "Add theme" +msgstr "" + +#: application/views/themes/edit.php:21 +msgid "" +"This defines wherever the theme is a light or a dark one. On this basis the " +"Logo is chosen." +msgstr "" + +#: application/views/themes/edit.php:36 +msgid "Update theme" +msgstr "" + +#: application/views/themes/index.php:22 +msgid "Themes list" +msgstr "" + +#: application/views/themes/index.php:28 +msgid "" +"In this menu you can add and edit themes to Wavelog. The process of adding a " +"theme is not really straightforward and should only be done by an admin who " +"is aware of their actions." +msgstr "" + +#: application/views/themes/index.php:29 +msgid "Also, it has to be said that this feature is still under development." +msgstr "" + +#: application/views/themes/index.php:35 +msgid "Process of adding a new theme" +msgstr "" + +#: application/views/themes/index.php:41 +msgid "1. Step" +msgstr "" + +#: application/views/themes/index.php:44 +#, php-format +msgid "" +"Create a new folder in 'assets/css/' and upload a 'bootstrap.min.css' file " +"which contains basic styling rules. We use the themes from %s" +msgstr "" + +#: application/views/themes/index.php:50 +msgid "2. Step" +msgstr "" + +#: application/views/themes/index.php:53 +msgid "" +"Create a file in this folder called 'overrides.css'. Place your custom CSS " +"code in there." +msgstr "" + +#: application/views/themes/index.php:59 +msgid "3. Step" +msgstr "" + +#: application/views/themes/index.php:62 +msgid "" +"For each new theme, you need two logo files. One for the login screen and " +"one for the header." +msgstr "" + +#: application/views/themes/index.php:63 +msgid "" +"Only PNG files are allowed, and they should have a pixel ratio of 1:1 (e.g., " +"1000px height and 1000px width)." +msgstr "" + +#: application/views/themes/index.php:64 +msgid "Place the two logo files in the folder 'assets/logo/'" +msgstr "" + +#: application/views/themes/index.php:70 +msgid "4. Step" +msgstr "" + +#: application/views/themes/index.php:73 +#, php-format +msgid "" +"Click here on 'Add a Theme' and type in the necessary data. Type in the " +"filenames for the logos %swithout%s the file extension '.png'" +msgstr "" + +#: application/views/themes/index.php:83 +msgid "Foldername" +msgstr "" + +#: application/views/themes/index.php:99 +msgid "Please edit" +msgstr "" + +#: application/views/themes/index.php:116 +msgid "Add a Theme" +msgstr "" + +#: application/views/timeplotter/index.php:2 +msgid "contacts were plotted" +msgstr "" + +#: application/views/timeplotter/index.php:3 +msgid "Time Distribution" +msgstr "" + +#: application/views/timeplotter/index.php:6 +msgid "Callsign(s) worked (max 5)" +msgstr "" + +#: application/views/timeplotter/index.php:10 +msgid "" +"The Timeplotter is used to analyze your logbook and find out at what times " +"you worked certain CQ zones or DXCC countries on a selected band." +msgstr "" + +#: application/views/update/index.php:8 +msgid "DXCC Lookup Data" +msgstr "" + +#: application/views/update/index.php:12 +msgid "Distance Data" +msgstr "" + +#: application/views/update/index.php:19 +msgid "" +"Here you can update the DXCC lookup data that is used for displaying " +"callsign information." +msgstr "" + +#: application/views/update/index.php:20 +msgid "This data is provided by" +msgstr "" + +#: application/views/update/index.php:24 +msgid "You must install php-xml for this to work." +msgstr "" + +#: application/views/update/index.php:27 +msgid "Check for DXCC Data Updates" +msgstr "" + +#: application/views/update/index.php:28 +msgid "Update DXCC Data" +msgstr "" + +#: application/views/update/index.php:30 +msgid "Status:" +msgstr "" + +#: application/views/update/index.php:34 +msgid "Apply DXCC Data to Logbook" +msgstr "" + +#: application/views/update/index.php:36 +msgid "" +"After updating, Wavelog can fill in missing callsign information in the " +"logbook using the newly-obtained DXCC data.\n" +"\t\t\t\t\t\t\tYou can choose to check just the QSOs in the logbook that are " +"missing DXCC metadata or to re-check the entire logbook\n" +"\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." +msgstr "" + +#: application/views/update/index.php:45 +msgid "Check QSOs missing DXCC data" +msgstr "" + +#: application/views/update/index.php:54 application/views/update/index.php:95 +msgid "Re-check all QSOs in logbook" +msgstr "" + +#: application/views/update/index.php:59 +msgid "Apply Continent Data to Logbook" +msgstr "" + +#: application/views/update/index.php:61 +msgid "" +"This function can be used to update QSO continent information for all QSOs " +"in Wavelog missing that information." +msgstr "" + +#: application/views/update/index.php:68 +msgid "Check QSOs missing continent data" +msgstr "" + +#: application/views/update/index.php:80 +msgid "Here you can update QSOs with missing distance information." +msgstr "" + +#: application/views/update/index.php:86 +msgid "Update distance data" +msgstr "" + +#: application/views/update/index.php:89 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" + +#: application/views/user/delete.php:5 +msgid "Delete User Account" +msgstr "" + +#: application/views/user/delete.php:10 +msgid "Are you sure you want to delete the user account" +msgstr "" + +#: application/views/user/delete.php:14 +msgid "No, do not delete this user" +msgstr "" + +#: application/views/user/delete.php:14 +msgid "Yes, delete this user" +msgstr "" + +#: application/views/user/edit.php:4 +msgid "Create User Account" +msgstr "" + +#: application/views/user/edit.php:6 +msgid "Edit Account" +msgstr "" + +#: application/views/user/edit.php:41 +msgid "General Information" +msgstr "" + +#: application/views/user/edit.php:52 application/views/user/login.php:58 +#: application/views/user/login.php:69 application/views/user/login.php:70 +#: application/views/user/profile.php:14 +msgid "Username" +msgstr "" + +#: application/views/user/edit.php:64 application/views/user/login.php:59 +#: application/views/user/login.php:73 application/views/user/login.php:74 +#: application/views/user/reset_password.php:21 +#: application/views/user/reset_password.php:23 +#: application/views/user/reset_password.php:30 +msgid "Password" +msgstr "" + +#: application/views/user/edit.php:77 +msgid "User Role" +msgstr "" + +#: application/views/user/edit.php:99 +msgid "Personal" +msgstr "" + +#: application/views/user/edit.php:102 +msgid "First Name" +msgstr "" + +#: application/views/user/edit.php:109 +msgid "Last Name" +msgstr "" + +#: application/views/user/edit.php:120 +msgid "Ham Radio" +msgstr "" + +#: application/views/user/edit.php:146 +msgid "Wavelog Preferences" +msgstr "" + +#: application/views/user/edit.php:157 +msgid "Stylesheet" +msgstr "" + +#: application/views/user/edit.php:169 +msgid "Wavelog Language" +msgstr "" + +#: application/views/user/edit.php:176 +msgid "Choose Wavelog language." +msgstr "" + +#: application/views/user/edit.php:187 +msgid "Date Format" +msgstr "" + +#: application/views/user/edit.php:200 +msgid "Select how you would like dates shown when logged into your account." +msgstr "" + +#: application/views/user/edit.php:204 +msgid "Measurement preference" +msgstr "" + +#: application/views/user/edit.php:208 +msgid "Kilometers" +msgstr "" + +#: application/views/user/edit.php:209 +msgid "Miles" +msgstr "" + +#: application/views/user/edit.php:210 +msgid "Nautical miles" +msgstr "" + +#: application/views/user/edit.php:212 +msgid "Choose which unit distances will be shown in" +msgstr "" + +#: application/views/user/edit.php:221 +msgid "Logbook fields" +msgstr "" + +#: application/views/user/edit.php:224 +msgid "Choose column 1" +msgstr "" + +#: application/views/user/edit.php:246 +msgid "Choose column 2" +msgstr "" + +#: application/views/user/edit.php:268 +msgid "Choose column 3" +msgstr "" + +#: application/views/user/edit.php:290 +msgid "Choose column 4" +msgstr "" + +#: application/views/user/edit.php:312 +msgid "Choose column 5 (only for logbook)" +msgstr "" + +#: application/views/user/edit.php:341 +msgid "QSO Logging Options" +msgstr "" + +#: application/views/user/edit.php:344 +msgid "Log End Times for QSOs Separately" +msgstr "" + +#: application/views/user/edit.php:350 +msgid "" +"Choose yes here if you want to log QSO start and end times separately. If " +"set to 'No' the end time will be the same as start time." +msgstr "" + +#: application/views/user/edit.php:355 +msgid "" +"Show profile picture of QSO partner from qrz.com/hamqth.com profile in the " +"log QSO section." +msgstr "" + +#: application/views/user/edit.php:361 +msgid "" +"Please set your qrz.com/hamqth.com credentials in the general config file." +msgstr "" + +#: application/views/user/edit.php:366 +msgid "Location auto lookup." +msgstr "" + +#: application/views/user/edit.php:372 +msgid "If set, gridsquare is fetched based on location name." +msgstr "" + +#: application/views/user/edit.php:376 +msgid "SOTA auto lookup gridsquare and name for summit." +msgstr "" + +#: application/views/user/edit.php:382 application/views/user/edit.php:392 +#: application/views/user/edit.php:402 +msgid "" +"If set, name and gridsquare is fetched from the API and filled in location " +"and locator." +msgstr "" + +#: application/views/user/edit.php:386 +msgid "WWFF auto lookup gridsquare and name for reference." +msgstr "" + +#: application/views/user/edit.php:396 +msgid "POTA auto lookup gridsquare and name for park." +msgstr "" + +#: application/views/user/edit.php:413 +msgid "Menu Options" +msgstr "" + +#: application/views/user/edit.php:416 +msgid "Show notes in the main menu." +msgstr "" + +#: application/views/user/edit.php:427 +msgid "Quicklog Field" +msgstr "" + +#: application/views/user/edit.php:433 +msgid "" +"With this feature, you can log callsigns using the search field in the " +"header." +msgstr "" + +#: application/views/user/edit.php:437 +msgid "Quicklog - Action on press Enter" +msgstr "" + +#: application/views/user/edit.php:440 +msgid "Log Callsign" +msgstr "" + +#: application/views/user/edit.php:443 +msgid "" +"What action should be performed when Enter is pressed in the quicklog field?" +msgstr "" + +#: application/views/user/edit.php:449 +msgid "Station Locations Quickswitch" +msgstr "" + +#: application/views/user/edit.php:454 +msgid "Show the Station Locations Quickswitch in the main menu" +msgstr "" + +#: application/views/user/edit.php:458 +msgid "UTC Time in Menu" +msgstr "" + +#: application/views/user/edit.php:463 +msgid "Show the current UTC Time in the menu" +msgstr "" + +#: application/views/user/edit.php:474 +msgid "Map Settings" +msgstr "" + +#: application/views/user/edit.php:481 +msgid "Icon" +msgstr "" + +#: application/views/user/edit.php:484 application/views/user/edit.php:488 +msgid "Not display" +msgstr "" + +#: application/views/user/edit.php:497 +msgid "QSO (by default)" +msgstr "" + +#: application/views/user/edit.php:516 +msgid "QSO (confirmed)" +msgstr "" + +#: application/views/user/edit.php:517 +msgid "(If 'No', displayed as 'QSO (by default))'" +msgstr "" + +#: application/views/user/edit.php:536 +msgid "Show Locator" +msgstr "" + +#: application/views/user/edit.php:555 +msgid "Previous QSL Type" +msgstr "" + +#: application/views/user/edit.php:559 +msgid "Select the type of QSL to show in the previous QSOs section." +msgstr "" + +#: application/views/user/edit.php:565 +msgid "QRZ" +msgstr "" + +#: application/views/user/edit.php:576 +msgid "Show Reference Fields on QSO Tab" +msgstr "" + +#: application/views/user/edit.php:580 +msgid "" +"The enabled items will be shown on the QSO tab rather than the General tab." +msgstr "" + +#: application/views/user/edit.php:619 +msgid "Default Values" +msgstr "" + +#: application/views/user/edit.php:627 +msgid "Settings for Default Band and Confirmation" +msgstr "" + +#: application/views/user/edit.php:630 +msgid "Default Band" +msgstr "" + +#: application/views/user/edit.php:640 +msgid "Default QSL-Methods" +msgstr "" + +#: application/views/user/edit.php:697 +msgid "Third Party Services" +msgstr "" + +#: application/views/user/edit.php:708 +msgid "Logbook of The World (LoTW) Username" +msgstr "" + +#: application/views/user/edit.php:714 +msgid "Logbook of The World (LoTW) Password" +msgstr "" + +#: application/views/user/edit.php:734 +msgid "eQSL.cc Username" +msgstr "" + +#: application/views/user/edit.php:740 +msgid "eQSL.cc Password" +msgstr "" + +#: application/views/user/edit.php:757 +msgid "Club Log" +msgstr "" + +#: application/views/user/edit.php:760 +msgid "Club Log Email/Callsign" +msgstr "" + +#: application/views/user/edit.php:762 +msgid "The Email or Callsign you use to login to Club Log" +msgstr "" + +#: application/views/user/edit.php:767 +msgid "Club Log Password" +msgstr "" + +#: application/views/user/edit.php:788 +msgid "Miscellaneous" +msgstr "" + +#: application/views/user/edit.php:796 +msgid "AMSAT Status Upload" +msgstr "" + +#: application/views/user/edit.php:799 +msgid "Upload status of SAT QSOs to" +msgstr "" + +#: application/views/user/edit.php:813 +msgid "Mastodonserver" +msgstr "" + +#: application/views/user/edit.php:816 +msgid "URL of Mastodonserver" +msgstr "" + +#: application/views/user/edit.php:818 +#, php-format +msgid "Main URL of your Mastodon server, e.g. %s" +msgstr "" + +#: application/views/user/edit.php:827 +msgid "Experimental" +msgstr "" + +#: application/views/user/edit.php:827 +msgid "Winkeyer" +msgstr "" + +#: application/views/user/edit.php:830 +msgid "Winkeyer Features Enabled" +msgstr "" + +#: application/views/user/edit.php:836 +#, php-format +msgid "" +"Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " +"before enabling." +msgstr "" + +#: application/views/user/edit.php:847 +msgid "Hams.at" +msgstr "" + +#: application/views/user/edit.php:850 +msgid "Private Feed Key" +msgstr "" + +#: application/views/user/edit.php:852 +#, php-format +msgctxt "Hint for Hamsat API Key; uses Link" +msgid "See your profile at %s." +msgstr "" + +#: application/views/user/edit.php:855 +msgid "Show Workable Passes Only" +msgstr "" + +#: application/views/user/edit.php:861 +msgid "" +"If enabled shows only workable passes based on the gridsquare set in your " +"hams.at account. Requires private feed key to be set." +msgstr "" + +#: application/views/user/edit.php:873 +msgid "Save Account" +msgstr "" + +#: application/views/user/forgot_password.php:33 +msgid "Forgot Password?" +msgstr "" + +#: application/views/user/forgot_password.php:34 +#: application/views/user/reset_password.php:9 +msgid "You can reset your password here." +msgstr "" + +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "" + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "" + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "" + +#: application/views/user/login.php:36 +msgid "MAINTENANCE MODE" +msgstr "" + +#: application/views/user/login.php:56 +msgid "Welcome to the Demo of Wavelog" +msgstr "" + +#: application/views/user/login.php:57 +msgid "This demo will be reset every night at 0200z." +msgstr "" + +#: application/views/user/login.php:60 +#, php-format +msgid "More Information about Wavelog on %sGithub%s." +msgstr "" + +#: application/views/user/login.php:79 +msgid "Forgot your password?" +msgstr "" + +#: application/views/user/login.php:85 +msgid "Keep me logged in" +msgstr "" + +#: application/views/user/profile.php:19 +msgid "Level" +msgstr "" + +#: application/views/user/profile.php:39 +msgid "First name" +msgstr "" + +#: application/views/user/profile.php:44 +msgid "Last name" +msgstr "" + +#: application/views/user/profile.php:50 +msgid "Edit profile" +msgstr "" + +#: application/views/user/reset_password.php:28 +msgid "Confirm Password" +msgstr "" + +#: application/views/version_dialog/index.php:20 +msgid "No Version Dialog text set. Go to the Admin Menu and set one." +msgstr "" + +#: application/views/version_dialog/index.php:60 +msgid "Error at parsing JSON-Data or got empty result from github." +msgstr "" + +#: application/views/version_dialog/index.php:63 +msgid "Error at getting the data from GitHub." +msgstr "" + +#: application/views/version_dialog/index.php:75 +msgid "Don't show again" +msgstr "" + +#: application/views/view_log/index.php:4 +msgid "" +"Displaying all QSOs of station locations which are linked to this logbook" +msgstr "" + +#: application/views/view_log/qso.php:6 +msgid "QSO Details" +msgstr "" + +#: application/views/view_log/qso.php:29 +msgid "QSL Management" +msgstr "" + +#: application/views/view_log/qso.php:131 +msgid "Total Distance" +msgstr "" + +#: application/views/view_log/qso.php:224 +msgid "Antenna Azimuth" +msgstr "" + +#: application/views/view_log/qso.php:231 +msgid "Antenna Elevation" +msgstr "" + +#: application/views/view_log/qso.php:373 +msgid "QSL Card has been sent via the bureau" +msgstr "" + +#: application/views/view_log/qso.php:375 +msgid "QSL Card has been sent via direct" +msgstr "" + +#: application/views/view_log/qso.php:377 +msgid "QSL Card has been sent electronically" +msgstr "" + +#: application/views/view_log/qso.php:379 +msgid "QSL Card has been sent via manager" +msgstr "" + +#: application/views/view_log/qso.php:381 +msgid "QSL Card has been sent" +msgstr "" + +#: application/views/view_log/qso.php:390 +msgid "QSL Card has been received via the bureau" +msgstr "" + +#: application/views/view_log/qso.php:392 +msgid "QSL Card has been received via direct" +msgstr "" + +#: application/views/view_log/qso.php:394 +msgid "QSL Card has been received electronically" +msgstr "" + +#: application/views/view_log/qso.php:396 +msgid "QSL Card has been received via manager" +msgstr "" + +#: application/views/view_log/qso.php:398 +msgid "QSL Card has been received" +msgstr "" + +#: application/views/view_log/qso.php:407 +msgid "This station uses LoTW." +msgstr "" + +#: application/views/view_log/qso.php:412 +#: application/views/view_log/qso.php:417 +#: application/views/view_log/qso.php:422 +#: application/views/view_log/qso.php:427 +msgid "This QSO was confirmed on" +msgstr "" + +#: application/views/view_log/qso.php:438 +msgid "More QSOs" +msgstr "" + +#: application/views/view_log/qso.php:506 +msgid "Details" +msgstr "" + +#: application/views/view_log/qso.php:633 +msgid "Uploaded QSL Card front image" +msgstr "" + +#: application/views/view_log/qso.php:638 +msgid "Upload QSL Card image" +msgstr "" + +#: application/views/view_log/qso.php:643 +msgid "Uploaded QSL Card back image" +msgstr "" + +#: application/views/view_log/qso.php:659 +msgid "Mark QSL Received (Electronic)" +msgstr "" + +#: application/views/view_log/qso.php:665 +msgid "Mark QSL Card Requested (Bureau)" +msgstr "" + +#: application/views/view_log/qso.php:667 +msgid "Mark QSL Card Requested (Direct)" +msgstr "" + +#: application/views/view_log/qso.php:682 +msgid "eQSL picture" +msgstr "" + +#: application/views/visitor/layout/footer.php:242 +msgid "CSV" +msgstr "" + +#: application/views/visitor/layout/header.php:74 +msgid "OQRS" +msgstr "" + +#: application/views/visitor/layout/header.php:82 +msgid "Visit Wavelog on Github" +msgstr "" + +#: application/views/visitor/layout/header.php:95 +msgid "Please enter a callsign!" +msgstr "" + +#: application/views/webadif/export.php:22 +msgid "" +"Here you can see and upload all QSOs which have not been previously uploaded " +"to QO-100 Dx Club." +msgstr "" + +#: application/views/webadif/export.php:33 +msgid "" +"You need to set a QO-100 Dx Club API key in your station profile. Only " +"station profiles with an API Key are displayed." +msgstr "" + +#: application/views/webadif/export.php:63 +msgid "" +"There are currently no outstanding QSOs that need to be uploaded to the " +"QO-100 Dx Club's API." +msgstr "" + +#: application/views/webadif/export.php:64 +msgid "Go ahead and turn on your QO-100 station!" +msgstr "" + +#: application/views/webadif/export.php:73 +#: application/views/webadif/export.php:113 +msgid "" +"None of your Logbooks are configured to export data to the QO-100 Dx Club's " +"API." +msgstr "" + +#: application/views/webadif/export.php:74 +#: application/views/webadif/export.php:114 +msgid "QO-100 Dx Club" +msgstr "" + +#: application/views/webadif/export.php:74 +#: application/views/webadif/export.php:114 +#, php-format +msgid "" +"To configure this feature, go to your profile page at the %s and %s Create " +"%s an API key." +msgstr "" + +#: application/views/webadif/export.php:75 +#: application/views/webadif/export.php:115 +#, php-format +msgid "" +"Then, navigate to your %s and configure your station with the key you have " +"created at the club." +msgstr "" + +#: application/views/webadif/export.php:83 +msgid "" +"Here you can mark as uploaded your QSOs which have not been previously " +"uploaded to QO-100 Dx Club." +msgstr "" + +#: application/views/webadif/export.php:107 +msgid "Mark QSOs as exported to QO-100 Dx Club" +msgstr "" + +#: application/views/webadif/mark_webadif.php:16 +msgid "The QSOs are marked as exported to QO-100 Dx Club." +msgstr "" + +#: application/views/widgets/oqrs.php:21 +msgid "Wavelog OQRS" +msgstr "" + +#: application/views/widgets/oqrs.php:76 +msgid "Wavelog OQRS Request" +msgstr "" + +#: application/views/widgets/oqrs.php:79 +#, php-format +msgid "Request a QSL card for your QSO with %s." +msgstr "" + +#: application/views/widgets/oqrs.php:83 +msgid "Your Callsign:" +msgstr "" + +#: application/views/widgets/oqrs.php:90 +msgid "Submit Request" +msgstr "" diff --git a/application/locale/cnr/index.html b/application/locale/cnr/index.html new file mode 100644 index 000000000..67f2d8864 --- /dev/null +++ b/application/locale/cnr/index.html @@ -0,0 +1,11 @@ + + + + 403 Forbidden + + + +

Directory access is forbidden.

+ + + diff --git a/application/locale/cs_CZ/LC_MESSAGES/messages.mo b/application/locale/cs_CZ/LC_MESSAGES/messages.mo index 297637b92..e14481699 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 7a6004316..fdb535d99 100644 --- a/application/locale/cs_CZ/LC_MESSAGES/messages.po +++ b/application/locale/cs_CZ/LC_MESSAGES/messages.po @@ -4,12 +4,14 @@ # # Ondřej Koloničný , 2024. # Michal Šiman , 2024. +# Filip Melik , 2024. +# Petr OK1PTR , 2024. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-09 07:24+0000\n" -"PO-Revision-Date: 2024-08-06 09:50+0000\n" -"Last-Translator: Michal Šiman \n" +"POT-Creation-Date: 2024-09-07 07:18+0000\n" +"PO-Revision-Date: 2024-08-26 12:58+0000\n" +"Last-Translator: Petr OK1PTR \n" "Language-Team: Czech \n" "Language: cs_CZ\n" @@ -17,10 +19,104 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 5.6.2\n" +"X-Generator: Weblate 5.7\n" -#: application/controllers/Accumulated.php:21 -#: application/views/interface_assets/header.php:150 +#: application/controllers/Accumulated.php:12 +#: application/controllers/Activators.php:13 +#: application/controllers/Activatorsmap.php:13 +#: application/controllers/Adif.php:13 application/controllers/Awards.php:16 +#: application/controllers/Backup.php:13 application/controllers/Backup.php:26 +#: application/controllers/Backup.php:63 application/controllers/Band.php:15 +#: application/controllers/Bandmap.php:9 +#: application/controllers/Cabrillo.php:16 +#: application/controllers/Cabrillo.php:53 +#: application/controllers/Cabrillo.php:80 +#: application/controllers/Cabrillo.php:135 +#: application/controllers/Calltester.php:11 +#: application/controllers/Cfdexport.php:18 +#: application/controllers/Cfdexport.php:29 +#: application/controllers/Components.php:13 +#: application/controllers/Contestcalendar.php:15 +#: application/controllers/Contesting.php:14 +#: application/controllers/Cron.php:26 application/controllers/Cron.php:162 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: application/controllers/Distancerecords.php:11 +#: application/controllers/Distances.php:11 +#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29 +#: application/controllers/Dxatlas.php:51 +#: application/controllers/Dxatlas.php:108 +#: application/controllers/Dxcalendar.php:8 +#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23 +#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 +#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 +#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:353 +#: application/controllers/Eqsl.php:420 application/controllers/Eqsl.php:436 +#: application/controllers/Eqsl.php:497 application/controllers/Hamsat.php:13 +#: application/controllers/Kmlexport.php:18 +#: application/controllers/Kmlexport.php:33 +#: application/controllers/Labels.php:26 +#: application/controllers/Logbookadvanced.php:16 +#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 +#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 +#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 +#: application/controllers/Notes.php:10 application/controllers/Options.php:15 +#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 +#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 +#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 +#: application/controllers/Qso.php:9 application/controllers/Qso.php:19 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:600 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Reg1test.php:18 +#: application/controllers/Reg1test.php:63 +#: application/controllers/Reg1test.php:102 +#: application/controllers/Reg1test.php:130 +#: application/controllers/Reg1test.php:164 +#: application/controllers/Satellite.php:18 +#: application/controllers/Satellite.php:37 +#: application/controllers/Satellite.php:44 +#: application/controllers/Satellite.php:53 +#: application/controllers/Satellite.php:72 +#: application/controllers/Satellite.php:87 +#: application/controllers/Satellite.php:95 +#: application/controllers/Satellite.php:103 +#: application/controllers/Satellite.php:117 +#: application/controllers/Satellite.php:135 +#: application/controllers/Satellite.php:146 +#: application/controllers/Satellite.php:162 +#: application/controllers/Satellite.php:190 +#: application/controllers/Satellite.php:201 +#: application/controllers/Satellite.php:223 +#: application/controllers/Satellite.php:236 +#: application/controllers/Satellite.php:244 +#: application/controllers/Sattimers.php:9 +#: application/controllers/Search.php:13 +#: application/controllers/Simplefle.php:7 +#: application/controllers/Station.php:17 +#: application/controllers/Stationsetup.php:15 +#: application/controllers/Themes.php:17 +#: application/controllers/Timeline.php:10 +#: application/controllers/Timeplotter.php:11 +#: application/controllers/Update.php:24 application/controllers/Update.php:273 +#: application/controllers/Update.php:284 +#: application/controllers/Update.php:295 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 +#: application/controllers/User_options.php:9 +msgid "You're not allowed to do that!" +msgstr "Přístup odepřen!" + +#: application/controllers/Accumulated.php:19 +#: application/views/interface_assets/header.php:152 msgid "Accumulated Statistics" msgstr "Kumulativní statistiky" @@ -30,24 +126,26 @@ msgid "Activated Gridsquare Map" msgstr "Mapa aktivovaných lokátorů" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:910 -#: application/controllers/Awards.php:942 +#: application/controllers/Awards.php:919 +#: application/controllers/Awards.php:951 #: application/controllers/Gridmap.php:31 -#: application/controllers/Visitor.php:374 -#: application/views/activators/index.php:101 +#: application/controllers/Visitor.php:385 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: application/views/visitor/layout/footer.php:22 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "Lokátory" #: application/controllers/Activated_gridmap.php:32 #: application/controllers/Gridmap.php:32 -#: application/controllers/Visitor.php:375 +#: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "Potvrzené lokátory" #: application/controllers/Activated_gridmap.php:33 #: application/controllers/Gridmap.php:33 -#: application/controllers/Visitor.php:376 +#: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "Nepotvrzené lokátory" @@ -56,12 +154,13 @@ msgid "Total gridsquares activated" msgstr "Celkem aktivovaných lokátorů" #: application/controllers/Activators.php:20 -#: application/views/activators/index.php:2 +#: application/views/activators/index.php:5 #: application/views/interface_assets/header.php:142 msgid "Gridsquare Activators" msgstr "" #: application/controllers/Activatorsmap.php:17 +#: application/views/activators/index.php:2 msgid "Activators Map" msgstr "" @@ -78,7 +177,7 @@ msgid "ADIF Export" msgstr "ADIF export" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:388 msgid "ADIF Import / Export" msgstr "ADIF import / export" @@ -91,20 +190,25 @@ msgstr "ADIF Import" msgid "Unsupported Filetype" msgstr "Nepodporovaný formát souboru" -#: application/controllers/Adif.php:245 +#: application/controllers/Adif.php:240 +#: application/views/adif/import_failed.php:12 +msgid "ADIF Import failed!" +msgstr "" + +#: application/controllers/Adif.php:254 msgid "Station Profile not valid for User" msgstr "Profil stanice není platný pro uživatele" -#: application/controllers/Adif.php:252 +#: application/controllers/Adif.php:261 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "ADIF importován" -#: application/controllers/Adif.php:263 +#: application/controllers/Adif.php:272 msgid "DCL Import" msgstr "DCL import" -#: application/controllers/Adif.php:319 +#: application/controllers/Adif.php:328 msgid "DCL Data Imported" msgstr "DCL data importována" @@ -134,25 +238,8 @@ msgstr "Popis %s API klíče byl aktualizován." msgid "API Key %s has been deleted" msgstr "API klíč %s byl smazán" -#: application/controllers/Api.php:118 -msgid "Key Disabled" -msgstr "Klíč je zakázaný" - -#: application/controllers/Api.php:118 -msgid "No Key Found" -msgstr "Klíč nebyl nalezen" - -#: application/controllers/Api.php:120 -msgid "Key Invalid - either not found or disabled" -msgstr "Neplatný klíč - nebyl nalezen nebo je zakázán" - -#: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 -msgid "Valid" -msgstr "Platný" - #: application/controllers/Awards.php:22 -#: application/views/interface_assets/header.php:158 +#: application/views/interface_assets/header.php:160 #: application/views/qso/edit_ajax.php:35 msgid "Awards" msgstr "Diplomy" @@ -167,12 +254,13 @@ msgstr "Diplomy" #: application/controllers/Awards.php:652 #: application/controllers/Awards.php:714 #: application/controllers/Awards.php:776 -#: application/controllers/Awards.php:847 -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:930 -#: application/controllers/Awards.php:1125 -#: application/controllers/Awards.php:1615 -#: application/controllers/Awards.php:1755 +#: application/controllers/Awards.php:856 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:939 +#: application/controllers/Awards.php:1140 +#: application/controllers/Awards.php:1639 +#: application/controllers/Awards.php:1779 +#: application/controllers/Awards.php:1908 #, php-format msgid "Awards - %s" msgstr "Diplomy - %s" @@ -180,13 +268,13 @@ msgstr "Diplomy - %s" #: application/controllers/Awards.php:92 #: application/views/awards/dok/index.php:149 #: application/views/bands/index.php:47 -#: application/views/contesting/index.php:170 -#: application/views/interface_assets/header.php:194 -#: application/views/logbookadvanced/index.php:613 +#: application/views/contesting/index.php:53 +#: application/views/interface_assets/header.php:198 +#: application/views/logbookadvanced/index.php:641 #: application/views/logbookadvanced/useroptions.php:130 -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:264 -#: application/views/qso/index.php:508 application/views/user/edit.php:603 -#: application/views/view_log/qso.php:351 +#: application/views/qso/edit_ajax.php:388 application/views/qso/index.php:264 +#: application/views/qso/index.php:518 application/views/user/edit.php:603 +#: application/views/view_log/qso.php:354 msgid "DOK" msgstr "DOK" @@ -194,15 +282,15 @@ msgstr "DOK" #: application/views/bandmap/list.php:112 application/views/bands/index.php:48 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 -#: application/views/interface_assets/header.php:164 +#: application/views/interface_assets/header.php:166 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:145 -#: application/views/logbookadvanced/index.php:580 +#: application/views/logbookadvanced/index.php:156 +#: application/views/logbookadvanced/index.php:608 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 -#: application/views/lotw_views/index.php:40 +#: application/views/lotw_views/index.php:36 #: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 #: application/views/search/cqzones_result.php:15 #: application/views/search/result.php:27 @@ -217,12 +305,12 @@ msgid "Awards - WAJA" msgstr "Diplomy - WAJA" #: application/controllers/Awards.php:327 application/views/bands/index.php:51 -#: application/views/interface_assets/header.php:210 +#: application/views/interface_assets/header.php:214 msgid "JCC" msgstr "JCC" #: application/controllers/Awards.php:375 application/views/bands/index.php:57 -#: application/views/interface_assets/header.php:170 +#: application/views/interface_assets/header.php:172 msgid "VUCC" msgstr "VUCC" @@ -231,15 +319,20 @@ msgid "Log View - VUCC" msgstr "" #: application/controllers/Awards.php:453 -#: application/controllers/Timeline.php:92 -#: application/controllers/Timeline.php:95 -#: application/controllers/Timeline.php:98 -#: application/controllers/Timeline.php:101 -#: application/controllers/Timeline.php:104 -#: application/controllers/Timeline.php:107 +#: application/controllers/Distancerecords.php:59 +#: application/controllers/Timeline.php:105 +#: application/controllers/Timeline.php:108 +#: application/controllers/Timeline.php:111 +#: application/controllers/Timeline.php:114 +#: application/controllers/Timeline.php:117 +#: application/controllers/Timeline.php:120 msgid "Log View" msgstr "Zobrazení deníku" +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr "" + #: application/controllers/Awards.php:457 msgid " and sat " msgstr " a sat " @@ -261,12 +354,12 @@ msgid " and " msgstr " a " #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1289 #: application/views/awards/index.php:8 application/views/bands/index.php:55 #: application/views/dashboard/index.php:9 -#: application/views/interface_assets/header.php:178 -#: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:259 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -274,10 +367,10 @@ msgstr " a " #: application/views/qslcard/searchresult.php:49 #: application/views/qslcard/searchresult.php:65 #: application/views/qslcard/searchresult.php:81 -#: application/views/qso/components/previous_contacts.php:83 -#: application/views/qso/edit_ajax.php:336 +#: application/views/qso/components/previous_contacts.php:82 +#: application/views/qso/edit_ajax.php:363 #: application/views/search/search_result_ajax.php:9 -#: application/views/station_profile/edit.php:216 +#: application/views/station_profile/edit.php:243 #: application/views/user/edit.php:234 application/views/user/edit.php:256 #: application/views/user/edit.php:278 application/views/user/edit.php:300 #: application/views/user/edit.php:323 @@ -287,18 +380,18 @@ msgid "SOTA" msgstr "SOTA" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1290 #: application/views/bands/index.php:60 #: application/views/dashboard/index.php:10 -#: application/views/interface_assets/header.php:172 -#: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:279 +#: application/views/interface_assets/header.php:176 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/index.php:290 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 -#: application/views/qso/components/previous_contacts.php:84 -#: application/views/qso/edit_ajax.php:341 +#: application/views/qso/components/previous_contacts.php:83 +#: application/views/qso/edit_ajax.php:368 #: application/views/search/search_result_ajax.php:10 -#: application/views/station_profile/edit.php:229 +#: application/views/station_profile/edit.php:256 #: application/views/user/edit.php:235 application/views/user/edit.php:257 #: application/views/user/edit.php:279 application/views/user/edit.php:301 #: application/views/user/edit.php:324 @@ -307,18 +400,18 @@ msgid "WWFF" msgstr "WWFF" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1291 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 -#: application/views/interface_assets/header.php:182 +#: application/views/interface_assets/header.php:186 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:274 +#: application/views/logbookadvanced/index.php:623 #: application/views/logbookadvanced/useroptions.php:106 -#: application/views/qso/components/previous_contacts.php:85 -#: application/views/qso/edit_ajax.php:346 +#: application/views/qso/components/previous_contacts.php:84 +#: application/views/qso/edit_ajax.php:373 #: application/views/search/search_result_ajax.php:11 -#: application/views/station_profile/edit.php:242 +#: application/views/station_profile/edit.php:269 #: application/views/user/edit.php:236 application/views/user/edit.php:258 #: application/views/user/edit.php:280 application/views/user/edit.php:302 #: application/views/user/edit.php:325 @@ -337,7 +430,7 @@ msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" #: application/controllers/Awards.php:714 application/views/bands/index.php:53 -#: application/views/interface_assets/header.php:188 +#: application/views/interface_assets/header.php:192 msgid "RAC" msgstr "RAC" @@ -345,74 +438,80 @@ msgstr "RAC" msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:847 +#: application/controllers/Awards.php:856 msgid "IOTA (Island On The Air)" msgstr "IOTA (Island On The Air)" -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:872 -#: application/views/interface_assets/header.php:230 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 +#: application/views/interface_assets/header.php:234 msgid "US Counties" msgstr "US Okresy" -#: application/controllers/Awards.php:887 +#: application/controllers/Awards.php:896 msgid "Log View - Counties" msgstr "" -#: application/controllers/Awards.php:894 +#: application/controllers/Awards.php:903 msgid "Awards - " msgstr "Diplomy - " -#: application/controllers/Awards.php:911 -#: application/controllers/Awards.php:943 +#: application/controllers/Awards.php:920 +#: application/controllers/Awards.php:952 msgid "Gridsquares worked" msgstr "" -#: application/controllers/Awards.php:912 -#: application/controllers/Awards.php:944 +#: application/controllers/Awards.php:921 +#: application/controllers/Awards.php:953 msgid "Gridsquares confirmed on LoTW" msgstr "Lokátory potvrzené LoTW" -#: application/controllers/Awards.php:913 -#: application/controllers/Awards.php:945 +#: application/controllers/Awards.php:922 +#: application/controllers/Awards.php:954 msgid "Gridsquares confirmed by paper QSL" -msgstr "" +msgstr "Lokátory potvrzené papírovým QSL" -#: application/controllers/Awards.php:930 +#: application/controllers/Awards.php:939 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial Award (FFMA)" -#: application/controllers/Awards.php:1125 -#: application/views/interface_assets/header.php:168 +#: application/controllers/Awards.php:1140 +#: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1143 +#: application/controllers/Awards.php:1158 msgid "Awards - SIG - " msgstr "Diplomy- SIG - " -#: application/controllers/Awards.php:1755 -#: application/views/awards/itu/index.php:18 +#: application/controllers/Awards.php:1779 +#: application/views/awards/itu/index.php:20 msgid "ITU Zones" msgstr "ITU zóny" +#: application/controllers/Awards.php:1908 +#: application/views/awards/wac/index.php:8 +#: application/views/interface_assets/header.php:174 +msgid "Worked All Continents (WAC)" +msgstr "" + #: application/controllers/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:284 msgid "Backup" msgstr "Zálohování" -#: application/controllers/Backup.php:48 +#: application/controllers/Backup.php:50 msgid "ADIF - Backup" msgstr "ADIF - Záloha" -#: application/controllers/Backup.php:80 +#: application/controllers/Backup.php:84 msgid "Notes - Backup" msgstr "Poznámky - Záloha" #: application/controllers/Band.php:25 application/views/bands/index.php:28 #: application/views/bands/index.php:32 -#: application/views/interface_assets/header.php:379 +#: application/views/interface_assets/header.php:383 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -420,16 +519,16 @@ msgstr "Pásmo" #: application/controllers/Band.php:40 application/controllers/Mode.php:41 msgid "Create Mode" -msgstr "" +msgstr "Vytvořit mód" #: application/controllers/Band.php:59 application/views/bands/index.php:150 msgid "Edit Band" -msgstr "" +msgstr "Upravit pásmo" #: application/controllers/Bandmap.php:28 #: application/controllers/Bandmap.php:69 -#: application/controllers/Options.php:137 -#: application/controllers/Options.php:148 +#: application/controllers/Options.php:145 +#: application/controllers/Options.php:156 #: application/views/options/sidebar.php:10 msgid "DXCluster" msgstr "DXCluster" @@ -439,7 +538,7 @@ msgid "Export Cabrillo" msgstr "" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:396 +#: application/views/interface_assets/header.php:402 msgid "CFD Export" msgstr "" @@ -448,7 +547,7 @@ msgstr "" #: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14 #: application/controllers/Update.php:16 msgid "Maintenance Mode is active. Try again later." -msgstr "" +msgstr "Probíhá údržba. Zkus později." #: application/controllers/Clublog.php:44 #: application/controllers/Clublog.php:66 @@ -456,7 +555,7 @@ msgid "No user has configured Clublog." msgstr "" #: application/controllers/Contestcalendar.php:19 -#: application/views/interface_assets/header.php:247 +#: application/views/interface_assets/header.php:251 msgid "Contest Calendar" msgstr "" @@ -465,44 +564,68 @@ msgstr "" msgid "Contest Logging" msgstr "Závodní deník" -#: application/controllers/Contesting.php:112 -#: application/views/interface_assets/header.php:274 +#: application/controllers/Contesting.php:113 +#: application/views/interface_assets/header.php:278 msgid "Contests" msgstr "Závody" -#: application/controllers/Contesting.php:126 +#: application/controllers/Contesting.php:127 msgid "Update Contest" msgstr "" #: application/controllers/Continents.php:25 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:57 -#: application/views/interface_assets/header.php:154 +#: application/views/interface_assets/header.php:156 msgid "Continents" msgstr "Kontinenty" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:284 +#: application/views/interface_assets/header.php:288 msgid "Cron Manager" msgstr "" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:154 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "" +#: application/controllers/Cron.php:274 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:278 +#, php-format +msgid "" +"Last run occurred more than %s seconds ago.%sPlease check your master cron! " +"It should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:281 +#, php-format +msgid "" +"Last run occurred more than %s minutes ago.%sSeems like your Mastercron " +"isn't running!%sIt should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:286 application/views/cron/index.php:29 +msgctxt "Master Cron" +msgid "Not running" +msgstr "Není spuštěno" + #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:392 +#: application/views/interface_assets/header.php:396 msgid "SOTA CSV Export" msgstr "" -#: application/controllers/Dashboard.php:108 -#: application/controllers/Visitor.php:132 +#: application/controllers/Dashboard.php:123 +#: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "" #: application/controllers/Dayswithqso.php:18 msgid "Number of days with QSOs each year" -msgstr "" +msgstr "Počet dní se spojením každý rok" #: application/controllers/Debug.php:93 msgid "Debug" @@ -526,7 +649,7 @@ msgstr "" #: application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" -msgstr "" +msgstr "Wavelog byl úspěšně aktualizován!" #: application/controllers/Debug.php:231 msgid "Selfupdate() not available. Check the Error Log." @@ -543,6 +666,12 @@ msgstr "" msgid "File Migration failed. Please check the Error Log." msgstr "" +#: application/controllers/Distancerecords.php:42 +#: application/controllers/Distancerecords.php:59 +#: application/views/interface_assets/header.php:146 +msgid "Satellite Distance Records" +msgstr "" + #: application/controllers/Distances.php:17 #: application/views/distances/index.php:5 #: application/views/distances/index.php:8 @@ -550,27 +679,31 @@ msgstr "" msgid "Distances Worked" msgstr "Vzdálenosti" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 #: application/views/distances/index.php:15 msgid "QSOs with" msgstr "" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 msgid "and band" msgstr "" +#: application/controllers/Distances.php:83 +msgid "and propagation" +msgstr "" + #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:394 msgid "DX Atlas Gridsquare Export" msgstr "DX Atlas export lokátorů" #: application/controllers/Dxcalendar.php:10 -#: application/views/interface_assets/header.php:245 +#: application/views/interface_assets/header.php:249 msgid "DX Calendar" msgstr "" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:325 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -588,19 +721,19 @@ msgstr "" msgid "eQSL QSO Upload" msgstr "" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:424 msgid "eQSL Tools" msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid " / Errors: " -msgstr "" +msgstr " / Chyby: " -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid "Successfully downloaded: " msgstr "" -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:481 msgid "eQSL Card Image Download" msgstr "" @@ -610,7 +743,7 @@ msgid "Gridsquare Map" msgstr "Mapa lokátorů" #: application/controllers/Gridmap.php:34 -#: application/controllers/Visitor.php:377 +#: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "Celkový počet lokátorů" @@ -631,7 +764,7 @@ msgid "No QSOs found to upload." msgstr "" #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:392 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "" @@ -644,59 +777,59 @@ msgstr "" msgid "Create Label Type" msgstr "" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:402 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:406 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:403 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:407 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 #: application/views/labels/index.php:76 msgid "Paper Type" msgstr "" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:404 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:408 #: application/views/labels/index.php:42 application/views/labels/index.php:77 msgid "Measurement" msgstr "" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:405 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:409 msgid "Top Margin" msgstr "" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:406 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:410 msgid "Left Margin" msgstr "" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:407 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:411 msgid "QSLs Horizontally" msgstr "" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:408 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:412 msgid "QSLs Vertically" msgstr "" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:409 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:413 msgid "Horizontal Space" msgstr "" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:410 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:414 msgid "Vertical Space" msgstr "" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:411 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:415 msgid "Label width" msgstr "" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:412 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:416 msgid "Label height" msgstr "" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:413 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:417 msgid "Size of Font" msgstr "" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:414 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:418 msgid "Number of QSOs on label" msgstr "" @@ -705,22 +838,22 @@ msgid "Create Paper Type" msgstr "" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:461 +#: application/controllers/Labels.php:465 msgid "Paper Name" msgstr "" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:462 +#: application/controllers/Labels.php:466 msgid "Paper Width" msgstr "" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:463 +#: application/controllers/Labels.php:467 msgid "Paper Height" msgstr "" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:471 +#: application/controllers/Labels.php:475 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -747,27 +880,27 @@ msgstr "" msgid "0 QSOs found for print!" msgstr "" -#: application/controllers/Labels.php:391 +#: application/controllers/Labels.php:395 msgid "Edit Label" msgstr "" -#: application/controllers/Labels.php:420 +#: application/controllers/Labels.php:424 msgid "Label was saved." msgstr "" -#: application/controllers/Labels.php:428 +#: application/controllers/Labels.php:432 msgid "Label was deleted." msgstr "" -#: application/controllers/Labels.php:450 +#: application/controllers/Labels.php:454 msgid "Edit Paper" msgstr "" -#: application/controllers/Labels.php:475 +#: application/controllers/Labels.php:479 msgid "Paper was saved." msgstr "" -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "Paper was deleted." msgstr "" @@ -790,20 +923,20 @@ msgstr "Logy stanice" msgid "Logbook" msgstr "" -#: application/controllers/Logbook.php:653 -#: application/controllers/Logbook.php:668 +#: application/controllers/Logbook.php:657 +#: application/controllers/Logbook.php:672 #: application/views/activated_gridmap/index.php:58 #: application/views/awards/dok/index.php:55 #: application/views/awards/dxcc/index.php:61 -#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/helvetia/index.php:55 #: application/views/awards/jcc/index.php:52 -#: application/views/awards/rac/index.php:45 +#: application/views/awards/rac/index.php:47 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:72 -#: application/views/awards/waja/index.php:53 -#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:55 +#: application/views/awards/was/index.php:55 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:568 +#: application/views/logbookadvanced/index.php:596 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -816,20 +949,21 @@ msgstr "" msgid "QSL" msgstr "" -#: application/controllers/Logbook.php:656 +#: application/controllers/Logbook.php:660 #: application/views/activated_gridmap/index.php:66 -#: application/views/awards/cq/index.php:58 +#: application/views/awards/cq/index.php:60 #: application/views/awards/dok/index.php:59 #: application/views/awards/dxcc/index.php:65 -#: application/views/awards/helvetia/index.php:57 -#: application/views/awards/itu/index.php:58 +#: application/views/awards/helvetia/index.php:59 +#: application/views/awards/itu/index.php:60 #: application/views/awards/jcc/index.php:56 -#: application/views/awards/rac/index.php:49 +#: application/views/awards/rac/index.php:51 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:80 -#: application/views/awards/waja/index.php:57 -#: application/views/awards/was/index.php:57 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -837,28 +971,29 @@ msgstr "" #: application/views/qslprint/qsolist.php:21 #: application/views/qslprint/qsolist.php:167 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:384 +#: application/views/qso/edit_ajax.php:411 #: application/views/search/result_search.php:22 #: application/views/search/search_result_ajax.php:298 #: application/views/search/search_result_ajax.php:313 #: application/views/timeline/index.php:60 application/views/user/edit.php:563 -#: application/views/user/edit.php:659 application/views/view_log/qso.php:408 +#: application/views/user/edit.php:659 application/views/view_log/qso.php:411 msgid "LoTW" msgstr "" -#: application/controllers/Logbook.php:659 +#: application/controllers/Logbook.php:663 #: application/views/activated_gridmap/index.php:74 -#: application/views/awards/cq/index.php:62 +#: application/views/awards/cq/index.php:64 #: application/views/awards/dok/index.php:63 #: application/views/awards/dxcc/index.php:69 -#: application/views/awards/helvetia/index.php:61 -#: application/views/awards/itu/index.php:62 +#: application/views/awards/helvetia/index.php:63 +#: application/views/awards/itu/index.php:64 #: application/views/awards/jcc/index.php:60 -#: application/views/awards/rac/index.php:53 +#: application/views/awards/rac/index.php:55 #: application/views/awards/wab/index.php:88 -#: application/views/awards/waja/index.php:61 -#: application/views/awards/was/index.php:61 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:52 +#: application/views/awards/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:117 #: application/views/logbookadvanced/useroptions.php:70 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 @@ -866,63 +1001,67 @@ msgstr "" #: application/views/qslprint/qsolist.php:18 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:151 -#: application/views/qso/edit_ajax.php:381 +#: application/views/qso/edit_ajax.php:408 #: application/views/search/result_search.php:16 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:273 -#: application/views/station_profile/edit.php:278 +#: application/views/station_profile/edit.php:305 #: application/views/timeline/index.php:64 application/views/user/edit.php:564 #: application/views/user/edit.php:667 application/views/user/edit.php:731 msgid "eQSL" msgstr "" -#: application/controllers/Logbook.php:665 +#: application/controllers/Logbook.php:669 #: application/views/awards/dok/index.php:71 #: application/views/awards/dxcc/index.php:77 #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 -#: application/views/awards/waja/index.php:69 +#: application/views/awards/waja/index.php:71 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 -#: application/views/station_profile/edit.php:325 +#: application/views/station_profile/edit.php:352 +#: application/views/timeline/index.php:68 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 -#: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/partial/log_ajax.php:85 +#: application/views/view_log/qso.php:426 msgid "Clublog" msgstr "" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1284 #: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:39 #: application/views/adif/dcl_success.php:33 -#: application/views/awards/cq/index.php:86 +#: application/views/awards/cq/index.php:88 #: application/views/awards/dok/index.php:91 #: application/views/awards/dxcc/index.php:162 -#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/helvetia/index.php:87 #: application/views/awards/iota/index.php:105 -#: application/views/awards/itu/index.php:86 +#: application/views/awards/itu/index.php:88 #: application/views/awards/jcc/index.php:88 -#: application/views/awards/rac/index.php:77 +#: application/views/awards/rac/index.php:79 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:53 -#: application/views/awards/waja/index.php:89 -#: application/views/awards/was/index.php:85 +#: application/views/awards/wac/index.php:110 +#: application/views/awards/waja/index.php:91 +#: application/views/awards/was/index.php:87 #: application/views/components/hamsat/table.php:30 -#: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:203 +#: application/views/contesting/index.php:108 +#: application/views/contesting/index.php:250 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 +#: 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/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:170 -#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/index.php:181 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -939,14 +1078,14 @@ msgstr "" #: application/views/qslcard/searchresult.php:76 #: application/views/qslprint/qslprint.php:24 #: application/views/qslprint/qsolist.php:9 -#: application/views/qso/components/previous_contacts.php:78 +#: application/views/qso/components/previous_contacts.php:77 #: application/views/qso/edit_ajax.php:119 application/views/qso/index.php:136 #: application/views/satellite/index.php:24 #: application/views/search/cqzones_result.php:10 #: application/views/search/lotw_unconfirmed_result.php:8 #: application/views/search/result_search.php:7 #: application/views/search/search_result_ajax.php:4 -#: application/views/simplefle/index.php:144 +#: application/views/simplefle/index.php:150 #: application/views/statistics/custom.php:60 #: application/views/statistics/custom_result.php:62 #: application/views/statistics/custom_result.php:88 @@ -958,17 +1097,17 @@ msgstr "" #: application/views/user/edit.php:295 application/views/user/edit.php:318 #: application/views/view_log/partial/log.php:9 #: application/views/view_log/partial/log_ajax.php:4 -#: application/views/view_log/qso.php:104 application/views/visitor/index.php:6 +#: application/views/view_log/qso.php:107 application/views/visitor/index.php:6 #: application/views/widgets/qsos.php:29 msgid "Mode" msgstr "Režim" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1285 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:111 -#: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:547 +#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:251 +#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -977,25 +1116,25 @@ msgstr "Režim" #: application/views/qslcard/searchresult.php:77 #: application/views/qslprint/qslprint.php:26 #: application/views/qslprint/qsolist.php:11 -#: application/views/qso/components/previous_contacts.php:79 +#: application/views/qso/components/previous_contacts.php:78 #: application/views/qso/edit_ajax.php:142 application/views/qso/index.php:177 #: application/views/search/search_result_ajax.php:5 -#: application/views/simplefle/index.php:145 +#: application/views/simplefle/index.php:151 #: application/views/user/edit.php:230 application/views/user/edit.php:252 #: application/views/user/edit.php:274 application/views/user/edit.php:296 #: application/views/user/edit.php:319 #: application/views/view_log/partial/log.php:10 #: application/views/view_log/partial/log_ajax.php:5 -#: application/views/view_log/qso.php:109 application/views/visitor/index.php:9 +#: application/views/view_log/qso.php:112 application/views/visitor/index.php:9 msgid "RST (S)" msgstr "" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1286 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:550 +#: application/views/contesting/index.php:189 +#: application/views/contesting/index.php:252 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1004,51 +1143,50 @@ msgstr "" #: application/views/qslcard/searchresult.php:78 #: application/views/qslprint/qslprint.php:27 #: application/views/qslprint/qsolist.php:12 -#: application/views/qso/components/previous_contacts.php:80 +#: application/views/qso/components/previous_contacts.php:79 #: application/views/qso/edit_ajax.php:147 application/views/qso/index.php:182 #: application/views/search/search_result_ajax.php:6 -#: application/views/simplefle/index.php:146 +#: application/views/simplefle/index.php:152 #: application/views/user/edit.php:231 application/views/user/edit.php:253 #: application/views/user/edit.php:275 application/views/user/edit.php:297 #: application/views/user/edit.php:320 #: application/views/view_log/partial/log.php:11 #: application/views/view_log/partial/log_ajax.php:6 -#: application/views/view_log/qso.php:114 +#: application/views/view_log/qso.php:117 #: application/views/visitor/index.php:12 msgid "RST (R)" msgstr "" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1287 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 #: application/views/qslcard/searchresult.php:47 #: application/views/qslcard/searchresult.php:63 #: application/views/qslcard/searchresult.php:79 -#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/components/previous_contacts.php:80 #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 -#: application/views/station_profile/index.php:43 #: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 -#: application/views/timeline/index.php:118 application/views/user/edit.php:232 +#: application/views/timeline/index.php:151 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 #: application/views/user/edit.php:298 application/views/user/edit.php:321 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:235 -#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:238 +#: application/views/view_log/qso.php:531 #: application/views/visitor/index.php:15 msgid "Country" msgstr "Země" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1288 #: application/views/awards/iota/index.php:169 #: application/views/bands/index.php:50 application/views/dashboard/index.php:8 -#: application/views/interface_assets/header.php:180 +#: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1057,11 +1195,11 @@ msgstr "Země" #: application/views/qslcard/searchresult.php:48 #: application/views/qslcard/searchresult.php:64 #: application/views/qslcard/searchresult.php:80 -#: application/views/qso/components/previous_contacts.php:82 -#: application/views/qso/edit_ajax.php:318 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 -#: application/views/timeline/index.php:202 application/views/user/edit.php:233 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:235 application/views/user/edit.php:233 #: application/views/user/edit.php:255 application/views/user/edit.php:277 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/view_log/partial/log_ajax.php:8 @@ -1069,17 +1207,17 @@ msgstr "Země" msgid "IOTA" msgstr "" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1292 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:20 -#: application/views/awards/rac/index.php:141 -#: application/views/awards/was/index.php:149 -#: application/views/contesting/index.php:173 +#: application/views/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 +#: application/views/contesting/index.php:56 #: application/views/dashboard/index.php:12 -#: application/views/logbookadvanced/edit.php:20 -#: application/views/logbookadvanced/edit.php:64 -#: application/views/logbookadvanced/index.php:162 -#: application/views/logbookadvanced/index.php:583 +#: application/views/logbookadvanced/edit.php:21 +#: application/views/logbookadvanced/edit.php:66 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:611 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1087,9 +1225,9 @@ msgstr "" #: application/views/qslcard/searchresult.php:50 #: application/views/qslcard/searchresult.php:66 #: application/views/qslcard/searchresult.php:82 -#: application/views/qso/components/previous_contacts.php:86 +#: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 -#: application/views/timeline/index.php:177 application/views/user/edit.php:237 +#: application/views/timeline/index.php:210 application/views/user/edit.php:237 #: application/views/user/edit.php:259 application/views/user/edit.php:281 #: application/views/user/edit.php:303 application/views/user/edit.php:326 #: application/views/view_log/partial/log_ajax.php:12 @@ -1097,20 +1235,21 @@ msgstr "" msgid "State" msgstr "Stát" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1293 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:17 -#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:13 +#: application/views/distancerecords/index.php:20 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:166 -#: application/views/logbookadvanced/index.php:556 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1119,38 +1258,39 @@ msgstr "Stát" #: application/views/qslcard/searchresult.php:51 #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 -#: application/views/qso/components/previous_contacts.php:87 +#: application/views/qso/components/previous_contacts.php:86 #: application/views/qso/edit_ajax.php:156 application/views/qso/index.php:279 +#: application/views/satellite/pass.php:28 #: application/views/search/cqzones_result.php:12 #: application/views/search/result.php:33 #: application/views/search/search_result_ajax.php:13 -#: application/views/simplefle/index.php:147 -#: application/views/station_profile/index.php:44 +#: application/views/simplefle/index.php:153 #: application/views/stationsetup/stationsetup.php:125 -#: application/views/timeline/index.php:257 application/views/user/edit.php:130 +#: application/views/timeline/index.php:290 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 #: application/views/user/edit.php:327 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:518 #: application/views/visitor/index.php:27 msgid "Gridsquare" msgstr "Locátor" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1294 #: application/views/activated_gridmap/index.php:108 #: application/views/awards/ffma/index.php:36 #: application/views/awards/gridmaster/index.php:35 #: 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/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/index.php:12 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 #: application/views/qslcard/searchresult.php:52 #: application/views/qslcard/searchresult.php:68 #: application/views/qslcard/searchresult.php:84 -#: application/views/qso/components/previous_contacts.php:88 +#: application/views/qso/components/previous_contacts.php:87 #: application/views/search/search_result_ajax.php:14 #: application/views/user/edit.php:239 application/views/user/edit.php:261 #: application/views/user/edit.php:283 application/views/user/edit.php:305 @@ -1160,32 +1300,33 @@ msgstr "Locátor" msgid "Distance" msgstr "Vzdálenost" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1295 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:8 -#: application/views/activators/index.php:7 +#: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 -#: application/views/awards/cq/index.php:72 +#: application/views/awards/cq/index.php:74 #: application/views/awards/dok/index.php:77 #: application/views/awards/dxcc/index.php:117 -#: application/views/awards/helvetia/index.php:71 +#: application/views/awards/helvetia/index.php:73 #: application/views/awards/iota/index.php:91 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:74 #: application/views/awards/jcc/index.php:74 #: application/views/awards/pota/index.php:35 -#: application/views/awards/rac/index.php:63 +#: application/views/awards/rac/index.php:65 #: application/views/awards/sig/qso_list.php:13 #: application/views/awards/sota/index.php:26 #: application/views/awards/vucc/index.php:21 #: application/views/awards/wab/index.php:22 -#: application/views/awards/waja/index.php:75 -#: application/views/awards/was/index.php:71 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/waja/index.php:77 +#: application/views/awards/was/index.php:73 #: application/views/awards/wwff/index.php:35 #: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:45 -#: application/views/contesting/index.php:70 -#: application/views/contesting/index.php:202 +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:249 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:549 application/views/dxatlas/index.php:31 @@ -1193,8 +1334,8 @@ msgstr "Vzdálenost" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1212,13 +1353,13 @@ msgstr "Vzdálenost" #: application/views/qslmanagement/index.php:24 #: application/views/qslprint/qslprint.php:25 #: application/views/qslprint/qsolist.php:10 -#: application/views/qso/components/previous_contacts.php:89 +#: application/views/qso/components/previous_contacts.php:88 #: application/views/qso/edit_ajax.php:83 application/views/qso/index.php:151 #: application/views/search/cqzones_result.php:11 #: application/views/search/lotw_unconfirmed_result.php:9 #: application/views/search/result_search.php:10 #: application/views/search/search_result_ajax.php:15 -#: application/views/simplefle/index.php:143 +#: application/views/simplefle/index.php:149 #: application/views/stationsetup/exportmapoptions.php:31 #: application/views/statistics/custom.php:53 #: application/views/statistics/custom_result.php:55 @@ -1236,72 +1377,71 @@ msgstr "Vzdálenost" msgid "Band" msgstr "Pásmo" -#: application/controllers/Logbook.php:1285 +#: application/controllers/Logbook.php:1296 #: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 -#: application/views/contesting/index.php:87 +#: application/views/contesting/index.php:138 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 #: application/views/qslcard/searchresult.php:70 #: application/views/qslcard/searchresult.php:86 -#: application/views/qso/components/previous_contacts.php:90 +#: application/views/qso/components/previous_contacts.php:89 #: application/views/qso/edit_ajax.php:71 application/views/qso/index.php:169 #: application/views/search/search_result_ajax.php:16 #: application/views/user/edit.php:228 application/views/user/edit.php:250 #: application/views/user/edit.php:272 application/views/user/edit.php:294 #: application/views/user/edit.php:317 #: application/views/view_log/partial/log_ajax.php:16 -#: application/views/view_log/qso.php:93 application/views/visitor/index.php:36 +#: application/views/view_log/qso.php:94 application/views/visitor/index.php:36 msgid "Frequency" msgstr "Frekvence" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1297 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:283 -#: application/views/logbookadvanced/index.php:598 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:626 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 #: application/views/qslcard/searchresult.php:87 -#: application/views/qso/components/previous_contacts.php:91 +#: application/views/qso/components/previous_contacts.php:90 #: application/views/search/search_result_ajax.php:17 #: application/views/simplefle/index.php:112 #: application/views/user/edit.php:240 application/views/user/edit.php:262 #: application/views/user/edit.php:284 application/views/user/edit.php:306 #: application/views/user/edit.php:329 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:538 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "Operátor" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1318 #: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:669 +#: application/views/interface_assets/footer.php:675 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:154 +#: application/views/logbookadvanced/index.php:165 #: application/views/lookup/index.php:31 -#: application/views/lotw_views/index.php:56 +#: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 #: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 -#: application/views/station_profile/create.php:73 -#: application/views/station_profile/edit.php:78 -#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 #: application/views/stationsetup/stationsetup.php:150 -#: application/views/timeline/index.php:134 +#: application/views/timeline/index.php:167 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 -#: application/views/view_log/qso.php:236 -#: application/views/view_log/qso.php:529 +#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:532 msgid "Deleted DXCC" msgstr "Smazané DXCC" @@ -1315,7 +1455,7 @@ msgstr "" #: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83 #: application/controllers/Lotw.php:125 application/views/adif/import.php:27 -#: application/views/interface_assets/header.php:423 +#: application/views/interface_assets/header.php:429 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1323,28 +1463,55 @@ msgstr "" msgid "Logbook of the World" msgstr "Logbook of the World" -#: application/controllers/Lotw.php:610 +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "" + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "" + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "" + +#: application/controllers/Lotw.php:413 +#, 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:617 msgid "LoTW ADIF Information" msgstr "" -#: application/controllers/Lotw.php:718 +#: application/controllers/Lotw.php:725 msgid "LoTW ADIF Import" msgstr "" -#: application/controllers/Lotw.php:830 +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "" + +#: application/controllers/Lotw.php:837 msgid "LoTW .TQ8 Upload" msgstr "" -#: application/controllers/Lotw.php:927 application/controllers/Lotw.php:932 +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "" + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 msgid "LoTW .TQ8 Sent" msgstr "" -#: application/controllers/Lotw.php:939 +#: application/controllers/Lotw.php:946 msgid "LoTW .TQ8 Not Sent" msgstr "" #: application/controllers/Mode.php:25 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:276 #: application/views/mode/index.php:15 msgid "Modes" msgstr "Režimy" @@ -1353,28 +1520,28 @@ msgstr "Režimy" msgid "Edit Mode" msgstr "" -#: application/controllers/Notes.php:19 +#: application/controllers/Notes.php:18 #: application/views/interface_assets/header.php:128 #: application/views/notes/add.php:9 application/views/notes/edit.php:10 #: application/views/notes/main.php:5 application/views/notes/main.php:8 #: application/views/notes/view.php:6 application/views/notes/view.php:9 #: application/views/qso/edit_ajax.php:36 -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:38 -#: application/views/qso/index.php:541 application/views/qso/index.php:586 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:590 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:38 +#: application/views/qso/index.php:563 application/views/qso/index.php:608 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:593 msgid "Notes" msgstr "Poznámky" -#: application/controllers/Notes.php:38 +#: application/controllers/Notes.php:37 msgid "Add Notes" msgstr "" -#: application/controllers/Notes.php:58 +#: application/controllers/Notes.php:64 #: application/views/oqrs/showrequests.php:88 msgid "Note" msgstr "" -#: application/controllers/Notes.php:79 application/views/notes/edit.php:7 +#: application/controllers/Notes.php:92 application/views/notes/edit.php:7 #: application/views/notes/view.php:19 msgid "Edit Note" msgstr "Editovat poznámku" @@ -1382,16 +1549,16 @@ msgstr "Editovat poznámku" #: application/controllers/Options.php:31 #: application/controllers/Options.php:41 #: application/controllers/Options.php:56 -#: application/controllers/Options.php:136 -#: application/controllers/Options.php:147 -#: application/controllers/Options.php:184 -#: application/controllers/Options.php:195 -#: application/controllers/Options.php:228 -#: application/controllers/Options.php:239 -#: application/controllers/Options.php:309 -#: application/controllers/Options.php:319 -#: application/controllers/Options.php:387 -#: application/controllers/Options.php:397 +#: application/controllers/Options.php:144 +#: application/controllers/Options.php:155 +#: application/controllers/Options.php:192 +#: application/controllers/Options.php:203 +#: application/controllers/Options.php:236 +#: application/controllers/Options.php:247 +#: application/controllers/Options.php:317 +#: application/controllers/Options.php:327 +#: application/controllers/Options.php:395 +#: application/controllers/Options.php:405 msgid "Wavelog Options" msgstr "Možnosti Wavelogu" @@ -1408,95 +1575,96 @@ msgstr "Vzhled" #: application/controllers/Options.php:110 #: application/controllers/Options.php:118 #: application/controllers/Options.php:126 +#: application/controllers/Options.php:134 msgid "Options saved" msgstr "" -#: application/controllers/Options.php:165 +#: application/controllers/Options.php:173 msgid "de continent changed to " msgstr "" -#: application/controllers/Options.php:170 +#: application/controllers/Options.php:178 msgid "Maximum age of spots changed to " msgstr "" -#: application/controllers/Options.php:175 +#: application/controllers/Options.php:183 msgid "DXCluster Cache URL changed to " msgstr "" -#: application/controllers/Options.php:185 -#: application/controllers/Options.php:196 +#: application/controllers/Options.php:193 +#: application/controllers/Options.php:204 msgid "Radio Settings" msgstr "Nastavení rádia" -#: application/controllers/Options.php:217 +#: application/controllers/Options.php:225 msgid "Radio Timeout Warning changed to " msgstr "Upozornění na časový limit rádia změněno na " -#: application/controllers/Options.php:229 -#: application/controllers/Options.php:240 +#: application/controllers/Options.php:237 +#: application/controllers/Options.php:248 #: application/views/options/sidebar.php:6 msgid "Email" msgstr "E-mail" -#: application/controllers/Options.php:297 +#: application/controllers/Options.php:305 msgid "The settings were saved successfully." msgstr "" -#: application/controllers/Options.php:299 +#: application/controllers/Options.php:307 msgid "Something went wrong with saving the settings. Try again." msgstr "" -#: application/controllers/Options.php:310 -#: application/controllers/Options.php:320 +#: application/controllers/Options.php:318 +#: application/controllers/Options.php:328 #: application/views/options/sidebar.php:8 msgid "OQRS Options" msgstr "OQRS možnosti" -#: application/controllers/Options.php:333 +#: application/controllers/Options.php:341 msgid "OQRS options have been saved." msgstr "Možnosti OQRS byly uloženy." -#: application/controllers/Options.php:373 -#: application/controllers/Options.php:378 +#: application/controllers/Options.php:381 +#: application/controllers/Options.php:386 msgid "Testmail failed. Something went wrong." msgstr "" -#: application/controllers/Options.php:375 +#: application/controllers/Options.php:383 msgid "Testmail sent. Email settings seem to be correct." msgstr "" -#: application/controllers/Options.php:388 -#: application/controllers/Options.php:398 +#: application/controllers/Options.php:396 +#: application/controllers/Options.php:406 msgid "Version Info Settings" msgstr "" -#: application/controllers/Options.php:404 +#: application/controllers/Options.php:412 msgid "Version Info Header changed to" msgstr "" -#: application/controllers/Options.php:408 +#: application/controllers/Options.php:416 msgid "Version Info Mode changed to" msgstr "" -#: application/controllers/Options.php:413 +#: application/controllers/Options.php:421 msgid "Version Info Custom Text saved!" msgstr "" -#: application/controllers/Options.php:424 +#: application/controllers/Options.php:432 msgid "Version Info will be shown to all users again" msgstr "" -#: application/controllers/Options.php:432 +#: application/controllers/Options.php:440 msgid "Version Info will not be shown to any user" msgstr "" -#: application/controllers/Oqrs.php:22 application/controllers/Oqrs.php:61 -#: application/controllers/Oqrs.php:73 +#: application/controllers/Oqrs.php:46 application/controllers/Oqrs.php:85 +#: application/controllers/Oqrs.php:97 msgid "Log Search & OQRS" msgstr "" -#: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:413 +#: application/controllers/Oqrs.php:127 +#: application/views/interface_assets/header.php:419 msgid "OQRS Requests" msgstr "OQRS požadavky" @@ -1504,8 +1672,49 @@ msgstr "OQRS požadavky" msgid "QRB Calculator" msgstr "" +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "" + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" + #: application/controllers/Qrz.php:173 -#: application/views/interface_assets/header.php:426 +#: application/views/interface_assets/header.php:432 msgid "QRZ Logbook" msgstr "" @@ -1517,8 +1726,8 @@ msgstr "" msgid "QRZ ADIF Information" msgstr "" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:261 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:277 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1541,13 +1750,13 @@ msgid "Add QSO" msgstr "" #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Hardware Interfaces" msgstr "Hardwarové rozhraní" #: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 +#: application/views/contesting/index.php:143 #: application/views/qso/index.php:312 msgid "Radio" msgstr "Rádio" @@ -1557,10 +1766,10 @@ msgid "Timestamp" msgstr "" #: application/controllers/Radio.php:52 -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 +#: application/views/logbookadvanced/index.php:550 +#: application/views/lotw_views/index.php:43 #: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 +#: application/views/simplefle/index.php:177 #: application/views/stationsetup/exportmapoptions.php:5 #: application/views/statistics/custom.php:31 #: application/views/statistics/custom_result.php:33 @@ -1568,7 +1777,7 @@ msgid "Options" msgstr "Možnosti" #: application/controllers/Radio.php:90 -#: application/views/contesting/index.php:96 +#: application/views/contesting/index.php:147 #: application/views/qso/index.php:316 msgid "last updated" msgstr "" @@ -1584,26 +1793,24 @@ msgstr "" #: application/controllers/Radio.php:105 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2323 -#: application/views/interface_assets/footer.php:2341 -#: application/views/interface_assets/footer.php:2362 -#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2337 +#: application/views/interface_assets/footer.php:2355 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 #: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:514 -#: application/views/lotw_views/index.php:118 +#: application/views/logbookadvanced/index.php:542 +#: application/views/lotw_views/index.php:114 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 #: application/views/qslcard/index.php:65 #: application/views/satellite/edit.php:40 #: application/views/satellite/index.php:26 #: application/views/search/stored_queries.php:22 -#: application/views/station_profile/index.php:55 -#: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 #: application/views/stationsetup/stationsetup.php:137 #: application/views/stationsetup/stationsetup.php:192 -#: application/views/themes/index.php:107 application/views/user/main.php:54 -#: application/views/view_log/qso.php:613 +#: application/views/themes/index.php:107 application/views/user/index.php:57 +#: application/views/view_log/qso.php:616 msgid "Delete" msgstr "Smazat" @@ -1611,11 +1818,15 @@ msgstr "Smazat" msgid "No CAT interfaced radios found." msgstr "" -#: application/controllers/Satellite.php:37 +#: application/controllers/Reg1test.php:25 +msgid "Export EDI" +msgstr "" + +#: application/controllers/Satellite.php:39 msgid "Create Satellite" msgstr "" -#: application/controllers/Satellite.php:60 +#: application/controllers/Satellite.php:66 msgid "Edit Satellite" msgstr "" @@ -1628,10 +1839,7 @@ msgstr "" #: application/views/awards/counties/index.php:8 #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:19 -#: application/views/awards/was/index.php:21 -#: application/views/dashboard/index.php:64 -#: application/views/dashboard/index.php:73 -#: application/views/dashboard/index.php:82 +#: application/views/awards/was/index.php:23 #: application/views/simplefle/index.php:16 msgid "here" msgstr "" @@ -1643,9 +1851,10 @@ msgstr "" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:336 -#: application/views/interface_assets/header.php:343 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:340 +#: application/views/interface_assets/header.php:347 +#: application/views/logbookadvanced/index.php:538 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1659,8 +1868,8 @@ msgstr "" #: application/views/search/lotw_unconfirmed.php:37 #: application/views/search/main.php:4 application/views/search/main.php:12 #: application/views/search/main.php:33 -#: application/views/visitor/layout/header.php:99 -#: application/views/visitor/layout/header.php:100 +#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:98 msgid "Search" msgstr "" @@ -1678,15 +1887,23 @@ msgid "" "date" msgstr "" -#: application/controllers/Station.php:35 -#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/controllers/Station.php:36 +#: application/controllers/Stationsetup.php:226 +msgid "Create Station Location" +msgstr "" + +#: application/controllers/Station.php:51 +msgid "Edit Station Location: " +msgstr "" + +#: application/controllers/Station.php:59 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 -#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/edit.php:19 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:427 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 @@ -1694,22 +1911,13 @@ msgstr "" msgid "Station Location" msgstr "Umístění stanice" -#: application/controllers/Station.php:55 -#: application/controllers/Stationsetup.php:226 -msgid "Create Station Location" -msgstr "" - -#: application/controllers/Station.php:70 -msgid "Edit Station Location: " -msgstr "" - -#: application/controllers/Station.php:92 +#: application/controllers/Station.php:73 msgid "Duplicate Station Location:" msgstr "" #: application/controllers/Stationsetup.php:35 -#: application/views/interface_assets/header.php:377 -#: application/views/interface_assets/header.php:488 +#: application/views/interface_assets/header.php:381 +#: application/views/interface_assets/header.php:494 msgid "Station Setup" msgstr "" @@ -1727,7 +1935,7 @@ msgstr "" #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 #: application/controllers/Stationsetup.php:436 -#: application/views/qso/index.php:608 +#: application/views/qso/index.php:630 msgid "Error" msgstr "" @@ -1759,9 +1967,10 @@ msgstr "" #: application/views/options/appearance.php:83 #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 +#: application/views/options/appearance.php:110 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:259 -#: application/views/station_profile/edit.php:312 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 msgid "Disabled" @@ -1773,7 +1982,7 @@ msgid "Set as Active Logbook" msgstr "" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:486 +#: application/views/interface_assets/header.php:492 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1796,20 +2005,17 @@ msgid "Are you sure you want to delete the public slug?" msgstr "" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "" "Are you sure you want to make the following station the active station: " msgstr "" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "" #: application/controllers/Stationsetup.php:351 -#: application/views/station_profile/index.php:71 #: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "" @@ -1818,54 +2024,45 @@ msgstr "" #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:28 -#: application/views/station_profile/index.php:76 #: application/views/stationsetup/stationsetup.php:161 -#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/user/index.php:90 application/views/user/index.php:92 msgid "QSO" msgstr "" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 -#: application/views/cron/index.php:56 -#: application/views/interface_assets/footer.php:535 -#: application/views/interface_assets/footer.php:544 +#: application/views/cron/index.php:58 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 #: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:541 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 -#: application/views/station_profile/index.php:46 -#: application/views/station_profile/index.php:79 #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 -#: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/views/themes/index.php:104 application/views/user/index.php:52 msgid "Edit" msgstr "Upravit" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:99 #: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:54 -#: application/views/station_profile/index.php:101 #: application/views/stationsetup/stationsetup.php:136 #: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "" #: application/controllers/Stationsetup.php:367 -#: application/views/station_profile/index.php:47 -#: application/views/station_profile/index.php:82 #: application/views/stationsetup/stationsetup.php:129 #: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "" #: application/controllers/Stationsetup.php:372 -#: application/views/station_profile/index.php:105 #: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "" @@ -1898,7 +2095,7 @@ msgid "QSL Statistics" msgstr "" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:282 msgid "Themes" msgstr "Témata" @@ -1910,14 +2107,14 @@ msgstr "" msgid "Edit Theme" msgstr "" -#: application/controllers/Timeline.php:17 -#: application/views/interface_assets/header.php:148 +#: application/controllers/Timeline.php:15 +#: application/views/interface_assets/header.php:150 #: application/views/timeline/index.php:2 msgid "Timeline" msgstr "Časová osa" #: application/controllers/Timeplotter.php:17 -#: application/views/interface_assets/header.php:152 +#: application/views/interface_assets/header.php:154 #: application/views/timeplotter/index.php:9 msgid "Timeplotter" msgstr "Graf času" @@ -1958,130 +2155,154 @@ msgstr "" msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:268 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:272 msgid "User Accounts" msgstr "" -#: application/controllers/User.php:52 +#: application/controllers/User.php:76 msgid "Add User" msgstr "" -#: application/controllers/User.php:166 +#: application/controllers/User.php:190 msgid "Users" msgstr "" -#: application/controllers/User.php:240 application/controllers/User.php:673 +#: application/controllers/User.php:264 application/controllers/User.php:697 msgid "Edit User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 -#: application/views/user/main.php:3 application/views/user/main.php:46 +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 msgid "User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 +#: application/controllers/User.php:689 application/controllers/User.php:692 msgid "edited" msgstr "" -#: application/controllers/User.php:722 +#: application/controllers/User.php:746 msgid "Profile" msgstr "" -#: application/controllers/User.php:779 +#: application/controllers/User.php:803 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "" -#: application/controllers/User.php:843 application/controllers/User.php:853 +#: application/controllers/User.php:867 application/controllers/User.php:877 msgid "Login failed. Try again." msgstr "" -#: application/controllers/User.php:860 -#: application/views/interface_assets/header.php:356 -#: application/views/user/login.php:89 -#: application/views/visitor/layout/header.php:88 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:360 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "Přihlásit se" -#: application/controllers/User.php:868 -msgid "User logged in" -msgstr "" - -#: application/controllers/User.php:899 +#: application/controllers/User.php:922 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " "Only administrators are currently allowed to log in." msgstr "" -#: application/controllers/User.php:902 +#: application/controllers/User.php:925 msgid "Incorrect username or password!" msgstr "" -#: application/controllers/User.php:919 +#: application/controllers/User.php:942 #, php-format msgid "User %s logged out." msgstr "" -#: application/controllers/User.php:933 +#: application/controllers/User.php:956 msgid "Password Reset is disabled on the Demo!" msgstr "" -#: application/controllers/User.php:946 +#: application/controllers/User.php:969 msgid "Forgot Password" msgstr "" -#: application/controllers/User.php:996 application/views/user/main.php:8 +#: application/controllers/User.php:1019 application/views/user/index.php:8 msgid "Email settings are incorrect." msgstr "" -#: application/controllers/User.php:1000 application/controllers/User.php:1005 +#: application/controllers/User.php:1023 application/controllers/User.php:1028 msgid "Password Reset Processed." msgstr "" -#: application/controllers/User.php:1107 +#: application/controllers/User.php:1129 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "Obnovit heslo" +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "" + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "" + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "" + #: application/controllers/Visitor.php:50 -#: application/controllers/Visitor.php:79 -#: application/controllers/Visitor.php:142 -#: application/controllers/Visitor.php:169 -#: application/controllers/Visitor.php:199 -#: application/controllers/Visitor.php:478 +#: application/controllers/Visitor.php:81 +#: application/controllers/Visitor.php:148 +#: application/controllers/Visitor.php:175 +#: application/controllers/Visitor.php:210 +#: application/controllers/Visitor.php:472 #: application/controllers/Widgets.php:40 msgid "Unknown Public Page." msgstr "" -#: application/controllers/Visitor.php:74 -#: application/controllers/Visitor.php:165 -#: application/controllers/Visitor.php:195 -#: application/controllers/Visitor.php:474 +#: application/controllers/Visitor.php:76 +#: application/controllers/Visitor.php:171 +#: application/controllers/Visitor.php:206 +#: application/controllers/Visitor.php:468 #: application/controllers/Widgets.php:36 msgid "Empty Logbook" msgstr "" -#: application/controllers/Visitor.php:205 +#: application/controllers/Visitor.php:216 msgid "Satellite Gridsquare Map" msgstr "" -#: application/controllers/Visitor.php:411 +#: application/controllers/Visitor.php:405 #: application/views/stationsetup/stationsetup.php:35 msgid "Public Search" msgstr "" -#: application/controllers/Visitor.php:444 +#: application/controllers/Visitor.php:438 msgid "Export Map" msgstr "" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:427 +#: application/views/interface_assets/header.php:433 msgid "QO-100 Dx Club Upload" msgstr "" @@ -2093,6 +2314,84 @@ msgstr "" msgid "No stations found that are using Wavelog OQRS." msgstr "" +#: application/libraries/Subdivisions.php:31 +msgctxt "Division Name (States in various countries)." +msgid "Province" +msgstr "" + +#: application/libraries/Subdivisions.php:39 +msgctxt "Division Name (States in various countries)." +msgid "Oblast" +msgstr "" + +#: application/libraries/Subdivisions.php:41 +#: application/libraries/Subdivisions.php:47 +msgctxt "Division Name (States in various countries)." +msgid "Region" +msgstr "" + +#: application/libraries/Subdivisions.php:45 +msgctxt "Division Name (States in various countries)." +msgid "Department" +msgstr "" + +#: application/libraries/Subdivisions.php:49 +msgctxt "Division Name (States in various countries)." +msgid "Municipality" +msgstr "" + +#: application/libraries/Subdivisions.php:51 +msgctxt "Division Name (States in various countries)." +msgid "Federal State" +msgstr "" + +#: application/libraries/Subdivisions.php:56 +#: application/libraries/Subdivisions.php:94 +msgctxt "Division Name (States in various countries)." +msgid "County" +msgstr "" + +#: application/libraries/Subdivisions.php:60 +#: application/libraries/Subdivisions.php:85 +msgctxt "Division Name (States in various countries)." +msgid "District" +msgstr "" + +#: application/libraries/Subdivisions.php:62 +msgctxt "Division Name (States in various countries)." +msgid "Canton" +msgstr "" + +#: application/libraries/Subdivisions.php:64 +msgctxt "Division Name (States in various countries)." +msgid "US State" +msgstr "" + +#: application/libraries/Subdivisions.php:67 +msgctxt "Division Name (States in various countries)." +msgid "Prefecture" +msgstr "" + +#: application/libraries/Subdivisions.php:69 +msgctxt "Division Name (States in various countries)." +msgid "State" +msgstr "" + +#: application/libraries/Subdivisions.php:78 +msgctxt "Division Name (States in various countries)." +msgid "US County" +msgstr "" + +#: application/libraries/Subdivisions.php:90 +msgctxt "Division Name (States in various countries)." +msgid "DME" +msgstr "" + +#: application/libraries/Subdivisions.php:92 +msgctxt "Division Name (States in various countries)." +msgid "City / Ku / Gun" +msgstr "" + #: application/models/Eqslmethods_model.php:281 msgid "Your eQSL username and/or password is incorrect." msgstr "" @@ -2129,31 +2428,31 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4255 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4261 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4266 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4269 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4272 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4275 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4278 msgid "unknown" msgstr "" @@ -2182,7 +2481,7 @@ msgid "Accumulated number of WAJA worked" msgstr "" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:222 +#: application/views/dashboard/index.php:238 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2195,7 +2494,7 @@ msgid "Yearly" msgstr "" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:243 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Měsíc" @@ -2211,29 +2510,33 @@ msgstr "" #: application/views/accumulate/index.php:24 #: application/views/accumulate/index.php:34 +#: application/views/accumulate/index.php:83 #: application/views/activated_gridmap/index.php:10 #: application/views/activated_gridmap/index.php:22 #: application/views/activated_gridmap/index.php:32 #: application/views/activated_gridmap/index.php:41 -#: application/views/activators/index.php:10 -#: application/views/awards/cq/index.php:75 -#: application/views/awards/cq/index.php:89 +#: application/views/activators/index.php:13 +#: application/views/awards/cq/index.php:77 +#: application/views/awards/cq/index.php:91 #: application/views/awards/dok/index.php:94 #: application/views/awards/dxcc/index.php:134 #: application/views/awards/dxcc/index.php:150 #: application/views/awards/dxcc/index.php:165 -#: application/views/awards/helvetia/index.php:88 +#: application/views/awards/helvetia/index.php:90 #: application/views/awards/iota/index.php:108 -#: application/views/awards/itu/index.php:75 -#: application/views/awards/itu/index.php:89 +#: application/views/awards/itu/index.php:77 +#: application/views/awards/itu/index.php:91 #: application/views/awards/jcc/index.php:91 -#: application/views/awards/rac/index.php:80 +#: application/views/awards/rac/index.php:82 #: application/views/awards/wab/index.php:24 #: application/views/awards/wab/index.php:36 #: application/views/awards/wab/index.php:46 #: application/views/awards/wab/index.php:55 -#: application/views/awards/waja/index.php:92 -#: application/views/awards/was/index.php:88 +#: application/views/awards/wac/index.php:81 +#: application/views/awards/wac/index.php:97 +#: application/views/awards/wac/index.php:113 +#: application/views/awards/waja/index.php:94 +#: application/views/awards/was/index.php:90 #: application/views/bandmap/list.php:71 application/views/bandmap/list.php:78 #: application/views/bandmap/list.php:90 application/views/bands/index.php:117 #: application/views/cabrillo/index.php:65 @@ -2244,6 +2547,7 @@ msgstr "" #: application/views/csv/index.php:94 application/views/distances/index.php:21 #: application/views/distances/index.php:36 #: application/views/distances/index.php:46 +#: application/views/distances/index.php:56 #: application/views/dxatlas/index.php:21 #: application/views/dxatlas/index.php:33 #: application/views/dxatlas/index.php:44 @@ -2255,28 +2559,29 @@ msgstr "" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1435 -#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1448 +#: application/views/interface_assets/footer.php:1587 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:172 #: application/views/logbookadvanced/index.php:183 #: application/views/logbookadvanced/index.php:194 -#: application/views/logbookadvanced/index.php:203 -#: application/views/logbookadvanced/index.php:212 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:205 +#: application/views/logbookadvanced/index.php:214 +#: application/views/logbookadvanced/index.php:223 #: application/views/logbookadvanced/index.php:248 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:321 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:374 -#: application/views/logbookadvanced/index.php:385 -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:259 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:423 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2287,11 +2592,12 @@ msgstr "" #: application/views/stationsetup/exportmapoptions.php:33 #: application/views/timeline/index.php:10 #: application/views/timeline/index.php:22 +#: application/views/timeline/index.php:77 #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 #: application/views/user/edit.php:633 -#: application/views/visitor/layout/footer.php:169 +#: application/views/visitor/layout/footer.php:171 msgid "All" msgstr "" @@ -2329,29 +2635,254 @@ msgstr "" msgid "Period" msgstr "" -#: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: application/views/accumulate/index.php:80 +#: application/views/distances/index.php:53 +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/timeline/index.php:74 +msgid "Propagation" +msgstr "" + +#: application/views/accumulate/index.php:84 +#: application/views/distances/index.php:57 +#: application/views/timeline/index.php:78 +msgid "All but SAT" +msgstr "" + +#: application/views/accumulate/index.php:85 +#: application/views/distances/index.php:58 +#: application/views/gridmap/index.php:42 +#: application/views/logbookadvanced/edit.php:142 +#: application/views/logbookadvanced/index.php:307 +#: application/views/timeline/index.php:79 +msgid "None/Empty" +msgstr "" + +#: application/views/accumulate/index.php:86 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/logbookadvanced/index.php:225 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:414 +#: application/views/timeline/index.php:80 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/accumulate/index.php:87 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/logbookadvanced/index.php:226 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:415 +#: application/views/timeline/index.php:81 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/accumulate/index.php:88 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/logbookadvanced/index.php:227 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:416 +#: application/views/timeline/index.php:82 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/accumulate/index.php:89 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/logbookadvanced/index.php:228 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:417 +#: application/views/timeline/index.php:83 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/accumulate/index.php:90 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/logbookadvanced/index.php:229 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:418 +#: application/views/timeline/index.php:84 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/accumulate/index.php:91 +#: 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/logbookadvanced/index.php:230 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:419 +#: application/views/timeline/index.php:85 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/accumulate/index.php:92 +#: 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/logbookadvanced/index.php:231 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:420 +#: application/views/timeline/index.php:86 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/accumulate/index.php:93 +#: 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/logbookadvanced/index.php:232 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:421 +#: application/views/timeline/index.php:87 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/accumulate/index.php:94 +#: 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/logbookadvanced/index.php:233 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:422 +#: application/views/timeline/index.php:88 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/accumulate/index.php:95 +#: 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/logbookadvanced/index.php:234 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:423 +#: application/views/timeline/index.php:89 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/accumulate/index.php:96 +#: 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/logbookadvanced/index.php:235 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:424 +#: application/views/timeline/index.php:90 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/accumulate/index.php:97 +#: 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/logbookadvanced/index.php:236 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:425 +#: application/views/timeline/index.php:91 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/accumulate/index.php:98 +#: 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/logbookadvanced/index.php:237 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:426 +#: application/views/timeline/index.php:92 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/accumulate/index.php:99 +#: 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/logbookadvanced/index.php:238 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:427 +#: application/views/timeline/index.php:93 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/accumulate/index.php:100 +#: 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/logbookadvanced/index.php:239 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:428 +#: application/views/timeline/index.php:94 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/accumulate/index.php:101 +#: 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/logbookadvanced/index.php:240 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:429 +#: application/views/timeline/index.php:95 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Satelit" + +#: application/views/accumulate/index.php:102 +#: 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/logbookadvanced/index.php:241 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:430 +#: application/views/timeline/index.php:96 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/accumulate/index.php:103 +#: 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/logbookadvanced/index.php:242 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:431 +#: application/views/timeline/index.php:97 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/accumulate/index.php:112 +#: application/views/activators/index.php:53 +#: application/views/awards/cq/index.php:113 #: application/views/awards/dok/index.php:127 #: application/views/awards/dxcc/index.php:187 -#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/helvetia/index.php:112 #: application/views/awards/iota/index.php:130 -#: application/views/awards/itu/index.php:111 +#: application/views/awards/itu/index.php:113 #: application/views/awards/jcc/index.php:113 -#: application/views/awards/rac/index.php:102 -#: application/views/awards/waja/index.php:114 -#: application/views/awards/was/index.php:110 -#: application/views/distances/index.php:53 +#: application/views/awards/rac/index.php:104 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:79 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 #: application/views/stationsetup/exportmapoptions.php:6 -#: application/views/timeline/index.php:72 -#: application/views/timeline/index.php:137 -#: application/views/timeline/index.php:164 -#: application/views/timeline/index.php:189 -#: application/views/timeline/index.php:218 -#: application/views/timeline/index.php:243 -#: application/views/timeline/index.php:270 +#: application/views/timeline/index.php:105 +#: application/views/timeline/index.php:170 +#: application/views/timeline/index.php:197 +#: application/views/timeline/index.php:222 +#: application/views/timeline/index.php:251 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:303 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "" @@ -2359,12 +2890,15 @@ msgstr "" #: application/views/activated_gridmap/index.php:20 #: application/views/awards/dxcc/index.php:131 #: application/views/awards/wab/index.php:34 +#: application/views/awards/wac/index.php:78 #: 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/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/edit.php:17 +#: application/views/logbookadvanced/index.php:203 #: application/views/satellite/flightpath.php:34 +#: application/views/satellite/passtable.php:5 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2373,9 +2907,10 @@ msgstr "Satelit" #: application/views/activated_gridmap/index.php:30 #: application/views/awards/dxcc/index.php:147 #: application/views/awards/wab/index.php:44 +#: application/views/awards/wac/index.php:94 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:212 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2390,16 +2925,17 @@ msgid "Confirmation" msgstr "" #: application/views/activated_gridmap/index.php:82 -#: application/views/awards/cq/index.php:66 +#: application/views/awards/cq/index.php:68 #: application/views/awards/dok/index.php:67 #: application/views/awards/dxcc/index.php:73 -#: application/views/awards/helvetia/index.php:65 -#: application/views/awards/itu/index.php:66 +#: application/views/awards/helvetia/index.php:67 +#: application/views/awards/itu/index.php:68 #: application/views/awards/jcc/index.php:64 -#: application/views/awards/rac/index.php:57 +#: application/views/awards/rac/index.php:59 #: application/views/awards/wab/index.php:96 -#: application/views/awards/waja/index.php:65 -#: application/views/awards/was/index.php:65 +#: application/views/awards/wac/index.php:56 +#: application/views/awards/waja/index.php:67 +#: application/views/awards/was/index.php:67 #: application/views/gridmap/index.php:125 application/views/user/edit.php:675 msgid "QRZ.com" msgstr "" @@ -2435,59 +2971,62 @@ msgstr "" #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:37 #: application/views/gridmap/index.php:156 -#: application/views/logbookadvanced/index.php:12 +#: application/views/logbookadvanced/index.php:13 msgid "Bearing" msgstr "" -#: application/views/activators/index.php:23 +#: application/views/activators/index.php:26 msgctxt "Orbiter LEO or GEO" msgid "Both" msgstr "" -#: application/views/activators/index.php:30 +#: application/views/activators/index.php:33 msgid "Minimum Count" msgstr "" -#: application/views/activators/index.php:77 +#: application/views/activators/index.php:76 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:46 -#: application/views/awards/cq/index.php:196 +#: application/views/awards/cq/index.php:198 #: application/views/awards/dok/index.php:196 #: application/views/awards/dxcc/index.php:280 -#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/helvetia/index.php:200 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:196 +#: application/views/awards/itu/index.php:198 #: application/views/awards/jcc/index.php:236 #: application/views/awards/pota/index.php:67 -#: application/views/awards/rac/index.php:190 +#: application/views/awards/rac/index.php:192 #: application/views/awards/sig/index.php:45 #: application/views/awards/sota/index.php:53 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:39 -#: application/views/awards/waja/index.php:200 -#: application/views/awards/was/index.php:198 +#: application/views/awards/wac/index.php:199 +#: application/views/awards/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 +#: application/views/distancerecords/index.php:50 #: application/views/public_search/empty.php:3 -#: application/views/qrz/export.php:64 application/views/timeline/index.php:102 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:135 msgid "Nothing found!" msgstr "" -#: application/views/activators/index.php:99 -#: application/views/adif/import.php:66 application/views/adif/import.php:172 -#: application/views/adif/import.php:217 +#: application/views/activators/index.php:98 +#: application/views/adif/import.php:66 application/views/adif/import.php:182 +#: application/views/adif/import.php:227 #: application/views/awards/pota/index.php:34 #: application/views/awards/sig/qso_list.php:11 #: application/views/awards/sota/index.php:25 #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:104 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:152 +#: application/views/contesting/index.php:156 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:168 +#: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 -#: application/views/lotw_views/index.php:39 +#: application/views/lotw_views/index.php:35 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 #: application/views/qslcard/index.php:28 @@ -2496,35 +3035,36 @@ msgstr "" #: application/views/qslprint/qslprint.php:21 #: application/views/qslprint/qsolist.php:6 #: application/views/qso/edit_ajax.php:62 application/views/qso/index.php:124 +#: application/views/reg1test/index.php:33 #: application/views/search/cqzones.php:32 #: application/views/search/cqzones_result.php:9 #: application/views/search/lotw_unconfirmed.php:33 #: application/views/search/lotw_unconfirmed_result.php:6 #: application/views/search/result.php:11 -#: application/views/simplefle/index.php:142 -#: application/views/station_profile/edit.php:36 +#: application/views/simplefle/index.php:148 +#: application/views/station_profile/edit.php:63 #: application/views/stationsetup/linkedlocations.php:17 -#: application/views/user/edit.php:123 application/views/user/main.php:4 -#: application/views/user/main.php:47 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:507 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 +#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:510 msgid "Callsign" msgstr "Značka" -#: application/views/activators/index.php:100 +#: application/views/activators/index.php:99 msgid "Count" msgstr "" -#: application/views/activators/index.php:102 -#: application/views/timeline/index.php:121 -#: application/views/timeline/index.php:153 -#: application/views/timeline/index.php:178 -#: application/views/timeline/index.php:205 -#: application/views/timeline/index.php:232 -#: application/views/timeline/index.php:258 +#: application/views/activators/index.php:101 +#: application/views/timeline/index.php:154 +#: application/views/timeline/index.php:186 +#: application/views/timeline/index.php:211 +#: application/views/timeline/index.php:238 +#: application/views/timeline/index.php:265 +#: application/views/timeline/index.php:291 msgid "Show QSO's" msgstr "" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "" @@ -2565,10 +3105,12 @@ msgstr "" #: application/views/awards/wwff/index.php:32 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:25 -#: application/views/contesting/index.php:42 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36 +#: application/views/contesting/index.php:93 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:163 +#: application/views/debug/index.php:545 +#: application/views/distancerecords/index.php:16 +#: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2581,22 +3123,22 @@ msgstr "" #: application/views/qslcard/searchresult.php:4 #: application/views/qslprint/qslprint.php:22 #: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:64 -#: application/views/qso/index.php:100 +#: application/views/qso/index.php:100 application/views/satellite/pass.php:473 #: application/views/search/cqzones_result.php:7 #: application/views/search/result_search.php:4 #: application/views/search/search_result_ajax.php:89 -#: application/views/simplefle/index.php:140 +#: application/views/simplefle/index.php:146 #: application/views/statistics/custom.php:38 #: application/views/statistics/custom_result.php:40 #: application/views/statistics/custom_result.php:85 -#: application/views/timeline/index.php:116 -#: application/views/timeline/index.php:151 -#: application/views/timeline/index.php:176 -#: application/views/timeline/index.php:201 -#: application/views/timeline/index.php:230 -#: application/views/timeline/index.php:255 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:184 +#: application/views/timeline/index.php:209 +#: application/views/timeline/index.php:234 +#: application/views/timeline/index.php:263 +#: application/views/timeline/index.php:288 #: application/views/view_log/partial/log.php:4 -#: application/views/view_log/partial/log_ajax.php:57 +#: application/views/view_log/partial/log_ajax.php:59 #: application/views/visitor/index.php:147 #: application/views/widgets/qsos.php:24 msgid "Date" @@ -2607,10 +3149,12 @@ msgstr "Datum" #: application/views/awards/wwff/index.php:33 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:26 -#: application/views/contesting/index.php:47 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37 +#: application/views/contesting/index.php:98 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:166 +#: application/views/debug/index.php:546 +#: application/views/distancerecords/index.php:17 +#: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2621,12 +3165,12 @@ msgstr "Datum" #: application/views/search/cqzones_result.php:8 #: application/views/search/result_search.php:5 #: application/views/search/search_result_ajax.php:91 -#: application/views/simplefle/index.php:141 +#: application/views/simplefle/index.php:147 #: application/views/statistics/custom_result.php:86 -#: application/views/timeline/index.php:256 +#: application/views/timeline/index.php:289 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 -#: application/views/view_log/partial/log_ajax.php:59 +#: application/views/view_log/partial/log_ajax.php:61 #: application/views/visitor/index.php:150 #: application/views/widgets/qsos.php:26 msgid "Time" @@ -2635,7 +3179,7 @@ msgstr "Čas" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 -#: application/views/contesting/index.php:201 +#: application/views/contesting/index.php:248 #: application/views/debug/index.php:547 application/views/debug/index.php:582 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -2647,7 +3191,7 @@ msgstr "Čas" #: application/views/search/search_result_ajax.php:93 #: application/views/statistics/custom_result.php:87 #: application/views/view_log/partial/log.php:8 -#: application/views/view_log/partial/log_ajax.php:61 +#: application/views/view_log/partial/log_ajax.php:63 #: application/views/visitor/index.php:152 #: application/views/widgets/qsos.php:28 msgid "Call" @@ -2665,14 +3209,14 @@ msgstr "" msgid "DCL QSL Status" msgstr "" -#: application/views/adif/import.php:36 application/views/adif/import.php:242 +#: application/views/adif/import.php:36 application/views/adif/import.php:252 msgid "DARC DCL" msgstr "" #: application/views/adif/import.php:55 -#: application/views/dashboard/index.php:97 -#: application/views/dashboard/index.php:118 -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:112 +#: application/views/dashboard/index.php:133 +#: application/views/dashboard/index.php:139 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2682,29 +3226,29 @@ msgstr "Důležité" msgid "Log Files must have the file type *.adi" msgstr "" -#: application/views/adif/import.php:56 application/views/view_log/qso.php:622 +#: application/views/adif/import.php:56 application/views/view_log/qso.php:625 msgid "Maximum file upload size is " msgstr "" -#: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:175 +#: application/views/adif/import.php:56 application/views/adif/import.php:230 +#: application/views/adif/import.php:268 application/views/debug/index.php:175 #: application/views/debug/index.php:192 application/views/debug/index.php:537 #: application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:34 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 -#: application/views/station_profile/index.php:31 #: application/views/stationsetup/stationsetup.php:111 -#: application/views/view_log/qso.php:622 +#: application/views/view_log/qso.php:625 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" msgstr "" #: application/views/adif/import.php:60 application/views/adif/import.php:62 -#: application/views/adif/import.php:168 application/views/adif/import.php:215 +#: application/views/adif/import.php:178 application/views/adif/import.php:225 #: application/views/eqsl/import.php:36 application/views/hrdlog/export.php:69 -#: application/views/qrz/export.php:89 application/views/webadif/export.php:89 +#: application/views/qrz/export.php:89 application/views/reg1test/index.php:30 +#: application/views/webadif/export.php:89 msgid "Select Station Location" msgstr "" @@ -2731,69 +3275,75 @@ msgstr "" #: application/views/adif/import.php:95 application/views/adif/import.php:105 #: application/views/adif/import.php:115 application/views/adif/import.php:125 +#: application/views/adif/import.php:135 msgid "Select if ADIF being imported does not contain this information." msgstr "" #: application/views/adif/import.php:103 -msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" +msgid "Mark imported QSOs as uploaded to eQSL Logbook" msgstr "" #: application/views/adif/import.php:113 -msgid "Mark imported QSOs as uploaded to QRZ Logbook" +msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" msgstr "" #: application/views/adif/import.php:123 -msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgid "Mark imported QSOs as uploaded to QRZ Logbook" msgstr "" #: application/views/adif/import.php:133 +msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgstr "" + +#: application/views/adif/import.php:143 msgid "Use DXCC information from ADIF" msgstr "" -#: application/views/adif/import.php:135 +#: application/views/adif/import.php:145 msgid "" "If not selected, Wavelog will attempt to determine DXCC information " "automatically." msgstr "" -#: application/views/adif/import.php:143 +#: application/views/adif/import.php:153 msgid "Always use login-callsign as operator-name on import" msgstr "" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:32 -#: application/views/interface_assets/footer.php:495 -#: application/views/interface_assets/footer.php:2119 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2133 msgid "DANGER" msgstr "" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 msgid "Ignore Stationcallsign on import" msgstr "" -#: application/views/adif/import.php:154 +#: application/views/adif/import.php:164 +#, php-format msgid "" -"If selected, Wavelog will try to import all QSO's of the ADIF, " +"If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " "regardless if they match to the chosen station-location." msgstr "" -#: application/views/adif/import.php:158 application/views/adif/import.php:273 +#: application/views/adif/import.php:168 application/views/adif/import.php:283 #: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 #: application/views/webadif/export.php:55 msgid "Upload" msgstr "" -#: application/views/adif/import.php:165 +#: application/views/adif/import.php:175 msgid "Take your logbook file anywhere!" msgstr "" -#: application/views/adif/import.php:166 +#: application/views/adif/import.php:176 msgid "" "Exporting ADIFs allows you to import contacts into third party applications " "like LoTW, Awards or just for keeping a backup." msgstr "" -#: application/views/adif/import.php:176 application/views/adif/import.php:222 +#: application/views/adif/import.php:186 application/views/adif/import.php:232 #: application/views/cfd/index.php:15 application/views/csv/index.php:118 #: application/views/dxatlas/index.php:118 #: application/views/hrdlog/export.php:77 application/views/kml/index.php:103 @@ -2802,7 +3352,7 @@ msgstr "" msgid "From date" msgstr "Od data" -#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/adif/import.php:189 application/views/adif/import.php:235 #: application/views/cfd/index.php:20 application/views/csv/index.php:123 #: application/views/dxatlas/index.php:123 #: application/views/hrdlog/export.php:82 application/views/kml/index.php:108 @@ -2811,40 +3361,40 @@ msgstr "Od data" msgid "To date" msgstr "" -#: application/views/adif/import.php:187 +#: application/views/adif/import.php:197 msgid "Mark exported QSOs as uploaded to LoTW" msgstr "" -#: application/views/adif/import.php:195 +#: application/views/adif/import.php:205 msgid "Export QSOs not uploaded to LoTW" msgstr "" -#: application/views/adif/import.php:200 +#: application/views/adif/import.php:210 msgid "Export QSO's" msgstr "" -#: application/views/adif/import.php:205 +#: application/views/adif/import.php:215 msgid "Export Satellite-Only QSOs" msgstr "" -#: application/views/adif/import.php:206 +#: application/views/adif/import.php:216 msgid "Export All Satellite QSOs" msgstr "" -#: application/views/adif/import.php:208 +#: application/views/adif/import.php:218 msgid "Export All Satellite QSOs Confirmed on LoTW" msgstr "" -#: application/views/adif/import.php:220 application/views/hrdlog/export.php:74 +#: application/views/adif/import.php:230 application/views/hrdlog/export.php:74 #: application/views/qrz/export.php:94 application/views/webadif/export.php:94 msgid "If a date range is not selected then all QSOs will be marked!" msgstr "" -#: application/views/adif/import.php:228 +#: application/views/adif/import.php:238 msgid "Mark QSOs as exported to LoTW" msgstr "" -#: application/views/adif/import.php:242 +#: application/views/adif/import.php:252 #, php-format msgid "" "Go to %s and export your logbook with confirmed DOKs. To speed up the " @@ -2853,36 +3403,47 @@ msgid "" "with DOK info." msgstr "" -#: application/views/adif/import.php:249 +#: application/views/adif/import.php:259 msgid "Only import DOK data from QSOs confirmed on DCL." msgstr "" -#: application/views/adif/import.php:251 +#: application/views/adif/import.php:261 msgid "" "Uncheck if you also want to update DOK with data from unconfirmed QSOs in " "DCL." msgstr "" -#: application/views/adif/import.php:258 +#: application/views/adif/import.php:268 msgid "Overwrites exisiting DOK in log by DCL (if different)." msgstr "" -#: application/views/adif/import.php:260 +#: application/views/adif/import.php:270 msgid "" "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " "log." msgstr "" -#: application/views/adif/import.php:267 +#: application/views/adif/import.php:277 msgid "Ignore QSOs that cannot be matched." msgstr "Ignorovat QSO, které nelze porovnat." -#: application/views/adif/import.php:269 +#: application/views/adif/import.php:279 msgid "" "If unchecked, information about QSOs which could not be found in Wavelog " "will be displayed." msgstr "" +#: application/views/adif/import_failed.php:15 +msgid "The ADIF file could not be parsed correctly." +msgstr "" + +#: application/views/adif/import_failed.php:16 +msgid "" +"At least one of the ADIF fields could not be parsed and/or inserted into the " +"database. Please check the imported ADIF file. You can use an online ADIF " +"file checker. For example:" +msgstr "" + #: application/views/adif/import_success.php:15 msgid "Yay, its imported!" msgstr "" @@ -2935,24 +3496,22 @@ msgstr "" #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 -#: application/views/interface_assets/footer.php:43 -#: application/views/interface_assets/footer.php:530 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 -#: application/views/options/appearance.php:107 +#: application/views/options/appearance.php:116 #: application/views/options/dxcluster.php:67 #: application/views/options/email.php:112 #: application/views/options/oqrs.php:63 #: application/views/options/radios.php:45 #: application/views/options/version_dialog.php:78 -#: application/views/qso/components/winkeysettings.php:90 -#: application/views/qso/components/winkeysettings_results.php:90 #: application/views/satellite/create.php:70 #: application/views/simplefle/index.php:22 msgid "Save" msgstr "" #: application/views/api/help.php:14 -#: application/views/interface_assets/header.php:431 +#: application/views/interface_assets/header.php:437 msgid "API Keys" msgstr "API klíče" @@ -2976,7 +3535,7 @@ msgid "API URL" msgstr "" #: application/views/api/help.php:19 application/views/api/help.php:38 -#: application/views/cron/index.php:21 application/views/debug/index.php:36 +#: application/views/cron/index.php:22 application/views/debug/index.php:36 msgid "Copy to clipboard" msgstr "Kopírovat do schránky" @@ -2985,14 +3544,15 @@ msgid "The API URL for this Wavelog instance is" msgstr "" #: application/views/api/help.php:20 application/views/dxcalendar/index.php:15 -#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:477 -#: application/views/qso/index.php:538 application/views/qso/index.php:583 +#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:504 +#: application/views/qso/index.php:560 application/views/qso/index.php:605 #: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 #: application/views/sattimers/index.php:73 #: application/views/sattimers/index.php:75 +#: application/views/sattimers/index.php:77 #: application/views/search/filter.php:69 msgid "Info" msgstr "" @@ -3008,7 +3568,7 @@ msgid "API Key" msgstr "" #: application/views/api/help.php:28 application/views/cron/edit.php:30 -#: application/views/cron/index.php:51 +#: application/views/cron/index.php:53 #: application/views/search/stored_queries.php:8 msgid "Description" msgstr "" @@ -3021,19 +3581,18 @@ msgstr "" msgid "Permissions" msgstr "" -#: application/views/api/help.php:31 application/views/cron/index.php:52 -#: application/views/lotw_views/index.php:45 +#: application/views/api/help.php:31 application/views/cron/index.php:54 +#: application/views/lotw_views/index.php:41 #: application/views/mode/index.php:31 #: application/views/oqrs/showrequests.php:91 #: application/views/sattimers/index.php:39 #: application/views/stationsetup/stationsetup.php:31 -#: application/views/timeline/index.php:119 -#: application/views/update/index.php:30 +#: application/views/timeline/index.php:152 msgid "Status" msgstr "Stav" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:519 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3069,6 +3628,7 @@ msgstr "" #: application/views/awards/counties/details.php:4 #: application/views/awards/details.php:1 #: application/views/awards/vucc/band.php:4 +#: application/views/distancerecords/details.php:1 #: application/views/timeline/details.php:2 msgid "Filtering on" msgstr "" @@ -3079,8 +3639,8 @@ msgstr "" #: application/views/awards/counties/index.php:6 #: application/views/awards/counties/index.php:13 -#: application/views/awards/cq/index.php:17 -#: application/views/awards/cq/index.php:24 +#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:26 #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:13 #: application/views/awards/dxcc/index.php:13 @@ -3089,12 +3649,12 @@ msgstr "" #: application/views/awards/ffma/index.php:14 #: application/views/awards/gridmaster/index.php:6 #: application/views/awards/gridmaster/index.php:13 -#: application/views/awards/helvetia/index.php:17 -#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:26 #: application/views/awards/iota/index.php:15 #: application/views/awards/iota/index.php:22 -#: application/views/awards/itu/index.php:17 -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:26 #: application/views/awards/jcc/index.php:15 #: application/views/awards/jcc/index.php:22 #: application/views/awards/pota/index.php:6 @@ -3107,10 +3667,12 @@ msgstr "" #: application/views/awards/vucc/index.php:13 #: application/views/awards/wab/index.php:11 #: application/views/awards/wab/index.php:18 -#: application/views/awards/waja/index.php:16 -#: application/views/awards/waja/index.php:23 -#: application/views/awards/was/index.php:17 -#: application/views/awards/was/index.php:24 +#: application/views/awards/wac/index.php:7 +#: application/views/awards/wac/index.php:14 +#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:25 +#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:26 #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:13 msgid "Award Info" @@ -3148,17 +3710,18 @@ msgid "Counties Confirmed" msgstr "" #: application/views/awards/counties/index.php:39 -#: application/views/awards/cq/index.php:174 +#: application/views/awards/cq/index.php:176 #: application/views/awards/dok/index.php:174 #: application/views/awards/dxcc/index.php:257 -#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/helvetia/index.php:179 #: application/views/awards/iota/index.php:201 -#: application/views/awards/itu/index.php:174 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:185 -#: application/views/awards/rac/index.php:169 -#: application/views/awards/waja/index.php:177 -#: application/views/awards/was/index.php:177 -#: application/views/dashboard/index.php:217 +#: application/views/awards/rac/index.php:171 +#: application/views/awards/wac/index.php:177 +#: application/views/awards/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:233 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3174,213 +3737,230 @@ msgstr "" msgid "Total" msgstr "" -#: application/views/awards/cq/index.php:18 +#: application/views/awards/cq/index.php:3 +#: application/views/awards/cq/index.php:150 application/views/csv/index.php:80 +#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/logbookadvanced/edit.php:6 +#: application/views/logbookadvanced/index.php:246 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:284 +#: application/views/qso/index.php:390 +#: application/views/search/cqzones_result.php:13 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:264 +#: application/views/timeplotter/index.php:44 +msgid "CQ Zone" +msgstr "CQ zóna" + +#: application/views/awards/cq/index.php:4 +#: application/views/awards/itu/index.php:4 +msgid "Hover over a zone" +msgstr "" + +#: application/views/awards/cq/index.php:20 msgid "CQ Magazine WAZ Award" msgstr "" -#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:21 msgid "" "The CQ Magazine is located in the US and one of the most popular amateur " "radio magazines in the world. The magazine first appeared in January 1945 " "and focuses on awards and the practical aspects of amateur radio." msgstr "" -#: application/views/awards/cq/index.php:20 +#: application/views/awards/cq/index.php:22 msgid "" "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to " "all 40 CQ Zones along with the corresponding confirmation." msgstr "" -#: application/views/awards/cq/index.php:21 +#: application/views/awards/cq/index.php:23 #, php-format msgctxt "uses 'CQ Magazine'" msgid "You can find all the information and rules on the Website of the %s." msgstr "" -#: application/views/awards/cq/index.php:23 +#: application/views/awards/cq/index.php:25 msgid "Awards - CQ Magazine WAZ" msgstr "" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 #: application/views/awards/wab/list.php:6 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:73 -#: application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:362 -#: application/views/interface_assets/footer.php:39 +#: application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:378 +#: application/views/interface_assets/footer.php:40 #: application/views/visitor/index.php:266 msgid "Confirmed" msgstr "Potvrzeno" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:256 +#: application/views/dashboard/index.php:372 #: application/views/visitor/index.php:262 msgid "Worked" msgstr "Navázáno" -#: application/views/awards/cq/index.php:36 +#: application/views/awards/cq/index.php:38 #: application/views/awards/dok/index.php:41 #: application/views/awards/dxcc/index.php:43 -#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:43 -#: application/views/awards/itu/index.php:36 +#: application/views/awards/itu/index.php:38 #: application/views/awards/jcc/index.php:34 -#: application/views/awards/rac/index.php:27 -#: application/views/awards/waja/index.php:35 -#: application/views/awards/was/index.php:35 +#: application/views/awards/rac/index.php:29 +#: application/views/awards/wac/index.php:26 +#: application/views/awards/waja/index.php:37 +#: application/views/awards/was/index.php:37 msgid "Show worked" msgstr "" -#: application/views/awards/cq/index.php:40 +#: application/views/awards/cq/index.php:42 #: application/views/awards/dok/index.php:45 #: application/views/awards/dxcc/index.php:47 -#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:47 -#: application/views/awards/itu/index.php:40 +#: application/views/awards/itu/index.php:42 #: application/views/awards/jcc/index.php:38 -#: application/views/awards/rac/index.php:31 -#: application/views/awards/waja/index.php:39 -#: application/views/awards/was/index.php:39 +#: application/views/awards/rac/index.php:33 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/waja/index.php:41 +#: application/views/awards/was/index.php:41 msgid "Show confirmed" msgstr "" -#: application/views/awards/cq/index.php:44 +#: application/views/awards/cq/index.php:46 #: application/views/awards/dxcc/index.php:51 -#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:51 -#: application/views/awards/itu/index.php:44 +#: application/views/awards/itu/index.php:46 #: application/views/awards/jcc/index.php:42 -#: application/views/awards/rac/index.php:35 -#: application/views/awards/waja/index.php:43 -#: application/views/awards/was/index.php:43 +#: application/views/awards/rac/index.php:37 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/waja/index.php:45 +#: application/views/awards/was/index.php:45 msgid "Show not worked" msgstr "" -#: application/views/awards/cq/index.php:50 +#: application/views/awards/cq/index.php:52 #: application/views/awards/dok/index.php:51 #: application/views/awards/dxcc/index.php:57 -#: application/views/awards/helvetia/index.php:49 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/helvetia/index.php:51 +#: application/views/awards/itu/index.php:52 #: application/views/awards/jcc/index.php:48 -#: application/views/awards/rac/index.php:41 -#: application/views/awards/waja/index.php:49 -#: application/views/awards/was/index.php:49 +#: application/views/awards/rac/index.php:43 +#: application/views/awards/wac/index.php:40 +#: application/views/awards/waja/index.php:51 +#: application/views/awards/was/index.php:51 msgid "Show QSO with QSL Type" msgstr "" -#: application/views/awards/cq/index.php:54 -#: application/views/awards/itu/index.php:54 -#: application/views/interface_assets/footer.php:2098 -#: application/views/qso/edit_ajax.php:378 +#: application/views/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/awards/wac/index.php:44 +#: application/views/interface_assets/footer.php:2112 +#: application/views/qso/edit_ajax.php:405 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "QSL karta" -#: application/views/awards/cq/index.php:110 +#: application/views/awards/cq/index.php:112 #: application/views/awards/dok/index.php:126 #: application/views/awards/dxcc/index.php:186 -#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/helvetia/index.php:111 #: application/views/awards/iota/index.php:129 -#: application/views/awards/itu/index.php:110 +#: application/views/awards/itu/index.php:112 #: application/views/awards/jcc/index.php:112 -#: application/views/awards/rac/index.php:101 -#: application/views/awards/waja/index.php:113 -#: application/views/awards/was/index.php:109 +#: application/views/awards/rac/index.php:103 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/waja/index.php:115 +#: application/views/awards/was/index.php:111 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:523 +#: application/views/logbookadvanced/index.php:551 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 msgid "Reset" msgstr "" -#: application/views/awards/cq/index.php:113 +#: application/views/awards/cq/index.php:115 msgid "Show CQ Zone Map" msgstr "" -#: application/views/awards/cq/index.php:122 +#: application/views/awards/cq/index.php:124 #: application/views/awards/dxcc/index.php:199 -#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/helvetia/index.php:124 #: application/views/awards/iota/index.php:142 -#: application/views/awards/itu/index.php:122 -#: application/views/awards/rac/index.php:114 -#: application/views/awards/waja/index.php:126 -#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:124 +#: application/views/awards/rac/index.php:116 +#: application/views/awards/waja/index.php:128 +#: application/views/awards/was/index.php:124 msgid "Table" msgstr "" -#: application/views/awards/cq/index.php:125 +#: application/views/awards/cq/index.php:127 #: application/views/awards/dok/index.php:128 #: application/views/awards/dxcc/index.php:202 -#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/helvetia/index.php:127 #: application/views/awards/iota/index.php:145 -#: application/views/awards/itu/index.php:125 +#: application/views/awards/itu/index.php:127 #: application/views/awards/jcc/index.php:129 -#: application/views/awards/rac/index.php:117 +#: application/views/awards/rac/index.php:119 #: application/views/awards/wab/index.php:108 -#: application/views/awards/waja/index.php:129 -#: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:516 +#: application/views/awards/waja/index.php:131 +#: application/views/awards/was/index.php:127 +#: application/views/logbookadvanced/index.php:544 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "" -#: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 -#: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:235 -#: application/views/logbookadvanced/index.php:586 -#: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:90 -#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 -#: application/views/qso/index.php:390 -#: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:106 -#: application/views/station_profile/edit.php:126 -#: application/views/timeline/index.php:231 -#: application/views/timeplotter/index.php:44 -msgid "CQ Zone" -msgstr "CQ zóna" - -#: application/views/awards/cq/index.php:165 +#: application/views/awards/cq/index.php:167 #: application/views/awards/dok/index.php:165 #: application/views/awards/dxcc/index.php:248 -#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/helvetia/index.php:170 #: application/views/awards/iota/index.php:192 -#: application/views/awards/itu/index.php:165 +#: application/views/awards/itu/index.php:167 #: application/views/awards/jcc/index.php:168 -#: application/views/awards/rac/index.php:160 -#: application/views/awards/waja/index.php:168 -#: application/views/awards/was/index.php:168 +#: application/views/awards/rac/index.php:162 +#: application/views/awards/wac/index.php:168 +#: application/views/awards/waja/index.php:170 +#: application/views/awards/was/index.php:170 msgid "Summary" msgstr "" -#: application/views/awards/cq/index.php:178 +#: application/views/awards/cq/index.php:180 #: application/views/awards/dok/index.php:178 #: application/views/awards/dxcc/index.php:262 -#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:206 -#: application/views/awards/itu/index.php:178 +#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:195 -#: application/views/awards/rac/index.php:173 -#: application/views/awards/waja/index.php:182 -#: application/views/awards/was/index.php:181 +#: application/views/awards/rac/index.php:175 +#: application/views/awards/wac/index.php:181 +#: application/views/awards/waja/index.php:184 +#: application/views/awards/was/index.php:183 msgid "Total worked" msgstr "" -#: application/views/awards/cq/index.php:185 +#: application/views/awards/cq/index.php:187 #: application/views/awards/dok/index.php:185 #: application/views/awards/dxcc/index.php:269 -#: application/views/awards/helvetia/index.php:188 +#: application/views/awards/helvetia/index.php:190 #: application/views/awards/iota/index.php:213 -#: application/views/awards/itu/index.php:185 +#: application/views/awards/itu/index.php:187 #: application/views/awards/jcc/index.php:214 -#: application/views/awards/rac/index.php:180 -#: application/views/awards/waja/index.php:189 -#: application/views/awards/was/index.php:188 +#: application/views/awards/rac/index.php:182 +#: application/views/awards/wac/index.php:188 +#: application/views/awards/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "" @@ -3428,23 +4008,24 @@ msgstr "" #: application/views/awards/dok/index.php:37 #: application/views/awards/dxcc/index.php:39 -#: application/views/awards/helvetia/index.php:31 +#: application/views/awards/helvetia/index.php:33 #: application/views/awards/iota/index.php:39 #: application/views/awards/jcc/index.php:30 -#: application/views/awards/rac/index.php:23 -#: application/views/awards/waja/index.php:31 -#: application/views/awards/was/index.php:31 +#: application/views/awards/rac/index.php:25 +#: application/views/awards/waja/index.php:33 +#: application/views/awards/was/index.php:33 msgid "Worked / Confirmed" msgstr "" #: application/views/awards/dok/index.php:80 #: application/views/awards/dxcc/index.php:120 -#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/helvetia/index.php:76 #: application/views/awards/iota/index.php:94 #: application/views/awards/jcc/index.php:77 -#: application/views/awards/rac/index.php:66 -#: application/views/awards/waja/index.php:78 -#: application/views/awards/was/index.php:74 +#: application/views/awards/rac/index.php:68 +#: application/views/awards/wac/index.php:66 +#: application/views/awards/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "" @@ -3465,10 +4046,12 @@ msgid "" msgstr "" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 msgid "ARRL website" msgstr "" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 #, php-format msgid "You can find all information about the DXCC Award on the %s." msgstr "" @@ -3490,63 +4073,77 @@ msgstr "" #: application/views/awards/dxcc/index.php:87 #: application/views/awards/iota/index.php:61 #: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/logbookadvanced/edit.php:144 +#: application/views/logbookadvanced/index.php:309 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 -#: application/views/view_log/qso.php:250 +#: application/views/view_log/qso.php:253 msgid "Antarctica" msgstr "Antarktida" #: application/views/awards/dxcc/index.php:91 #: application/views/awards/iota/index.php:65 #: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/logbookadvanced/edit.php:143 +#: application/views/logbookadvanced/index.php:308 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 -#: application/views/view_log/qso.php:247 +#: application/views/view_log/qso.php:250 msgid "Africa" msgstr "Afrika" #: application/views/awards/dxcc/index.php:95 #: application/views/awards/iota/index.php:69 #: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/logbookadvanced/edit.php:146 +#: application/views/logbookadvanced/index.php:311 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 -#: application/views/view_log/qso.php:253 +#: application/views/view_log/qso.php:256 msgid "Asia" msgstr "Asie" #: application/views/awards/dxcc/index.php:99 #: application/views/awards/iota/index.php:73 #: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/logbookadvanced/edit.php:147 +#: application/views/logbookadvanced/index.php:312 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 -#: application/views/view_log/qso.php:256 +#: application/views/view_log/qso.php:259 msgid "Europe" msgstr "Evropa" #: application/views/awards/dxcc/index.php:103 #: application/views/awards/iota/index.php:77 #: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/logbookadvanced/edit.php:145 +#: application/views/logbookadvanced/index.php:310 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 -#: application/views/view_log/qso.php:259 +#: application/views/view_log/qso.php:262 msgid "North America" msgstr "Severní Amerika" #: application/views/awards/dxcc/index.php:107 #: application/views/awards/iota/index.php:81 #: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/logbookadvanced/edit.php:148 +#: application/views/logbookadvanced/index.php:313 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:265 +#: application/views/view_log/qso.php:268 msgid "South America" msgstr "Jižní Amerika" #: application/views/awards/dxcc/index.php:111 #: application/views/awards/iota/index.php:85 #: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/logbookadvanced/edit.php:149 +#: application/views/logbookadvanced/index.php:314 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 -#: application/views/view_log/qso.php:262 +#: application/views/view_log/qso.php:265 msgid "Oceania" msgstr "Oceánie" @@ -3560,13 +4157,13 @@ msgstr "" #: application/views/awards/dxcc/index.php:226 #: application/views/awards/iota/index.php:170 -#: application/views/timeline/index.php:117 -#: application/views/timeline/index.php:204 +#: application/views/timeline/index.php:150 +#: application/views/timeline/index.php:237 msgid "Prefix" msgstr "" #: application/views/awards/ffma/index.php:8 -#: application/views/interface_assets/header.php:236 +#: application/views/interface_assets/header.php:240 msgid "Fred Fish Memorial Award" msgstr "" @@ -3621,11 +4218,20 @@ msgstr "" msgid "This map shows only QSOs worked on SAT." msgstr "" -#: application/views/awards/helvetia/index.php:18 +#: application/views/awards/helvetia/index.php:3 +msgctxt "Switzerland Canton" +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:4 +msgid "Hover over a canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:20 msgid "HELVETIA 26 | SWITZERLAND AWARD" msgstr "" -#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:21 msgid "" "The USKA (Union of Swiss Shortwave Amateurs) sponsors two awards, the " "HELVETIA 26 (H26) Award and the SWITZERLAND Award, aimed at promoting " @@ -3633,33 +4239,33 @@ msgid "" "as possible on multiple bands." msgstr "" -#: application/views/awards/helvetia/index.php:20 +#: application/views/awards/helvetia/index.php:22 msgid "" "These awards come in two versions: one for HF bands and the other for VHF " "(including SHF and UHF) bands. Valid connections for these awards date back " "to January 1, 1980" msgstr "" -#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/helvetia/index.php:23 #: application/views/awards/jcc/index.php:19 #: application/views/awards/sota/index.php:10 #: application/views/awards/wab/index.php:15 -#: application/views/awards/waja/index.php:20 +#: application/views/awards/waja/index.php:22 #: application/views/awards/wwff/index.php:10 #, php-format msgid "For more information, please visit: %s." msgstr "" -#: application/views/awards/helvetia/index.php:112 +#: application/views/awards/helvetia/index.php:114 msgid "Show Helvetia Map" msgstr "" -#: application/views/awards/helvetia/index.php:149 +#: application/views/awards/helvetia/index.php:151 msgid "Canton" msgstr "" #: application/views/awards/index.php:9 application/views/bands/index.php:46 -#: application/views/interface_assets/header.php:162 +#: application/views/interface_assets/header.php:164 msgid "CQ" msgstr "" @@ -3707,11 +4313,11 @@ msgstr "" #: application/views/awards/iota/index.php:171 #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 -#: application/views/contesting/index.php:153 -#: application/views/contesting/index.php:171 +#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:214 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:559 +#: application/views/logbookadvanced/index.php:587 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3721,12 +4327,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:19 #: application/views/stationsetup/stationsetup.php:30 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:203 application/views/user/edit.php:241 +#: application/views/timeline/index.php:236 application/views/user/edit.php:241 #: application/views/user/edit.php:263 application/views/user/edit.php:285 #: application/views/user/edit.php:307 application/views/user/edit.php:330 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:191 -#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:194 +#: application/views/view_log/qso.php:514 msgid "Name" msgstr "" @@ -3734,7 +4340,19 @@ msgstr "" msgid "Deleted" msgstr "" -#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:3 +#: application/views/awards/itu/index.php:150 +#: application/views/logbookadvanced/edit.php:10 +#: application/views/logbookadvanced/index.php:257 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:400 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 +msgid "ITU Zone" +msgstr "" + +#: application/views/awards/itu/index.php:21 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -3742,30 +4360,20 @@ msgid "" "(ITU)." msgstr "" -#: application/views/awards/itu/index.php:20 +#: application/views/awards/itu/index.php:22 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "" -#: application/views/awards/itu/index.php:23 +#: application/views/awards/itu/index.php:25 msgid "Awards - ITU Zones" msgstr "" -#: application/views/awards/itu/index.php:113 +#: application/views/awards/itu/index.php:115 msgid "Show ITU Zone Map" msgstr "" -#: application/views/awards/itu/index.php:148 -#: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:246 -#: application/views/logbookadvanced/index.php:589 -#: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:120 -#: application/views/station_profile/edit.php:143 -msgid "ITU Zone" -msgstr "" - #: application/views/awards/jcc/index.php:16 msgid "JCC - Japan Century Cities Award" msgstr "" @@ -3791,7 +4399,7 @@ msgstr "" #: application/views/awards/jcc/index.php:116 #: application/views/cabrillo/index.php:180 application/views/cfd/index.php:25 #: application/views/csv/index.php:128 application/views/dxatlas/index.php:128 -#: application/views/kml/index.php:113 +#: application/views/kml/index.php:113 application/views/reg1test/index.php:145 msgid "Export" msgstr "" @@ -3802,18 +4410,19 @@ msgid "Results" msgstr "" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 +#: application/views/distancerecords/index.php:13 msgid "Number" msgstr "" #: application/views/awards/jcc/index.php:152 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:524 msgid "City" msgstr "Město" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:368 #: application/views/distances/index.php:23 msgid "SAT" msgstr "" @@ -3845,15 +4454,24 @@ msgid "" msgstr "" #: application/views/awards/pota/index.php:31 -#: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:177 -#: application/views/station_profile/edit.php:245 -#: application/views/user/edit.php:595 application/views/view_log/qso.php:303 -#: application/views/view_log/qso.php:570 +#: application/views/qso/index.php:236 application/views/qso/index.php:492 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 +#: application/views/user/edit.php:595 application/views/view_log/qso.php:306 +#: application/views/view_log/qso.php:573 msgid "POTA Reference(s)" msgstr "POTA označení" -#: application/views/awards/rac/index.php:104 +#: application/views/awards/rac/index.php:3 +msgctxt "Canada Province" +msgid "Province" +msgstr "" + +#: application/views/awards/rac/index.php:4 +msgid "Hover over a province" +msgstr "" + +#: application/views/awards/rac/index.php:106 msgid "Show RAC Map" msgstr "" @@ -3903,7 +4521,7 @@ msgstr "" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:535 +#: application/views/logbookadvanced/index.php:563 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -3999,17 +4617,48 @@ msgstr "" msgid "WAB Square" msgstr "" -#: application/views/awards/waja/index.php:17 +#: application/views/awards/wac/index.php:9 +msgid "" +"Sponsored by the International Amateur Radio Union (IARU), the Worked All " +"Continents award is issued for working and confirming all six continents. " +"These are North America, South America, Oceania, Asia, Europe and Africa." +msgstr "" + +#: application/views/awards/wac/index.php:13 +msgid "Awards - Worked All Continents (WAC)" +msgstr "" + +#: application/views/awards/wac/index.php:151 +#: application/views/continents/index.php:62 +#: application/views/logbookadvanced/edit.php:25 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 +#: application/views/view_log/qso.php:245 +msgid "Continent" +msgstr "Kontinent" + +#: application/views/awards/waja/index.php:3 +msgctxt "Japan Prefecture" +msgid "Prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:4 +msgid "Hover over a prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:19 msgid "WAJA - Worked All Japan prefectures Award" msgstr "" -#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:20 msgid "" "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " "radio operators to work all the prefectures in Japan." msgstr "" -#: application/views/awards/waja/index.php:19 +#: application/views/awards/waja/index.php:21 msgid "" "May be claimed for having contacted (heard) and received a QSL card from an " "amateur station located in each of the 47 prefectures of Japan. A list of " @@ -4017,20 +4666,29 @@ msgid "" "however names of prefectures may be omitted." msgstr "" -#: application/views/awards/waja/index.php:116 +#: application/views/awards/waja/index.php:118 msgid "Show WAJA Map" msgstr "" -#: application/views/awards/waja/index.php:152 -#: application/views/timeline/index.php:152 +#: application/views/awards/waja/index.php:154 +#: application/views/timeline/index.php:185 msgid "Prefecture" msgstr "" -#: application/views/awards/was/index.php:18 +#: application/views/awards/was/index.php:3 +msgctxt "USA State" +msgid "State" +msgstr "" + +#: application/views/awards/was/index.php:4 +msgid "Hover over a state" +msgstr "" + +#: application/views/awards/was/index.php:20 msgid "WAS Award" msgstr "" -#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:21 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -4038,7 +4696,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:20 +#: application/views/awards/was/index.php:22 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -4047,13 +4705,13 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:21 +#: application/views/awards/was/index.php:23 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:112 +#: application/views/awards/was/index.php:114 msgid "Show WAS Map" msgstr "" @@ -4076,11 +4734,11 @@ msgid "" msgstr "" #: application/views/awards/wwff/index.php:31 -#: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:171 -#: application/views/station_profile/edit.php:232 -#: application/views/user/edit.php:591 application/views/view_log/qso.php:296 -#: application/views/view_log/qso.php:563 +#: application/views/qso/index.php:224 application/views/qso/index.php:479 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 +#: application/views/user/edit.php:591 application/views/view_log/qso.php:299 +#: application/views/view_log/qso.php:566 msgid "WWFF Reference" msgstr "WWFF označení" @@ -4135,8 +4793,8 @@ msgstr "" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 #: application/views/contesting/index.php:15 -#: application/views/contesting/index.php:94 -#: application/views/contesting/index.php:169 +#: application/views/contesting/index.php:52 +#: application/views/contesting/index.php:145 #: application/views/qso/index.php:314 msgid "None" msgstr "" @@ -4216,25 +4874,25 @@ msgid "" "will be hidden and cannot be selected." msgstr "" -#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:351 -#: application/views/qso/index.php:248 application/views/qso/index.php:494 -#: application/views/user/edit.php:599 application/views/view_log/qso.php:325 -#: application/views/view_log/qso.php:577 +#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 +#: application/views/qso/index.php:248 application/views/qso/index.php:504 +#: application/views/user/edit.php:599 application/views/view_log/qso.php:328 +#: application/views/view_log/qso.php:580 msgid "Sig" msgstr "" -#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:312 -#: application/views/qso/index.php:433 +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:339 +#: application/views/qso/index.php:443 msgid "USA County" msgstr "Označení okresu USA" #: application/views/bands/index.php:58 -#: application/views/interface_assets/header.php:208 +#: application/views/interface_assets/header.php:212 msgid "WAJA" msgstr "" #: application/views/bands/index.php:59 -#: application/views/interface_assets/header.php:232 +#: application/views/interface_assets/header.php:236 msgid "WAS" msgstr "" @@ -4264,9 +4922,8 @@ msgstr "" #: application/views/bands/index.php:152 #: application/views/contesting/add.php:74 -#: application/views/interface_assets/footer.php:42 -#: application/views/qso/components/winkeysettings.php:91 -#: application/views/qso/components/winkeysettings_results.php:91 +#: application/views/contesting/index.php:83 +#: application/views/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4296,22 +4953,28 @@ msgstr "" #: application/views/cabrillo/index.php:2 #: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:59 +#: application/views/reg1test/index.php:2 +#: application/views/reg1test/index.php:36 msgid "Proceed" msgstr "" #: application/views/cabrillo/index.php:3 +#: application/views/reg1test/index.php:3 msgid "Select Year" msgstr "" #: application/views/cabrillo/index.php:4 +#: application/views/reg1test/index.php:4 msgid "Select Contest" msgstr "" #: application/views/cabrillo/index.php:5 +#: application/views/reg1test/index.php:5 msgid "Select Date Range" msgstr "" #: application/views/cabrillo/index.php:6 +#: application/views/reg1test/index.php:7 msgid "No contests were found for this station location!" msgstr "" @@ -4324,10 +4987,12 @@ msgid "Select Station Location:" msgstr "" #: application/views/cabrillo/index.php:44 +#: application/views/reg1test/index.php:53 msgid "Club" msgstr "" #: application/views/cabrillo/index.php:48 +#: application/views/reg1test/index.php:58 msgid "Category Operator" msgstr "" @@ -4368,10 +5033,12 @@ msgid "Category Overlay" msgstr "" #: application/views/cabrillo/index.php:150 +#: application/views/reg1test/index.php:70 msgid "Operators" msgstr "" #: application/views/cabrillo/index.php:155 +#: application/views/reg1test/index.php:139 msgid "Soapbox" msgstr "" @@ -4396,6 +5063,7 @@ msgid "Address Country" msgstr "" #: application/views/cabrillo/index.php:186 +#: application/views/reg1test/index.php:150 msgid "No contests were found in your log." msgstr "" @@ -4429,13 +5097,13 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:158 +#: application/views/contesting/index.php:219 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:629 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 -#: application/views/view_log/qso.php:199 +#: application/views/view_log/qso.php:202 msgid "Comment" msgstr "Komentář" @@ -4467,9 +5135,9 @@ msgid "No Contests" msgstr "" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/edit.php:21 -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:635 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4497,10 +5165,11 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:38 -#: application/views/dashboard/index.php:262 -#: application/views/dashboard/index.php:289 -#: application/views/dashboard/index.php:310 -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:278 +#: application/views/dashboard/index.php:305 +#: application/views/dashboard/index.php:326 +#: application/views/dashboard/index.php:347 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "Dnes" @@ -4534,7 +5203,7 @@ msgstr "" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:466 +#: application/views/interface_assets/header.php:472 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:43 @@ -4589,15 +5258,15 @@ msgid "Name of Contest in ADIF-specification" msgstr "" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "" #: application/views/contesting/edit.php:31 -#: application/views/contesting/index.php:24 -#: application/views/qso/edit_ajax.php:548 -#: application/views/view_log/qso.php:275 +#: application/views/contesting/index.php:25 +#: application/views/qso/edit_ajax.php:575 +#: application/views/view_log/qso.php:278 msgid "Contest Name" msgstr "Název závodu" @@ -4633,90 +5302,138 @@ msgstr "" msgid "Serial + Gridsquare" msgstr "" -#: application/views/contesting/index.php:34 +#: application/views/contesting/index.php:21 +msgid "Serial + Gridsquare + Exchange" +msgstr "" + +#: application/views/contesting/index.php:35 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:539 application/views/qso/index.php:352 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:352 msgid "Operator Callsign" msgstr "" -#: application/views/contesting/index.php:116 -#: application/views/contesting/index.php:208 -#: application/views/qso/edit_ajax.php:571 -msgid "Serial (S)" +#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:45 +msgid "More Settings" msgstr "" -#: application/views/contesting/index.php:121 -#: application/views/contesting/index.php:206 -msgid "Exch (S)" -msgstr "Výměna (S)" - -#: application/views/contesting/index.php:126 -msgid "Gridsquare (S)" -msgstr "" - -#: application/views/contesting/index.php:136 -#: application/views/contesting/index.php:209 -#: application/views/qso/edit_ajax.php:566 -msgid "Serial (R)" -msgstr "" - -#: application/views/contesting/index.php:141 -#: application/views/contesting/index.php:207 -msgid "Exch (R)" -msgstr "Výměna (R)" - -#: application/views/contesting/index.php:146 -msgid "Gridsquare (R)" -msgstr "" - -#: application/views/contesting/index.php:163 -msgid "Reset QSO" -msgstr "Smazat QSO" - -#: application/views/contesting/index.php:164 -#: application/views/qso/index.php:607 -msgid "Save QSO" -msgstr "Uložit QSO" - -#: application/views/contesting/index.php:166 +#: application/views/contesting/index.php:49 msgid "Copy received exchange to" msgstr "" -#: application/views/contesting/index.php:168 +#: application/views/contesting/index.php:51 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "" -#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:55 msgid "Age" msgstr "" -#: application/views/contesting/index.php:174 +#: application/views/contesting/index.php:57 msgid "RX Power (W)" msgstr "" -#: application/views/contesting/index.php:175 +#: application/views/contesting/index.php:58 msgid "Locator" msgstr "Lokátor" -#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:59 +#: application/views/qso/edit_ajax.php:177 +msgid "QTH" +msgstr "" + +#: application/views/contesting/index.php:64 +msgid "Sequence of Exchanges" +msgstr "" + +#: application/views/contesting/index.php:67 +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 "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Grid" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Serial" +msgstr "" + +#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:255 +#: application/views/qso/edit_ajax.php:598 +msgid "Serial (S)" +msgstr "" + +#: application/views/contesting/index.php:177 +msgid "Gridsquare (S)" +msgstr "" + +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:253 +msgid "Exch (S)" +msgstr "Výměna (S)" + +#: application/views/contesting/index.php:196 +#: application/views/contesting/index.php:256 +#: application/views/qso/edit_ajax.php:593 +msgid "Serial (R)" +msgstr "" + +#: application/views/contesting/index.php:201 +msgid "Gridsquare (R)" +msgstr "" + +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:254 +msgid "Exch (R)" +msgstr "Výměna (R)" + +#: application/views/contesting/index.php:224 +msgid "Reset QSO" +msgstr "Smazat QSO" + +#: application/views/contesting/index.php:225 +#: application/views/qso/index.php:629 +msgid "Save QSO" +msgstr "Uložit QSO" + +#: application/views/contesting/index.php:234 msgid "Callsign Suggestions" msgstr "Našeptávač značek" -#: application/views/contesting/index.php:194 +#: application/views/contesting/index.php:241 msgid "Contest Logbook" msgstr "Závodní deník" -#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:258 #: application/views/qso/edit_ajax.php:164 msgid "VUCC Gridsquare" msgstr "" -#: application/views/continents/index.php:62 -#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 -#: application/views/view_log/qso.php:242 -msgid "Continent" -msgstr "Kontinent" - #: application/views/continents/index.php:63 #: application/views/statistics/index.php:19 #: application/views/statistics/index.php:113 @@ -4734,14 +5451,15 @@ msgstr "" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:261 -#: application/views/station_profile/edit.php:314 +#: application/views/options/appearance.php:109 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 msgid "Enabled" msgstr "" -#: application/views/cron/edit.php:36 application/views/cron/index.php:53 +#: application/views/cron/edit.php:36 application/views/cron/index.php:55 msgid "Intervall" msgstr "" @@ -4791,6 +5509,7 @@ msgstr "" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "" @@ -4804,79 +5523,84 @@ msgid "" "requiring CLI access." msgstr "" -#: application/views/cron/index.php:18 +#: application/views/cron/index.php:19 msgid "" "To execute cron jobs based on the data below, remove all old cron jobs and " "create a new one:" msgstr "" -#: application/views/cron/index.php:27 application/views/cron/index.php:31 -msgid "Status Master-Cron" +#: application/views/cron/index.php:29 application/views/cron/index.php:33 +msgid "Status Master-Cron:" msgstr "" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgctxt "PHP Version" msgid "Min. Version is" msgstr "" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgid "PHP Version not supported." msgstr "" -#: application/views/cron/index.php:41 +#: application/views/cron/index.php:43 msgid "Cron List" msgstr "" -#: application/views/cron/index.php:50 +#: application/views/cron/index.php:52 #: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "" -#: application/views/cron/index.php:54 +#: application/views/cron/index.php:56 msgid "Last Run" msgstr "" -#: application/views/cron/index.php:55 +#: application/views/cron/index.php:57 msgid "Next Run" msgstr "" -#: application/views/cron/index.php:68 +#: application/views/cron/index.php:70 msgid "healthy" msgstr "" -#: application/views/cron/index.php:70 +#: application/views/cron/index.php:72 msgid "failed" msgstr "" -#: application/views/cron/index.php:75 +#: application/views/cron/index.php:74 +msgid "pending" +msgstr "" + +#: application/views/cron/index.php:79 msgid "disabled" msgstr "" -#: application/views/cron/index.php:79 application/views/cron/index.php:81 -#: application/views/cron/index.php:83 application/views/debug/index.php:494 +#: application/views/cron/index.php:83 application/views/cron/index.php:85 +#: application/views/cron/index.php:87 application/views/debug/index.php:494 #: application/views/debug/index.php:500 application/views/debug/index.php:505 #: application/views/debug/index.php:510 application/views/debug/index.php:515 #: application/views/debug/index.php:520 application/views/debug/index.php:525 +#: application/views/user/index.php:138 msgid "never" msgstr "" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:102 msgid "Your Mastercron isn't running." msgstr "" -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:103 msgid "" "Copy the cron above to a external cron service or into your server's cron to " "use this cron manager." msgstr "" -#: application/views/cron/index.php:100 +#: application/views/cron/index.php:104 msgid "" "On a basic linux server with shell access use this command to edit your " "crons:" msgstr "" -#: application/views/cron/index.php:107 +#: application/views/cron/index.php:111 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -4894,154 +5618,10 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:411 msgid "Propagation Mode" msgstr "Šíření signálu" -#: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:214 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 -msgctxt "Propagation Mode" -msgid "Aircraft Scatter" -msgstr "" - -#: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:215 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 -msgctxt "Propagation Mode" -msgid "Aurora" -msgstr "" - -#: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:216 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 -msgctxt "Propagation Mode" -msgid "Aurora-E" -msgstr "" - -#: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:217 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 -msgctxt "Propagation Mode" -msgid "Back scatter" -msgstr "" - -#: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:218 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 -msgctxt "Propagation Mode" -msgid "EchoLink" -msgstr "" - -#: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:219 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 -msgctxt "Propagation Mode" -msgid "Earth-Moon-Earth" -msgstr "" - -#: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:220 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 -msgctxt "Propagation Mode" -msgid "Sporadic E" -msgstr "" - -#: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:221 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 -msgctxt "Propagation Mode" -msgid "Field Aligned Irregularities" -msgstr "" - -#: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:222 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 -msgctxt "Propagation Mode" -msgid "F2 Reflection" -msgstr "" - -#: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:223 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 -msgctxt "Propagation Mode" -msgid "Internet-assisted" -msgstr "" - -#: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:224 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 -msgctxt "Propagation Mode" -msgid "Ionoscatter" -msgstr "" - -#: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:225 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 -msgctxt "Propagation Mode" -msgid "IRLP" -msgstr "" - -#: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:226 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 -msgctxt "Propagation Mode" -msgid "Meteor scatter" -msgstr "" - -#: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:227 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 -msgctxt "Propagation Mode" -msgid "Terrestrial or atmospheric repeater or transponder" -msgstr "" - -#: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:228 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 -msgctxt "Propagation Mode" -msgid "Rain scatter" -msgstr "" - -#: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:229 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 -msgctxt "Propagation Mode" -msgid "Satellite" -msgstr "Satelit" - -#: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:230 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 -msgctxt "Propagation Mode" -msgid "Trans-equatorial" -msgstr "" - -#: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:231 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 -msgctxt "Propagation Mode" -msgid "Tropospheric ducting" -msgstr "" - #: application/views/dashboard/index.php:5 msgid "RSTS" msgstr "" @@ -5050,30 +5630,44 @@ msgstr "" msgid "RSTR" msgstr "" -#: application/views/dashboard/index.php:56 +#: application/views/dashboard/index.php:58 msgid "" "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" msgstr "" -#: application/views/dashboard/index.php:63 +#: application/views/dashboard/index.php:65 #, php-format msgctxt "Dashboard Warning" -msgid "You need to update country files! Click %s to do it." +msgid "You need to update country files! Click %shere%s to do it." msgstr "" -#: application/views/dashboard/index.php:72 +#: application/views/dashboard/index.php:73 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station locations. Click %s to do it:" +msgid "You have no station locations. Click %shere%s to do it." msgstr "" #: application/views/dashboard/index.php:81 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station logbook. Click %s to do it:" +msgid "You have no station logbook. Click %shere%s to do it." msgstr "" -#: application/views/dashboard/index.php:91 +#: application/views/dashboard/index.php:89 +#, php-format +msgctxt "Dashboard Warning" +msgid "" +"Your active Station Location isn't linked to your Logbook. Click %shere%s to " +"do it." +msgstr "" + +#: application/views/dashboard/index.php:97 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station linked to your Logbook. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:106 #, php-format msgid "You have had %d QSO today" msgid_plural "You have had %d QSOs today" @@ -5081,55 +5675,55 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: application/views/dashboard/index.php:97 +#: application/views/dashboard/index.php:112 msgid "You have made no QSOs today; time to turn on the radio!" msgstr "Dnes jste neudělali žádná QSO spojení; je čas zapnout rádio!" -#: application/views/dashboard/index.php:104 +#: application/views/dashboard/index.php:119 msgid "Attention: you need to set an active station location." msgstr "Pozor: musíte nastavit aktivní umístění stanice." -#: application/views/dashboard/index.php:110 +#: application/views/dashboard/index.php:125 msgid "" "You have themes without defined theme mode. Please ask the admin to edit the " "themes." msgstr "" -#: application/views/dashboard/index.php:118 +#: application/views/dashboard/index.php:133 msgid "At least one of your LoTW certificates is expired!" msgstr "" -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:139 msgid "At least one of your LoTW certificates is about to expire!" msgstr "" -#: application/views/dashboard/index.php:213 +#: application/views/dashboard/index.php:229 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "Počet QSO spojení" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:252 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "Počet zemí" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:269 #: application/views/visitor/index.php:275 msgid "Needed" msgstr "Zbývá" -#: application/views/dashboard/index.php:266 -#: application/views/dashboard/index.php:293 -#: application/views/dashboard/index.php:314 -#: application/views/dashboard/index.php:335 +#: application/views/dashboard/index.php:282 +#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:330 +#: application/views/dashboard/index.php:351 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:167 -#: application/views/qso/edit_ajax.php:390 -#: application/views/qso/edit_ajax.php:451 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:550 +#: application/views/qso/edit_ajax.php:417 +#: application/views/qso/edit_ajax.php:478 +#: application/views/qso/edit_ajax.php:518 application/views/qso/index.php:572 #: application/views/search/result_search.php:8 #: application/views/search/search_result_ajax.php:180 #: application/views/search/search_result_ajax.php:260 @@ -5137,91 +5731,91 @@ msgstr "Zbývá" #: application/views/search/search_result_ajax.php:332 #: application/views/search/search_result_ajax.php:362 #: application/views/statistics/custom_result.php:89 -#: application/views/view_log/partial/log_ajax.php:140 -#: application/views/view_log/partial/log_ajax.php:217 -#: application/views/view_log/partial/log_ajax.php:237 -#: application/views/view_log/partial/log_ajax.php:287 -#: application/views/view_log/partial/log_ajax.php:295 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:289 +#: application/views/view_log/partial/log_ajax.php:297 #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 -#: src/QSLManager/QSO.php:371 src/QSLManager/QSO.php:423 -#: src/QSLManager/QSO.php:459 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:270 +#: src/QSLManager/QSO.php:373 src/QSLManager/QSO.php:425 +#: src/QSLManager/QSO.php:461 msgid "Sent" msgstr "Odesláno" -#: application/views/dashboard/index.php:272 -#: application/views/dashboard/index.php:299 -#: application/views/dashboard/index.php:320 -#: application/views/dashboard/index.php:341 +#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:315 +#: application/views/dashboard/index.php:336 +#: application/views/dashboard/index.php:357 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 #: application/views/qslprint/qsolist.php:151 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:423 -#: application/views/qso/edit_ajax.php:464 -#: application/views/qso/edit_ajax.php:503 +#: application/views/qso/edit_ajax.php:450 +#: application/views/qso/edit_ajax.php:491 +#: application/views/qso/edit_ajax.php:530 #: application/views/search/search_result_ajax.php:222 #: application/views/search/search_result_ajax.php:273 #: application/views/search/search_result_ajax.php:313 #: application/views/search/search_result_ajax.php:345 #: application/views/search/search_result_ajax.php:375 -#: application/views/view_log/partial/log_ajax.php:178 -#: application/views/view_log/partial/log_ajax.php:218 -#: application/views/view_log/partial/log_ajax.php:263 -#: application/views/view_log/partial/log_ajax.php:288 -#: application/views/view_log/partial/log_ajax.php:296 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:265 +#: application/views/view_log/partial/log_ajax.php:290 +#: application/views/view_log/partial/log_ajax.php:298 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 -#: src/QSLManager/QSO.php:394 src/QSLManager/QSO.php:436 -#: src/QSLManager/QSO.php:472 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:315 +#: src/QSLManager/QSO.php:396 src/QSLManager/QSO.php:438 +#: src/QSLManager/QSO.php:474 msgid "Received" msgstr "Přijato" -#: application/views/dashboard/index.php:278 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:388 -#: application/views/logbookadvanced/index.php:399 +#: application/views/dashboard/index.php:294 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:415 +#: application/views/logbookadvanced/index.php:426 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 -#: application/views/qso/edit_ajax.php:395 -#: application/views/qso/edit_ajax.php:428 -#: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:469 +#: application/views/qso/edit_ajax.php:422 +#: application/views/qso/edit_ajax.php:455 +#: application/views/qso/edit_ajax.php:483 #: application/views/qso/edit_ajax.php:496 -#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:555 +#: application/views/qso/edit_ajax.php:523 +#: application/views/qso/edit_ajax.php:535 application/views/qso/index.php:577 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 -#: application/views/view_log/partial/log_ajax.php:146 -#: application/views/view_log/partial/log_ajax.php:184 -#: application/views/view_log/partial/log_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:273 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 -#: src/QSLManager/QSO.php:319 src/QSLManager/QSO.php:379 -#: src/QSLManager/QSO.php:402 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +#: application/views/view_log/partial/log_ajax.php:249 +#: application/views/view_log/partial/log_ajax.php:275 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:276 +#: src/QSLManager/QSO.php:321 src/QSLManager/QSO.php:381 +#: src/QSLManager/QSO.php:404 msgid "Requested" msgstr "Vyžádáno" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:304 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:351 +#: application/views/dashboard/index.php:367 msgid "VUCC-Grids" msgstr "" #: application/views/dayswithqso/index.php:2 -#: application/views/interface_assets/header.php:146 +#: application/views/interface_assets/header.php:148 msgid "Days with QSOs" msgstr "Dny s QSO" @@ -5250,7 +5844,7 @@ msgstr "" #: application/views/dayswithqso/index.php:58 #: application/views/dayswithqso/index.php:86 #: application/views/dayswithqso/index.php:108 -#: application/views/timeline/index.php:120 +#: application/views/timeline/index.php:153 msgid "End Date" msgstr "" @@ -5317,9 +5911,7 @@ msgstr "" #: application/views/debug/index.php:47 #, php-format -msgid "" -"Check this wiki article here for " -"more information." +msgid "Check this wiki article %shere%s for more information." msgstr "" #: application/views/debug/index.php:48 @@ -5463,7 +6055,7 @@ msgstr "" msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:283 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:671 msgid "Settings" msgstr "" @@ -5520,7 +6112,7 @@ msgstr "" #: application/views/debug/index.php:506 application/views/debug/index.php:511 #: application/views/debug/index.php:516 application/views/debug/index.php:521 #: application/views/debug/index.php:526 -#: application/views/station_profile/edit.php:22 +#: application/views/station_profile/edit.php:49 msgid "Update" msgstr "" @@ -5563,9 +6155,8 @@ msgstr[2] "" #: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:57 -#: application/views/station_profile/edit.php:46 -#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" @@ -5593,69 +6184,93 @@ msgid "Everything ok" msgstr "" #: application/views/debug/index.php:629 -msgid "Bulgarian" +msgid "Albanian" msgstr "" #: application/views/debug/index.php:630 -msgid "Chinese (Simplified)" +msgid "Bosnian" msgstr "" #: application/views/debug/index.php:631 -msgid "Czech" +msgid "Bulgarian" msgstr "" #: application/views/debug/index.php:632 -msgid "Dutch" +msgid "Chinese (Simplified)" msgstr "" #: application/views/debug/index.php:633 -msgid "English" +msgid "Croatian" msgstr "" #: application/views/debug/index.php:634 -msgid "Finnish" +msgid "Czech" msgstr "" #: application/views/debug/index.php:635 -msgid "French" +msgid "Dutch" msgstr "" #: application/views/debug/index.php:636 -msgid "German" +msgid "English" msgstr "" #: application/views/debug/index.php:637 -msgid "Greek" +msgid "Finnish" msgstr "" #: application/views/debug/index.php:638 -msgid "Italian" +msgid "French" msgstr "" #: application/views/debug/index.php:639 -msgid "Polish" +msgid "German" msgstr "" #: application/views/debug/index.php:640 -msgid "Portuguese" +msgid "Greek" msgstr "" #: application/views/debug/index.php:641 -msgid "Russian" +msgid "Italian" msgstr "" #: application/views/debug/index.php:642 -msgid "Spanish" +msgid "Montenegrin" msgstr "" #: application/views/debug/index.php:643 -msgid "Swedish" +msgid "Polish" msgstr "" #: application/views/debug/index.php:644 +msgid "Portuguese" +msgstr "" + +#: application/views/debug/index.php:645 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:646 +msgid "Serbian" +msgstr "" + +#: application/views/debug/index.php:647 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:648 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:649 msgid "Turkish" msgstr "" +#: application/views/distancerecords/index.php:4 +msgid "This page lists distance records per satellite based on gridsquares." +msgstr "" + #: application/views/distances/index.php:7 #: application/views/interface_assets/footer.php:30 #: application/views/simplefle/index.php:68 @@ -5663,7 +6278,8 @@ msgid "QSO Data" msgstr "" #: application/views/distances/index.php:9 -msgid "contacts were plotted.
Your furthest contact was with" +#, php-format +msgid "contacts were plotted.%s Your furthest contact was with" msgstr "" #: application/views/distances/index.php:10 @@ -5705,7 +6321,7 @@ msgid "Date to" msgstr "" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:366 +#: application/views/view_log/qso.php:369 msgid "QSL Info" msgstr "" @@ -5731,7 +6347,7 @@ msgstr "" #: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 #: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 #: application/views/eqsl/tools.php:15 -#: application/views/interface_assets/header.php:243 +#: application/views/interface_assets/header.php:247 msgid "Tools" msgstr "" @@ -5871,27 +6487,15 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2324 -#: application/views/interface_assets/footer.php:2342 -#: application/views/interface_assets/footer.php:2363 -#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2338 +#: application/views/interface_assets/footer.php:2356 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 #: application/views/qslcard/index.php:66 -#: application/views/view_log/qso.php:614 +#: application/views/view_log/qso.php:617 msgid "View" msgstr "" -#: application/views/gridmap/index.php:38 -#: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:604 -#: application/views/logbookadvanced/useroptions.php:118 -msgid "Propagation" -msgstr "" - -#: application/views/gridmap/index.php:42 -msgid "None/Empty" -msgstr "" - #: application/views/gridmap/index.php:43 msgid "All except SAT" msgstr "" @@ -5987,8 +6591,8 @@ msgstr "" #: application/views/interface_assets/footer.php:31 #: application/views/search/search_result_ajax.php:404 #: application/views/view_log/partial/log.php:135 -#: application/views/view_log/partial/log_ajax.php:318 -#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log_ajax.php:320 +#: application/views/view_log/qso.php:437 msgid "Edit QSO" msgstr "Upravit QSO" @@ -5996,171 +6600,192 @@ msgstr "Upravit QSO" msgid "Attention" msgstr "" -#: application/views/interface_assets/footer.php:36 -msgid "OK" -msgstr "" - -#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/footer.php:38 msgid "Warning! Are you sure you want delete QSO with " msgstr "" -#: application/views/interface_assets/footer.php:38 +#: application/views/interface_assets/footer.php:39 #: application/views/user/edit.php:493 msgid "Colors" msgstr "" -#: application/views/interface_assets/footer.php:40 +#: application/views/interface_assets/footer.php:41 msgid "Worked not confirmed" msgstr "" -#: application/views/interface_assets/footer.php:41 +#: application/views/interface_assets/footer.php:42 msgid "Not worked" msgstr "" -#: application/views/interface_assets/footer.php:44 -#: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/interface_assets/footer.php:46 +#: application/views/qso/index.php:623 +#: application/views/visitor/layout/footer.php:246 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:47 #: application/views/qso/edit_ajax.php:211 -#: application/views/qso/edit_ajax.php:512 +#: application/views/qso/edit_ajax.php:539 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "" -#: application/views/interface_assets/footer.php:127 -#: application/views/interface_assets/header.php:434 +#: application/views/interface_assets/footer.php:48 +msgid "No states for this DXCC available" +msgstr "" + +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "" + +#: application/views/interface_assets/footer.php:132 +#: application/views/interface_assets/header.php:440 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:392 +#: application/views/interface_assets/footer.php:398 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:395 +#: application/views/interface_assets/footer.php:401 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:411 +#: application/views/interface_assets/footer.php:417 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:413 +#: application/views/interface_assets/footer.php:419 #: application/views/search/filter.php:46 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:415 +#: application/views/interface_assets/footer.php:421 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:420 +#: application/views/interface_assets/footer.php:426 #: application/views/search/filter.php:60 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:432 -#: application/views/interface_assets/footer.php:561 -#: application/views/interface_assets/footer.php:625 +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:437 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:458 -#: application/views/interface_assets/footer.php:589 +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 #: application/views/search/filter.php:79 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:496 +#: application/views/interface_assets/footer.php:502 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:516 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:519 +#: application/views/interface_assets/footer.php:525 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:545 +#: application/views/interface_assets/footer.php:551 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:549 +#: application/views/interface_assets/footer.php:555 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:678 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1156 -#, php-format -msgid "You're not logged it. Please login" +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:533 +msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:1362 -#: application/views/interface_assets/footer.php:1366 -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1506 -#: application/views/interface_assets/footer.php:1510 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:731 +msgid "Count: " +msgstr "" + +#: application/views/interface_assets/footer.php:732 +msgid "Grids: " +msgstr "" + +#: application/views/interface_assets/footer.php:1167 +#, php-format +msgid "You're not logged in. Please %slogin%s" +msgstr "" + +#: application/views/interface_assets/footer.php:1375 +#: application/views/interface_assets/footer.php:1379 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1523 +#: application/views/interface_assets/footer.php:1526 msgid "grid square" msgstr "lokátor" -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1526 msgid "Total count" msgstr "Celkový počet" -#: application/views/interface_assets/footer.php:2100 +#: application/views/interface_assets/footer.php:2114 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2120 +#: application/views/interface_assets/footer.php:2134 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2160 +#: application/views/interface_assets/footer.php:2174 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "eQSL karta" -#: application/views/interface_assets/footer.php:2162 +#: application/views/interface_assets/footer.php:2176 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2335 -#: application/views/interface_assets/footer.php:2374 -#: application/views/view_log/qso.php:604 +#: application/views/interface_assets/footer.php:2349 +#: application/views/interface_assets/footer.php:2388 +#: application/views/view_log/qso.php:607 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2354 +#: application/views/interface_assets/footer.php:2368 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2392 +#: application/views/interface_assets/footer.php:2406 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2403 -#: application/views/interface_assets/footer.php:2428 +#: application/views/interface_assets/footer.php:2417 +#: application/views/interface_assets/footer.php:2442 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2439 +#: application/views/interface_assets/footer.php:2453 msgid "Something went wrong. Please try again!" msgstr "" @@ -6216,91 +6841,91 @@ msgstr "Analýza" msgid "Activated Gridsquares" msgstr "Aktivované lokátory" -#: application/views/interface_assets/header.php:160 +#: application/views/interface_assets/header.php:162 msgid "International" msgstr "" -#: application/views/interface_assets/header.php:166 +#: application/views/interface_assets/header.php:168 msgid "ITU" msgstr "" -#: application/views/interface_assets/header.php:186 +#: application/views/interface_assets/header.php:190 msgid "Canada" msgstr "" -#: application/views/interface_assets/header.php:192 +#: application/views/interface_assets/header.php:196 msgid "Germany" msgstr "" -#: application/views/interface_assets/header.php:196 +#: application/views/interface_assets/header.php:200 msgid "DL Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:200 +#: application/views/interface_assets/header.php:204 msgid "Great Britain" msgstr "" -#: application/views/interface_assets/header.php:202 +#: application/views/interface_assets/header.php:206 msgid "WAB" msgstr "" -#: application/views/interface_assets/header.php:206 +#: application/views/interface_assets/header.php:210 msgid "Japan" msgstr "" -#: application/views/interface_assets/header.php:212 +#: application/views/interface_assets/header.php:216 msgid "JA Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:216 +#: application/views/interface_assets/header.php:220 msgid "Luxemburg" msgstr "" -#: application/views/interface_assets/header.php:218 +#: application/views/interface_assets/header.php:222 msgid "LX Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:222 +#: application/views/interface_assets/header.php:226 msgid "Switzerland" msgstr "" -#: application/views/interface_assets/header.php:228 +#: application/views/interface_assets/header.php:232 msgid "USA" msgstr "" -#: application/views/interface_assets/header.php:234 +#: application/views/interface_assets/header.php:238 msgid "US Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:251 +#: application/views/interface_assets/header.php:255 msgid "Bandmap" msgstr "" -#: application/views/interface_assets/header.php:253 +#: application/views/interface_assets/header.php:257 msgid "SAT Timers" msgstr "" -#: application/views/interface_assets/header.php:256 +#: application/views/interface_assets/header.php:260 msgid "Satellite Flightpath" msgstr "" -#: application/views/interface_assets/header.php:258 +#: application/views/interface_assets/header.php:262 msgid "Satellite Pass" msgstr "" -#: application/views/interface_assets/header.php:265 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:269 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:274 msgid "Global Options" msgstr "Globální nastavení" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:280 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:11 +#: application/views/satellite/pass.php:495 #: application/views/statistics/custom.php:20 #: application/views/statistics/custom_result.php:21 #: application/views/statistics/index.php:39 @@ -6308,79 +6933,83 @@ msgstr "Globální nastavení" msgid "Satellites" msgstr "" -#: application/views/interface_assets/header.php:282 +#: application/views/interface_assets/header.php:286 msgid "Update Country Files" msgstr "Aktualizace souborů" -#: application/views/interface_assets/header.php:286 +#: application/views/interface_assets/header.php:290 msgid "Debug Information" msgstr "Informace pro ladění" -#: application/views/interface_assets/header.php:333 +#: application/views/interface_assets/header.php:337 msgid "Add/Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:335 +#: application/views/interface_assets/header.php:339 msgid "Log" msgstr "" -#: application/views/interface_assets/header.php:342 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:346 +#: application/views/logbookadvanced/index.php:474 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:371 +#: application/views/interface_assets/header.php:375 #: application/views/user/edit.php:49 msgid "Account" msgstr "Informace o účtu" -#: application/views/interface_assets/header.php:386 +#: application/views/interface_assets/header.php:390 msgid "Other Export Options" msgstr "" -#: application/views/interface_assets/header.php:394 +#: application/views/interface_assets/header.php:398 msgid "Cabrillo Export" msgstr "" -#: application/views/interface_assets/header.php:418 -msgid "QSL Queue" -msgstr "" - -#: application/views/interface_assets/header.php:419 -msgid "Labels" -msgstr "Štítky" - -#: application/views/interface_assets/header.php:421 -msgid "Third-Party Services" +#: application/views/interface_assets/header.php:400 +msgid "EDI Export" msgstr "" #: application/views/interface_assets/header.php:424 +msgid "QSL Queue" +msgstr "" + +#: application/views/interface_assets/header.php:425 +msgid "Labels" +msgstr "Štítky" + +#: application/views/interface_assets/header.php:427 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:430 msgid "eQSL Import / Export" msgstr "eQSL import / export" -#: application/views/interface_assets/header.php:425 +#: application/views/interface_assets/header.php:431 msgid "HRDLog Logbook" msgstr "" -#: application/views/interface_assets/header.php:435 +#: application/views/interface_assets/header.php:441 msgid "Help" msgstr "Nápověda" -#: application/views/interface_assets/header.php:436 +#: application/views/interface_assets/header.php:442 msgid "Forum" msgstr "Fórum" -#: application/views/interface_assets/header.php:438 +#: application/views/interface_assets/header.php:444 msgid "Logout" msgstr "Odhlásit se" -#: application/views/interface_assets/header.php:446 +#: application/views/interface_assets/header.php:452 msgid "Select a Location" msgstr "" -#: application/views/interface_assets/header.php:525 +#: application/views/interface_assets/header.php:531 msgid "Extras" msgstr "" @@ -6651,86 +7280,122 @@ msgid "Start printing at?" msgstr "" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:405 -#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" -#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/edit.php:23 msgid "LoTW Sent" msgstr "" -#: application/views/logbookadvanced/edit.php:23 +#: application/views/logbookadvanced/edit.php:24 msgid "LoTW Received" msgstr "" -#: application/views/logbookadvanced/edit.php:73 +#: application/views/logbookadvanced/edit.php:75 msgid "SAT Mode" msgstr "" -#: application/views/logbookadvanced/edit.php:87 +#: application/views/logbookadvanced/edit.php:89 msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:174 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:144 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:148 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:152 +#: application/views/logbookadvanced/index.php:569 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:148 +#: application/views/logbookadvanced/index.php:159 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:224 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:540 +msgid "Invalid" +msgstr "" + +#: application/views/logbookadvanced/index.php:324 msgid "QSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:375 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:397 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:439 #: application/views/lookup/lotwuser.php:12 -#: application/views/qso/edit_ajax.php:394 -#: application/views/qso/edit_ajax.php:427 -#: application/views/qso/edit_ajax.php:455 -#: application/views/qso/edit_ajax.php:468 +#: application/views/qso/edit_ajax.php:421 +#: application/views/qso/edit_ajax.php:454 +#: application/views/qso/edit_ajax.php:482 #: application/views/qso/edit_ajax.php:495 -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 +#: application/views/qso/edit_ajax.php:522 +#: application/views/qso/edit_ajax.php:534 application/views/qso/index.php:576 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:209 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:236 -#: application/views/station_profile/create.php:275 -#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 #: application/views/station_profile/create.php:293 -#: application/views/station_profile/edit.php:330 -#: application/views/station_profile/edit.php:338 -#: application/views/station_profile/edit.php:364 -#: application/views/station_profile/edit.php:385 -#: application/views/station_profile/edit.php:403 -#: application/views/station_profile/edit.php:410 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 +#: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 #: application/views/user/edit.php:347 application/views/user/edit.php:358 #: application/views/user/edit.php:369 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:399 @@ -6740,35 +7405,35 @@ msgstr "" msgid "Yes" msgstr "Ano" -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 -#: application/views/logbookadvanced/index.php:376 -#: application/views/logbookadvanced/index.php:387 -#: application/views/logbookadvanced/index.php:398 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:440 #: application/views/lookup/lotwuser.php:14 -#: application/views/qso/edit_ajax.php:393 -#: application/views/qso/edit_ajax.php:426 -#: application/views/qso/edit_ajax.php:454 -#: application/views/qso/edit_ajax.php:467 +#: application/views/qso/edit_ajax.php:420 +#: application/views/qso/edit_ajax.php:453 +#: application/views/qso/edit_ajax.php:481 #: application/views/qso/edit_ajax.php:494 -#: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 +#: application/views/qso/edit_ajax.php:521 +#: application/views/qso/edit_ajax.php:533 application/views/qso/index.php:575 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:210 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:237 -#: application/views/station_profile/create.php:276 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/create.php:292 -#: application/views/station_profile/edit.php:331 -#: application/views/station_profile/edit.php:339 -#: application/views/station_profile/edit.php:365 -#: application/views/station_profile/edit.php:386 -#: application/views/station_profile/edit.php:404 -#: application/views/station_profile/edit.php:411 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 #: application/views/user/edit.php:348 application/views/user/edit.php:359 #: application/views/user/edit.php:370 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:400 @@ -6779,32 +7444,32 @@ msgstr "Ano" msgid "No" msgstr "Ne" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 -#: application/views/logbookadvanced/index.php:389 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:416 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 -#: application/views/qso/edit_ajax.php:396 -#: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:497 application/views/qso/index.php:556 +#: application/views/qso/edit_ajax.php:423 +#: application/views/qso/edit_ajax.php:484 +#: application/views/qso/edit_ajax.php:524 application/views/qso/index.php:578 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:225 -#: application/views/view_log/partial/log_ajax.php:143 -#: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +#: src/QSLManager/QSO.php:273 src/QSLManager/QSO.php:318 msgid "Queued" msgstr "Ve frontě" -#: application/views/logbookadvanced/index.php:304 -#: application/views/logbookadvanced/index.php:314 -#: application/views/logbookadvanced/index.php:346 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:368 -#: application/views/logbookadvanced/index.php:378 -#: application/views/logbookadvanced/index.php:390 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:373 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:417 +#: application/views/logbookadvanced/index.php:427 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6812,42 +7477,42 @@ msgstr "Ve frontě" #: application/views/qslprint/qsolist.php:109 #: application/views/qslprint/qsolist.php:174 #: application/views/qslprint/qsolist.php:189 -#: application/views/qso/edit_ajax.php:397 -#: application/views/qso/edit_ajax.php:429 -#: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:470 -#: application/views/qso/edit_ajax.php:498 -#: application/views/qso/edit_ajax.php:509 application/views/qso/index.php:557 +#: application/views/qso/edit_ajax.php:424 +#: application/views/qso/edit_ajax.php:456 +#: application/views/qso/edit_ajax.php:485 +#: application/views/qso/edit_ajax.php:497 +#: application/views/qso/edit_ajax.php:525 +#: application/views/qso/edit_ajax.php:536 application/views/qso/index.php:579 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/search/search_result_ajax.php:305 #: application/views/search/search_result_ajax.php:320 -#: application/views/view_log/partial/log_ajax.php:149 -#: application/views/view_log/partial/log_ajax.php:187 -#: application/views/view_log/partial/log_ajax.php:242 -#: application/views/view_log/partial/log_ajax.php:268 -#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 -#: src/QSLManager/QSO.php:375 src/QSLManager/QSO.php:398 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +#: application/views/view_log/partial/log_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:270 +#: src/QSLManager/QSO.php:279 src/QSLManager/QSO.php:324 +#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:400 msgid "Invalid (Ignore)" msgstr "Neplatné (Ignorováno)" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:335 msgid "QSL received" msgstr "" -#: application/views/logbookadvanced/index.php:315 -#: application/views/logbookadvanced/index.php:357 -#: application/views/logbookadvanced/index.php:379 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:428 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:346 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:359 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6856,268 +7521,264 @@ msgstr "" #: application/views/qslprint/qsolist.php:77 #: application/views/qslprint/qsolist.php:119 #: application/views/qslprint/qsolist.php:210 -#: application/views/qso/edit_ajax.php:408 -#: application/views/qso/edit_ajax.php:441 application/views/qso/index.php:568 +#: application/views/qso/edit_ajax.php:435 +#: application/views/qso/edit_ajax.php:468 application/views/qso/index.php:590 #: application/views/search/search_result_ajax.php:199 #: application/views/search/search_result_ajax.php:241 -#: application/views/view_log/partial/log_ajax.php:162 -#: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +#: src/QSLManager/QSO.php:296 src/QSLManager/QSO.php:339 msgid "Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:360 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 #: application/views/qslprint/qsolist.php:80 #: application/views/qslprint/qsolist.php:122 #: application/views/qslprint/qsolist.php:211 -#: application/views/qso/edit_ajax.php:407 -#: application/views/qso/edit_ajax.php:440 application/views/qso/index.php:567 +#: application/views/qso/edit_ajax.php:434 +#: application/views/qso/edit_ajax.php:467 application/views/qso/index.php:589 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 -#: application/views/view_log/partial/log_ajax.php:165 -#: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +#: src/QSLManager/QSO.php:299 src/QSLManager/QSO.php:342 msgid "Direct" msgstr "Přímá" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 #: application/views/qslprint/qsolist.php:86 #: application/views/qslprint/qsolist.php:128 #: application/views/qslprint/qsolist.php:212 -#: application/views/qso/edit_ajax.php:409 -#: application/views/qso/edit_ajax.php:442 application/views/qso/index.php:569 +#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:591 #: application/views/search/search_result_ajax.php:208 #: application/views/search/search_result_ajax.php:250 -#: application/views/view_log/partial/log_ajax.php:171 -#: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +#: src/QSLManager/QSO.php:305 src/QSLManager/QSO.php:348 msgid "Electronic" msgstr "Elektronická" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:362 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 -#: application/views/qso/edit_ajax.php:410 -#: application/views/qso/edit_ajax.php:443 application/views/qso/index.php:570 +#: application/views/qso/edit_ajax.php:437 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:592 #: application/views/search/search_result_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:206 +#: application/views/view_log/partial/log_ajax.php:208 msgid "Manager" msgstr "Správce" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:356 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:366 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:377 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:388 msgid "Clublog sent" msgstr "" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:399 msgid "Clublog received" msgstr "" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:410 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:436 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:448 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" -#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:451 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:425 -#: application/views/qso/edit_ajax.php:595 +#: application/views/logbookadvanced/index.php:452 +#: application/views/qso/edit_ajax.php:622 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:453 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:454 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:456 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:457 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:459 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:460 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:462 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:463 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:465 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:466 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:472 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:477 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:480 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:486 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:492 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:495 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:498 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:501 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:507 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:516 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:518 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:527 #: application/views/qso/index.php:272 -#: application/views/station_profile/edit.php:65 +#: application/views/station_profile/edit.php:92 msgid "Location" msgstr "Místo" -#: application/views/logbookadvanced/index.php:506 -msgid "Callsign: " -msgstr "" - -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:539 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:547 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:605 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:650 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -7145,41 +7806,15 @@ msgstr "" msgid "Column" msgstr "" -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/useroptions.php:152 msgctxt "Map Options" msgid "Layer" msgstr "" -#: application/views/logbookadvanced/useroptions.php:149 +#: application/views/logbookadvanced/useroptions.php:153 msgid "Default on" msgstr "" -#: application/views/logbookadvanced/useroptions.php:154 -#: application/views/stationsetup/exportmapoptions.php:23 -msgctxt "Map Options" -msgid "Path lines" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:158 -msgctxt "Map Options" -msgid "Gridsquares" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:162 -msgctxt "Map Options" -msgid "CQ Zones" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:166 -msgctxt "Map Options" -msgid "ITU Zones" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:170 -msgctxt "Map Options" -msgid "Night Shadow" -msgstr "" - #: application/views/lookup/index.php:8 msgid "US State" msgstr "" @@ -7283,58 +7918,62 @@ msgstr "Dostupné certifikáty" msgid "Upload Certificate" msgstr "Nahraj certifikát" -#: application/views/lotw_views/index.php:41 +#: application/views/lotw_views/index.php:37 msgid "QSO Start Date" msgstr "" -#: application/views/lotw_views/index.php:42 +#: application/views/lotw_views/index.php:38 msgid "QSO End Date" msgstr "" -#: application/views/lotw_views/index.php:43 +#: application/views/lotw_views/index.php:39 msgid "Date Created" msgstr "Datum vytvoření" -#: application/views/lotw_views/index.php:44 +#: application/views/lotw_views/index.php:40 msgid "Date Expires" msgstr "Datum vypršení" -#: application/views/lotw_views/index.php:46 -#: application/views/view_log/qso.php:404 +#: application/views/lotw_views/index.php:42 +#: application/views/view_log/qso.php:407 msgid "Last Upload" msgstr "Last upload" -#: application/views/lotw_views/index.php:91 +#: application/views/lotw_views/index.php:87 msgid "Expired" msgstr "Vypršel" -#: application/views/lotw_views/index.php:93 +#: application/views/lotw_views/index.php:89 msgid "Expiring" msgstr "" -#: application/views/lotw_views/index.php:105 +#: application/views/lotw_views/index.php:91 +msgid "Valid" +msgstr "Platný" + +#: application/views/lotw_views/index.php:101 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:108 +#: application/views/lotw_views/index.php:104 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:114 +#: application/views/lotw_views/index.php:110 msgid "Not Synced" msgstr "Není synchronizováno" -#: application/views/lotw_views/index.php:129 +#: application/views/lotw_views/index.php:125 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:144 +#: application/views/lotw_views/index.php:140 msgid "Information" msgstr "Informace" -#: application/views/lotw_views/index.php:149 +#: application/views/lotw_views/index.php:145 msgid "Manual Sync" msgstr "Ruční synchronizace" @@ -7551,6 +8190,14 @@ msgstr "" msgid "This enables the button to Wavelog's Github page in the public view" msgstr "" +#: application/views/options/appearance.php:107 +msgid "Public Login Button" +msgstr "" + +#: application/views/options/appearance.php:112 +msgid "This enables the button to login to Wavelog in the public view" +msgstr "" + #: application/views/options/dxcluster.php:38 msgid "Provider of DXClusterCache" msgstr "" @@ -7855,7 +8502,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:64 #: application/views/oqrs/showrequests.php:87 -#: application/views/user/main.php:48 application/views/user/profile.php:24 +#: application/views/user/index.php:48 application/views/user/profile.php:24 msgid "E-mail" msgstr "" @@ -7878,21 +8525,21 @@ msgstr "" #: application/views/search/search_result_ajax.php:127 #: application/views/user/edit.php:478 #: application/views/view_log/partial/log.php:22 -#: application/views/view_log/partial/log_ajax.php:86 -#: application/views/view_log/qso.php:503 -#: application/views/view_log/qso.php:507 -#: application/views/view_log/qso.php:511 -#: application/views/view_log/qso.php:515 -#: application/views/view_log/qso.php:521 -#: application/views/view_log/qso.php:528 -#: application/views/view_log/qso.php:535 -#: application/views/view_log/qso.php:542 -#: application/views/view_log/qso.php:549 -#: application/views/view_log/qso.php:556 -#: application/views/view_log/qso.php:563 -#: application/views/view_log/qso.php:570 -#: application/views/view_log/qso.php:577 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log_ajax.php:88 +#: application/views/view_log/qso.php:506 +#: application/views/view_log/qso.php:510 +#: application/views/view_log/qso.php:514 +#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:531 +#: application/views/view_log/qso.php:538 +#: application/views/view_log/qso.php:545 +#: application/views/view_log/qso.php:552 +#: application/views/view_log/qso.php:559 +#: application/views/view_log/qso.php:566 +#: application/views/view_log/qso.php:573 +#: application/views/view_log/qso.php:580 +#: application/views/view_log/qso.php:585 msgid "Station" msgstr "Stanice" @@ -7900,10 +8547,10 @@ msgstr "Stanice" #: application/views/qslprint/qslprint.php:28 #: application/views/qslprint/qsolist.php:14 #: application/views/qslprint/qsolist.php:83 -#: application/views/qso/index.php:576 +#: application/views/qso/index.php:598 #: application/views/search/search_result_ajax.php:205 -#: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:300 +#: application/views/view_log/partial/log_ajax.php:170 +#: src/QSLManager/QSO.php:302 msgid "Via" msgstr "Přes" @@ -8134,7 +8781,7 @@ msgid "Remove" msgstr "" #: application/views/qslprint/qslprint.php:33 -#: application/views/simplefle/index.php:133 +#: application/views/simplefle/index.php:139 msgid "QSO List" msgstr "" @@ -8180,35 +8827,20 @@ msgid "" "queue." msgstr "" -#: application/views/qso/components/winkeysettings.php:7 -#: application/views/qso/components/winkeysettings_results.php:7 -msgid "Winkey Macros" -msgstr "" - -#: application/views/qso/components/winkeysettings.php:12 -#: application/views/qso/components/winkeysettings.php:28 -#: application/views/qso/components/winkeysettings.php:44 -#: application/views/qso/components/winkeysettings.php:60 -#: application/views/qso/components/winkeysettings.php:76 -#: application/views/qso/components/winkeysettings_results.php:12 -#: application/views/qso/components/winkeysettings_results.php:28 -#: application/views/qso/components/winkeysettings_results.php:44 -#: application/views/qso/components/winkeysettings_results.php:60 -#: application/views/qso/components/winkeysettings_results.php:76 -#, php-format -msgid "Function %d - Name" -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:83 -#: application/views/qso/components/winkeysettings_results.php:19 -#: application/views/qso/components/winkeysettings_results.php:35 -#: application/views/qso/components/winkeysettings_results.php:51 -#: application/views/qso/components/winkeysettings_results.php:67 -#: application/views/qso/components/winkeysettings_results.php:83 +#, 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 #, php-format msgid "Function %d - Macro" msgstr "" @@ -8234,7 +8866,8 @@ msgid "RX Band" msgstr "" #: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:346 -#: application/views/view_log/qso.php:542 +#: application/views/reg1test/index.php:114 +#: application/views/view_log/qso.php:545 msgid "Transmit Power (W)" msgstr "Vysílací výkon (W)" @@ -8246,10 +8879,6 @@ msgstr "Zadej výkon ve Wattech. Jsou povolena pouze čísla." msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:177 -msgid "QTH" -msgstr "" - #: application/views/qso/edit_ajax.php:258 msgid "Sat Name" msgstr "" @@ -8258,69 +8887,85 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:356 application/views/qso/index.php:255 -#: application/views/qso/index.php:500 application/views/user/edit.php:599 -#: application/views/view_log/qso.php:332 -#: application/views/view_log/qso.php:582 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:545 +msgid "Antenna Azimuth (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:547 +msgid "Antenna azimuth in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:274 application/views/qso/index.php:551 +msgid "Antenna Elevation (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:276 application/views/qso/index.php:553 +msgid "Antenna elevation in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:383 application/views/qso/index.php:255 +#: application/views/qso/index.php:510 application/views/user/edit.php:599 +#: application/views/view_log/qso.php:335 +#: application/views/view_log/qso.php:585 msgid "Sig Info" msgstr "" -#: application/views/qso/edit_ajax.php:369 +#: application/views/qso/edit_ajax.php:396 msgid "Notes (for internal usage only)" msgstr "" -#: application/views/qso/edit_ajax.php:403 +#: application/views/qso/edit_ajax.php:430 msgid "Sent Method" msgstr "" -#: application/views/qso/edit_ajax.php:406 -#: application/views/qso/edit_ajax.php:439 application/views/qso/index.php:563 -#: application/views/qso/index.php:566 +#: application/views/qso/edit_ajax.php:433 +#: application/views/qso/edit_ajax.php:466 application/views/qso/index.php:585 +#: application/views/qso/index.php:588 msgid "Method" msgstr "Metoda" -#: application/views/qso/edit_ajax.php:416 +#: application/views/qso/edit_ajax.php:443 msgid "Sent Via" msgstr "" -#: application/views/qso/edit_ajax.php:430 -#: application/views/qso/edit_ajax.php:471 -#: application/views/qso/edit_ajax.php:510 +#: application/views/qso/edit_ajax.php:457 +#: application/views/qso/edit_ajax.php:498 +#: application/views/qso/edit_ajax.php:537 msgid "Verified (Match)" msgstr "" -#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:463 msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:477 application/views/qso/index.php:583 +#: application/views/qso/edit_ajax.php:504 application/views/qso/index.php:605 msgid "This note content is exported to QSL services like eqsl.cc." msgstr "" -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:586 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:608 msgid "Get the default message for eQSL, for this station." msgstr "" -#: application/views/qso/edit_ajax.php:530 +#: application/views/qso/edit_ajax.php:557 msgid "Change Station Profile" msgstr "" -#: application/views/qso/edit_ajax.php:576 +#: application/views/qso/edit_ajax.php:603 msgid "Exchange (R)" msgstr "" -#: application/views/qso/edit_ajax.php:581 +#: application/views/qso/edit_ajax.php:608 msgid "Exchange (S)" msgstr "" -#: application/views/qso/edit_ajax.php:593 +#: application/views/qso/edit_ajax.php:620 #: application/views/search/search_result_ajax.php:432 #: application/views/view_log/partial/log.php:156 -#: application/views/view_log/partial/log_ajax.php:346 +#: application/views/view_log/partial/log_ajax.php:348 msgid "Delete QSO" msgstr "Smazat QSO" -#: application/views/qso/edit_ajax.php:596 +#: application/views/qso/edit_ajax.php:623 msgid "Save changes" msgstr "" @@ -8328,7 +8973,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:5 application/views/qso/index.php:694 +#: application/views/qso/index.php:5 application/views/qso/index.php:718 msgid "Previous Contacts" msgstr "Předchozí spojení" @@ -8368,23 +9013,23 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:149 -#: application/views/station_profile/edit.php:191 -#: application/views/user/edit.php:583 application/views/view_log/qso.php:282 -#: application/views/view_log/qso.php:549 +#: application/views/qso/index.php:196 application/views/qso/index.php:449 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 +#: application/views/user/edit.php:583 application/views/view_log/qso.php:285 +#: application/views/view_log/qso.php:552 msgid "IOTA Reference" msgstr "IOTA označení" -#: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:165 -#: application/views/station_profile/edit.php:219 -#: application/views/user/edit.php:587 application/views/view_log/qso.php:289 -#: application/views/view_log/qso.php:556 +#: application/views/qso/index.php:212 application/views/qso/index.php:466 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 +#: application/views/user/edit.php:587 application/views/view_log/qso.php:292 +#: application/views/view_log/qso.php:559 msgid "SOTA Reference" msgstr "SOTA označení" -#: application/views/qso/index.php:322 application/views/view_log/qso.php:98 +#: application/views/qso/index.php:322 application/views/view_log/qso.php:100 msgid "Frequency (RX)" msgstr "Frekvence (RX)" @@ -8392,65 +9037,85 @@ msgstr "Frekvence (RX)" msgid "Band (RX)" msgstr "Pásmo (RX)" -#: application/views/qso/index.php:458 +#: application/views/qso/index.php:468 msgid "For example: GM/NS-001." msgstr "Příklad: GM/NS-001." -#: application/views/qso/index.php:471 +#: application/views/qso/index.php:481 msgid "For example: DLFF-0069." msgstr "Příklad: DLFF-0069." -#: application/views/qso/index.php:484 +#: application/views/qso/index.php:494 msgid "For example: PA-0150. Multiple values allowed." msgstr "Příklad: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:496 +#: application/views/qso/index.php:506 msgid "For example: GMA" msgstr "Příklad: GMA" -#: application/views/qso/index.php:502 +#: application/views/qso/index.php:512 msgid "For example: DA/NW-357" msgstr "Příklad: DA/NW-357" -#: application/views/qso/index.php:510 +#: application/views/qso/index.php:520 msgid "For example: Q03" msgstr "Příklad: Q03" -#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +#: application/views/qso/index.php:529 application/views/view_log/qso.php:210 msgid "Satellite Name" msgstr "Název satelitu" -#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +#: application/views/qso/index.php:537 application/views/view_log/qso.php:217 msgid "Satellite Mode" msgstr "Režim satelitu" -#: application/views/qso/index.php:538 +#: application/views/qso/index.php:560 msgid "" "Note content is used within Wavelog only and is not exported to other " "services." msgstr "Obsah je užíván pouze Wavelogu a není exportován do dalších služeb." -#: application/views/qso/index.php:604 +#: application/views/qso/index.php:626 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:645 +#: application/views/qso/index.php:667 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:647 +#: application/views/qso/index.php:669 msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:678 +msgid "Stop" +msgstr "" + +#: application/views/qso/index.php:679 +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:680 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:686 +msgid "CW Speed" +msgstr "" + +#: application/views/qso/index.php:691 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:701 msgid "Suggestions" msgstr "Návrhy" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:708 msgid "Profile Picture" msgstr "" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:732 msgid "Max. 5 previous contacts are shown" msgstr "" @@ -8481,6 +9146,137 @@ msgstr "" msgid "Please wait..." msgstr "" +#: application/views/reg1test/index.php:6 +msgid "Select Band" +msgstr "" + +#: application/views/reg1test/index.php:8 +msgid "" +"Bands below 50Mhz are not valid for the EDI REG1TEST format and will produce " +"invalid files." +msgstr "" + +#: application/views/reg1test/index.php:18 +msgid "Export a contest to a REG1TEST EDI log" +msgstr "" + +#: application/views/reg1test/index.php:48 +msgid "Sent Exchange" +msgstr "" + +#: application/views/reg1test/index.php:50 +msgid "" +"The exchange which was sent during the contest. Can be any type of " +"information, e.g. Province, DOK, County, State, Power, Name. Max. length: 6 " +"characters." +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:66 +msgid "Callsign of responsible operator" +msgstr "" + +#: application/views/reg1test/index.php:72 +msgid "" +"List of all operators. Seperated with a semicolon ';'. The responsible " +"operator is not needed here." +msgstr "" + +#: application/views/reg1test/index.php:75 +msgid "Contest Address 1" +msgstr "" + +#: application/views/reg1test/index.php:77 +msgid "Address of the QTH used during the contest." +msgstr "" + +#: application/views/reg1test/index.php:80 +msgid "Contest Address 2" +msgstr "" + +#: application/views/reg1test/index.php:84 +msgid "Operator Address 1" +msgstr "" + +#: application/views/reg1test/index.php:86 +msgid "Address of the responsible operator." +msgstr "" + +#: application/views/reg1test/index.php:89 +msgid "Operator Address 2" +msgstr "" + +#: application/views/reg1test/index.php:93 +msgid "Operator Address Postalcode" +msgstr "" + +#: application/views/reg1test/index.php:97 +msgid "Operator Address City" +msgstr "" + +#: application/views/reg1test/index.php:101 +msgid "Operator Address Country" +msgstr "" + +#: application/views/reg1test/index.php:105 +msgid "Operator Phone Number" +msgstr "" + +#: application/views/reg1test/index.php:109 +msgid "Transmit Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:111 +msgid "Short description of the used equipment." +msgstr "" + +#: application/views/reg1test/index.php:116 +msgid "TX Power during the contest in Watt." +msgstr "" + +#: application/views/reg1test/index.php:119 +msgid "Receive Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:121 +msgid "If you used another gear for RX, then describe it here." +msgstr "" + +#: application/views/reg1test/index.php:124 +msgid "Antenna Description" +msgstr "" + +#: application/views/reg1test/index.php:126 +msgid "What kind of antenna was used." +msgstr "" + +#: application/views/reg1test/index.php:129 +msgid "Antenna Height Above Ground (m)" +msgstr "" + +#: application/views/reg1test/index.php:131 +msgid "Height of the antenna above the ground." +msgstr "" + +#: application/views/reg1test/index.php:134 +msgid "Band multiplicator" +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:141 +msgid "Any other remarks." +msgstr "" + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8552,11 +9348,11 @@ msgstr "" #: application/views/satellite/edit.php:9 msgid "Name of the Satellite" -msgstr "" +msgstr "Jméno satelitu" #: application/views/satellite/edit.php:25 msgid "Save satellite" -msgstr "" +msgstr "Uložit satelit" #: application/views/satellite/edit.php:59 msgid "Add satellite mode" @@ -8564,16 +9360,77 @@ msgstr "" #: application/views/satellite/index.php:15 msgid "Add a satellite" -msgstr "" +msgstr "Přidat satelit" #: application/views/satellite/pass.php:2 msgid "Satellite passes" msgstr "" -#: application/views/satellite/pass.php:548 +#: application/views/satellite/pass.php:8 +msgid "Min. Satellite Elevation" +msgstr "" + +#: application/views/satellite/pass.php:12 +msgid "Min. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:20 +msgid "Max. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:32 +msgid "Altitude (meters)" +msgstr "" + +#: application/views/satellite/pass.php:36 application/views/user/edit.php:179 +msgid "Timezone" +msgstr "Časové pásmo" + +#: application/views/satellite/pass.php:479 +msgid "Min. time" +msgstr "Min. čas" + +#: application/views/satellite/pass.php:487 +msgid "Max. time" +msgstr "Max. čas" + +#: application/views/satellite/pass.php:504 msgid "Load predictions" msgstr "" +#: application/views/satellite/passtable.php:6 +msgid "AOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:7 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "" + +#: application/views/satellite/passtable.php:8 +msgid "AOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:9 +msgid "AOS El" +msgstr "" + +#: application/views/satellite/passtable.php:10 +msgid "Max El" +msgstr "" + +#: application/views/satellite/passtable.php:11 +msgid "LOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:12 +msgid "LOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:13 +msgid "LOS El" +msgstr "" + #: application/views/sattimers/index.php:15 #, php-format msgid "" @@ -8594,10 +9451,6 @@ msgstr "" msgid "Max Elevation" msgstr "" -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "" - #: application/views/search/cqzones.php:5 #: application/views/search/lotw_unconfirmed.php:5 #: application/views/search/main.php:5 @@ -8609,7 +9462,7 @@ msgstr "" #: application/views/search/lotw_unconfirmed.php:15 #: application/views/search/main.php:15 msgid "Advanced Search" -msgstr "" +msgstr "Rozšířené vyhledávání" #: application/views/search/cqzones.php:18 #: application/views/search/filter.php:26 @@ -8657,7 +9510,7 @@ msgstr "" #: application/views/search/filter.php:79 msgid "Search Results" -msgstr "" +msgstr "Vyhledat výsledky" #: application/views/search/lotw_unconfirmed.php:26 msgid "" @@ -8671,7 +9524,7 @@ msgstr "" #: application/views/search/lotw_unconfirmed_result.php:10 msgid "Last LoTW upload" -msgstr "" +msgstr "Poslední upload na LoTW" #: application/views/search/lotw_unconfirmed_result.php:41 msgid "No QSOs with outstanding LoTW upload were found." @@ -8679,17 +9532,17 @@ msgstr "" #: application/views/search/main.php:28 msgid "Callsign / Gridsquare" -msgstr "" +msgstr "Značka / Lokátor" #: application/views/search/result.php:2 #, php-format msgid "Results for %s" -msgstr "" +msgstr "Výsledky pro %s" #: application/views/search/result.php:4 #, php-format msgid "Sorry, but we didn't find any past QSOs with %s" -msgstr "" +msgstr "Lituji, nebyla nalezena žádná dřívější spojení s %s" #: application/views/search/result.php:6 #, php-format @@ -8704,56 +9557,56 @@ msgstr "" #: application/views/search/search_result_ajax.php:409 #: application/views/view_log/partial/log.php:140 -#: application/views/view_log/partial/log_ajax.php:323 +#: application/views/view_log/partial/log_ajax.php:325 msgid "Mark QSL Sent (Bureau)" msgstr "Označit QSL odesláno (Bureau)" #: application/views/search/search_result_ajax.php:410 #: application/views/view_log/partial/log.php:141 -#: application/views/view_log/partial/log_ajax.php:324 +#: application/views/view_log/partial/log_ajax.php:326 msgid "Mark QSL Sent (Direct)" msgstr "Označit QSL odesláno (Přímá)" #: application/views/search/search_result_ajax.php:417 #: application/views/view_log/partial/log.php:148 -#: application/views/view_log/partial/log_ajax.php:333 -#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log_ajax.php:335 +#: application/views/view_log/qso.php:655 msgid "Mark QSL Received (Bureau)" msgstr "Označit QSL přijato (Bureau)" #: application/views/search/search_result_ajax.php:418 #: application/views/view_log/partial/log.php:149 -#: application/views/view_log/partial/log_ajax.php:334 -#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log_ajax.php:336 +#: application/views/view_log/qso.php:657 msgid "Mark QSL Received (Direct)" msgstr "Označit QSL přijato (Přímá)" #: application/views/search/search_result_ajax.php:419 #: application/views/view_log/partial/log.php:150 -#: application/views/view_log/partial/log_ajax.php:325 +#: application/views/view_log/partial/log_ajax.php:327 msgid "Mark QSL Card Requested" msgstr "Označit QSL kartu požadováno" #: application/views/search/search_result_ajax.php:420 #: application/views/view_log/partial/log.php:151 -#: application/views/view_log/partial/log_ajax.php:326 -#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log_ajax.php:328 +#: application/views/view_log/qso.php:669 msgid "Mark QSL Card Not Required" msgstr "Označit QSL lístek není vyžadován" #: application/views/search/search_result_ajax.php:426 -#: application/views/view_log/partial/log_ajax.php:340 +#: application/views/view_log/partial/log_ajax.php:342 msgid "Lookup on QRZ.com" -msgstr "" +msgstr "Vyhledat na QRZ.com" #: application/views/search/search_result_ajax.php:428 -#: application/views/view_log/partial/log_ajax.php:342 +#: application/views/view_log/partial/log_ajax.php:344 msgid "Lookup on HamQTH" -msgstr "" +msgstr "Vyhledat na HamQTH" #: application/views/search/stored_queries.php:9 msgid "Query" -msgstr "" +msgstr "Dotaz" #: application/views/simplefle/index.php:13 msgid "Simple Fast Log Entry (FLE)" @@ -8782,37 +9635,37 @@ msgid "" msgstr "" #: application/views/simplefle/index.php:17 -#: application/views/simplefle/index.php:170 +#: application/views/simplefle/index.php:176 msgid "Syntax Help" -msgstr "" +msgstr "Nápověda pro syntaxi" #: application/views/simplefle/index.php:18 msgid "Syntax for FLE" -msgstr "" +msgstr "Syntaxe pro FLE" #: application/views/simplefle/index.php:19 msgid "Close and Load Sample Data" -msgstr "" +msgstr "Zavřít a načíst vzorová data" #: application/views/simplefle/index.php:23 msgid "Band is missing!" -msgstr "" +msgstr "Chybí pásmo!" #: application/views/simplefle/index.php:24 msgid "Mode is missing!" -msgstr "" +msgstr "Chybí mód!" #: application/views/simplefle/index.php:25 msgid "Time is not set!" -msgstr "" +msgstr "Není nastaven čas!" #: application/views/simplefle/index.php:26 msgid "Invalid date" -msgstr "" +msgstr "Nesprávné datum" #: application/views/simplefle/index.php:29 msgid "Station Call is not selected" -msgstr "" +msgstr "Značka stanice není vybrána" #: application/views/simplefle/index.php:30 msgid "'Operator' Field is empty" @@ -8820,7 +9673,7 @@ msgstr "" #: application/views/simplefle/index.php:31 msgid "Warning! Do you really want to reset everything?" -msgstr "" +msgstr "Varování! Opravdu chceš vše resetovat?" #: application/views/simplefle/index.php:32 msgid "" @@ -8876,8 +9729,8 @@ msgstr "" #: application/views/simplefle/index.php:107 #, php-format msgid "" -"If you did operate from a new location, first create a new Station Location" +"If you did operate from a new location, first create a new %sStation " +"Location%s" msgstr "" #: application/views/simplefle/index.php:112 @@ -8892,24 +9745,24 @@ msgstr "" msgid "Enter the Data" msgstr "" -#: application/views/simplefle/index.php:148 +#: application/views/simplefle/index.php:154 msgid "Refs" msgstr "" -#: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +#: application/views/simplefle/index.php:166 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" msgstr "" -#: application/views/simplefle/index.php:167 +#: application/views/simplefle/index.php:173 msgid "Reload QSO List" msgstr "" -#: application/views/simplefle/index.php:168 +#: application/views/simplefle/index.php:174 msgid "Save in Wavelog" msgstr "" -#: application/views/simplefle/index.php:169 +#: application/views/simplefle/index.php:175 msgid "Clear Logging Session" msgstr "" @@ -8966,122 +9819,121 @@ msgstr "" #: application/views/simplefle/syntax_help.php:28 #, php-format -msgctxt "uses 'this article'" msgid "" -"A full summary of all commands and the necessary syntax can be found in %s " -"of our Wiki." +"A full summary of all commands and the necessary syntax can be found in " +"%sthis article%s of our Wiki." msgstr "" -#: application/views/station_profile/create.php:51 -#: application/views/station_profile/edit.php:40 +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:52 -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:59 -#: application/views/station_profile/edit.php:48 +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 msgid "Station callsign. For example: 4W7EST/P" msgstr "" -#: application/views/station_profile/create.php:63 -#: application/views/station_profile/edit.php:52 +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 msgid "Station Power (W)" msgstr "" -#: application/views/station_profile/create.php:65 -#: application/views/station_profile/edit.php:54 +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" -#: application/views/station_profile/create.php:68 -#: application/views/station_profile/edit.php:69 +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 msgid "Station DXCC" msgstr "" -#: application/views/station_profile/create.php:71 -#: application/views/station_profile/edit.php:72 +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 msgctxt "DXCC selection" msgid "None" msgstr "" -#: application/views/station_profile/create.php:78 -#: application/views/station_profile/edit.php:85 +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:83 -#: application/views/station_profile/edit.php:91 +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 msgid "Station City" msgstr "" -#: application/views/station_profile/create.php:85 -#: application/views/station_profile/edit.php:93 +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:94 -#: application/views/station_profile/edit.php:105 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 msgid "Station state. Applies to certain countries only." msgstr "" -#: application/views/station_profile/create.php:99 -#: application/views/station_profile/edit.php:110 +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 msgid "Station County" msgstr "" -#: application/views/station_profile/create.php:101 -#: application/views/station_profile/edit.php:112 +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/edit.php:138 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:138 -#: application/views/station_profile/edit.php:155 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 msgid "click here" msgstr "" -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/edit.php:155 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:135 -#: application/views/station_profile/edit.php:167 -#: application/views/station_profile/edit.php:170 +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 msgid "Station Gridsquare" msgstr "" -#: application/views/station_profile/create.php:140 -#: application/views/station_profile/edit.php:175 +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 msgid "Get Gridsquare" msgstr "" -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 #, php-format msgctxt "uses 'click here'" msgid "" @@ -9089,304 +9941,250 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:145 -#: application/views/station_profile/edit.php:180 +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" -#: application/views/station_profile/create.php:160 -#: application/views/station_profile/edit.php:205 +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 msgid "Station IOTA reference. For example: EU-005" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 #, php-format msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:183 -#: application/views/station_profile/edit.php:260 +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 msgid "Signature Name" msgstr "" -#: application/views/station_profile/create.php:185 -#: application/views/station_profile/edit.php:262 +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 msgid "Station Signature (e.g. GMA).." msgstr "" -#: application/views/station_profile/create.php:189 -#: application/views/station_profile/edit.php:266 +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 msgid "Signature Information" msgstr "" -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/edit.php:268 +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "" -#: application/views/station_profile/create.php:195 -#: application/views/station_profile/edit.php:281 +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:197 -#: application/views/station_profile/edit.php:283 +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "" -#: application/views/station_profile/create.php:201 -#: application/views/station_profile/edit.php:286 +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 msgid "Default QSLMSG" msgstr "" -#: application/views/station_profile/create.php:204 -#: application/views/station_profile/edit.php:289 +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "" -#: application/views/station_profile/create.php:207 -#: application/views/station_profile/edit.php:328 +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:212 -#: application/views/station_profile/edit.php:333 +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " "Clublog. If this is deactivated on it's own please check if the Call is " "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:215 -#: application/views/station_profile/edit.php:336 +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 msgid "ClubLog Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:224 -#: application/views/station_profile/edit.php:352 +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 msgid "HRDLog.net Username" msgstr "" -#: application/views/station_profile/create.php:226 -#: application/views/station_profile/edit.php:354 +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" -#: application/views/station_profile/create.php:229 -#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 msgid "HRDLog.net API Key" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:234 -#: application/views/station_profile/edit.php:362 +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 msgid "HRDLog.net Logbook Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:243 -#: application/views/station_profile/edit.php:297 +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 msgid "Subscription Required" msgstr "" -#: application/views/station_profile/create.php:248 +#: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/edit.php:310 +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 msgid "QRZ.com Logbook Upload" msgstr "" -#: application/views/station_profile/create.php:260 -#: application/views/station_profile/edit.php:313 +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:268 -#: application/views/station_profile/edit.php:378 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:273 -#: application/views/station_profile/edit.php:383 +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 msgid "QO-100 Dx Club Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:283 -#: application/views/station_profile/edit.php:401 +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 msgid "OQRS Enabled" msgstr "" -#: application/views/station_profile/create.php:290 -#: application/views/station_profile/edit.php:408 +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 msgid "OQRS Email alert" msgstr "" -#: application/views/station_profile/create.php:295 -#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 msgid "Make sure email is set up under admin and global options." msgstr "" -#: application/views/station_profile/create.php:298 -#: application/views/station_profile/edit.php:416 +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 msgid "OQRS Text" msgstr "" -#: application/views/station_profile/create.php:300 -#: application/views/station_profile/edit.php:418 +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 msgid "Some info you want to add regarding QSL'ing." msgstr "" -#: application/views/station_profile/edit.php:122 +#: application/views/station_profile/edit.php:149 msgid "Zones" msgstr "" -#: application/views/station_profile/edit.php:257 +#: application/views/station_profile/edit.php:284 msgid "Signature" msgstr "" -#: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:95 -msgid "" -"Station Locations define operating locations, such as your QTH, a friends " -"QTH, or a portable station." -msgstr "" - -#: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:96 -msgid "Similar to logbooks, a station profile keeps a set of QSOs together." -msgstr "" - -#: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:97 -msgid "" -"Only one station may be active at a time. In the table below this is shown " -"with the -Active Station- badge." -msgstr "" - -#: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:101 -msgid "Create a Station Location" -msgstr "" - -#: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:105 -msgid "" -"Attention: You need to set an active station location. Go to Callsign-" -">Station Location to select one." -msgstr "" - -#: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:111 -msgid "" -"Due to recent changes within Wavelog you need to reassign QSOs to your " -"station profiles." -msgstr "" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Maintenance" -msgstr "" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Please reassign them at " -msgstr "" - -#: application/views/station_profile/index.php:41 -#: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:122 -msgid "Profile Name" -msgstr "" - #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "" @@ -9434,6 +10232,11 @@ msgstr "" msgid "Link Location" msgstr "" +#: application/views/stationsetup/linkedlocations.php:31 +#: application/views/stationsetup/stationsetup.php:122 +msgid "Profile Name" +msgstr "" + #: application/views/stationsetup/linkedlocations.php:34 msgid "Unlink Station Location" msgstr "" @@ -9458,12 +10261,52 @@ msgstr "" msgid "Station Locations" msgstr "" +#: application/views/stationsetup/stationsetup.php:95 +msgid "" +"Station Locations define operating locations, such as your QTH, a friends " +"QTH, or a portable station." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:96 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:97 +msgid "" +"Only one station may be active at a time. In the table below this is shown " +"with the -Active Station- badge." +msgstr "" + #: application/views/stationsetup/stationsetup.php:98 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." msgstr "" +#: application/views/stationsetup/stationsetup.php:101 +msgid "Create a Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:105 +msgid "" +"Attention: You need to set an active station location. Go to Callsign-" +">Station Location to select one." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:111 +msgid "" +"Due to recent changes within Wavelog you need to reassign QSOs to your " +"station profiles." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Maintenance" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Please reassign them at " +msgstr "" + #: application/views/stationsetup/stationsetup.php:127 msgid "Linked" msgstr "" @@ -9680,9 +10523,10 @@ msgid "4. Step" msgstr "" #: application/views/themes/index.php:73 +#, php-format msgid "" "Click here on 'Add a Theme' and type in the necessary data. Type in the " -"filenames for the logos without the file extension '.png'" +"filenames for the logos %swithout%s the file extension '.png'" msgstr "" #: application/views/themes/index.php:83 @@ -9745,6 +10589,10 @@ msgstr "" msgid "Update DXCC Data" msgstr "" +#: application/views/update/index.php:30 +msgid "Status:" +msgstr "" + #: application/views/update/index.php:34 msgid "Apply DXCC Data to Logbook" msgstr "" @@ -9758,36 +10606,43 @@ msgid "" "\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." msgstr "" -#: application/views/update/index.php:40 +#: application/views/update/index.php:45 msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:54 application/views/update/index.php:95 msgid "Re-check all QSOs in logbook" msgstr "" -#: application/views/update/index.php:45 +#: application/views/update/index.php:59 msgid "Apply Continent Data to Logbook" msgstr "" -#: application/views/update/index.php:47 +#: application/views/update/index.php:61 msgid "" "This function can be used to update QSO continent information for all QSOs " "in Wavelog missing that information." msgstr "" -#: application/views/update/index.php:49 +#: application/views/update/index.php:68 msgid "Check QSOs missing continent data" msgstr "" -#: application/views/update/index.php:59 +#: application/views/update/index.php:80 msgid "Here you can update QSOs with missing distance information." msgstr "" -#: application/views/update/index.php:60 +#: application/views/update/index.php:86 msgid "Update distance data" msgstr "" +#: application/views/update/index.php:89 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" + #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "Smazat uživatelský účet" @@ -9817,13 +10672,13 @@ msgid "General Information" msgstr "" #: application/views/user/edit.php:52 application/views/user/login.php:58 -#: application/views/user/login.php:67 application/views/user/login.php:68 +#: application/views/user/login.php:69 application/views/user/login.php:70 #: application/views/user/profile.php:14 msgid "Username" msgstr "Uživatelské jméno" #: application/views/user/edit.php:64 application/views/user/login.php:59 -#: application/views/user/login.php:71 application/views/user/login.php:72 +#: application/views/user/login.php:73 application/views/user/login.php:74 #: application/views/user/reset_password.php:21 #: application/views/user/reset_password.php:23 #: application/views/user/reset_password.php:30 @@ -9866,10 +10721,6 @@ msgstr "" msgid "Choose Wavelog language." msgstr "" -#: application/views/user/edit.php:179 -msgid "Timezone" -msgstr "Časové pásmo" - #: application/views/user/edit.php:187 msgid "Date Format" msgstr "Formát data" @@ -10212,6 +11063,126 @@ msgstr "Zapomenuté heslo?" msgid "You can reset your password here." msgstr "Zde si můžete obnovit heslo." +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "" + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "Seznam uživatelů" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "" +"Wavelog potřebuje alespoň jednoho uživatele nastaveného pro svůj provoz." + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" +"Uživatelům mohou být přiděleny role, které jim udělují různá oprávnění, jako " +"je přidávání QSO do logu a přístup k Wavelog API." + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" +"Nyní přihlášený uživatel je zobrazen v pravém horním rohu každé stránky." + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "Vytvořit uživatele" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "Typ" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "" @@ -10226,100 +11197,17 @@ msgstr "" #: application/views/user/login.php:60 #, php-format -msgid "" -"More Information about Wavelog on Github." +msgid "More Information about Wavelog on %sGithub%s." msgstr "" -#: application/views/user/login.php:77 +#: application/views/user/login.php:79 msgid "Forgot your password?" msgstr "Zapomněli jste heslo?" -#: application/views/user/login.php:83 +#: application/views/user/login.php:85 msgid "Keep me logged in" msgstr "" -#: application/views/user/main.php:2 -msgid "Do you really want to send this user a password-reset link?" -msgstr "" - -#: application/views/user/main.php:6 -msgid "Please Wait ..." -msgstr "" - -#: application/views/user/main.php:9 -msgid "Password-reset e-mail sent to user:" -msgstr "" - -#: application/views/user/main.php:30 -msgid "User List" -msgstr "Seznam uživatelů" - -#: application/views/user/main.php:33 -msgid "Wavelog needs at least one user configured in order to operate." -msgstr "" -"Wavelog potřebuje alespoň jednoho uživatele nastaveného pro svůj provoz." - -#: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" -"Uživatelům mohou být přiděleny role, které jim udělují různá oprávnění, jako " -"je přidávání QSO do logu a přístup k Wavelog API." - -#: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "" -"Nyní přihlášený uživatel je zobrazen v pravém horním rohu každé stránky." - -#: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." -msgstr "" - -#: application/views/user/main.php:38 -msgid "Create user" -msgstr "Vytvořit uživatele" - -#: application/views/user/main.php:39 -msgid "Refresh List" -msgstr "" - -#: application/views/user/main.php:49 -msgid "Type" -msgstr "Typ" - -#: application/views/user/main.php:50 -msgid "Last seen" -msgstr "" - -#: application/views/user/main.php:53 -msgid "Password Reset" -msgstr "" - -#: application/views/user/main.php:79 -msgid "Never" -msgstr "" - -#: application/views/user/main.php:83 -msgid "Locations" -msgstr "" - -#: application/views/user/main.php:85 -msgid "Logbooks" -msgstr "" - -#: application/views/user/main.php:87 -msgid "Last QSO:" -msgstr "" - -#: application/views/user/main.php:89 -msgid "No QSOs in Log" -msgstr "" - #: application/views/user/profile.php:19 msgid "Level" msgstr "" @@ -10369,118 +11257,118 @@ msgstr "Detail spojení" msgid "QSL Management" msgstr "Správa QSL" -#: application/views/view_log/qso.php:128 +#: application/views/view_log/qso.php:131 msgid "Total Distance" msgstr "Celková vzdálenost" -#: application/views/view_log/qso.php:221 +#: application/views/view_log/qso.php:224 msgid "Antenna Azimuth" msgstr "" -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:231 msgid "Antenna Elevation" msgstr "Elevace antény" -#: application/views/view_log/qso.php:370 +#: application/views/view_log/qso.php:373 msgid "QSL Card has been sent via the bureau" msgstr "" -#: application/views/view_log/qso.php:372 +#: application/views/view_log/qso.php:375 msgid "QSL Card has been sent via direct" msgstr "" -#: application/views/view_log/qso.php:374 +#: application/views/view_log/qso.php:377 msgid "QSL Card has been sent electronically" msgstr "" -#: application/views/view_log/qso.php:376 +#: application/views/view_log/qso.php:379 msgid "QSL Card has been sent via manager" msgstr "" -#: application/views/view_log/qso.php:378 +#: application/views/view_log/qso.php:381 msgid "QSL Card has been sent" msgstr "" -#: application/views/view_log/qso.php:387 +#: application/views/view_log/qso.php:390 msgid "QSL Card has been received via the bureau" msgstr "" -#: application/views/view_log/qso.php:389 +#: application/views/view_log/qso.php:392 msgid "QSL Card has been received via direct" msgstr "" -#: application/views/view_log/qso.php:391 +#: application/views/view_log/qso.php:394 msgid "QSL Card has been received electronically" msgstr "" -#: application/views/view_log/qso.php:393 +#: application/views/view_log/qso.php:396 msgid "QSL Card has been received via manager" msgstr "" -#: application/views/view_log/qso.php:395 +#: application/views/view_log/qso.php:398 msgid "QSL Card has been received" msgstr "" -#: application/views/view_log/qso.php:404 +#: application/views/view_log/qso.php:407 msgid "This station uses LoTW." msgstr "Tato stanice používá LOTW." -#: application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:414 -#: application/views/view_log/qso.php:419 -#: application/views/view_log/qso.php:424 +#: application/views/view_log/qso.php:412 +#: application/views/view_log/qso.php:417 +#: application/views/view_log/qso.php:422 +#: application/views/view_log/qso.php:427 msgid "This QSO was confirmed on" msgstr "Toto QSO bylo potvrzeno" -#: application/views/view_log/qso.php:435 +#: application/views/view_log/qso.php:438 msgid "More QSOs" msgstr "Více QSO" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:506 msgid "Details" msgstr "Detaily" -#: application/views/view_log/qso.php:630 +#: application/views/view_log/qso.php:633 msgid "Uploaded QSL Card front image" msgstr "" -#: application/views/view_log/qso.php:635 +#: application/views/view_log/qso.php:638 msgid "Upload QSL Card image" msgstr "" -#: application/views/view_log/qso.php:640 +#: application/views/view_log/qso.php:643 msgid "Uploaded QSL Card back image" msgstr "" -#: application/views/view_log/qso.php:656 +#: application/views/view_log/qso.php:659 msgid "Mark QSL Received (Electronic)" msgstr "Označit QSL přijato (Elektronicky)" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:665 msgid "Mark QSL Card Requested (Bureau)" msgstr "Označit QSL kartu požadováno (Bureau)" -#: application/views/view_log/qso.php:664 +#: application/views/view_log/qso.php:667 msgid "Mark QSL Card Requested (Direct)" msgstr "Označit QSL lístek jak odeslaný (Direct)" -#: application/views/view_log/qso.php:679 +#: application/views/view_log/qso.php:682 msgid "eQSL picture" msgstr "obrázek eQSL" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:242 msgid "CSV" msgstr "CSV" -#: application/views/visitor/layout/header.php:75 +#: application/views/visitor/layout/header.php:74 msgid "OQRS" msgstr "OQRS" -#: application/views/visitor/layout/header.php:83 +#: application/views/visitor/layout/header.php:82 msgid "Visit Wavelog on Github" msgstr "" -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Please enter a callsign!" msgstr "" @@ -10563,12 +11451,21 @@ msgstr "" #: application/views/widgets/oqrs.php:83 msgid "Your Callsign:" -msgstr "" +msgstr "Tvoje značka:" #: application/views/widgets/oqrs.php:90 msgid "Submit Request" msgstr "" +#~ msgid "Key Disabled" +#~ msgstr "Klíč je zakázaný" + +#~ msgid "No Key Found" +#~ msgstr "Klíč nebyl nalezen" + +#~ msgid "Key Invalid - either not found or disabled" +#~ msgstr "Neplatný klíč - nebyl nalezen nebo je zakázán" + #~ msgid "You are using" #~ msgstr "Je využito" diff --git a/application/locale/de_DE/LC_MESSAGES/messages.mo b/application/locale/de_DE/LC_MESSAGES/messages.mo index 838a962c3..fb87a5e60 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 3bee67870..040af8fa8 100644 --- a/application/locale/de_DE/LC_MESSAGES/messages.po +++ b/application/locale/de_DE/LC_MESSAGES/messages.po @@ -11,12 +11,16 @@ # Kim - DG9VH , 2024. # Fabian Berg <80885850+HB9HIL@users.noreply.github.com>, 2024. # Rasmus , 2024. +# Fabian Berg , 2024. +# "Francisco (F4VSE)" , 2024. +# "Stefan (DB4SCW)" , 2024. +# "Joerg (DJ7NT)" , 2024. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-09 07:24+0000\n" -"PO-Revision-Date: 2024-08-09 09:03+0000\n" -"Last-Translator: Fabian Berg <80885850+HB9HIL@users.noreply.github.com>\n" +"POT-Creation-Date: 2024-09-07 07:18+0000\n" +"PO-Revision-Date: 2024-09-06 14:36+0000\n" +"Last-Translator: Fabian Berg \n" "Language-Team: German \n" "Language: de_DE\n" @@ -24,10 +28,104 @@ 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.6.2\n" +"X-Generator: Weblate 5.7.1\n" -#: application/controllers/Accumulated.php:21 -#: application/views/interface_assets/header.php:150 +#: application/controllers/Accumulated.php:12 +#: application/controllers/Activators.php:13 +#: application/controllers/Activatorsmap.php:13 +#: application/controllers/Adif.php:13 application/controllers/Awards.php:16 +#: application/controllers/Backup.php:13 application/controllers/Backup.php:26 +#: application/controllers/Backup.php:63 application/controllers/Band.php:15 +#: application/controllers/Bandmap.php:9 +#: application/controllers/Cabrillo.php:16 +#: application/controllers/Cabrillo.php:53 +#: application/controllers/Cabrillo.php:80 +#: application/controllers/Cabrillo.php:135 +#: application/controllers/Calltester.php:11 +#: application/controllers/Cfdexport.php:18 +#: application/controllers/Cfdexport.php:29 +#: application/controllers/Components.php:13 +#: application/controllers/Contestcalendar.php:15 +#: application/controllers/Contesting.php:14 +#: application/controllers/Cron.php:26 application/controllers/Cron.php:162 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: application/controllers/Distancerecords.php:11 +#: application/controllers/Distances.php:11 +#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29 +#: application/controllers/Dxatlas.php:51 +#: application/controllers/Dxatlas.php:108 +#: application/controllers/Dxcalendar.php:8 +#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23 +#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 +#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 +#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:353 +#: application/controllers/Eqsl.php:420 application/controllers/Eqsl.php:436 +#: application/controllers/Eqsl.php:497 application/controllers/Hamsat.php:13 +#: application/controllers/Kmlexport.php:18 +#: application/controllers/Kmlexport.php:33 +#: application/controllers/Labels.php:26 +#: application/controllers/Logbookadvanced.php:16 +#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 +#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 +#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 +#: application/controllers/Notes.php:10 application/controllers/Options.php:15 +#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 +#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 +#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 +#: application/controllers/Qso.php:9 application/controllers/Qso.php:19 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:600 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Reg1test.php:18 +#: application/controllers/Reg1test.php:63 +#: application/controllers/Reg1test.php:102 +#: application/controllers/Reg1test.php:130 +#: application/controllers/Reg1test.php:164 +#: application/controllers/Satellite.php:18 +#: application/controllers/Satellite.php:37 +#: application/controllers/Satellite.php:44 +#: application/controllers/Satellite.php:53 +#: application/controllers/Satellite.php:72 +#: application/controllers/Satellite.php:87 +#: application/controllers/Satellite.php:95 +#: application/controllers/Satellite.php:103 +#: application/controllers/Satellite.php:117 +#: application/controllers/Satellite.php:135 +#: application/controllers/Satellite.php:146 +#: application/controllers/Satellite.php:162 +#: application/controllers/Satellite.php:190 +#: application/controllers/Satellite.php:201 +#: application/controllers/Satellite.php:223 +#: application/controllers/Satellite.php:236 +#: application/controllers/Satellite.php:244 +#: application/controllers/Sattimers.php:9 +#: application/controllers/Search.php:13 +#: application/controllers/Simplefle.php:7 +#: application/controllers/Station.php:17 +#: application/controllers/Stationsetup.php:15 +#: application/controllers/Themes.php:17 +#: application/controllers/Timeline.php:10 +#: application/controllers/Timeplotter.php:11 +#: application/controllers/Update.php:24 application/controllers/Update.php:273 +#: application/controllers/Update.php:284 +#: application/controllers/Update.php:295 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 +#: application/controllers/User_options.php:9 +msgid "You're not allowed to do that!" +msgstr "Das ist dir nicht gestattet!" + +#: application/controllers/Accumulated.php:19 +#: application/views/interface_assets/header.php:152 msgid "Accumulated Statistics" msgstr "Kumulierte Statistiken" @@ -37,24 +135,26 @@ msgid "Activated Gridsquare Map" msgstr "Karte der aktivierten Planquadrate" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:910 -#: application/controllers/Awards.php:942 +#: application/controllers/Awards.php:919 +#: application/controllers/Awards.php:951 #: application/controllers/Gridmap.php:31 -#: application/controllers/Visitor.php:374 -#: application/views/activators/index.php:101 +#: application/controllers/Visitor.php:385 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: application/views/visitor/layout/footer.php:22 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "Planquadrate" #: application/controllers/Activated_gridmap.php:32 #: application/controllers/Gridmap.php:32 -#: application/controllers/Visitor.php:375 +#: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "Bestätigte Planquadrate" #: application/controllers/Activated_gridmap.php:33 #: application/controllers/Gridmap.php:33 -#: application/controllers/Visitor.php:376 +#: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "Unbestätigte Planquadrate" @@ -63,12 +163,13 @@ msgid "Total gridsquares activated" msgstr "Summe aktivierter Planquadrate" #: application/controllers/Activators.php:20 -#: application/views/activators/index.php:2 +#: application/views/activators/index.php:5 #: application/views/interface_assets/header.php:142 msgid "Gridsquare Activators" msgstr "Planquadrat Aktivierer" #: application/controllers/Activatorsmap.php:17 +#: application/views/activators/index.php:2 msgid "Activators Map" msgstr "Karte der Aktivierer" @@ -85,7 +186,7 @@ msgid "ADIF Export" msgstr "ADIF Export" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:388 msgid "ADIF Import / Export" msgstr "ADIF Import/Export" @@ -98,20 +199,25 @@ msgstr "ADIF Import" msgid "Unsupported Filetype" msgstr "Nicht unterstütztes Dateiformat" -#: application/controllers/Adif.php:245 +#: application/controllers/Adif.php:240 +#: application/views/adif/import_failed.php:12 +msgid "ADIF Import failed!" +msgstr "ADIF-Import fehlgeschlagen!" + +#: application/controllers/Adif.php:254 msgid "Station Profile not valid for User" msgstr "Stations-Standort ist nicht gültig für diesen Benutzer" -#: application/controllers/Adif.php:252 +#: application/controllers/Adif.php:261 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "ADIF importiert" -#: application/controllers/Adif.php:263 +#: application/controllers/Adif.php:272 msgid "DCL Import" msgstr "DCL Import" -#: application/controllers/Adif.php:319 +#: application/controllers/Adif.php:328 msgid "DCL Data Imported" msgstr "DCL-Daten importiert" @@ -141,25 +247,8 @@ msgstr "API-Schlüssel %s Beschreibung wurde aktualisiert." msgid "API Key %s has been deleted" msgstr "API-Schlüssel %s wurde gelöscht" -#: application/controllers/Api.php:118 -msgid "Key Disabled" -msgstr "Schlüssel deaktiviert" - -#: application/controllers/Api.php:118 -msgid "No Key Found" -msgstr "Kein Schlüssel gefunden" - -#: application/controllers/Api.php:120 -msgid "Key Invalid - either not found or disabled" -msgstr "Schlüssel ungültig – entweder nicht gefunden oder deaktiviert" - -#: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 -msgid "Valid" -msgstr "Gültig" - #: application/controllers/Awards.php:22 -#: application/views/interface_assets/header.php:158 +#: application/views/interface_assets/header.php:160 #: application/views/qso/edit_ajax.php:35 msgid "Awards" msgstr "Diplome" @@ -174,12 +263,13 @@ msgstr "Diplome" #: application/controllers/Awards.php:652 #: application/controllers/Awards.php:714 #: application/controllers/Awards.php:776 -#: application/controllers/Awards.php:847 -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:930 -#: application/controllers/Awards.php:1125 -#: application/controllers/Awards.php:1615 -#: application/controllers/Awards.php:1755 +#: application/controllers/Awards.php:856 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:939 +#: application/controllers/Awards.php:1140 +#: application/controllers/Awards.php:1639 +#: application/controllers/Awards.php:1779 +#: application/controllers/Awards.php:1908 #, php-format msgid "Awards - %s" msgstr "Diplome – %s" @@ -187,13 +277,13 @@ msgstr "Diplome – %s" #: application/controllers/Awards.php:92 #: application/views/awards/dok/index.php:149 #: application/views/bands/index.php:47 -#: application/views/contesting/index.php:170 -#: application/views/interface_assets/header.php:194 -#: application/views/logbookadvanced/index.php:613 +#: application/views/contesting/index.php:53 +#: application/views/interface_assets/header.php:198 +#: application/views/logbookadvanced/index.php:641 #: application/views/logbookadvanced/useroptions.php:130 -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:264 -#: application/views/qso/index.php:508 application/views/user/edit.php:603 -#: application/views/view_log/qso.php:351 +#: application/views/qso/edit_ajax.php:388 application/views/qso/index.php:264 +#: application/views/qso/index.php:518 application/views/user/edit.php:603 +#: application/views/view_log/qso.php:354 msgid "DOK" msgstr "DOK" @@ -201,15 +291,15 @@ msgstr "DOK" #: application/views/bandmap/list.php:112 application/views/bands/index.php:48 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 -#: application/views/interface_assets/header.php:164 +#: application/views/interface_assets/header.php:166 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:145 -#: application/views/logbookadvanced/index.php:580 +#: application/views/logbookadvanced/index.php:156 +#: application/views/logbookadvanced/index.php:608 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 -#: application/views/lotw_views/index.php:40 +#: application/views/lotw_views/index.php:36 #: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 #: application/views/search/cqzones_result.php:15 #: application/views/search/result.php:27 @@ -224,12 +314,12 @@ msgid "Awards - WAJA" msgstr "Diplome – WAJA" #: application/controllers/Awards.php:327 application/views/bands/index.php:51 -#: application/views/interface_assets/header.php:210 +#: application/views/interface_assets/header.php:214 msgid "JCC" msgstr "JCC" #: application/controllers/Awards.php:375 application/views/bands/index.php:57 -#: application/views/interface_assets/header.php:170 +#: application/views/interface_assets/header.php:172 msgid "VUCC" msgstr "VUCC" @@ -238,15 +328,20 @@ msgid "Log View - VUCC" msgstr "Log Ansicht – VUCC" #: application/controllers/Awards.php:453 -#: application/controllers/Timeline.php:92 -#: application/controllers/Timeline.php:95 -#: application/controllers/Timeline.php:98 -#: application/controllers/Timeline.php:101 -#: application/controllers/Timeline.php:104 -#: application/controllers/Timeline.php:107 +#: application/controllers/Distancerecords.php:59 +#: application/controllers/Timeline.php:105 +#: application/controllers/Timeline.php:108 +#: application/controllers/Timeline.php:111 +#: application/controllers/Timeline.php:114 +#: application/controllers/Timeline.php:117 +#: application/controllers/Timeline.php:120 msgid "Log View" msgstr "Log-Ansicht" +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr " und Band " + #: application/controllers/Awards.php:457 msgid " and sat " msgstr " und Sat " @@ -268,12 +363,12 @@ msgid " and " msgstr " und " #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1289 #: application/views/awards/index.php:8 application/views/bands/index.php:55 #: application/views/dashboard/index.php:9 -#: application/views/interface_assets/header.php:178 -#: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:259 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -281,10 +376,10 @@ msgstr " und " #: application/views/qslcard/searchresult.php:49 #: application/views/qslcard/searchresult.php:65 #: application/views/qslcard/searchresult.php:81 -#: application/views/qso/components/previous_contacts.php:83 -#: application/views/qso/edit_ajax.php:336 +#: application/views/qso/components/previous_contacts.php:82 +#: application/views/qso/edit_ajax.php:363 #: application/views/search/search_result_ajax.php:9 -#: application/views/station_profile/edit.php:216 +#: application/views/station_profile/edit.php:243 #: application/views/user/edit.php:234 application/views/user/edit.php:256 #: application/views/user/edit.php:278 application/views/user/edit.php:300 #: application/views/user/edit.php:323 @@ -294,18 +389,18 @@ msgid "SOTA" msgstr "SOTA" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1290 #: application/views/bands/index.php:60 #: application/views/dashboard/index.php:10 -#: application/views/interface_assets/header.php:172 -#: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:279 +#: application/views/interface_assets/header.php:176 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/index.php:290 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 -#: application/views/qso/components/previous_contacts.php:84 -#: application/views/qso/edit_ajax.php:341 +#: application/views/qso/components/previous_contacts.php:83 +#: application/views/qso/edit_ajax.php:368 #: application/views/search/search_result_ajax.php:10 -#: application/views/station_profile/edit.php:229 +#: application/views/station_profile/edit.php:256 #: application/views/user/edit.php:235 application/views/user/edit.php:257 #: application/views/user/edit.php:279 application/views/user/edit.php:301 #: application/views/user/edit.php:324 @@ -314,18 +409,18 @@ msgid "WWFF" msgstr "WWFF" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1291 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 -#: application/views/interface_assets/header.php:182 +#: application/views/interface_assets/header.php:186 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:274 +#: application/views/logbookadvanced/index.php:623 #: application/views/logbookadvanced/useroptions.php:106 -#: application/views/qso/components/previous_contacts.php:85 -#: application/views/qso/edit_ajax.php:346 +#: application/views/qso/components/previous_contacts.php:84 +#: application/views/qso/edit_ajax.php:373 #: application/views/search/search_result_ajax.php:11 -#: application/views/station_profile/edit.php:242 +#: application/views/station_profile/edit.php:269 #: application/views/user/edit.php:236 application/views/user/edit.php:258 #: application/views/user/edit.php:280 application/views/user/edit.php:302 #: application/views/user/edit.php:325 @@ -344,7 +439,7 @@ msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" #: application/controllers/Awards.php:714 application/views/bands/index.php:53 -#: application/views/interface_assets/header.php:188 +#: application/views/interface_assets/header.php:192 msgid "RAC" msgstr "RAC" @@ -352,74 +447,80 @@ msgstr "RAC" msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:847 +#: application/controllers/Awards.php:856 msgid "IOTA (Island On The Air)" msgstr "IOTA (Islands On The Air)" -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:872 -#: application/views/interface_assets/header.php:230 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 +#: application/views/interface_assets/header.php:234 msgid "US Counties" msgstr "US Counties" -#: application/controllers/Awards.php:887 +#: application/controllers/Awards.php:896 msgid "Log View - Counties" msgstr "Log Ansicht – Counties" -#: application/controllers/Awards.php:894 +#: application/controllers/Awards.php:903 msgid "Awards - " msgstr "Diplome - " -#: application/controllers/Awards.php:911 -#: application/controllers/Awards.php:943 +#: application/controllers/Awards.php:920 +#: application/controllers/Awards.php:952 msgid "Gridsquares worked" msgstr "Gearbeitete Planquadrate" -#: application/controllers/Awards.php:912 -#: application/controllers/Awards.php:944 +#: application/controllers/Awards.php:921 +#: application/controllers/Awards.php:953 msgid "Gridsquares confirmed on LoTW" msgstr "Auf LoTW bestätigte Planquadrate" -#: application/controllers/Awards.php:913 -#: application/controllers/Awards.php:945 +#: application/controllers/Awards.php:922 +#: application/controllers/Awards.php:954 msgid "Gridsquares confirmed by paper QSL" msgstr "Per Papier QSL bestätigte Planquadrate" -#: application/controllers/Awards.php:930 +#: application/controllers/Awards.php:939 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial Award (FFMA)" -#: application/controllers/Awards.php:1125 -#: application/views/interface_assets/header.php:168 +#: application/controllers/Awards.php:1140 +#: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1143 +#: application/controllers/Awards.php:1158 msgid "Awards - SIG - " msgstr "Diplome - SIG - " -#: application/controllers/Awards.php:1755 -#: application/views/awards/itu/index.php:18 +#: application/controllers/Awards.php:1779 +#: application/views/awards/itu/index.php:20 msgid "ITU Zones" msgstr "ITU-Zonen" +#: application/controllers/Awards.php:1908 +#: application/views/awards/wac/index.php:8 +#: application/views/interface_assets/header.php:174 +msgid "Worked All Continents (WAC)" +msgstr "Worked All Continents (WAC)" + #: application/controllers/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:284 msgid "Backup" msgstr "Backup" -#: application/controllers/Backup.php:48 +#: application/controllers/Backup.php:50 msgid "ADIF - Backup" msgstr "ADIF - Backup" -#: application/controllers/Backup.php:80 +#: application/controllers/Backup.php:84 msgid "Notes - Backup" msgstr "Notizen - Backup" #: application/controllers/Band.php:25 application/views/bands/index.php:28 #: application/views/bands/index.php:32 -#: application/views/interface_assets/header.php:379 +#: application/views/interface_assets/header.php:383 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -435,8 +536,8 @@ msgstr "Bearbeite Band" #: application/controllers/Bandmap.php:28 #: application/controllers/Bandmap.php:69 -#: application/controllers/Options.php:137 -#: application/controllers/Options.php:148 +#: application/controllers/Options.php:145 +#: application/controllers/Options.php:156 #: application/views/options/sidebar.php:10 msgid "DXCluster" msgstr "DX-Cluster" @@ -446,7 +547,7 @@ msgid "Export Cabrillo" msgstr "Cabrillo-Export" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:396 +#: application/views/interface_assets/header.php:402 msgid "CFD Export" msgstr "CFD-Export" @@ -463,7 +564,7 @@ msgid "No user has configured Clublog." msgstr "Kein Benutzer hat Clublog konfiguriert." #: application/controllers/Contestcalendar.php:19 -#: application/views/interface_assets/header.php:247 +#: application/views/interface_assets/header.php:251 msgid "Contest Calendar" msgstr "Contest-Kalender" @@ -472,38 +573,66 @@ msgstr "Contest-Kalender" msgid "Contest Logging" msgstr "Contest-Logging" -#: application/controllers/Contesting.php:112 -#: application/views/interface_assets/header.php:274 +#: application/controllers/Contesting.php:113 +#: application/views/interface_assets/header.php:278 msgid "Contests" msgstr "Conteste" -#: application/controllers/Contesting.php:126 +#: application/controllers/Contesting.php:127 msgid "Update Contest" msgstr "Aktualisiere Contest" #: application/controllers/Continents.php:25 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:57 -#: application/views/interface_assets/header.php:154 +#: application/views/interface_assets/header.php:156 msgid "Continents" msgstr "Kontinente" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:284 +#: application/views/interface_assets/header.php:288 msgid "Cron Manager" msgstr "Cron-Manager" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:154 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "Bearbeite Cronjob" +#: application/controllers/Cron.php:274 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "OK" + +#: application/controllers/Cron.php:278 +#, php-format +msgid "" +"Last run occurred more than %s seconds ago.%sPlease check your master cron! " +"It should run every minute (* * * * *)." +msgstr "" +"Letzte Ausführung fand vor mehr als %s Sekunden statt.%sBitte überprüfe " +"deinen Master-Cron! Er sollte jede Minute laufen (* * * * *)." + +#: application/controllers/Cron.php:281 +#, php-format +msgid "" +"Last run occurred more than %s minutes ago.%sSeems like your Mastercron " +"isn't running!%sIt should run every minute (* * * * *)." +msgstr "" +"Letzter Ausführung fand vor mehr als %s Minuten statt.%sEs scheint, als ob " +"dein Mastercron nicht läuft!%sEr sollte jede Minute laufen (* * * * *)." + +#: application/controllers/Cron.php:286 application/views/cron/index.php:29 +msgctxt "Master Cron" +msgid "Not running" +msgstr "Läuft nicht" + #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:392 +#: application/views/interface_assets/header.php:396 msgid "SOTA CSV Export" msgstr "SOTA CSV-Export" -#: application/controllers/Dashboard.php:108 -#: application/controllers/Visitor.php:132 +#: application/controllers/Dashboard.php:123 +#: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "Dashboard" @@ -553,6 +682,12 @@ msgstr "" msgid "File Migration failed. Please check the Error Log." msgstr "Datenmigration fehlgeschlagen! Bitte das Fehlerprotokoll prüfen." +#: application/controllers/Distancerecords.php:42 +#: application/controllers/Distancerecords.php:59 +#: application/views/interface_assets/header.php:146 +msgid "Satellite Distance Records" +msgstr "Satelliten-Distanzrekorde" + #: application/controllers/Distances.php:17 #: application/views/distances/index.php:5 #: application/views/distances/index.php:8 @@ -560,27 +695,31 @@ msgstr "Datenmigration fehlgeschlagen! Bitte das Fehlerprotokoll prüfen." msgid "Distances Worked" msgstr "Gearbeitete Entfernungen" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 #: application/views/distances/index.php:15 msgid "QSOs with" msgstr "QSOs mit" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 msgid "and band" msgstr "und Band" +#: application/controllers/Distances.php:83 +msgid "and propagation" +msgstr "und Ausbreitungsart" + #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:394 msgid "DX Atlas Gridsquare Export" msgstr "DX-Atlas Planquadrat-Export" #: application/controllers/Dxcalendar.php:10 -#: application/views/interface_assets/header.php:245 +#: application/views/interface_assets/header.php:249 msgid "DX Calendar" msgstr "DX Kalender" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:325 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -598,19 +737,19 @@ msgstr "eQSL Import Information" msgid "eQSL QSO Upload" msgstr "eQSL QSO-Upload" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:424 msgid "eQSL Tools" msgstr "eQSL Tools" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid " / Errors: " msgstr " / Fehler: " -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid "Successfully downloaded: " msgstr "Erfolgreich heruntergeladen: " -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:481 msgid "eQSL Card Image Download" msgstr "eQSL-Karten Bilder Download" @@ -620,7 +759,7 @@ msgid "Gridsquare Map" msgstr "Planquadratkarte" #: application/controllers/Gridmap.php:34 -#: application/controllers/Visitor.php:377 +#: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "Summe gearbeiteter Planquadrate" @@ -640,7 +779,7 @@ msgid "No QSOs found to upload." msgstr "Keine QSOs zum hochladen gefunden." #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:392 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "KML-Export" @@ -653,59 +792,59 @@ msgstr "QSL-Karten Etiketten" msgid "Create Label Type" msgstr "Erstelle Etikettentyp" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:402 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:406 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "Etikettenname" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:403 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:407 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 #: application/views/labels/index.php:76 msgid "Paper Type" msgstr "Papiertyp" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:404 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:408 #: application/views/labels/index.php:42 application/views/labels/index.php:77 msgid "Measurement" msgstr "Maßeinheit" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:405 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:409 msgid "Top Margin" msgstr "Oberer Abstand" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:406 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:410 msgid "Left Margin" msgstr "Linker Abstand" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:407 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:411 msgid "QSLs Horizontally" msgstr "QSLs im Querformat" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:408 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:412 msgid "QSLs Vertically" msgstr "QSLs im Hochformat" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:409 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:413 msgid "Horizontal Space" msgstr "Horizontaler Abstand" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:410 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:414 msgid "Vertical Space" msgstr "Vertikaler Abstand" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:411 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:415 msgid "Label width" msgstr "Etikettenbreite" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:412 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:416 msgid "Label height" msgstr "Etikettenhöhe" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:413 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:417 msgid "Size of Font" msgstr "Schriftgröße" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:414 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:418 msgid "Number of QSOs on label" msgstr "Anzahl von QSOs auf einem Etikett" @@ -714,22 +853,22 @@ msgid "Create Paper Type" msgstr "Erstelle Papiertyp" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:461 +#: application/controllers/Labels.php:465 msgid "Paper Name" msgstr "Papierbezeichnung" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:462 +#: application/controllers/Labels.php:466 msgid "Paper Width" msgstr "Papierbreite" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:463 +#: application/controllers/Labels.php:467 msgid "Paper Height" msgstr "Papierhöhe" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:471 +#: application/controllers/Labels.php:475 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -761,27 +900,27 @@ msgstr "" msgid "0 QSOs found for print!" msgstr "0 QSOs für den Druck gefunden!" -#: application/controllers/Labels.php:391 +#: application/controllers/Labels.php:395 msgid "Edit Label" msgstr "Bearbeite Etikett" -#: application/controllers/Labels.php:420 +#: application/controllers/Labels.php:424 msgid "Label was saved." msgstr "Etikett wurde gespeichert." -#: application/controllers/Labels.php:428 +#: application/controllers/Labels.php:432 msgid "Label was deleted." msgstr "Etikett wurde gelöscht." -#: application/controllers/Labels.php:450 +#: application/controllers/Labels.php:454 msgid "Edit Paper" msgstr "Bearbeite Papier" -#: application/controllers/Labels.php:475 +#: application/controllers/Labels.php:479 msgid "Paper was saved." msgstr "Papier wurde gespeichert." -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "Paper was deleted." msgstr "Papier wurde gelöscht." @@ -804,20 +943,20 @@ msgstr "Stationslogbücher" msgid "Logbook" msgstr "Logbuch" -#: application/controllers/Logbook.php:653 -#: application/controllers/Logbook.php:668 +#: application/controllers/Logbook.php:657 +#: application/controllers/Logbook.php:672 #: application/views/activated_gridmap/index.php:58 #: application/views/awards/dok/index.php:55 #: application/views/awards/dxcc/index.php:61 -#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/helvetia/index.php:55 #: application/views/awards/jcc/index.php:52 -#: application/views/awards/rac/index.php:45 +#: application/views/awards/rac/index.php:47 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:72 -#: application/views/awards/waja/index.php:53 -#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:55 +#: application/views/awards/was/index.php:55 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:568 +#: application/views/logbookadvanced/index.php:596 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -830,20 +969,21 @@ msgstr "Logbuch" msgid "QSL" msgstr "QSL" -#: application/controllers/Logbook.php:656 +#: application/controllers/Logbook.php:660 #: application/views/activated_gridmap/index.php:66 -#: application/views/awards/cq/index.php:58 +#: application/views/awards/cq/index.php:60 #: application/views/awards/dok/index.php:59 #: application/views/awards/dxcc/index.php:65 -#: application/views/awards/helvetia/index.php:57 -#: application/views/awards/itu/index.php:58 +#: application/views/awards/helvetia/index.php:59 +#: application/views/awards/itu/index.php:60 #: application/views/awards/jcc/index.php:56 -#: application/views/awards/rac/index.php:49 +#: application/views/awards/rac/index.php:51 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:80 -#: application/views/awards/waja/index.php:57 -#: application/views/awards/was/index.php:57 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -851,28 +991,29 @@ msgstr "QSL" #: application/views/qslprint/qsolist.php:21 #: application/views/qslprint/qsolist.php:167 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:384 +#: application/views/qso/edit_ajax.php:411 #: application/views/search/result_search.php:22 #: application/views/search/search_result_ajax.php:298 #: application/views/search/search_result_ajax.php:313 #: application/views/timeline/index.php:60 application/views/user/edit.php:563 -#: application/views/user/edit.php:659 application/views/view_log/qso.php:408 +#: application/views/user/edit.php:659 application/views/view_log/qso.php:411 msgid "LoTW" msgstr "LoTW" -#: application/controllers/Logbook.php:659 +#: application/controllers/Logbook.php:663 #: application/views/activated_gridmap/index.php:74 -#: application/views/awards/cq/index.php:62 +#: application/views/awards/cq/index.php:64 #: application/views/awards/dok/index.php:63 #: application/views/awards/dxcc/index.php:69 -#: application/views/awards/helvetia/index.php:61 -#: application/views/awards/itu/index.php:62 +#: application/views/awards/helvetia/index.php:63 +#: application/views/awards/itu/index.php:64 #: application/views/awards/jcc/index.php:60 -#: application/views/awards/rac/index.php:53 +#: application/views/awards/rac/index.php:55 #: application/views/awards/wab/index.php:88 -#: application/views/awards/waja/index.php:61 -#: application/views/awards/was/index.php:61 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:52 +#: application/views/awards/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:117 #: application/views/logbookadvanced/useroptions.php:70 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 @@ -880,63 +1021,67 @@ msgstr "LoTW" #: application/views/qslprint/qsolist.php:18 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:151 -#: application/views/qso/edit_ajax.php:381 +#: application/views/qso/edit_ajax.php:408 #: application/views/search/result_search.php:16 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:273 -#: application/views/station_profile/edit.php:278 +#: application/views/station_profile/edit.php:305 #: application/views/timeline/index.php:64 application/views/user/edit.php:564 #: application/views/user/edit.php:667 application/views/user/edit.php:731 msgid "eQSL" msgstr "eQSL" -#: application/controllers/Logbook.php:665 +#: application/controllers/Logbook.php:669 #: application/views/awards/dok/index.php:71 #: application/views/awards/dxcc/index.php:77 #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 -#: application/views/awards/waja/index.php:69 +#: application/views/awards/waja/index.php:71 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 -#: application/views/station_profile/edit.php:325 +#: application/views/station_profile/edit.php:352 +#: application/views/timeline/index.php:68 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 -#: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/partial/log_ajax.php:85 +#: application/views/view_log/qso.php:426 msgid "Clublog" msgstr "Clublog" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1284 #: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:39 #: application/views/adif/dcl_success.php:33 -#: application/views/awards/cq/index.php:86 +#: application/views/awards/cq/index.php:88 #: application/views/awards/dok/index.php:91 #: application/views/awards/dxcc/index.php:162 -#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/helvetia/index.php:87 #: application/views/awards/iota/index.php:105 -#: application/views/awards/itu/index.php:86 +#: application/views/awards/itu/index.php:88 #: application/views/awards/jcc/index.php:88 -#: application/views/awards/rac/index.php:77 +#: application/views/awards/rac/index.php:79 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:53 -#: application/views/awards/waja/index.php:89 -#: application/views/awards/was/index.php:85 +#: application/views/awards/wac/index.php:110 +#: application/views/awards/waja/index.php:91 +#: application/views/awards/was/index.php:87 #: application/views/components/hamsat/table.php:30 -#: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:203 +#: application/views/contesting/index.php:108 +#: application/views/contesting/index.php:250 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 +#: 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/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:170 -#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/index.php:181 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -953,14 +1098,14 @@ msgstr "Clublog" #: application/views/qslcard/searchresult.php:76 #: application/views/qslprint/qslprint.php:24 #: application/views/qslprint/qsolist.php:9 -#: application/views/qso/components/previous_contacts.php:78 +#: application/views/qso/components/previous_contacts.php:77 #: application/views/qso/edit_ajax.php:119 application/views/qso/index.php:136 #: application/views/satellite/index.php:24 #: application/views/search/cqzones_result.php:10 #: application/views/search/lotw_unconfirmed_result.php:8 #: application/views/search/result_search.php:7 #: application/views/search/search_result_ajax.php:4 -#: application/views/simplefle/index.php:144 +#: application/views/simplefle/index.php:150 #: application/views/statistics/custom.php:60 #: application/views/statistics/custom_result.php:62 #: application/views/statistics/custom_result.php:88 @@ -972,17 +1117,17 @@ msgstr "Clublog" #: application/views/user/edit.php:295 application/views/user/edit.php:318 #: application/views/view_log/partial/log.php:9 #: application/views/view_log/partial/log_ajax.php:4 -#: application/views/view_log/qso.php:104 application/views/visitor/index.php:6 +#: application/views/view_log/qso.php:107 application/views/visitor/index.php:6 #: application/views/widgets/qsos.php:29 msgid "Mode" msgstr "Mode" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1285 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:111 -#: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:547 +#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:251 +#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -991,25 +1136,25 @@ msgstr "Mode" #: application/views/qslcard/searchresult.php:77 #: application/views/qslprint/qslprint.php:26 #: application/views/qslprint/qsolist.php:11 -#: application/views/qso/components/previous_contacts.php:79 +#: application/views/qso/components/previous_contacts.php:78 #: application/views/qso/edit_ajax.php:142 application/views/qso/index.php:177 #: application/views/search/search_result_ajax.php:5 -#: application/views/simplefle/index.php:145 +#: application/views/simplefle/index.php:151 #: application/views/user/edit.php:230 application/views/user/edit.php:252 #: application/views/user/edit.php:274 application/views/user/edit.php:296 #: application/views/user/edit.php:319 #: application/views/view_log/partial/log.php:10 #: application/views/view_log/partial/log_ajax.php:5 -#: application/views/view_log/qso.php:109 application/views/visitor/index.php:9 +#: application/views/view_log/qso.php:112 application/views/visitor/index.php:9 msgid "RST (S)" msgstr "RST (S)" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1286 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:550 +#: application/views/contesting/index.php:189 +#: application/views/contesting/index.php:252 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1018,51 +1163,50 @@ msgstr "RST (S)" #: application/views/qslcard/searchresult.php:78 #: application/views/qslprint/qslprint.php:27 #: application/views/qslprint/qsolist.php:12 -#: application/views/qso/components/previous_contacts.php:80 +#: application/views/qso/components/previous_contacts.php:79 #: application/views/qso/edit_ajax.php:147 application/views/qso/index.php:182 #: application/views/search/search_result_ajax.php:6 -#: application/views/simplefle/index.php:146 +#: application/views/simplefle/index.php:152 #: application/views/user/edit.php:231 application/views/user/edit.php:253 #: application/views/user/edit.php:275 application/views/user/edit.php:297 #: application/views/user/edit.php:320 #: application/views/view_log/partial/log.php:11 #: application/views/view_log/partial/log_ajax.php:6 -#: application/views/view_log/qso.php:114 +#: application/views/view_log/qso.php:117 #: application/views/visitor/index.php:12 msgid "RST (R)" msgstr "RST (R)" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1287 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 #: application/views/qslcard/searchresult.php:47 #: application/views/qslcard/searchresult.php:63 #: application/views/qslcard/searchresult.php:79 -#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/components/previous_contacts.php:80 #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 -#: application/views/station_profile/index.php:43 #: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 -#: application/views/timeline/index.php:118 application/views/user/edit.php:232 +#: application/views/timeline/index.php:151 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 #: application/views/user/edit.php:298 application/views/user/edit.php:321 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:235 -#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:238 +#: application/views/view_log/qso.php:531 #: application/views/visitor/index.php:15 msgid "Country" msgstr "Land" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1288 #: application/views/awards/iota/index.php:169 #: application/views/bands/index.php:50 application/views/dashboard/index.php:8 -#: application/views/interface_assets/header.php:180 +#: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1071,11 +1215,11 @@ msgstr "Land" #: application/views/qslcard/searchresult.php:48 #: application/views/qslcard/searchresult.php:64 #: application/views/qslcard/searchresult.php:80 -#: application/views/qso/components/previous_contacts.php:82 -#: application/views/qso/edit_ajax.php:318 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 -#: application/views/timeline/index.php:202 application/views/user/edit.php:233 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:235 application/views/user/edit.php:233 #: application/views/user/edit.php:255 application/views/user/edit.php:277 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/view_log/partial/log_ajax.php:8 @@ -1083,17 +1227,17 @@ msgstr "Land" msgid "IOTA" msgstr "IOTA" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1292 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:20 -#: application/views/awards/rac/index.php:141 -#: application/views/awards/was/index.php:149 -#: application/views/contesting/index.php:173 +#: application/views/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 +#: application/views/contesting/index.php:56 #: application/views/dashboard/index.php:12 -#: application/views/logbookadvanced/edit.php:20 -#: application/views/logbookadvanced/edit.php:64 -#: application/views/logbookadvanced/index.php:162 -#: application/views/logbookadvanced/index.php:583 +#: application/views/logbookadvanced/edit.php:21 +#: application/views/logbookadvanced/edit.php:66 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:611 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1101,9 +1245,9 @@ msgstr "IOTA" #: application/views/qslcard/searchresult.php:50 #: application/views/qslcard/searchresult.php:66 #: application/views/qslcard/searchresult.php:82 -#: application/views/qso/components/previous_contacts.php:86 +#: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 -#: application/views/timeline/index.php:177 application/views/user/edit.php:237 +#: application/views/timeline/index.php:210 application/views/user/edit.php:237 #: application/views/user/edit.php:259 application/views/user/edit.php:281 #: application/views/user/edit.php:303 application/views/user/edit.php:326 #: application/views/view_log/partial/log_ajax.php:12 @@ -1111,20 +1255,21 @@ msgstr "IOTA" msgid "State" msgstr "Staat" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1293 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:17 -#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:13 +#: application/views/distancerecords/index.php:20 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:166 -#: application/views/logbookadvanced/index.php:556 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1133,38 +1278,39 @@ msgstr "Staat" #: application/views/qslcard/searchresult.php:51 #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 -#: application/views/qso/components/previous_contacts.php:87 +#: application/views/qso/components/previous_contacts.php:86 #: application/views/qso/edit_ajax.php:156 application/views/qso/index.php:279 +#: application/views/satellite/pass.php:28 #: application/views/search/cqzones_result.php:12 #: application/views/search/result.php:33 #: application/views/search/search_result_ajax.php:13 -#: application/views/simplefle/index.php:147 -#: application/views/station_profile/index.php:44 +#: application/views/simplefle/index.php:153 #: application/views/stationsetup/stationsetup.php:125 -#: application/views/timeline/index.php:257 application/views/user/edit.php:130 +#: application/views/timeline/index.php:290 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 #: application/views/user/edit.php:327 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:518 #: application/views/visitor/index.php:27 msgid "Gridsquare" msgstr "Planquadrat" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1294 #: application/views/activated_gridmap/index.php:108 #: application/views/awards/ffma/index.php:36 #: application/views/awards/gridmaster/index.php:35 #: 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/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/index.php:12 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 #: application/views/qslcard/searchresult.php:52 #: application/views/qslcard/searchresult.php:68 #: application/views/qslcard/searchresult.php:84 -#: application/views/qso/components/previous_contacts.php:88 +#: application/views/qso/components/previous_contacts.php:87 #: application/views/search/search_result_ajax.php:14 #: application/views/user/edit.php:239 application/views/user/edit.php:261 #: application/views/user/edit.php:283 application/views/user/edit.php:305 @@ -1174,32 +1320,33 @@ msgstr "Planquadrat" msgid "Distance" msgstr "Distanz" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1295 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:8 -#: application/views/activators/index.php:7 +#: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 -#: application/views/awards/cq/index.php:72 +#: application/views/awards/cq/index.php:74 #: application/views/awards/dok/index.php:77 #: application/views/awards/dxcc/index.php:117 -#: application/views/awards/helvetia/index.php:71 +#: application/views/awards/helvetia/index.php:73 #: application/views/awards/iota/index.php:91 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:74 #: application/views/awards/jcc/index.php:74 #: application/views/awards/pota/index.php:35 -#: application/views/awards/rac/index.php:63 +#: application/views/awards/rac/index.php:65 #: application/views/awards/sig/qso_list.php:13 #: application/views/awards/sota/index.php:26 #: application/views/awards/vucc/index.php:21 #: application/views/awards/wab/index.php:22 -#: application/views/awards/waja/index.php:75 -#: application/views/awards/was/index.php:71 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/waja/index.php:77 +#: application/views/awards/was/index.php:73 #: application/views/awards/wwff/index.php:35 #: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:45 -#: application/views/contesting/index.php:70 -#: application/views/contesting/index.php:202 +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:249 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:549 application/views/dxatlas/index.php:31 @@ -1207,8 +1354,8 @@ msgstr "Distanz" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1226,13 +1373,13 @@ msgstr "Distanz" #: application/views/qslmanagement/index.php:24 #: application/views/qslprint/qslprint.php:25 #: application/views/qslprint/qsolist.php:10 -#: application/views/qso/components/previous_contacts.php:89 +#: application/views/qso/components/previous_contacts.php:88 #: application/views/qso/edit_ajax.php:83 application/views/qso/index.php:151 #: application/views/search/cqzones_result.php:11 #: application/views/search/lotw_unconfirmed_result.php:9 #: application/views/search/result_search.php:10 #: application/views/search/search_result_ajax.php:15 -#: application/views/simplefle/index.php:143 +#: application/views/simplefle/index.php:149 #: application/views/stationsetup/exportmapoptions.php:31 #: application/views/statistics/custom.php:53 #: application/views/statistics/custom_result.php:55 @@ -1250,72 +1397,71 @@ msgstr "Distanz" msgid "Band" msgstr "Band" -#: application/controllers/Logbook.php:1285 +#: application/controllers/Logbook.php:1296 #: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 -#: application/views/contesting/index.php:87 +#: application/views/contesting/index.php:138 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 #: application/views/qslcard/searchresult.php:70 #: application/views/qslcard/searchresult.php:86 -#: application/views/qso/components/previous_contacts.php:90 +#: application/views/qso/components/previous_contacts.php:89 #: application/views/qso/edit_ajax.php:71 application/views/qso/index.php:169 #: application/views/search/search_result_ajax.php:16 #: application/views/user/edit.php:228 application/views/user/edit.php:250 #: application/views/user/edit.php:272 application/views/user/edit.php:294 #: application/views/user/edit.php:317 #: application/views/view_log/partial/log_ajax.php:16 -#: application/views/view_log/qso.php:93 application/views/visitor/index.php:36 +#: application/views/view_log/qso.php:94 application/views/visitor/index.php:36 msgid "Frequency" msgstr "Frequenz" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1297 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:283 -#: application/views/logbookadvanced/index.php:598 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:626 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 #: application/views/qslcard/searchresult.php:87 -#: application/views/qso/components/previous_contacts.php:91 +#: application/views/qso/components/previous_contacts.php:90 #: application/views/search/search_result_ajax.php:17 #: application/views/simplefle/index.php:112 #: application/views/user/edit.php:240 application/views/user/edit.php:262 #: application/views/user/edit.php:284 application/views/user/edit.php:306 #: application/views/user/edit.php:329 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:538 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "Operator" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1318 #: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:669 +#: application/views/interface_assets/footer.php:675 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:154 +#: application/views/logbookadvanced/index.php:165 #: application/views/lookup/index.php:31 -#: application/views/lotw_views/index.php:56 +#: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 #: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 -#: application/views/station_profile/create.php:73 -#: application/views/station_profile/edit.php:78 -#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 #: application/views/stationsetup/stationsetup.php:150 -#: application/views/timeline/index.php:134 +#: application/views/timeline/index.php:167 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 -#: application/views/view_log/qso.php:236 -#: application/views/view_log/qso.php:529 +#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:532 msgid "Deleted DXCC" msgstr "Gelöschtes DXCC" @@ -1329,7 +1475,7 @@ msgstr "Schnellsuche" #: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83 #: application/controllers/Lotw.php:125 application/views/adif/import.php:27 -#: application/views/interface_assets/header.php:423 +#: application/views/interface_assets/header.php:429 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1337,28 +1483,58 @@ msgstr "Schnellsuche" msgid "Logbook of the World" msgstr "Logbook of the World" -#: application/controllers/Lotw.php:610 +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "Zertifikat importiert." + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "Zertifikat aktualisiert." + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "Zertifikat gelöscht." + +#: application/controllers/Lotw.php:413 +#, 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 "" +"Kein Zertifikat in der Datei %s gefunden. Wenn der Dateiname 'key-only' " +"enthält, handelt es sich normalerweise um eine Zertifikatsanforderung, die " +"von LoTW noch nicht bearbeitet wurde." + +#: application/controllers/Lotw.php:617 msgid "LoTW ADIF Information" msgstr "LoTW ADIF Information" -#: application/controllers/Lotw.php:718 +#: application/controllers/Lotw.php:725 msgid "LoTW ADIF Import" msgstr "LoTW ADIF-Import" -#: application/controllers/Lotw.php:830 +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "Du hast deine ARRL LoTW Zugangsdaten nicht definiert!" + +#: application/controllers/Lotw.php:837 msgid "LoTW .TQ8 Upload" msgstr "LoTW .TQ8-Upload" -#: application/controllers/Lotw.php:927 application/controllers/Lotw.php:932 +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "Dein ARRL-Benutzername und/oder Passwort ist falsch." + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 msgid "LoTW .TQ8 Sent" msgstr "LoTW .TQ8 gesendet" -#: application/controllers/Lotw.php:939 +#: application/controllers/Lotw.php:946 msgid "LoTW .TQ8 Not Sent" msgstr "LoTW .TQ8 nicht gesendet" #: application/controllers/Mode.php:25 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:276 #: application/views/mode/index.php:15 msgid "Modes" msgstr "Modes" @@ -1367,28 +1543,28 @@ msgstr "Modes" msgid "Edit Mode" msgstr "Bearbeite Mode" -#: application/controllers/Notes.php:19 +#: application/controllers/Notes.php:18 #: application/views/interface_assets/header.php:128 #: application/views/notes/add.php:9 application/views/notes/edit.php:10 #: application/views/notes/main.php:5 application/views/notes/main.php:8 #: application/views/notes/view.php:6 application/views/notes/view.php:9 #: application/views/qso/edit_ajax.php:36 -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:38 -#: application/views/qso/index.php:541 application/views/qso/index.php:586 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:590 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:38 +#: application/views/qso/index.php:563 application/views/qso/index.php:608 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:593 msgid "Notes" msgstr "Notizen" -#: application/controllers/Notes.php:38 +#: application/controllers/Notes.php:37 msgid "Add Notes" msgstr "Füge Notizen hinzu" -#: application/controllers/Notes.php:58 +#: application/controllers/Notes.php:64 #: application/views/oqrs/showrequests.php:88 msgid "Note" msgstr "Notiz" -#: application/controllers/Notes.php:79 application/views/notes/edit.php:7 +#: application/controllers/Notes.php:92 application/views/notes/edit.php:7 #: application/views/notes/view.php:19 msgid "Edit Note" msgstr "Editiere Notiz" @@ -1396,16 +1572,16 @@ msgstr "Editiere Notiz" #: application/controllers/Options.php:31 #: application/controllers/Options.php:41 #: application/controllers/Options.php:56 -#: application/controllers/Options.php:136 -#: application/controllers/Options.php:147 -#: application/controllers/Options.php:184 -#: application/controllers/Options.php:195 -#: application/controllers/Options.php:228 -#: application/controllers/Options.php:239 -#: application/controllers/Options.php:309 -#: application/controllers/Options.php:319 -#: application/controllers/Options.php:387 -#: application/controllers/Options.php:397 +#: application/controllers/Options.php:144 +#: application/controllers/Options.php:155 +#: application/controllers/Options.php:192 +#: application/controllers/Options.php:203 +#: application/controllers/Options.php:236 +#: application/controllers/Options.php:247 +#: application/controllers/Options.php:317 +#: application/controllers/Options.php:327 +#: application/controllers/Options.php:395 +#: application/controllers/Options.php:405 msgid "Wavelog Options" msgstr "Wavelog-Optionen" @@ -1422,95 +1598,96 @@ msgstr "Erscheinungsbild" #: application/controllers/Options.php:110 #: application/controllers/Options.php:118 #: application/controllers/Options.php:126 +#: application/controllers/Options.php:134 msgid "Options saved" msgstr "Optionen gespeichert" -#: application/controllers/Options.php:165 +#: application/controllers/Options.php:173 msgid "de continent changed to " msgstr "Spotterkontinent geändert auf " -#: application/controllers/Options.php:170 +#: application/controllers/Options.php:178 msgid "Maximum age of spots changed to " msgstr "Maximales Spot-Alter geändert auf " -#: application/controllers/Options.php:175 +#: application/controllers/Options.php:183 msgid "DXCluster Cache URL changed to " msgstr "DX-Cluster Cache URL geändert zu " -#: application/controllers/Options.php:185 -#: application/controllers/Options.php:196 +#: application/controllers/Options.php:193 +#: application/controllers/Options.php:204 msgid "Radio Settings" msgstr "Funkgeräteeinstellungen" -#: application/controllers/Options.php:217 +#: application/controllers/Options.php:225 msgid "Radio Timeout Warning changed to " msgstr "Radio-Timeout-Warnung geändert zu " -#: application/controllers/Options.php:229 -#: application/controllers/Options.php:240 +#: application/controllers/Options.php:237 +#: application/controllers/Options.php:248 #: application/views/options/sidebar.php:6 msgid "Email" msgstr "E-Mail" -#: application/controllers/Options.php:297 +#: application/controllers/Options.php:305 msgid "The settings were saved successfully." msgstr "Die Einstellungen wurden erfolgreich gespeichert." -#: application/controllers/Options.php:299 +#: application/controllers/Options.php:307 msgid "Something went wrong with saving the settings. Try again." msgstr "Beim Speichern ist was schief gelaufen. Probiere es erneut." -#: application/controllers/Options.php:310 -#: application/controllers/Options.php:320 +#: application/controllers/Options.php:318 +#: application/controllers/Options.php:328 #: application/views/options/sidebar.php:8 msgid "OQRS Options" msgstr "OQRS-Optionen" -#: application/controllers/Options.php:333 +#: application/controllers/Options.php:341 msgid "OQRS options have been saved." msgstr "OQRS-Einstellungen wurden gespeichert." -#: application/controllers/Options.php:373 -#: application/controllers/Options.php:378 +#: application/controllers/Options.php:381 +#: application/controllers/Options.php:386 msgid "Testmail failed. Something went wrong." msgstr "Die Testmail wurde nicht versandt. Da ist was schief gelaufen." -#: application/controllers/Options.php:375 +#: application/controllers/Options.php:383 msgid "Testmail sent. Email settings seem to be correct." msgstr "Testmail gesendet. E-Mail Einstellungen scheinen korrekt zu sein." -#: application/controllers/Options.php:388 -#: application/controllers/Options.php:398 +#: application/controllers/Options.php:396 +#: application/controllers/Options.php:406 msgid "Version Info Settings" msgstr "Versionsinfo-Einstellungen" -#: application/controllers/Options.php:404 +#: application/controllers/Options.php:412 msgid "Version Info Header changed to" msgstr "Überschrift der Versionsinfo geändert zu" -#: application/controllers/Options.php:408 +#: application/controllers/Options.php:416 msgid "Version Info Mode changed to" msgstr "Versionsinfo-Modus geändert zu" -#: application/controllers/Options.php:413 +#: application/controllers/Options.php:421 msgid "Version Info Custom Text saved!" msgstr "Benutzerdefinierter Text der Versionsinfo gespeichert!" -#: application/controllers/Options.php:424 +#: application/controllers/Options.php:432 msgid "Version Info will be shown to all users again" msgstr "Versionsinfo wird wieder allen Benutzern angezeigt" -#: application/controllers/Options.php:432 +#: application/controllers/Options.php:440 msgid "Version Info will not be shown to any user" msgstr "Versionsinfo wird keinem Benutzer angezeigt" -#: application/controllers/Oqrs.php:22 application/controllers/Oqrs.php:61 -#: application/controllers/Oqrs.php:73 +#: application/controllers/Oqrs.php:46 application/controllers/Oqrs.php:85 +#: application/controllers/Oqrs.php:97 msgid "Log Search & OQRS" msgstr "Logsuche & OQRS" -#: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:413 +#: application/controllers/Oqrs.php:127 +#: application/views/interface_assets/header.php:419 msgid "OQRS Requests" msgstr "OQRS-Anforderungen" @@ -1518,8 +1695,48 @@ msgstr "OQRS-Anforderungen" msgid "QRB Calculator" msgstr "QRB-Rechner" +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "Breitengrad: %s, Längengrad: %s" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "Die Entfernung zwischen %s und %s beträgt %s Meile." +msgstr[1] "Die Entfernung zwischen %s und %s beträgt %s Meilen." + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "Die Entfernung zwischen %s und %s beträgt %s Seemeile." +msgstr[1] "Die Entfernung zwischen %s und %s beträgt %s Seemeilen." + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "Die Entfernung zwischen %s und %s beträgt %s Kilometer." +msgstr[1] "Die Entfernung zwischen %s und %s beträgt %s Kilometer." + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "Die Peilung ist %s." + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" +"Negative Breitengrade liegen südlich des Äquators, negative Längengrade " +"westlich von Greenwich." + #: application/controllers/Qrz.php:173 -#: application/views/interface_assets/header.php:426 +#: application/views/interface_assets/header.php:432 msgid "QRZ Logbook" msgstr "QRZ-Logbuch" @@ -1531,8 +1748,8 @@ msgstr "QRZ QSL-Import" msgid "QRZ ADIF Information" msgstr "QRZ ADIF-Information" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:261 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:277 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1555,13 +1772,13 @@ msgid "Add QSO" msgstr "Logge QSO" #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Hardware Interfaces" msgstr "Hardware-Schnittstellen" #: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 +#: application/views/contesting/index.php:143 #: application/views/qso/index.php:312 msgid "Radio" msgstr "Funkgerät" @@ -1571,10 +1788,10 @@ msgid "Timestamp" msgstr "Zeitstempel" #: application/controllers/Radio.php:52 -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 +#: application/views/logbookadvanced/index.php:550 +#: application/views/lotw_views/index.php:43 #: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 +#: application/views/simplefle/index.php:177 #: application/views/stationsetup/exportmapoptions.php:5 #: application/views/statistics/custom.php:31 #: application/views/statistics/custom_result.php:33 @@ -1582,7 +1799,7 @@ msgid "Options" msgstr "Optionen" #: application/controllers/Radio.php:90 -#: application/views/contesting/index.php:96 +#: application/views/contesting/index.php:147 #: application/views/qso/index.php:316 msgid "last updated" msgstr "zuletzt aktualisiert" @@ -1598,26 +1815,24 @@ msgstr "Standardgerät (klicken zum freigeben)" #: application/controllers/Radio.php:105 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2323 -#: application/views/interface_assets/footer.php:2341 -#: application/views/interface_assets/footer.php:2362 -#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2337 +#: application/views/interface_assets/footer.php:2355 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 #: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:514 -#: application/views/lotw_views/index.php:118 +#: application/views/logbookadvanced/index.php:542 +#: application/views/lotw_views/index.php:114 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 #: application/views/qslcard/index.php:65 #: application/views/satellite/edit.php:40 #: application/views/satellite/index.php:26 #: application/views/search/stored_queries.php:22 -#: application/views/station_profile/index.php:55 -#: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 #: application/views/stationsetup/stationsetup.php:137 #: application/views/stationsetup/stationsetup.php:192 -#: application/views/themes/index.php:107 application/views/user/main.php:54 -#: application/views/view_log/qso.php:613 +#: application/views/themes/index.php:107 application/views/user/index.php:57 +#: application/views/view_log/qso.php:616 msgid "Delete" msgstr "Löschen" @@ -1625,11 +1840,15 @@ msgstr "Löschen" msgid "No CAT interfaced radios found." msgstr "Keine CAT-verbundenen Funkgeräte gefunden." -#: application/controllers/Satellite.php:37 +#: application/controllers/Reg1test.php:25 +msgid "Export EDI" +msgstr "Exportiere EDI" + +#: application/controllers/Satellite.php:39 msgid "Create Satellite" msgstr "Erstelle Satelliten" -#: application/controllers/Satellite.php:60 +#: application/controllers/Satellite.php:66 msgid "Edit Satellite" msgstr "Bearbeite Satelliten" @@ -1642,10 +1861,7 @@ msgstr "Du hast keine Stations-Standorte. Klicke %s um eine zu erstellen!" #: application/views/awards/counties/index.php:8 #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:19 -#: application/views/awards/was/index.php:21 -#: application/views/dashboard/index.php:64 -#: application/views/dashboard/index.php:73 -#: application/views/dashboard/index.php:82 +#: application/views/awards/was/index.php:23 #: application/views/simplefle/index.php:16 msgid "here" msgstr "hier" @@ -1657,9 +1873,10 @@ msgstr "Satelliten-Timer" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:336 -#: application/views/interface_assets/header.php:343 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:340 +#: application/views/interface_assets/header.php:347 +#: application/views/logbookadvanced/index.php:538 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1673,8 +1890,8 @@ msgstr "Satelliten-Timer" #: application/views/search/lotw_unconfirmed.php:37 #: application/views/search/main.php:4 application/views/search/main.php:12 #: application/views/search/main.php:33 -#: application/views/visitor/layout/header.php:99 -#: application/views/visitor/layout/header.php:100 +#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:98 msgid "Search" msgstr "Suche" @@ -1694,38 +1911,37 @@ msgstr "" "Unbestätigte QSOs auf LoTW, bei denen das Rufzeichen nach dem QSO-Datum " "Daten zu LoTW hochgeladen hat" -#: application/controllers/Station.php:35 -#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/controllers/Station.php:36 +#: application/controllers/Stationsetup.php:226 +msgid "Create Station Location" +msgstr "Erstelle Stationsstandort" + +#: application/controllers/Station.php:51 +msgid "Edit Station Location: " +msgstr "Bearbeite Stationsstandort: " + +#: application/controllers/Station.php:59 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 -#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/edit.php:19 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:427 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 #: application/views/webadif/export.php:115 msgid "Station Location" -msgstr "Stationsprofil" +msgstr "Stationsstandort" -#: application/controllers/Station.php:55 -#: application/controllers/Stationsetup.php:226 -msgid "Create Station Location" -msgstr "Erstelle Stationsstandort" - -#: application/controllers/Station.php:70 -msgid "Edit Station Location: " -msgstr "Bearbeite Stationsstandort: " - -#: application/controllers/Station.php:92 +#: application/controllers/Station.php:73 msgid "Duplicate Station Location:" msgstr "Doppelter Stationsstandort:" #: application/controllers/Stationsetup.php:35 -#: application/views/interface_assets/header.php:377 -#: application/views/interface_assets/header.php:488 +#: application/views/interface_assets/header.php:381 +#: application/views/interface_assets/header.php:494 msgid "Station Setup" msgstr "Stationssetup" @@ -1743,7 +1959,7 @@ msgstr "Nicht erlaubt" #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 #: application/controllers/Stationsetup.php:436 -#: application/views/qso/index.php:608 +#: application/views/qso/index.php:630 msgid "Error" msgstr "Fehler" @@ -1775,9 +1991,10 @@ msgstr "Fehler. Link existiert bereits!" #: application/views/options/appearance.php:83 #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 +#: application/views/options/appearance.php:110 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:259 -#: application/views/station_profile/edit.php:312 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 msgid "Disabled" @@ -1789,7 +2006,7 @@ msgid "Set as Active Logbook" msgstr "Setze als aktives Logbuch" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:486 +#: application/views/interface_assets/header.php:492 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1815,7 +2032,6 @@ msgid "Are you sure you want to delete the public slug?" msgstr "Bist Du Dir sicher die Kurz-URL zu löschen?" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "" "Are you sure you want to make the following station the active station: " @@ -1824,13 +2040,11 @@ msgstr "" "machen möchtest?: " #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "Aktivieren" #: application/controllers/Stationsetup.php:351 -#: application/views/station_profile/index.php:71 #: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "Aktive Station" @@ -1839,32 +2053,28 @@ msgstr "Aktive Station" #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:28 -#: application/views/station_profile/index.php:76 #: application/views/stationsetup/stationsetup.php:161 -#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/user/index.php:90 application/views/user/index.php:92 msgid "QSO" msgstr "QSO" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 -#: application/views/cron/index.php:56 -#: application/views/interface_assets/footer.php:535 -#: application/views/interface_assets/footer.php:544 +#: application/views/cron/index.php:58 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 #: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:541 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 -#: application/views/station_profile/index.php:46 -#: application/views/station_profile/index.php:79 #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 -#: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/views/themes/index.php:104 application/views/user/index.php:52 msgid "Edit" msgstr "Bearbeiten" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:99 #: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" @@ -1872,30 +2082,25 @@ msgstr "" "möchtest?" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:54 -#: application/views/station_profile/index.php:101 #: application/views/stationsetup/stationsetup.php:136 #: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "Lösche Log" #: application/controllers/Stationsetup.php:367 -#: application/views/station_profile/index.php:47 -#: application/views/station_profile/index.php:82 #: application/views/stationsetup/stationsetup.php:129 #: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "Kopieren" #: application/controllers/Stationsetup.php:372 -#: application/views/station_profile/index.php:105 #: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "" "Are you sure you want delete station profile '%s'? This will delete all QSOs " "within this station profile." msgstr "" -"Stationsprofil '%s' wirklich löschen? Alle QSOs in dem Profil werden " +"Stationsstandort '%s' wirklich löschen? Alle QSOs in dem Profil werden " "mitgelöscht." #: application/controllers/Stationsetup.php:379 @@ -1923,7 +2128,7 @@ msgid "QSL Statistics" msgstr "QSL-Statistiken" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:282 msgid "Themes" msgstr "Themes" @@ -1935,14 +2140,14 @@ msgstr "Erstelle Theme" msgid "Edit Theme" msgstr "Bearbeite Theme" -#: application/controllers/Timeline.php:17 -#: application/views/interface_assets/header.php:148 +#: application/controllers/Timeline.php:15 +#: application/views/interface_assets/header.php:150 #: application/views/timeline/index.php:2 msgid "Timeline" msgstr "Zeitleiste" #: application/controllers/Timeplotter.php:17 -#: application/views/interface_assets/header.php:152 +#: application/views/interface_assets/header.php:154 #: application/views/timeplotter/index.php:9 msgid "Timeplotter" msgstr "Zeitplotter" @@ -1983,37 +2188,37 @@ msgstr "DXCC-Ausnahmen:" msgid "Dxcc Prefixes:" msgstr "DXCC-Präfixe:" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:268 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:272 msgid "User Accounts" msgstr "Benutzerkonten" -#: application/controllers/User.php:52 +#: application/controllers/User.php:76 msgid "Add User" msgstr "Füge Benutzer hinzu" -#: application/controllers/User.php:166 +#: application/controllers/User.php:190 msgid "Users" msgstr "Benutzer" -#: application/controllers/User.php:240 application/controllers/User.php:673 +#: application/controllers/User.php:264 application/controllers/User.php:697 msgid "Edit User" msgstr "Bearbeite Benutzer" -#: application/controllers/User.php:665 application/controllers/User.php:668 -#: application/views/user/main.php:3 application/views/user/main.php:46 +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 msgid "User" msgstr "Benutzer" -#: application/controllers/User.php:665 application/controllers/User.php:668 +#: application/controllers/User.php:689 application/controllers/User.php:692 msgid "edited" msgstr "bearbeitet" -#: application/controllers/User.php:722 +#: application/controllers/User.php:746 msgid "Profile" msgstr "Profil" -#: application/controllers/User.php:779 +#: application/controllers/User.php:803 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." @@ -2021,22 +2226,18 @@ msgstr "" "Herzlichen Glückwunsch! Wavelog wurde erfolgreich installiert. Du kannst " "dich nun anmelden." -#: application/controllers/User.php:843 application/controllers/User.php:853 +#: application/controllers/User.php:867 application/controllers/User.php:877 msgid "Login failed. Try again." msgstr "Login fehlgeschlagen. Bitte erneut versuchen." -#: application/controllers/User.php:860 -#: application/views/interface_assets/header.php:356 -#: application/views/user/login.php:89 -#: application/views/visitor/layout/header.php:88 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:360 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "Anmeldung" -#: application/controllers/User.php:868 -msgid "User logged in" -msgstr "Benutzer eingeloggt" - -#: application/controllers/User.php:899 +#: application/controllers/User.php:922 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " @@ -2047,72 +2248,104 @@ msgstr "" "kontaktiere bitte den Administrator. Nur Administratoren können sich derzeit " "einloggen." -#: application/controllers/User.php:902 +#: application/controllers/User.php:925 msgid "Incorrect username or password!" msgstr "Falscher Benutzername oder Passwort!" -#: application/controllers/User.php:919 +#: application/controllers/User.php:942 #, php-format msgid "User %s logged out." msgstr "Benutzer %s ausgeloggt." -#: application/controllers/User.php:933 +#: application/controllers/User.php:956 msgid "Password Reset is disabled on the Demo!" msgstr "Passwort Reset ist in der Demo nicht verfügbar!" -#: application/controllers/User.php:946 +#: application/controllers/User.php:969 msgid "Forgot Password" msgstr "Passwort vergessen" -#: application/controllers/User.php:996 application/views/user/main.php:8 +#: application/controllers/User.php:1019 application/views/user/index.php:8 msgid "Email settings are incorrect." msgstr "E-Mail Einstellungen sind nicht korrekt." -#: application/controllers/User.php:1000 application/controllers/User.php:1005 +#: application/controllers/User.php:1023 application/controllers/User.php:1028 msgid "Password Reset Processed." msgstr "Passwort Zurücksetzen angefordert." -#: application/controllers/User.php:1107 +#: application/controllers/User.php:1129 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "Passwort zurücksetzen" +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" +"Du kannst derzeit keinen anderen Benutzer imitieren. Bitte ändere zuerst den " +"encryption_key in deiner config.php Datei!" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "Ungültiger Hash" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "Der Übernahme-Hash ist zu alt. Bitte versuche es erneut." + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" +"Du kannst keinen Benutzer imitieren, solange du nicht als Ausgangs-Benutzer " +"eingeloggt bist" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "Es gab ein Problem mit deiner Sitzung. Bitte versuche es erneut." + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "Der angeforderte Benutzer zum Imitieren existiert nicht" + #: application/controllers/Visitor.php:50 -#: application/controllers/Visitor.php:79 -#: application/controllers/Visitor.php:142 -#: application/controllers/Visitor.php:169 -#: application/controllers/Visitor.php:199 -#: application/controllers/Visitor.php:478 +#: application/controllers/Visitor.php:81 +#: application/controllers/Visitor.php:148 +#: application/controllers/Visitor.php:175 +#: application/controllers/Visitor.php:210 +#: application/controllers/Visitor.php:472 #: application/controllers/Widgets.php:40 msgid "Unknown Public Page." msgstr "Unbekannte Öffentliche Seite." -#: application/controllers/Visitor.php:74 -#: application/controllers/Visitor.php:165 -#: application/controllers/Visitor.php:195 -#: application/controllers/Visitor.php:474 +#: application/controllers/Visitor.php:76 +#: application/controllers/Visitor.php:171 +#: application/controllers/Visitor.php:206 +#: application/controllers/Visitor.php:468 #: application/controllers/Widgets.php:36 msgid "Empty Logbook" msgstr "Leeres Logbuch" -#: application/controllers/Visitor.php:205 +#: application/controllers/Visitor.php:216 msgid "Satellite Gridsquare Map" msgstr "Satelliten Planquadrat-Karte" -#: application/controllers/Visitor.php:411 +#: application/controllers/Visitor.php:405 #: application/views/stationsetup/stationsetup.php:35 msgid "Public Search" msgstr "Öffentl. Suche" -#: application/controllers/Visitor.php:444 +#: application/controllers/Visitor.php:438 msgid "Export Map" msgstr "Karte exportieren" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:427 +#: application/views/interface_assets/header.php:433 msgid "QO-100 Dx Club Upload" msgstr "QO-100 DX Club Upload" @@ -2126,6 +2359,84 @@ msgstr "" msgid "No stations found that are using Wavelog OQRS." msgstr "Keine Stationen gefunden, welche Wavelog OQRS benutzen." +#: application/libraries/Subdivisions.php:31 +msgctxt "Division Name (States in various countries)." +msgid "Province" +msgstr "Provinz" + +#: application/libraries/Subdivisions.php:39 +msgctxt "Division Name (States in various countries)." +msgid "Oblast" +msgstr "Oblast" + +#: application/libraries/Subdivisions.php:41 +#: application/libraries/Subdivisions.php:47 +msgctxt "Division Name (States in various countries)." +msgid "Region" +msgstr "Region" + +#: application/libraries/Subdivisions.php:45 +msgctxt "Division Name (States in various countries)." +msgid "Department" +msgstr "Department" + +#: application/libraries/Subdivisions.php:49 +msgctxt "Division Name (States in various countries)." +msgid "Municipality" +msgstr "Gemeinde" + +#: application/libraries/Subdivisions.php:51 +msgctxt "Division Name (States in various countries)." +msgid "Federal State" +msgstr "Bundesstaat" + +#: application/libraries/Subdivisions.php:56 +#: application/libraries/Subdivisions.php:94 +msgctxt "Division Name (States in various countries)." +msgid "County" +msgstr "County" + +#: application/libraries/Subdivisions.php:60 +#: application/libraries/Subdivisions.php:85 +msgctxt "Division Name (States in various countries)." +msgid "District" +msgstr "Distrikt" + +#: application/libraries/Subdivisions.php:62 +msgctxt "Division Name (States in various countries)." +msgid "Canton" +msgstr "Kanton" + +#: application/libraries/Subdivisions.php:64 +msgctxt "Division Name (States in various countries)." +msgid "US State" +msgstr "US-Staat" + +#: application/libraries/Subdivisions.php:67 +msgctxt "Division Name (States in various countries)." +msgid "Prefecture" +msgstr "Präfektur" + +#: application/libraries/Subdivisions.php:69 +msgctxt "Division Name (States in various countries)." +msgid "State" +msgstr "Staat" + +#: application/libraries/Subdivisions.php:78 +msgctxt "Division Name (States in various countries)." +msgid "US County" +msgstr "US County" + +#: application/libraries/Subdivisions.php:90 +msgctxt "Division Name (States in various countries)." +msgid "DME" +msgstr "DME" + +#: application/libraries/Subdivisions.php:92 +msgctxt "Division Name (States in various countries)." +msgid "City / Ku / Gun" +msgstr "Stadt / Ku / Gun" + #: application/models/Eqslmethods_model.php:281 msgid "Your eQSL username and/or password is incorrect." msgstr "Dein eQSL-Benutzername und/oder Passwort ist falsch." @@ -2166,33 +2477,33 @@ msgstr "HRDlog: Keine QSOs gefunden zum hochladen für Stationsrufzeichen: " #: application/models/Hrdlog_model.php:31 msgid "HRDlog: No station profiles with HRDlog Credentials found." -msgstr "HRDlog: Keine Stationsprofile mit HRDlog Zugangsdaten gefunden." +msgstr "HRDlog: Keine Stationsstandorte mit HRDlog Zugangsdaten gefunden." -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4255 msgid "QSO could not be matched" msgstr "QSO konnte nicht gefunden werden" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4261 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "bestätigt durch LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4266 msgid "confirmed by award manager" msgstr "bestätigt durch Diplommananger" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4269 msgid "confirmed by cross-check of DCL data" msgstr "bestätigt durch Cross-Check von DCL-Daten" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4272 msgid "confirmation pending" msgstr "Bestätigung ausstehend" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4275 msgid "unconfirmed" msgstr "nicht bestätigt" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4278 msgid "unknown" msgstr "unbekannt" @@ -2221,7 +2532,7 @@ msgid "Accumulated number of WAJA worked" msgstr "Kumulierte Anzahl gearbeiteter WAJA" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:222 +#: application/views/dashboard/index.php:238 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2234,7 +2545,7 @@ msgid "Yearly" msgstr "jährlich" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:243 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Monat" @@ -2250,29 +2561,33 @@ msgstr "Differenz" #: application/views/accumulate/index.php:24 #: application/views/accumulate/index.php:34 +#: application/views/accumulate/index.php:83 #: application/views/activated_gridmap/index.php:10 #: application/views/activated_gridmap/index.php:22 #: application/views/activated_gridmap/index.php:32 #: application/views/activated_gridmap/index.php:41 -#: application/views/activators/index.php:10 -#: application/views/awards/cq/index.php:75 -#: application/views/awards/cq/index.php:89 +#: application/views/activators/index.php:13 +#: application/views/awards/cq/index.php:77 +#: application/views/awards/cq/index.php:91 #: application/views/awards/dok/index.php:94 #: application/views/awards/dxcc/index.php:134 #: application/views/awards/dxcc/index.php:150 #: application/views/awards/dxcc/index.php:165 -#: application/views/awards/helvetia/index.php:88 +#: application/views/awards/helvetia/index.php:90 #: application/views/awards/iota/index.php:108 -#: application/views/awards/itu/index.php:75 -#: application/views/awards/itu/index.php:89 +#: application/views/awards/itu/index.php:77 +#: application/views/awards/itu/index.php:91 #: application/views/awards/jcc/index.php:91 -#: application/views/awards/rac/index.php:80 +#: application/views/awards/rac/index.php:82 #: application/views/awards/wab/index.php:24 #: application/views/awards/wab/index.php:36 #: application/views/awards/wab/index.php:46 #: application/views/awards/wab/index.php:55 -#: application/views/awards/waja/index.php:92 -#: application/views/awards/was/index.php:88 +#: application/views/awards/wac/index.php:81 +#: application/views/awards/wac/index.php:97 +#: application/views/awards/wac/index.php:113 +#: application/views/awards/waja/index.php:94 +#: application/views/awards/was/index.php:90 #: application/views/bandmap/list.php:71 application/views/bandmap/list.php:78 #: application/views/bandmap/list.php:90 application/views/bands/index.php:117 #: application/views/cabrillo/index.php:65 @@ -2283,6 +2598,7 @@ msgstr "Differenz" #: application/views/csv/index.php:94 application/views/distances/index.php:21 #: application/views/distances/index.php:36 #: application/views/distances/index.php:46 +#: application/views/distances/index.php:56 #: application/views/dxatlas/index.php:21 #: application/views/dxatlas/index.php:33 #: application/views/dxatlas/index.php:44 @@ -2294,28 +2610,29 @@ msgstr "Differenz" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1435 -#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1448 +#: application/views/interface_assets/footer.php:1587 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:172 #: application/views/logbookadvanced/index.php:183 #: application/views/logbookadvanced/index.php:194 -#: application/views/logbookadvanced/index.php:203 -#: application/views/logbookadvanced/index.php:212 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:205 +#: application/views/logbookadvanced/index.php:214 +#: application/views/logbookadvanced/index.php:223 #: application/views/logbookadvanced/index.php:248 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:321 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:374 -#: application/views/logbookadvanced/index.php:385 -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:259 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:423 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2326,11 +2643,12 @@ msgstr "Differenz" #: application/views/stationsetup/exportmapoptions.php:33 #: application/views/timeline/index.php:10 #: application/views/timeline/index.php:22 +#: application/views/timeline/index.php:77 #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 #: application/views/user/edit.php:633 -#: application/views/visitor/layout/footer.php:169 +#: application/views/visitor/layout/footer.php:171 msgid "All" msgstr "Alle" @@ -2368,29 +2686,254 @@ msgstr "Worked All Japan (WAJA)" msgid "Period" msgstr "Zeitraum" -#: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: application/views/accumulate/index.php:80 +#: application/views/distances/index.php:53 +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/timeline/index.php:74 +msgid "Propagation" +msgstr "Ausbreitungsart" + +#: application/views/accumulate/index.php:84 +#: application/views/distances/index.php:57 +#: application/views/timeline/index.php:78 +msgid "All but SAT" +msgstr "Alle außer SAT" + +#: application/views/accumulate/index.php:85 +#: application/views/distances/index.php:58 +#: application/views/gridmap/index.php:42 +#: application/views/logbookadvanced/edit.php:142 +#: application/views/logbookadvanced/index.php:307 +#: application/views/timeline/index.php:79 +msgid "None/Empty" +msgstr "Keine/Leer" + +#: application/views/accumulate/index.php:86 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/logbookadvanced/index.php:225 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:414 +#: application/views/timeline/index.php:80 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "Flugzeug-Scatter" + +#: application/views/accumulate/index.php:87 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/logbookadvanced/index.php:226 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:415 +#: application/views/timeline/index.php:81 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "Aurora" + +#: application/views/accumulate/index.php:88 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/logbookadvanced/index.php:227 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:416 +#: application/views/timeline/index.php:82 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "Aurora-E" + +#: application/views/accumulate/index.php:89 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/logbookadvanced/index.php:228 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:417 +#: application/views/timeline/index.php:83 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "Rückwärts-Scatter" + +#: application/views/accumulate/index.php:90 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/logbookadvanced/index.php:229 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:418 +#: application/views/timeline/index.php:84 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "EchoLink" + +#: application/views/accumulate/index.php:91 +#: 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/logbookadvanced/index.php:230 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:419 +#: application/views/timeline/index.php:85 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "Erde-Mond-Erde" + +#: application/views/accumulate/index.php:92 +#: 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/logbookadvanced/index.php:231 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:420 +#: application/views/timeline/index.php:86 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "Sporadic E" + +#: application/views/accumulate/index.php:93 +#: 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/logbookadvanced/index.php:232 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:421 +#: application/views/timeline/index.php:87 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "feldausgerichtete Irregularitäten" + +#: application/views/accumulate/index.php:94 +#: 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/logbookadvanced/index.php:233 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:422 +#: application/views/timeline/index.php:88 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "F2-Reflexion" + +#: application/views/accumulate/index.php:95 +#: 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/logbookadvanced/index.php:234 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:423 +#: application/views/timeline/index.php:89 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "Internet-gestützt" + +#: application/views/accumulate/index.php:96 +#: 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/logbookadvanced/index.php:235 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:424 +#: application/views/timeline/index.php:90 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "Ionoscatter" + +#: application/views/accumulate/index.php:97 +#: 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/logbookadvanced/index.php:236 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:425 +#: application/views/timeline/index.php:91 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "IRLP" + +#: application/views/accumulate/index.php:98 +#: 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/logbookadvanced/index.php:237 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:426 +#: application/views/timeline/index.php:92 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "Meteor-Scatter" + +#: application/views/accumulate/index.php:99 +#: 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/logbookadvanced/index.php:238 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:427 +#: application/views/timeline/index.php:93 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "Terrestrische oder atmosphärische Repeater oder Transponder" + +#: application/views/accumulate/index.php:100 +#: 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/logbookadvanced/index.php:239 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:428 +#: application/views/timeline/index.php:94 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "Regen-Scatter" + +#: application/views/accumulate/index.php:101 +#: 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/logbookadvanced/index.php:240 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:429 +#: application/views/timeline/index.php:95 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Satellit" + +#: application/views/accumulate/index.php:102 +#: 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/logbookadvanced/index.php:241 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:430 +#: application/views/timeline/index.php:96 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "Transequatorial" + +#: application/views/accumulate/index.php:103 +#: 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/logbookadvanced/index.php:242 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:431 +#: application/views/timeline/index.php:97 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "troposphärisches Ducting" + +#: application/views/accumulate/index.php:112 +#: application/views/activators/index.php:53 +#: application/views/awards/cq/index.php:113 #: application/views/awards/dok/index.php:127 #: application/views/awards/dxcc/index.php:187 -#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/helvetia/index.php:112 #: application/views/awards/iota/index.php:130 -#: application/views/awards/itu/index.php:111 +#: application/views/awards/itu/index.php:113 #: application/views/awards/jcc/index.php:113 -#: application/views/awards/rac/index.php:102 -#: application/views/awards/waja/index.php:114 -#: application/views/awards/was/index.php:110 -#: application/views/distances/index.php:53 +#: application/views/awards/rac/index.php:104 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:79 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 #: application/views/stationsetup/exportmapoptions.php:6 -#: application/views/timeline/index.php:72 -#: application/views/timeline/index.php:137 -#: application/views/timeline/index.php:164 -#: application/views/timeline/index.php:189 -#: application/views/timeline/index.php:218 -#: application/views/timeline/index.php:243 -#: application/views/timeline/index.php:270 +#: application/views/timeline/index.php:105 +#: application/views/timeline/index.php:170 +#: application/views/timeline/index.php:197 +#: application/views/timeline/index.php:222 +#: application/views/timeline/index.php:251 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:303 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "Anzeigen" @@ -2398,12 +2941,15 @@ msgstr "Anzeigen" #: application/views/activated_gridmap/index.php:20 #: application/views/awards/dxcc/index.php:131 #: application/views/awards/wab/index.php:34 +#: application/views/awards/wac/index.php:78 #: 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/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/edit.php:17 +#: application/views/logbookadvanced/index.php:203 #: application/views/satellite/flightpath.php:34 +#: application/views/satellite/passtable.php:5 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2412,9 +2958,10 @@ msgstr "Satellit" #: application/views/activated_gridmap/index.php:30 #: application/views/awards/dxcc/index.php:147 #: application/views/awards/wab/index.php:44 +#: application/views/awards/wac/index.php:94 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:212 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2429,16 +2976,17 @@ msgid "Confirmation" msgstr "Bestätigung" #: application/views/activated_gridmap/index.php:82 -#: application/views/awards/cq/index.php:66 +#: application/views/awards/cq/index.php:68 #: application/views/awards/dok/index.php:67 #: application/views/awards/dxcc/index.php:73 -#: application/views/awards/helvetia/index.php:65 -#: application/views/awards/itu/index.php:66 +#: application/views/awards/helvetia/index.php:67 +#: application/views/awards/itu/index.php:68 #: application/views/awards/jcc/index.php:64 -#: application/views/awards/rac/index.php:57 +#: application/views/awards/rac/index.php:59 #: application/views/awards/wab/index.php:96 -#: application/views/awards/waja/index.php:65 -#: application/views/awards/was/index.php:65 +#: application/views/awards/wac/index.php:56 +#: application/views/awards/waja/index.php:67 +#: application/views/awards/was/index.php:67 #: application/views/gridmap/index.php:125 application/views/user/edit.php:675 msgid "QRZ.com" msgstr "QRZ.com" @@ -2474,59 +3022,62 @@ msgstr "Längengrad" #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:37 #: application/views/gridmap/index.php:156 -#: application/views/logbookadvanced/index.php:12 +#: application/views/logbookadvanced/index.php:13 msgid "Bearing" msgstr "Peilung" -#: application/views/activators/index.php:23 +#: application/views/activators/index.php:26 msgctxt "Orbiter LEO or GEO" msgid "Both" msgstr "Beide" -#: application/views/activators/index.php:30 +#: application/views/activators/index.php:33 msgid "Minimum Count" msgstr "Minimale Anzahl" -#: application/views/activators/index.php:77 +#: application/views/activators/index.php:76 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:46 -#: application/views/awards/cq/index.php:196 +#: application/views/awards/cq/index.php:198 #: application/views/awards/dok/index.php:196 #: application/views/awards/dxcc/index.php:280 -#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/helvetia/index.php:200 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:196 +#: application/views/awards/itu/index.php:198 #: application/views/awards/jcc/index.php:236 #: application/views/awards/pota/index.php:67 -#: application/views/awards/rac/index.php:190 +#: application/views/awards/rac/index.php:192 #: application/views/awards/sig/index.php:45 #: application/views/awards/sota/index.php:53 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:39 -#: application/views/awards/waja/index.php:200 -#: application/views/awards/was/index.php:198 +#: application/views/awards/wac/index.php:199 +#: application/views/awards/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 +#: application/views/distancerecords/index.php:50 #: application/views/public_search/empty.php:3 -#: application/views/qrz/export.php:64 application/views/timeline/index.php:102 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:135 msgid "Nothing found!" msgstr "Nichts gefunden!" -#: application/views/activators/index.php:99 -#: application/views/adif/import.php:66 application/views/adif/import.php:172 -#: application/views/adif/import.php:217 +#: application/views/activators/index.php:98 +#: application/views/adif/import.php:66 application/views/adif/import.php:182 +#: application/views/adif/import.php:227 #: application/views/awards/pota/index.php:34 #: application/views/awards/sig/qso_list.php:11 #: application/views/awards/sota/index.php:25 #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:104 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:152 +#: application/views/contesting/index.php:156 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:168 +#: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 -#: application/views/lotw_views/index.php:39 +#: application/views/lotw_views/index.php:35 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 #: application/views/qslcard/index.php:28 @@ -2535,35 +3086,36 @@ msgstr "Nichts gefunden!" #: application/views/qslprint/qslprint.php:21 #: application/views/qslprint/qsolist.php:6 #: application/views/qso/edit_ajax.php:62 application/views/qso/index.php:124 +#: application/views/reg1test/index.php:33 #: application/views/search/cqzones.php:32 #: application/views/search/cqzones_result.php:9 #: application/views/search/lotw_unconfirmed.php:33 #: application/views/search/lotw_unconfirmed_result.php:6 #: application/views/search/result.php:11 -#: application/views/simplefle/index.php:142 -#: application/views/station_profile/edit.php:36 +#: application/views/simplefle/index.php:148 +#: application/views/station_profile/edit.php:63 #: application/views/stationsetup/linkedlocations.php:17 -#: application/views/user/edit.php:123 application/views/user/main.php:4 -#: application/views/user/main.php:47 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:507 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 +#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:510 msgid "Callsign" msgstr "Rufzeichen" -#: application/views/activators/index.php:100 +#: application/views/activators/index.php:99 msgid "Count" msgstr "Zähler" -#: application/views/activators/index.php:102 -#: application/views/timeline/index.php:121 -#: application/views/timeline/index.php:153 -#: application/views/timeline/index.php:178 -#: application/views/timeline/index.php:205 -#: application/views/timeline/index.php:232 -#: application/views/timeline/index.php:258 +#: application/views/activators/index.php:101 +#: application/views/timeline/index.php:154 +#: application/views/timeline/index.php:186 +#: application/views/timeline/index.php:211 +#: application/views/timeline/index.php:238 +#: application/views/timeline/index.php:265 +#: application/views/timeline/index.php:291 msgid "Show QSO's" msgstr "Zeige QSOs" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "Zeige Karte" @@ -2604,10 +3156,12 @@ msgstr "Die Informationen zum DOK im Logbuch weichen von denen im DCL ab" #: application/views/awards/wwff/index.php:32 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:25 -#: application/views/contesting/index.php:42 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36 +#: application/views/contesting/index.php:93 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:163 +#: application/views/debug/index.php:545 +#: application/views/distancerecords/index.php:16 +#: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2620,22 +3174,22 @@ msgstr "Die Informationen zum DOK im Logbuch weichen von denen im DCL ab" #: application/views/qslcard/searchresult.php:4 #: application/views/qslprint/qslprint.php:22 #: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:64 -#: application/views/qso/index.php:100 +#: application/views/qso/index.php:100 application/views/satellite/pass.php:473 #: application/views/search/cqzones_result.php:7 #: application/views/search/result_search.php:4 #: application/views/search/search_result_ajax.php:89 -#: application/views/simplefle/index.php:140 +#: application/views/simplefle/index.php:146 #: application/views/statistics/custom.php:38 #: application/views/statistics/custom_result.php:40 #: application/views/statistics/custom_result.php:85 -#: application/views/timeline/index.php:116 -#: application/views/timeline/index.php:151 -#: application/views/timeline/index.php:176 -#: application/views/timeline/index.php:201 -#: application/views/timeline/index.php:230 -#: application/views/timeline/index.php:255 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:184 +#: application/views/timeline/index.php:209 +#: application/views/timeline/index.php:234 +#: application/views/timeline/index.php:263 +#: application/views/timeline/index.php:288 #: application/views/view_log/partial/log.php:4 -#: application/views/view_log/partial/log_ajax.php:57 +#: application/views/view_log/partial/log_ajax.php:59 #: application/views/visitor/index.php:147 #: application/views/widgets/qsos.php:24 msgid "Date" @@ -2646,10 +3200,12 @@ msgstr "Datum" #: application/views/awards/wwff/index.php:33 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:26 -#: application/views/contesting/index.php:47 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37 +#: application/views/contesting/index.php:98 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:166 +#: application/views/debug/index.php:546 +#: application/views/distancerecords/index.php:17 +#: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2660,12 +3216,12 @@ msgstr "Datum" #: application/views/search/cqzones_result.php:8 #: application/views/search/result_search.php:5 #: application/views/search/search_result_ajax.php:91 -#: application/views/simplefle/index.php:141 +#: application/views/simplefle/index.php:147 #: application/views/statistics/custom_result.php:86 -#: application/views/timeline/index.php:256 +#: application/views/timeline/index.php:289 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 -#: application/views/view_log/partial/log_ajax.php:59 +#: application/views/view_log/partial/log_ajax.php:61 #: application/views/visitor/index.php:150 #: application/views/widgets/qsos.php:26 msgid "Time" @@ -2674,7 +3230,7 @@ msgstr "Zeit" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 -#: application/views/contesting/index.php:201 +#: application/views/contesting/index.php:248 #: application/views/debug/index.php:547 application/views/debug/index.php:582 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -2686,7 +3242,7 @@ msgstr "Zeit" #: application/views/search/search_result_ajax.php:93 #: application/views/statistics/custom_result.php:87 #: application/views/view_log/partial/log.php:8 -#: application/views/view_log/partial/log_ajax.php:61 +#: application/views/view_log/partial/log_ajax.php:63 #: application/views/visitor/index.php:152 #: application/views/widgets/qsos.php:28 msgid "Call" @@ -2704,14 +3260,14 @@ msgstr "DOK im DCL" msgid "DCL QSL Status" msgstr "DCL QSL-Status" -#: application/views/adif/import.php:36 application/views/adif/import.php:242 +#: application/views/adif/import.php:36 application/views/adif/import.php:252 msgid "DARC DCL" msgstr "DARC DCL" #: application/views/adif/import.php:55 -#: application/views/dashboard/index.php:97 -#: application/views/dashboard/index.php:118 -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:112 +#: application/views/dashboard/index.php:133 +#: application/views/dashboard/index.php:139 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2721,29 +3277,29 @@ msgstr "Wichtig" msgid "Log Files must have the file type *.adi" msgstr "Die Logdatei muss im *.adi Format vorliegen" -#: application/views/adif/import.php:56 application/views/view_log/qso.php:622 +#: application/views/adif/import.php:56 application/views/view_log/qso.php:625 msgid "Maximum file upload size is " msgstr "Die max. Dateigröße für Uploads beträgt " -#: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:175 +#: application/views/adif/import.php:56 application/views/adif/import.php:230 +#: application/views/adif/import.php:268 application/views/debug/index.php:175 #: application/views/debug/index.php:192 application/views/debug/index.php:537 #: application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:34 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 -#: application/views/station_profile/index.php:31 #: application/views/stationsetup/stationsetup.php:111 -#: application/views/view_log/qso.php:622 +#: application/views/view_log/qso.php:625 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" msgstr "Warnung" #: application/views/adif/import.php:60 application/views/adif/import.php:62 -#: application/views/adif/import.php:168 application/views/adif/import.php:215 +#: application/views/adif/import.php:178 application/views/adif/import.php:225 #: application/views/eqsl/import.php:36 application/views/hrdlog/export.php:69 -#: application/views/qrz/export.php:89 application/views/webadif/export.php:89 +#: application/views/qrz/export.php:89 application/views/reg1test/index.php:30 +#: application/views/webadif/export.php:89 msgid "Select Station Location" msgstr "Wähle Stationsstandort" @@ -2770,28 +3326,33 @@ msgstr "Markiere hochgeladene QSOs als bereits zu LoTW hochgeladen" #: application/views/adif/import.php:95 application/views/adif/import.php:105 #: application/views/adif/import.php:115 application/views/adif/import.php:125 +#: application/views/adif/import.php:135 msgid "Select if ADIF being imported does not contain this information." msgstr "" "Wähle dies aus, wenn die hochgeladene ADIF-Datei diese Information nicht " "enthält." #: application/views/adif/import.php:103 +msgid "Mark imported QSOs as uploaded to eQSL Logbook" +msgstr "Markiere hochgeladene QSOs als bereits zu eQSL hochgeladen" + +#: application/views/adif/import.php:113 msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" msgstr "Markiere hochgeladene QSOs als bereits zu HRDlog.net hochgeladen" -#: application/views/adif/import.php:113 +#: application/views/adif/import.php:123 msgid "Mark imported QSOs as uploaded to QRZ Logbook" msgstr "Markiere hochgeladene QSOs als bereits zu QRZ.com hochgeladen" -#: application/views/adif/import.php:123 +#: application/views/adif/import.php:133 msgid "Mark imported QSOs as uploaded to Clublog Logbook" msgstr "Markiere hochgeladene QSOs als bereits zu Clublog hochgeladen" -#: application/views/adif/import.php:133 +#: application/views/adif/import.php:143 msgid "Use DXCC information from ADIF" msgstr "Benutze die DXCC-Informationen aus der ADIF-Datei" -#: application/views/adif/import.php:135 +#: application/views/adif/import.php:145 msgid "" "If not selected, Wavelog will attempt to determine DXCC information " "automatically." @@ -2799,42 +3360,42 @@ msgstr "" "Wenn diese Option nicht ausgewählt ist, wird Wavelog versuchen die DXCC " "Informationen automatisch zu ermitteln." -#: application/views/adif/import.php:143 +#: application/views/adif/import.php:153 msgid "Always use login-callsign as operator-name on import" msgstr "" "Nutze während des Imports immer das eingeloggte Rufzeichen als Operator-Name" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:32 -#: application/views/interface_assets/footer.php:495 -#: application/views/interface_assets/footer.php:2119 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2133 msgid "DANGER" msgstr "GEFAHR" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 msgid "Ignore Stationcallsign on import" msgstr "Ignoriere das Stations-Rufzeichen beim Import" -#: application/views/adif/import.php:154 +#: application/views/adif/import.php:164 +#, php-format msgid "" -"If selected, Wavelog will try to import all QSO's of the ADIF, " +"If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " "regardless if they match to the chosen station-location." msgstr "" -"Wenn diese Option ausgewählt ist, wird Wavelog versuchen alle QSOs " -"hochzuladen, unabhängig davon, ob sie mit dem aktiven Stationsstandort " -"zusammenpassen." +"Wenn ausgewählt, wird Wavelog versuchen, %salle%s QSOs der ADIF Datei zu " +"importieren, unabhängig davon, ob sie zum gewählten Standort passen." -#: application/views/adif/import.php:158 application/views/adif/import.php:273 +#: application/views/adif/import.php:168 application/views/adif/import.php:283 #: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 #: application/views/webadif/export.php:55 msgid "Upload" msgstr "Hochladen" -#: application/views/adif/import.php:165 +#: application/views/adif/import.php:175 msgid "Take your logbook file anywhere!" msgstr "Exportiere deine Logs überall hin!" -#: application/views/adif/import.php:166 +#: application/views/adif/import.php:176 msgid "" "Exporting ADIFs allows you to import contacts into third party applications " "like LoTW, Awards or just for keeping a backup." @@ -2843,7 +3404,7 @@ msgstr "" "Beispiel in Drittanbieter-Software (z.B. LoTW) einzubinden oder sie einfach " "nur als Backup zu speichern." -#: application/views/adif/import.php:176 application/views/adif/import.php:222 +#: application/views/adif/import.php:186 application/views/adif/import.php:232 #: application/views/cfd/index.php:15 application/views/csv/index.php:118 #: application/views/dxatlas/index.php:118 #: application/views/hrdlog/export.php:77 application/views/kml/index.php:103 @@ -2852,7 +3413,7 @@ msgstr "" msgid "From date" msgstr "Ab Datum" -#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/adif/import.php:189 application/views/adif/import.php:235 #: application/views/cfd/index.php:20 application/views/csv/index.php:123 #: application/views/dxatlas/index.php:123 #: application/views/hrdlog/export.php:82 application/views/kml/index.php:108 @@ -2861,40 +3422,40 @@ msgstr "Ab Datum" msgid "To date" msgstr "Bis Datum" -#: application/views/adif/import.php:187 +#: application/views/adif/import.php:197 msgid "Mark exported QSOs as uploaded to LoTW" msgstr "Markiere die exportierten QSO als 'zu LoTW hochgeladen'" -#: application/views/adif/import.php:195 +#: application/views/adif/import.php:205 msgid "Export QSOs not uploaded to LoTW" msgstr "Markiere die exportierten QSO als 'zu LoTW nicht hochgeladen'" -#: application/views/adif/import.php:200 +#: application/views/adif/import.php:210 msgid "Export QSO's" msgstr "Exportiere QSOs" -#: application/views/adif/import.php:205 +#: application/views/adif/import.php:215 msgid "Export Satellite-Only QSOs" msgstr "Exportiere nur Satelliten-QSOs" -#: application/views/adif/import.php:206 +#: application/views/adif/import.php:216 msgid "Export All Satellite QSOs" msgstr "Exportiere ALLE Satelliten-QSOs" -#: application/views/adif/import.php:208 +#: application/views/adif/import.php:218 msgid "Export All Satellite QSOs Confirmed on LoTW" msgstr "Exportiere nur die Satelliten-QSOs, welche auf LoTW bestätigt sind" -#: application/views/adif/import.php:220 application/views/hrdlog/export.php:74 +#: application/views/adif/import.php:230 application/views/hrdlog/export.php:74 #: application/views/qrz/export.php:94 application/views/webadif/export.php:94 msgid "If a date range is not selected then all QSOs will be marked!" msgstr "Wenn kein Datum gewählt ist, werden alle QSOs markiert!" -#: application/views/adif/import.php:228 +#: application/views/adif/import.php:238 msgid "Mark QSOs as exported to LoTW" msgstr "Markiere die QSOs als 'zu LoTW hochgeladen'" -#: application/views/adif/import.php:242 +#: application/views/adif/import.php:252 #, php-format msgid "" "Go to %s and export your logbook with confirmed DOKs. To speed up the " @@ -2907,12 +3468,12 @@ msgstr "" "'DL' zur Prefix Liste hinzu). Die heruntergeladene ADIF Datei kann dann hier " "hochgeladen werden um QSOs mit DOK info zu aktualisieren." -#: application/views/adif/import.php:249 +#: application/views/adif/import.php:259 msgid "Only import DOK data from QSOs confirmed on DCL." msgstr "" "Importiere Informationen zum DOK nur von QSOs, die auf DCL bestätigt sind." -#: application/views/adif/import.php:251 +#: application/views/adif/import.php:261 msgid "" "Uncheck if you also want to update DOK with data from unconfirmed QSOs in " "DCL." @@ -2920,13 +3481,13 @@ msgstr "" "Deaktiviere diese Option, um auch DOK-Infos von QSOS zu importieren, die auf " "DCL nicht bestätig sind." -#: application/views/adif/import.php:258 +#: application/views/adif/import.php:268 msgid "Overwrites exisiting DOK in log by DCL (if different)." msgstr "" "Überschreibt vorhandenen DOK im Log mit Information aus DCL (falls " "verschieden)." -#: application/views/adif/import.php:260 +#: application/views/adif/import.php:270 msgid "" "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " "log." @@ -2934,11 +3495,11 @@ msgstr "" "Wenn aktiviert, wird Wavelog den existierenden DOK mit dem DOK aus dem DCL " "überschreiben." -#: application/views/adif/import.php:267 +#: application/views/adif/import.php:277 msgid "Ignore QSOs that cannot be matched." msgstr "Ignoriere QSOs, die nicht eindeutig zugeordnet werden können." -#: application/views/adif/import.php:269 +#: application/views/adif/import.php:279 msgid "" "If unchecked, information about QSOs which could not be found in Wavelog " "will be displayed." @@ -2946,6 +3507,20 @@ msgstr "" "Falls nicht ausgewählt, wird eine Info über QSOs angezeigt, welche in " "Wavelog nicht gefunden werden konnten." +#: application/views/adif/import_failed.php:15 +msgid "The ADIF file could not be parsed correctly." +msgstr "Die ADIF-Datei konnte nicht korrekt gelesen werden." + +#: application/views/adif/import_failed.php:16 +msgid "" +"At least one of the ADIF fields could not be parsed and/or inserted into the " +"database. Please check the imported ADIF file. You can use an online ADIF " +"file checker. For example:" +msgstr "" +"Mindestens eines der ADIF-Felder konnte nicht gelesen und/oder in die " +"Datenbank eingefügt werden. Bitte überprüfe die importierte ADIF-Datei. Du " +"kannst einen Online-ADIF-Datei-Checker verwenden. Zum Beispiel:" + #: application/views/adif/import_success.php:15 msgid "Yay, its imported!" msgstr "Yay, Datei importiert!" @@ -3000,24 +3575,22 @@ msgstr "Einfacher Name, um zu beschreiben, wofür Sie diese API verwenden." #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 -#: application/views/interface_assets/footer.php:43 -#: application/views/interface_assets/footer.php:530 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 -#: application/views/options/appearance.php:107 +#: application/views/options/appearance.php:116 #: application/views/options/dxcluster.php:67 #: application/views/options/email.php:112 #: application/views/options/oqrs.php:63 #: application/views/options/radios.php:45 #: application/views/options/version_dialog.php:78 -#: application/views/qso/components/winkeysettings.php:90 -#: application/views/qso/components/winkeysettings_results.php:90 #: application/views/satellite/create.php:70 #: application/views/simplefle/index.php:22 msgid "Save" msgstr "Speichern" #: application/views/api/help.php:14 -#: application/views/interface_assets/header.php:431 +#: application/views/interface_assets/header.php:437 msgid "API Keys" msgstr "API-Schlüssel" @@ -3048,7 +3621,7 @@ msgid "API URL" msgstr "API-URL" #: application/views/api/help.php:19 application/views/api/help.php:38 -#: application/views/cron/index.php:21 application/views/debug/index.php:36 +#: application/views/cron/index.php:22 application/views/debug/index.php:36 msgid "Copy to clipboard" msgstr "In die Zwischenablage kopieren" @@ -3057,14 +3630,15 @@ msgid "The API URL for this Wavelog instance is" msgstr "Die API-URL für diese Wavelog-Instanz ist" #: application/views/api/help.php:20 application/views/dxcalendar/index.php:15 -#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:477 -#: application/views/qso/index.php:538 application/views/qso/index.php:583 +#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:504 +#: application/views/qso/index.php:560 application/views/qso/index.php:605 #: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 #: application/views/sattimers/index.php:73 #: application/views/sattimers/index.php:75 +#: application/views/sattimers/index.php:77 #: application/views/search/filter.php:69 msgid "Info" msgstr "Info" @@ -3082,7 +3656,7 @@ msgid "API Key" msgstr "API-Schlüssel" #: application/views/api/help.php:28 application/views/cron/edit.php:30 -#: application/views/cron/index.php:51 +#: application/views/cron/index.php:53 #: application/views/search/stored_queries.php:8 msgid "Description" msgstr "Beschreibung" @@ -3095,19 +3669,18 @@ msgstr "Zuletzt verwendet" msgid "Permissions" msgstr "Berechtigungen" -#: application/views/api/help.php:31 application/views/cron/index.php:52 -#: application/views/lotw_views/index.php:45 +#: application/views/api/help.php:31 application/views/cron/index.php:54 +#: application/views/lotw_views/index.php:41 #: application/views/mode/index.php:31 #: application/views/oqrs/showrequests.php:91 #: application/views/sattimers/index.php:39 #: application/views/stationsetup/stationsetup.php:31 -#: application/views/timeline/index.php:119 -#: application/views/update/index.php:30 +#: application/views/timeline/index.php:152 msgid "Status" msgstr "Status" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:519 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "Aktionen" @@ -3143,6 +3716,7 @@ msgstr "Erstelle einen Nur-Lesen-Schlüssel" #: application/views/awards/counties/details.php:4 #: application/views/awards/details.php:1 #: application/views/awards/vucc/band.php:4 +#: application/views/distancerecords/details.php:1 #: application/views/timeline/details.php:2 msgid "Filtering on" msgstr "Filtern auf" @@ -3153,8 +3727,8 @@ msgstr "County" #: application/views/awards/counties/index.php:6 #: application/views/awards/counties/index.php:13 -#: application/views/awards/cq/index.php:17 -#: application/views/awards/cq/index.php:24 +#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:26 #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:13 #: application/views/awards/dxcc/index.php:13 @@ -3163,12 +3737,12 @@ msgstr "County" #: application/views/awards/ffma/index.php:14 #: application/views/awards/gridmaster/index.php:6 #: application/views/awards/gridmaster/index.php:13 -#: application/views/awards/helvetia/index.php:17 -#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:26 #: application/views/awards/iota/index.php:15 #: application/views/awards/iota/index.php:22 -#: application/views/awards/itu/index.php:17 -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:26 #: application/views/awards/jcc/index.php:15 #: application/views/awards/jcc/index.php:22 #: application/views/awards/pota/index.php:6 @@ -3181,10 +3755,12 @@ msgstr "County" #: application/views/awards/vucc/index.php:13 #: application/views/awards/wab/index.php:11 #: application/views/awards/wab/index.php:18 -#: application/views/awards/waja/index.php:16 -#: application/views/awards/waja/index.php:23 -#: application/views/awards/was/index.php:17 -#: application/views/awards/was/index.php:24 +#: application/views/awards/wac/index.php:7 +#: application/views/awards/wac/index.php:14 +#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:25 +#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:26 #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:13 msgid "Award Info" @@ -3230,17 +3806,18 @@ msgid "Counties Confirmed" msgstr "Bestätigte Counties" #: application/views/awards/counties/index.php:39 -#: application/views/awards/cq/index.php:174 +#: application/views/awards/cq/index.php:176 #: application/views/awards/dok/index.php:174 #: application/views/awards/dxcc/index.php:257 -#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/helvetia/index.php:179 #: application/views/awards/iota/index.php:201 -#: application/views/awards/itu/index.php:174 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:185 -#: application/views/awards/rac/index.php:169 -#: application/views/awards/waja/index.php:177 -#: application/views/awards/was/index.php:177 -#: application/views/dashboard/index.php:217 +#: application/views/awards/rac/index.php:171 +#: application/views/awards/wac/index.php:177 +#: application/views/awards/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:233 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3256,11 +3833,34 @@ msgstr "Bestätigte Counties" msgid "Total" msgstr "Gesamt" -#: application/views/awards/cq/index.php:18 +#: application/views/awards/cq/index.php:3 +#: application/views/awards/cq/index.php:150 application/views/csv/index.php:80 +#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/logbookadvanced/edit.php:6 +#: application/views/logbookadvanced/index.php:246 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:284 +#: application/views/qso/index.php:390 +#: application/views/search/cqzones_result.php:13 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:264 +#: application/views/timeplotter/index.php:44 +msgid "CQ Zone" +msgstr "CQ-Zone" + +#: application/views/awards/cq/index.php:4 +#: application/views/awards/itu/index.php:4 +msgid "Hover over a zone" +msgstr "Bewege die Maus über eine Zone" + +#: application/views/awards/cq/index.php:20 msgid "CQ Magazine WAZ Award" msgstr "CQ Magazine WAZ-Diplom" -#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:21 msgid "" "The CQ Magazine is located in the US and one of the most popular amateur " "radio magazines in the world. The magazine first appeared in January 1945 " @@ -3271,7 +3871,7 @@ msgstr "" "und konzentriert sich auf Diplome und die praktischen Aspekte des " "Amateurfunks." -#: application/views/awards/cq/index.php:20 +#: application/views/awards/cq/index.php:22 msgid "" "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to " "all 40 CQ Zones along with the corresponding confirmation." @@ -3279,196 +3879,190 @@ msgstr "" "Der WAZ Award steht für 'Worked All Zones' und erfordert Kontakte zu allen " "40 CQ-Zonen sowie die entsprechende QSL Bestätigung." -#: application/views/awards/cq/index.php:21 +#: application/views/awards/cq/index.php:23 #, php-format msgctxt "uses 'CQ Magazine'" msgid "You can find all the information and rules on the Website of the %s." msgstr "Du findest alle Informationen und Regeln auf der Webseite des %s." -#: application/views/awards/cq/index.php:23 +#: application/views/awards/cq/index.php:25 msgid "Awards - CQ Magazine WAZ" msgstr "Diplome - CQ Magazin WAZ" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 #: application/views/awards/wab/list.php:6 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:73 -#: application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:362 -#: application/views/interface_assets/footer.php:39 +#: application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:378 +#: application/views/interface_assets/footer.php:40 #: application/views/visitor/index.php:266 msgid "Confirmed" msgstr "Bestätigt" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:256 +#: application/views/dashboard/index.php:372 #: application/views/visitor/index.php:262 msgid "Worked" msgstr "Gearbeitet" -#: application/views/awards/cq/index.php:36 +#: application/views/awards/cq/index.php:38 #: application/views/awards/dok/index.php:41 #: application/views/awards/dxcc/index.php:43 -#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:43 -#: application/views/awards/itu/index.php:36 +#: application/views/awards/itu/index.php:38 #: application/views/awards/jcc/index.php:34 -#: application/views/awards/rac/index.php:27 -#: application/views/awards/waja/index.php:35 -#: application/views/awards/was/index.php:35 +#: application/views/awards/rac/index.php:29 +#: application/views/awards/wac/index.php:26 +#: application/views/awards/waja/index.php:37 +#: application/views/awards/was/index.php:37 msgid "Show worked" msgstr "Zeige gearbeitete" -#: application/views/awards/cq/index.php:40 +#: application/views/awards/cq/index.php:42 #: application/views/awards/dok/index.php:45 #: application/views/awards/dxcc/index.php:47 -#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:47 -#: application/views/awards/itu/index.php:40 +#: application/views/awards/itu/index.php:42 #: application/views/awards/jcc/index.php:38 -#: application/views/awards/rac/index.php:31 -#: application/views/awards/waja/index.php:39 -#: application/views/awards/was/index.php:39 +#: application/views/awards/rac/index.php:33 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/waja/index.php:41 +#: application/views/awards/was/index.php:41 msgid "Show confirmed" msgstr "Zeige bestätigte" -#: application/views/awards/cq/index.php:44 +#: application/views/awards/cq/index.php:46 #: application/views/awards/dxcc/index.php:51 -#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:51 -#: application/views/awards/itu/index.php:44 +#: application/views/awards/itu/index.php:46 #: application/views/awards/jcc/index.php:42 -#: application/views/awards/rac/index.php:35 -#: application/views/awards/waja/index.php:43 -#: application/views/awards/was/index.php:43 +#: application/views/awards/rac/index.php:37 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/waja/index.php:45 +#: application/views/awards/was/index.php:45 msgid "Show not worked" msgstr "Zeige nicht gearbeitete" -#: application/views/awards/cq/index.php:50 +#: application/views/awards/cq/index.php:52 #: application/views/awards/dok/index.php:51 #: application/views/awards/dxcc/index.php:57 -#: application/views/awards/helvetia/index.php:49 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/helvetia/index.php:51 +#: application/views/awards/itu/index.php:52 #: application/views/awards/jcc/index.php:48 -#: application/views/awards/rac/index.php:41 -#: application/views/awards/waja/index.php:49 -#: application/views/awards/was/index.php:49 +#: application/views/awards/rac/index.php:43 +#: application/views/awards/wac/index.php:40 +#: application/views/awards/waja/index.php:51 +#: application/views/awards/was/index.php:51 msgid "Show QSO with QSL Type" msgstr "QSO mit QSL-Typ anzeigen" -#: application/views/awards/cq/index.php:54 -#: application/views/awards/itu/index.php:54 -#: application/views/interface_assets/footer.php:2098 -#: application/views/qso/edit_ajax.php:378 +#: application/views/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/awards/wac/index.php:44 +#: application/views/interface_assets/footer.php:2112 +#: application/views/qso/edit_ajax.php:405 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "QSL-Karte" -#: application/views/awards/cq/index.php:110 +#: application/views/awards/cq/index.php:112 #: application/views/awards/dok/index.php:126 #: application/views/awards/dxcc/index.php:186 -#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/helvetia/index.php:111 #: application/views/awards/iota/index.php:129 -#: application/views/awards/itu/index.php:110 +#: application/views/awards/itu/index.php:112 #: application/views/awards/jcc/index.php:112 -#: application/views/awards/rac/index.php:101 -#: application/views/awards/waja/index.php:113 -#: application/views/awards/was/index.php:109 +#: application/views/awards/rac/index.php:103 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/waja/index.php:115 +#: application/views/awards/was/index.php:111 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:523 +#: application/views/logbookadvanced/index.php:551 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 msgid "Reset" msgstr "Zurücksetzen" -#: application/views/awards/cq/index.php:113 +#: application/views/awards/cq/index.php:115 msgid "Show CQ Zone Map" msgstr "Zeige CQ-Zonen-Karte" -#: application/views/awards/cq/index.php:122 +#: application/views/awards/cq/index.php:124 #: application/views/awards/dxcc/index.php:199 -#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/helvetia/index.php:124 #: application/views/awards/iota/index.php:142 -#: application/views/awards/itu/index.php:122 -#: application/views/awards/rac/index.php:114 -#: application/views/awards/waja/index.php:126 -#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:124 +#: application/views/awards/rac/index.php:116 +#: application/views/awards/waja/index.php:128 +#: application/views/awards/was/index.php:124 msgid "Table" msgstr "Tabelle" -#: application/views/awards/cq/index.php:125 +#: application/views/awards/cq/index.php:127 #: application/views/awards/dok/index.php:128 #: application/views/awards/dxcc/index.php:202 -#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/helvetia/index.php:127 #: application/views/awards/iota/index.php:145 -#: application/views/awards/itu/index.php:125 +#: application/views/awards/itu/index.php:127 #: application/views/awards/jcc/index.php:129 -#: application/views/awards/rac/index.php:117 +#: application/views/awards/rac/index.php:119 #: application/views/awards/wab/index.php:108 -#: application/views/awards/waja/index.php:129 -#: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:516 +#: application/views/awards/waja/index.php:131 +#: application/views/awards/was/index.php:127 +#: application/views/logbookadvanced/index.php:544 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "Karte" -#: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 -#: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:235 -#: application/views/logbookadvanced/index.php:586 -#: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:90 -#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 -#: application/views/qso/index.php:390 -#: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:106 -#: application/views/station_profile/edit.php:126 -#: application/views/timeline/index.php:231 -#: application/views/timeplotter/index.php:44 -msgid "CQ Zone" -msgstr "CQ-Zone" - -#: application/views/awards/cq/index.php:165 +#: application/views/awards/cq/index.php:167 #: application/views/awards/dok/index.php:165 #: application/views/awards/dxcc/index.php:248 -#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/helvetia/index.php:170 #: application/views/awards/iota/index.php:192 -#: application/views/awards/itu/index.php:165 +#: application/views/awards/itu/index.php:167 #: application/views/awards/jcc/index.php:168 -#: application/views/awards/rac/index.php:160 -#: application/views/awards/waja/index.php:168 -#: application/views/awards/was/index.php:168 +#: application/views/awards/rac/index.php:162 +#: application/views/awards/wac/index.php:168 +#: application/views/awards/waja/index.php:170 +#: application/views/awards/was/index.php:170 msgid "Summary" msgstr "Zusammenfassung" -#: application/views/awards/cq/index.php:178 +#: application/views/awards/cq/index.php:180 #: application/views/awards/dok/index.php:178 #: application/views/awards/dxcc/index.php:262 -#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:206 -#: application/views/awards/itu/index.php:178 +#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:195 -#: application/views/awards/rac/index.php:173 -#: application/views/awards/waja/index.php:182 -#: application/views/awards/was/index.php:181 +#: application/views/awards/rac/index.php:175 +#: application/views/awards/wac/index.php:181 +#: application/views/awards/waja/index.php:184 +#: application/views/awards/was/index.php:183 msgid "Total worked" msgstr "Gesamt gearbeitet" -#: application/views/awards/cq/index.php:185 +#: application/views/awards/cq/index.php:187 #: application/views/awards/dok/index.php:185 #: application/views/awards/dxcc/index.php:269 -#: application/views/awards/helvetia/index.php:188 +#: application/views/awards/helvetia/index.php:190 #: application/views/awards/iota/index.php:213 -#: application/views/awards/itu/index.php:185 +#: application/views/awards/itu/index.php:187 #: application/views/awards/jcc/index.php:214 -#: application/views/awards/rac/index.php:180 -#: application/views/awards/waja/index.php:189 -#: application/views/awards/was/index.php:188 +#: application/views/awards/rac/index.php:182 +#: application/views/awards/wac/index.php:188 +#: application/views/awards/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "Gesamt bestätigt" @@ -3527,23 +4121,24 @@ msgstr "DOK + SDOK" #: application/views/awards/dok/index.php:37 #: application/views/awards/dxcc/index.php:39 -#: application/views/awards/helvetia/index.php:31 +#: application/views/awards/helvetia/index.php:33 #: application/views/awards/iota/index.php:39 #: application/views/awards/jcc/index.php:30 -#: application/views/awards/rac/index.php:23 -#: application/views/awards/waja/index.php:31 -#: application/views/awards/was/index.php:31 +#: application/views/awards/rac/index.php:25 +#: application/views/awards/waja/index.php:33 +#: application/views/awards/was/index.php:33 msgid "Worked / Confirmed" msgstr "Gearbeitet / Bestätigt" #: application/views/awards/dok/index.php:80 #: application/views/awards/dxcc/index.php:120 -#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/helvetia/index.php:76 #: application/views/awards/iota/index.php:94 #: application/views/awards/jcc/index.php:77 -#: application/views/awards/rac/index.php:66 -#: application/views/awards/waja/index.php:78 -#: application/views/awards/was/index.php:74 +#: application/views/awards/rac/index.php:68 +#: application/views/awards/wac/index.php:66 +#: application/views/awards/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "Jedes Band" @@ -3567,10 +4162,12 @@ msgstr "" "Clinton B. DeSoto, W1CBD, mit dem Titel %s erstellt wurde." #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 msgid "ARRL website" msgstr "ARRL Webseite" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 #, php-format msgid "You can find all information about the DXCC Award on the %s." msgstr "Du kannst alle Informationen über den DXCC Award auf der %s finden." @@ -3597,63 +4194,77 @@ msgstr "Inklusive gelöschte" #: application/views/awards/dxcc/index.php:87 #: application/views/awards/iota/index.php:61 #: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/logbookadvanced/edit.php:144 +#: application/views/logbookadvanced/index.php:309 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 -#: application/views/view_log/qso.php:250 +#: application/views/view_log/qso.php:253 msgid "Antarctica" msgstr "Antarktis" #: application/views/awards/dxcc/index.php:91 #: application/views/awards/iota/index.php:65 #: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/logbookadvanced/edit.php:143 +#: application/views/logbookadvanced/index.php:308 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 -#: application/views/view_log/qso.php:247 +#: application/views/view_log/qso.php:250 msgid "Africa" msgstr "Afrika" #: application/views/awards/dxcc/index.php:95 #: application/views/awards/iota/index.php:69 #: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/logbookadvanced/edit.php:146 +#: application/views/logbookadvanced/index.php:311 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 -#: application/views/view_log/qso.php:253 +#: application/views/view_log/qso.php:256 msgid "Asia" msgstr "Asien" #: application/views/awards/dxcc/index.php:99 #: application/views/awards/iota/index.php:73 #: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/logbookadvanced/edit.php:147 +#: application/views/logbookadvanced/index.php:312 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 -#: application/views/view_log/qso.php:256 +#: application/views/view_log/qso.php:259 msgid "Europe" msgstr "Europa" #: application/views/awards/dxcc/index.php:103 #: application/views/awards/iota/index.php:77 #: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/logbookadvanced/edit.php:145 +#: application/views/logbookadvanced/index.php:310 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 -#: application/views/view_log/qso.php:259 +#: application/views/view_log/qso.php:262 msgid "North America" msgstr "Nordamerika" #: application/views/awards/dxcc/index.php:107 #: application/views/awards/iota/index.php:81 #: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/logbookadvanced/edit.php:148 +#: application/views/logbookadvanced/index.php:313 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:265 +#: application/views/view_log/qso.php:268 msgid "South America" msgstr "Südamerika" #: application/views/awards/dxcc/index.php:111 #: application/views/awards/iota/index.php:85 #: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/logbookadvanced/edit.php:149 +#: application/views/logbookadvanced/index.php:314 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 -#: application/views/view_log/qso.php:262 +#: application/views/view_log/qso.php:265 msgid "Oceania" msgstr "Ozeanien" @@ -3667,13 +4278,13 @@ msgstr "DXCC Name" #: application/views/awards/dxcc/index.php:226 #: application/views/awards/iota/index.php:170 -#: application/views/timeline/index.php:117 -#: application/views/timeline/index.php:204 +#: application/views/timeline/index.php:150 +#: application/views/timeline/index.php:237 msgid "Prefix" msgstr "Präfix" #: application/views/awards/ffma/index.php:8 -#: application/views/interface_assets/header.php:236 +#: application/views/interface_assets/header.php:240 msgid "Fred Fish Memorial Award" msgstr "Fred Fish Memorial Award" @@ -3748,11 +4359,20 @@ msgstr "Webseite" msgid "This map shows only QSOs worked on SAT." msgstr "Diese Karte zeigt nur QSOs, die über SAT gearbeitet wurden." -#: application/views/awards/helvetia/index.php:18 +#: application/views/awards/helvetia/index.php:3 +msgctxt "Switzerland Canton" +msgid "Canton" +msgstr "Kanton" + +#: application/views/awards/helvetia/index.php:4 +msgid "Hover over a canton" +msgstr "Bewege die Maus über einen Kanton" + +#: application/views/awards/helvetia/index.php:20 msgid "HELVETIA 26 | SWITZERLAND AWARD" msgstr "HELVETIA 26 (H26) | SWITZERLAND AWARD" -#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:21 msgid "" "The USKA (Union of Swiss Shortwave Amateurs) sponsors two awards, the " "HELVETIA 26 (H26) Award and the SWITZERLAND Award, aimed at promoting " @@ -3764,7 +4384,7 @@ msgstr "" "Aktivitäten auf den Bändern zu fördern, indem sie Kontakte über möglichst " "viele Schweizer Kantone auf verschiedenen Bändern anregen." -#: application/views/awards/helvetia/index.php:20 +#: application/views/awards/helvetia/index.php:22 msgid "" "These awards come in two versions: one for HF bands and the other for VHF " "(including SHF and UHF) bands. Valid connections for these awards date back " @@ -3774,26 +4394,26 @@ msgstr "" "für VHF-Bänder (einschließlich SHF und UHF). Gültige Verbindungen für diese " "Auszeichnungen datieren bis zum 1. Januar 1980 zurück" -#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/helvetia/index.php:23 #: application/views/awards/jcc/index.php:19 #: application/views/awards/sota/index.php:10 #: application/views/awards/wab/index.php:15 -#: application/views/awards/waja/index.php:20 +#: application/views/awards/waja/index.php:22 #: application/views/awards/wwff/index.php:10 #, php-format msgid "For more information, please visit: %s." msgstr "Für weitere Informationen, bitte besuche: %s." -#: application/views/awards/helvetia/index.php:112 +#: application/views/awards/helvetia/index.php:114 msgid "Show Helvetia Map" msgstr "Zeige Karte der Schweiz" -#: application/views/awards/helvetia/index.php:149 +#: application/views/awards/helvetia/index.php:151 msgid "Canton" msgstr "Kanton" #: application/views/awards/index.php:9 application/views/bands/index.php:46 -#: application/views/interface_assets/header.php:162 +#: application/views/interface_assets/header.php:164 msgid "CQ" msgstr "CQ" @@ -3859,11 +4479,11 @@ msgstr "Zeige IOTA Karte" #: application/views/awards/iota/index.php:171 #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 -#: application/views/contesting/index.php:153 -#: application/views/contesting/index.php:171 +#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:214 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:559 +#: application/views/logbookadvanced/index.php:587 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3873,12 +4493,12 @@ msgstr "Zeige IOTA Karte" #: application/views/search/search_result_ajax.php:19 #: application/views/stationsetup/stationsetup.php:30 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:203 application/views/user/edit.php:241 +#: application/views/timeline/index.php:236 application/views/user/edit.php:241 #: application/views/user/edit.php:263 application/views/user/edit.php:285 #: application/views/user/edit.php:307 application/views/user/edit.php:330 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:191 -#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:194 +#: application/views/view_log/qso.php:514 msgid "Name" msgstr "Name" @@ -3886,7 +4506,19 @@ msgstr "Name" msgid "Deleted" msgstr "Gelöscht" -#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:3 +#: application/views/awards/itu/index.php:150 +#: application/views/logbookadvanced/edit.php:10 +#: application/views/logbookadvanced/index.php:257 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:400 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 +msgid "ITU Zone" +msgstr "ITU Zone" + +#: application/views/awards/itu/index.php:21 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -3898,30 +4530,20 @@ msgstr "" "Telekommunikationsunion (ITU) definiert sind, an Land basierende " "Amateurfunkstationen kontaktiert wurden." -#: application/views/awards/itu/index.php:20 +#: application/views/awards/itu/index.php:22 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "Du findest weitere Informationen auf der Webseite von %s." -#: application/views/awards/itu/index.php:23 +#: application/views/awards/itu/index.php:25 msgid "Awards - ITU Zones" msgstr "Diplome - ITU Zonen" -#: application/views/awards/itu/index.php:113 +#: application/views/awards/itu/index.php:115 msgid "Show ITU Zone Map" msgstr "Zeige Karte der ITU-Zonen" -#: application/views/awards/itu/index.php:148 -#: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:246 -#: application/views/logbookadvanced/index.php:589 -#: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:120 -#: application/views/station_profile/edit.php:143 -msgid "ITU Zone" -msgstr "ITU Zone" - #: application/views/awards/jcc/index.php:16 msgid "JCC - Japan Century Cities Award" msgstr "JCC - Japan Century Cities Award" @@ -3955,7 +4577,7 @@ msgstr "Zeige Karte der JCCs" #: application/views/awards/jcc/index.php:116 #: application/views/cabrillo/index.php:180 application/views/cfd/index.php:25 #: application/views/csv/index.php:128 application/views/dxatlas/index.php:128 -#: application/views/kml/index.php:113 +#: application/views/kml/index.php:113 application/views/reg1test/index.php:145 msgid "Export" msgstr "Exportieren" @@ -3966,18 +4588,19 @@ msgid "Results" msgstr "Resultate" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 +#: application/views/distancerecords/index.php:13 msgid "Number" msgstr "Nummer" #: application/views/awards/jcc/index.php:152 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:524 msgid "City" msgstr "Stadt" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:368 #: application/views/distances/index.php:23 msgid "SAT" msgstr "SAT" @@ -4018,15 +4641,24 @@ msgstr "" "bitte die %s." #: application/views/awards/pota/index.php:31 -#: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:177 -#: application/views/station_profile/edit.php:245 -#: application/views/user/edit.php:595 application/views/view_log/qso.php:303 -#: application/views/view_log/qso.php:570 +#: application/views/qso/index.php:236 application/views/qso/index.php:492 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 +#: application/views/user/edit.php:595 application/views/view_log/qso.php:306 +#: application/views/view_log/qso.php:573 msgid "POTA Reference(s)" msgstr "POTA Referenznummer(n)" -#: application/views/awards/rac/index.php:104 +#: application/views/awards/rac/index.php:3 +msgctxt "Canada Province" +msgid "Province" +msgstr "Provinz" + +#: application/views/awards/rac/index.php:4 +msgid "Hover over a province" +msgstr "Bewege die Maus über eine Provinz" + +#: application/views/awards/rac/index.php:106 msgid "Show RAC Map" msgstr "Zeige die RAC Karte" @@ -4086,7 +4718,7 @@ msgstr "Referenz" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:535 +#: application/views/logbookadvanced/index.php:563 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4198,11 +4830,46 @@ msgstr "Liste" msgid "WAB Square" msgstr "WAB Planquadrat" -#: application/views/awards/waja/index.php:17 +#: application/views/awards/wac/index.php:9 +msgid "" +"Sponsored by the International Amateur Radio Union (IARU), the Worked All " +"Continents award is issued for working and confirming all six continents. " +"These are North America, South America, Oceania, Asia, Europe and Africa." +msgstr "" +"Gesponsert von der International Amateur Radio Union (IARU), wird das Worked " +"All Continents Diplom für das Arbeiten und Bestätigen aller sechs Kontinente " +"vergeben. Diese sind Nordamerika, Südamerika, Ozeanien, Asien, Europa und " +"Afrika." + +#: application/views/awards/wac/index.php:13 +msgid "Awards - Worked All Continents (WAC)" +msgstr "Diplome - Worked All Continents (WAC)" + +#: application/views/awards/wac/index.php:151 +#: application/views/continents/index.php:62 +#: application/views/logbookadvanced/edit.php:25 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 +#: application/views/view_log/qso.php:245 +msgid "Continent" +msgstr "Kontinent" + +#: application/views/awards/waja/index.php:3 +msgctxt "Japan Prefecture" +msgid "Prefecture" +msgstr "Präfektur" + +#: application/views/awards/waja/index.php:4 +msgid "Hover over a prefecture" +msgstr "Bewege die Maus über eine Präfektur" + +#: application/views/awards/waja/index.php:19 msgid "WAJA - Worked All Japan prefectures Award" msgstr "WAJA - Worked All Japan Präfekturen Diplom" -#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:20 msgid "" "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " "radio operators to work all the prefectures in Japan." @@ -4210,7 +4877,7 @@ msgstr "" "WAJA, 'Worked All Japan prefectures in Amateur Radio', ermutigt lizenzierte " "Amateurfunkbetreiber dazu, mit allen Präfekturen in Japan zu arbeiten." -#: application/views/awards/waja/index.php:19 +#: application/views/awards/waja/index.php:21 msgid "" "May be claimed for having contacted (heard) and received a QSL card from an " "amateur station located in each of the 47 prefectures of Japan. A list of " @@ -4222,20 +4889,29 @@ msgstr "" "hast. Eine Liste der QSL-Karten sollte nach der WAJA (HAJA) Referenznummer " "geordnet sein, jedoch können die Namen der Präfekturen ausgelassen werden." -#: application/views/awards/waja/index.php:116 +#: application/views/awards/waja/index.php:118 msgid "Show WAJA Map" msgstr "Zeige WAJA-Karte" -#: application/views/awards/waja/index.php:152 -#: application/views/timeline/index.php:152 +#: application/views/awards/waja/index.php:154 +#: application/views/timeline/index.php:185 msgid "Prefecture" msgstr "Präfektur" -#: application/views/awards/was/index.php:18 +#: application/views/awards/was/index.php:3 +msgctxt "USA State" +msgid "State" +msgstr "Staat" + +#: application/views/awards/was/index.php:4 +msgid "Hover over a state" +msgstr "Bewege die Maus über einen Staat" + +#: application/views/awards/was/index.php:20 msgid "WAS Award" msgstr "WAS-Diplom" -#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:21 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -4248,7 +4924,7 @@ msgstr "" "überarbeitet und verbessert, das Diplomprogramm zu optimieren und zu " "vereinfachen." -#: application/views/awards/was/index.php:20 +#: application/views/awards/was/index.php:22 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -4263,13 +4939,13 @@ msgstr "" "ARRL sein, um sich für einen WAS bewerben zu können. Bewerber aus dem " "Ausland sind von dieser Anforderung befreit." -#: application/views/awards/was/index.php:21 +#: application/views/awards/was/index.php:23 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "Alle Informationen und Regeln für das ARRL WAS Diplom findest du %s." -#: application/views/awards/was/index.php:112 +#: application/views/awards/was/index.php:114 msgid "Show WAS Map" msgstr "Zeige WAS-Karte" @@ -4298,11 +4974,11 @@ msgstr "" "Diplome sowohl weltweit als auch national beantragen." #: application/views/awards/wwff/index.php:31 -#: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:171 -#: application/views/station_profile/edit.php:232 -#: application/views/user/edit.php:591 application/views/view_log/qso.php:296 -#: application/views/view_log/qso.php:563 +#: application/views/qso/index.php:224 application/views/qso/index.php:479 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 +#: application/views/user/edit.php:591 application/views/view_log/qso.php:299 +#: application/views/view_log/qso.php:566 msgid "WWFF Reference" msgstr "WWFF Referenznummer" @@ -4368,8 +5044,8 @@ msgstr "BandListe" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 #: application/views/contesting/index.php:15 -#: application/views/contesting/index.php:94 -#: application/views/contesting/index.php:169 +#: application/views/contesting/index.php:52 +#: application/views/contesting/index.php:145 #: application/views/qso/index.php:314 msgid "None" msgstr "Nichts" @@ -4453,25 +5129,25 @@ msgstr "" "Aktive Bänder werden im QSO Band Auswahlfeld angezeigt, während inaktive " "Bänder ausgeblendet werden und nicht ausgewählt werden können." -#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:351 -#: application/views/qso/index.php:248 application/views/qso/index.php:494 -#: application/views/user/edit.php:599 application/views/view_log/qso.php:325 -#: application/views/view_log/qso.php:577 +#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 +#: application/views/qso/index.php:248 application/views/qso/index.php:504 +#: application/views/user/edit.php:599 application/views/view_log/qso.php:328 +#: application/views/view_log/qso.php:580 msgid "Sig" msgstr "Sig" -#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:312 -#: application/views/qso/index.php:433 +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:339 +#: application/views/qso/index.php:443 msgid "USA County" msgstr "US-County" #: application/views/bands/index.php:58 -#: application/views/interface_assets/header.php:208 +#: application/views/interface_assets/header.php:212 msgid "WAJA" msgstr "WAJA" #: application/views/bands/index.php:59 -#: application/views/interface_assets/header.php:232 +#: application/views/interface_assets/header.php:236 msgid "WAS" msgstr "WAS" @@ -4501,9 +5177,8 @@ msgstr "Erstelle ein neues Band" #: application/views/bands/index.php:152 #: application/views/contesting/add.php:74 -#: application/views/interface_assets/footer.php:42 -#: application/views/qso/components/winkeysettings.php:91 -#: application/views/qso/components/winkeysettings_results.php:91 +#: application/views/contesting/index.php:83 +#: application/views/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4534,22 +5209,28 @@ msgstr "Deaktiviere alle" #: application/views/cabrillo/index.php:2 #: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:59 +#: application/views/reg1test/index.php:2 +#: application/views/reg1test/index.php:36 msgid "Proceed" msgstr "Weiter" #: application/views/cabrillo/index.php:3 +#: application/views/reg1test/index.php:3 msgid "Select Year" msgstr "Wähle Jahr" #: application/views/cabrillo/index.php:4 +#: application/views/reg1test/index.php:4 msgid "Select Contest" msgstr "Wähle Contest" #: application/views/cabrillo/index.php:5 +#: application/views/reg1test/index.php:5 msgid "Select Date Range" msgstr "Wähle Zeitraum" #: application/views/cabrillo/index.php:6 +#: application/views/reg1test/index.php:7 msgid "No contests were found for this station location!" msgstr "" "Für diesen Stationsstandort wurden keine vorhandenen Contests gefunden!" @@ -4563,10 +5244,12 @@ msgid "Select Station Location:" msgstr "Wähle einen Stationsstandort:" #: application/views/cabrillo/index.php:44 +#: application/views/reg1test/index.php:53 msgid "Club" msgstr "Club" #: application/views/cabrillo/index.php:48 +#: application/views/reg1test/index.php:58 msgid "Category Operator" msgstr "Kategorie Operator" @@ -4607,10 +5290,12 @@ msgid "Category Overlay" msgstr "Kategorie Overlay" #: application/views/cabrillo/index.php:150 +#: application/views/reg1test/index.php:70 msgid "Operators" msgstr "Operatoren" #: application/views/cabrillo/index.php:155 +#: application/views/reg1test/index.php:139 msgid "Soapbox" msgstr "Soapbox" @@ -4635,6 +5320,7 @@ msgid "Address Country" msgstr "Addresse Land" #: application/views/cabrillo/index.php:186 +#: application/views/reg1test/index.php:150 msgid "No contests were found in your log." msgstr "Es wurden keine Conteste in deinem Log gefunden." @@ -4672,13 +5358,13 @@ msgstr "" "vorbeischauen." #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:158 +#: application/views/contesting/index.php:219 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:629 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 -#: application/views/view_log/qso.php:199 +#: application/views/view_log/qso.php:202 msgid "Comment" msgstr "Kommentar" @@ -4710,9 +5396,9 @@ msgid "No Contests" msgstr "Keine Conteste" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/edit.php:21 -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:635 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4740,10 +5426,11 @@ msgid "Show Details" msgstr "Details anzeigen" #: application/views/contestcalendar/index.php:38 -#: application/views/dashboard/index.php:262 -#: application/views/dashboard/index.php:289 -#: application/views/dashboard/index.php:310 -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:278 +#: application/views/dashboard/index.php:305 +#: application/views/dashboard/index.php:326 +#: application/views/dashboard/index.php:347 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "Heute" @@ -4782,7 +5469,7 @@ msgstr "ADIF-Name" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:466 +#: application/views/interface_assets/header.php:472 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:43 @@ -4837,15 +5524,15 @@ msgid "Name of Contest in ADIF-specification" msgstr "Der Name des Contests in ADIF-Spezifikation" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "Erstelle" #: application/views/contesting/edit.php:31 -#: application/views/contesting/index.php:24 -#: application/views/qso/edit_ajax.php:548 -#: application/views/view_log/qso.php:275 +#: application/views/contesting/index.php:25 +#: application/views/qso/edit_ajax.php:575 +#: application/views/view_log/qso.php:278 msgid "Contest Name" msgstr "Contest-Name" @@ -4881,91 +5568,142 @@ msgstr "Seriennummer + Exchange" msgid "Serial + Gridsquare" msgstr "Seriennummer + Planquadrat" -#: application/views/contesting/index.php:34 +#: application/views/contesting/index.php:21 +msgid "Serial + Gridsquare + Exchange" +msgstr "Laufende Nummer + Locator + Austausch" + +#: application/views/contesting/index.php:35 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:539 application/views/qso/index.php:352 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:352 msgid "Operator Callsign" msgstr "Rufzeichen des Operators" -#: application/views/contesting/index.php:116 -#: application/views/contesting/index.php:208 -#: application/views/qso/edit_ajax.php:571 -msgid "Serial (S)" -msgstr "Nummer (S)" +#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:45 +msgid "More Settings" +msgstr "Weitere Einstellungen" -#: application/views/contesting/index.php:121 -#: application/views/contesting/index.php:206 -msgid "Exch (S)" -msgstr "Exch (S)" - -#: application/views/contesting/index.php:126 -msgid "Gridsquare (S)" -msgstr "Planquadrat (S)" - -#: application/views/contesting/index.php:136 -#: application/views/contesting/index.php:209 -#: application/views/qso/edit_ajax.php:566 -msgid "Serial (R)" -msgstr "Nummer (R)" - -#: application/views/contesting/index.php:141 -#: application/views/contesting/index.php:207 -msgid "Exch (R)" -msgstr "Exch (R)" - -#: application/views/contesting/index.php:146 -msgid "Gridsquare (R)" -msgstr "Planquadrat (R)" - -#: application/views/contesting/index.php:163 -msgid "Reset QSO" -msgstr "Setze QSO zurück" - -#: application/views/contesting/index.php:164 -#: application/views/qso/index.php:607 -msgid "Save QSO" -msgstr "Speichere QSO" - -#: application/views/contesting/index.php:166 +#: application/views/contesting/index.php:49 msgid "Copy received exchange to" msgstr "Kopiere Exchange zu" -#: application/views/contesting/index.php:168 +#: application/views/contesting/index.php:51 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "" "Exchange wird nur kopiert, wenn der Wert Regeln für das Zielfeld erfüllt!" -#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:55 msgid "Age" msgstr "Alter" -#: application/views/contesting/index.php:174 +#: application/views/contesting/index.php:57 msgid "RX Power (W)" msgstr "Leistung Gegenstation (W)" -#: application/views/contesting/index.php:175 +#: application/views/contesting/index.php:58 msgid "Locator" msgstr "Lokator" -#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:59 +#: application/views/qso/edit_ajax.php:177 +msgid "QTH" +msgstr "QTH" + +#: application/views/contesting/index.php:64 +msgid "Sequence of Exchanges" +msgstr "Abfolge der Austausche" + +#: application/views/contesting/index.php:67 +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 "" +"Wähle die Reihenfolge, in der du die verschiedenen Austausche eingeben " +"möchtest. Es werden jedoch nur die Elemente angezeigt, die im ausgewählten " +"Austauschtyp enthalten sind." + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Exchange" +msgstr "Austausch (Exch)" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Grid" +msgstr "Planqu." + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Serial" +msgstr "Laufnummer" + +#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:255 +#: application/views/qso/edit_ajax.php:598 +msgid "Serial (S)" +msgstr "Nummer (S)" + +#: application/views/contesting/index.php:177 +msgid "Gridsquare (S)" +msgstr "Planquadrat (S)" + +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:253 +msgid "Exch (S)" +msgstr "Exch (S)" + +#: application/views/contesting/index.php:196 +#: application/views/contesting/index.php:256 +#: application/views/qso/edit_ajax.php:593 +msgid "Serial (R)" +msgstr "Nummer (R)" + +#: application/views/contesting/index.php:201 +msgid "Gridsquare (R)" +msgstr "Planquadrat (R)" + +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:254 +msgid "Exch (R)" +msgstr "Exch (R)" + +#: application/views/contesting/index.php:224 +msgid "Reset QSO" +msgstr "Setze QSO zurück" + +#: application/views/contesting/index.php:225 +#: application/views/qso/index.php:629 +msgid "Save QSO" +msgstr "Speichere QSO" + +#: application/views/contesting/index.php:234 msgid "Callsign Suggestions" msgstr "Rufzeichenvorschläge" -#: application/views/contesting/index.php:194 +#: application/views/contesting/index.php:241 msgid "Contest Logbook" msgstr "Contest-Logbuch" -#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:258 #: application/views/qso/edit_ajax.php:164 msgid "VUCC Gridsquare" msgstr "VUCC Planquadrat" -#: application/views/continents/index.php:62 -#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 -#: application/views/view_log/qso.php:242 -msgid "Continent" -msgstr "Kontinent" - #: application/views/continents/index.php:63 #: application/views/statistics/index.php:19 #: application/views/statistics/index.php:113 @@ -4983,14 +5721,15 @@ msgstr "Identifikator" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:261 -#: application/views/station_profile/edit.php:314 +#: application/views/options/appearance.php:109 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 msgid "Enabled" msgstr "Eingeschaltet" -#: application/views/cron/edit.php:36 application/views/cron/index.php:53 +#: application/views/cron/edit.php:36 application/views/cron/index.php:55 msgid "Intervall" msgstr "Intervall" @@ -5040,6 +5779,7 @@ msgstr "Gib dein eigenes Cron Intervall ein" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "Abbrechen" @@ -5055,7 +5795,7 @@ msgstr "" "Der Cron Manager unterstützt den Administrator bei der Verwaltung von Cron " "Jobs ohne dass dieser CLI Zugang benötigt." -#: application/views/cron/index.php:18 +#: application/views/cron/index.php:19 msgid "" "To execute cron jobs based on the data below, remove all old cron jobs and " "create a new one:" @@ -5063,61 +5803,66 @@ msgstr "" "Um Cron-Jobs basierend auf den untenstehenden Daten auszuführen, entferne " "alle alten Cron-Jobs und erstelle einen neuen:" -#: application/views/cron/index.php:27 application/views/cron/index.php:31 -msgid "Status Master-Cron" -msgstr "Status Master-Cron" +#: application/views/cron/index.php:29 application/views/cron/index.php:33 +msgid "Status Master-Cron:" +msgstr "Status Master-Cron:" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgctxt "PHP Version" msgid "Min. Version is" msgstr "Min. Version ist" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgid "PHP Version not supported." msgstr "PHP-Version nicht unterstützt." -#: application/views/cron/index.php:41 +#: application/views/cron/index.php:43 msgid "Cron List" msgstr "Cron-Liste" -#: application/views/cron/index.php:50 +#: application/views/cron/index.php:52 #: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "ID" -#: application/views/cron/index.php:54 +#: application/views/cron/index.php:56 msgid "Last Run" msgstr "Letzte Ausführung" -#: application/views/cron/index.php:55 +#: application/views/cron/index.php:57 msgid "Next Run" msgstr "Nächste Ausführung" -#: application/views/cron/index.php:68 +#: application/views/cron/index.php:70 msgid "healthy" msgstr "gesund" -#: application/views/cron/index.php:70 +#: application/views/cron/index.php:72 msgid "failed" msgstr "fehlgeschlagen" -#: application/views/cron/index.php:75 +#: application/views/cron/index.php:74 +msgid "pending" +msgstr "wartend" + +#: application/views/cron/index.php:79 msgid "disabled" msgstr "ausgeschaltet" -#: application/views/cron/index.php:79 application/views/cron/index.php:81 -#: application/views/cron/index.php:83 application/views/debug/index.php:494 +#: application/views/cron/index.php:83 application/views/cron/index.php:85 +#: application/views/cron/index.php:87 application/views/debug/index.php:494 #: application/views/debug/index.php:500 application/views/debug/index.php:505 #: application/views/debug/index.php:510 application/views/debug/index.php:515 #: application/views/debug/index.php:520 application/views/debug/index.php:525 +#: application/views/user/index.php:138 msgid "never" msgstr "nie" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:102 msgid "Your Mastercron isn't running." msgstr "Dein Mastercron läuft nicht." -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:103 msgid "" "Copy the cron above to a external cron service or into your server's cron to " "use this cron manager." @@ -5125,7 +5870,7 @@ msgstr "" "Kopiere den Cron oben in einen externen Cron-Service oder in crontab deines " "Servers, um diesen Cron-Manager zu verwenden." -#: application/views/cron/index.php:100 +#: application/views/cron/index.php:104 msgid "" "On a basic linux server with shell access use this command to edit your " "crons:" @@ -5133,7 +5878,7 @@ msgstr "" "Auf einem herkömmlichen Linux System mit Shell-Zugang verwende diesen " "Befehl, um deine cronjobs zu bearbeiten:" -#: application/views/cron/index.php:107 +#: application/views/cron/index.php:111 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -5153,154 +5898,10 @@ msgstr "Es werden nur QSOs exportiert, welche SOTA-Informationen enthalten!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:411 msgid "Propagation Mode" msgstr "Propagation" -#: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:214 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 -msgctxt "Propagation Mode" -msgid "Aircraft Scatter" -msgstr "Flugzeug-Scatter" - -#: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:215 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 -msgctxt "Propagation Mode" -msgid "Aurora" -msgstr "Aurora" - -#: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:216 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 -msgctxt "Propagation Mode" -msgid "Aurora-E" -msgstr "Aurora-E" - -#: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:217 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 -msgctxt "Propagation Mode" -msgid "Back scatter" -msgstr "Rückwärts-Scatter" - -#: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:218 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 -msgctxt "Propagation Mode" -msgid "EchoLink" -msgstr "EchoLink" - -#: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:219 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 -msgctxt "Propagation Mode" -msgid "Earth-Moon-Earth" -msgstr "Erde-Mond-Erde" - -#: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:220 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 -msgctxt "Propagation Mode" -msgid "Sporadic E" -msgstr "Sporadic E" - -#: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:221 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 -msgctxt "Propagation Mode" -msgid "Field Aligned Irregularities" -msgstr "feldausgerichtete Irregularitäten" - -#: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:222 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 -msgctxt "Propagation Mode" -msgid "F2 Reflection" -msgstr "F2-Reflexion" - -#: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:223 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 -msgctxt "Propagation Mode" -msgid "Internet-assisted" -msgstr "Internet-gestützt" - -#: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:224 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 -msgctxt "Propagation Mode" -msgid "Ionoscatter" -msgstr "Ionoscatter" - -#: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:225 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 -msgctxt "Propagation Mode" -msgid "IRLP" -msgstr "IRLP" - -#: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:226 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 -msgctxt "Propagation Mode" -msgid "Meteor scatter" -msgstr "Meteor-Scatter" - -#: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:227 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 -msgctxt "Propagation Mode" -msgid "Terrestrial or atmospheric repeater or transponder" -msgstr "Terrestrische oder atmosphärische Repeater oder Transponder" - -#: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:228 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 -msgctxt "Propagation Mode" -msgid "Rain scatter" -msgstr "Regen-Scatter" - -#: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:229 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 -msgctxt "Propagation Mode" -msgid "Satellite" -msgstr "Satellit" - -#: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:230 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 -msgctxt "Propagation Mode" -msgid "Trans-equatorial" -msgstr "Transequatorial" - -#: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:231 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 -msgctxt "Propagation Mode" -msgid "Tropospheric ducting" -msgstr "troposphärisches Ducting" - #: application/views/dashboard/index.php:5 msgid "RSTS" msgstr "RSTS" @@ -5309,48 +5910,67 @@ msgstr "RSTS" msgid "RSTR" msgstr "RSTR" -#: application/views/dashboard/index.php:56 +#: application/views/dashboard/index.php:58 msgid "" "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" msgstr "" "Du musst deine PHP-Version aktualisieren. Die minimale Version ist 7.4. " "Deine Version ist" -#: application/views/dashboard/index.php:63 +#: application/views/dashboard/index.php:65 #, php-format msgctxt "Dashboard Warning" -msgid "You need to update country files! Click %s to do it." -msgstr "Du musst die Länderdaten aktualisieren! Klicke auf %s, um dies zu tun." +msgid "You need to update country files! Click %shere%s to do it." +msgstr "" +"Du musst die Länderdaten aktualisieren! Klicke %shier%s, um dies zu tun." -#: application/views/dashboard/index.php:72 +#: application/views/dashboard/index.php:73 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station locations. Click %s to do it:" -msgstr "Du hast keine Stationsstandorte. Klicke %s um dies zu tun:" +msgid "You have no station locations. Click %shere%s to do it." +msgstr "Du hast keine Stationsstandorte. Klicke %shier%s, um dies zu tun." #: application/views/dashboard/index.php:81 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station logbook. Click %s to do it:" -msgstr "Du hast kein Stations-Logbuch. Klicke %s um dies zu tun:" +msgid "You have no station logbook. Click %shere%s to do it." +msgstr "Du hast kein Stations-Logbuch. Klicke %shier%s, um dies zu tun." -#: application/views/dashboard/index.php:91 +#: application/views/dashboard/index.php:89 +#, php-format +msgctxt "Dashboard Warning" +msgid "" +"Your active Station Location isn't linked to your Logbook. Click %shere%s to " +"do it." +msgstr "" +"Dein aktiver Stationsstandort ist nicht mit Deinem Logbuch verlinkt. Clicke " +"%shier%s um das zu ändern." + +#: application/views/dashboard/index.php:97 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station linked to your Logbook. Click %shere%s to do it." +msgstr "" +"Es ist aktuell kein Stationsstandort mit dem Logbuch verknüpft. Clicke " +"%shier%s, um das zu ändern." + +#: application/views/dashboard/index.php:106 #, php-format msgid "You have had %d QSO today" msgid_plural "You have had %d QSOs today" msgstr[0] "Du hast heute %d QSO gemacht" msgstr[1] "Du hast heute %d QSOs gemacht" -#: application/views/dashboard/index.php:97 +#: application/views/dashboard/index.php:112 msgid "You have made no QSOs today; time to turn on the radio!" msgstr "" "Du hast heute noch keine QSOs gemacht; Zeit das Funkgerät einzuschalten!" -#: application/views/dashboard/index.php:104 +#: application/views/dashboard/index.php:119 msgid "Attention: you need to set an active station location." msgstr "Achtung: Sie müssen einen aktiven Stationsstandort festlegen." -#: application/views/dashboard/index.php:110 +#: application/views/dashboard/index.php:125 msgid "" "You have themes without defined theme mode. Please ask the admin to edit the " "themes." @@ -5358,41 +5978,41 @@ msgstr "" "Du hast Themes ohne definierten Theme-Modus. Bitte den Administrator, die " "Themes zu bearbeiten." -#: application/views/dashboard/index.php:118 +#: application/views/dashboard/index.php:133 msgid "At least one of your LoTW certificates is expired!" msgstr "Mindestens eines Ihrer LoTW-Zertifikate ist abgelaufen!" -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:139 msgid "At least one of your LoTW certificates is about to expire!" msgstr "Mindestens eines Ihrer LoTW-Zertifikate läuft demnächst ab!" -#: application/views/dashboard/index.php:213 +#: application/views/dashboard/index.php:229 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "QSO-Übersicht" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:252 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "Länderübersicht" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:269 #: application/views/visitor/index.php:275 msgid "Needed" msgstr "Benötigt" -#: application/views/dashboard/index.php:266 -#: application/views/dashboard/index.php:293 -#: application/views/dashboard/index.php:314 -#: application/views/dashboard/index.php:335 +#: application/views/dashboard/index.php:282 +#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:330 +#: application/views/dashboard/index.php:351 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:167 -#: application/views/qso/edit_ajax.php:390 -#: application/views/qso/edit_ajax.php:451 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:550 +#: application/views/qso/edit_ajax.php:417 +#: application/views/qso/edit_ajax.php:478 +#: application/views/qso/edit_ajax.php:518 application/views/qso/index.php:572 #: application/views/search/result_search.php:8 #: application/views/search/search_result_ajax.php:180 #: application/views/search/search_result_ajax.php:260 @@ -5400,91 +6020,91 @@ msgstr "Benötigt" #: application/views/search/search_result_ajax.php:332 #: application/views/search/search_result_ajax.php:362 #: application/views/statistics/custom_result.php:89 -#: application/views/view_log/partial/log_ajax.php:140 -#: application/views/view_log/partial/log_ajax.php:217 -#: application/views/view_log/partial/log_ajax.php:237 -#: application/views/view_log/partial/log_ajax.php:287 -#: application/views/view_log/partial/log_ajax.php:295 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:289 +#: application/views/view_log/partial/log_ajax.php:297 #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 -#: src/QSLManager/QSO.php:371 src/QSLManager/QSO.php:423 -#: src/QSLManager/QSO.php:459 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:270 +#: src/QSLManager/QSO.php:373 src/QSLManager/QSO.php:425 +#: src/QSLManager/QSO.php:461 msgid "Sent" msgstr "Gesendet" -#: application/views/dashboard/index.php:272 -#: application/views/dashboard/index.php:299 -#: application/views/dashboard/index.php:320 -#: application/views/dashboard/index.php:341 +#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:315 +#: application/views/dashboard/index.php:336 +#: application/views/dashboard/index.php:357 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 #: application/views/qslprint/qsolist.php:151 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:423 -#: application/views/qso/edit_ajax.php:464 -#: application/views/qso/edit_ajax.php:503 +#: application/views/qso/edit_ajax.php:450 +#: application/views/qso/edit_ajax.php:491 +#: application/views/qso/edit_ajax.php:530 #: application/views/search/search_result_ajax.php:222 #: application/views/search/search_result_ajax.php:273 #: application/views/search/search_result_ajax.php:313 #: application/views/search/search_result_ajax.php:345 #: application/views/search/search_result_ajax.php:375 -#: application/views/view_log/partial/log_ajax.php:178 -#: application/views/view_log/partial/log_ajax.php:218 -#: application/views/view_log/partial/log_ajax.php:263 -#: application/views/view_log/partial/log_ajax.php:288 -#: application/views/view_log/partial/log_ajax.php:296 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:265 +#: application/views/view_log/partial/log_ajax.php:290 +#: application/views/view_log/partial/log_ajax.php:298 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 -#: src/QSLManager/QSO.php:394 src/QSLManager/QSO.php:436 -#: src/QSLManager/QSO.php:472 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:315 +#: src/QSLManager/QSO.php:396 src/QSLManager/QSO.php:438 +#: src/QSLManager/QSO.php:474 msgid "Received" msgstr "Erhalten" -#: application/views/dashboard/index.php:278 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:388 -#: application/views/logbookadvanced/index.php:399 +#: application/views/dashboard/index.php:294 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:415 +#: application/views/logbookadvanced/index.php:426 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 -#: application/views/qso/edit_ajax.php:395 -#: application/views/qso/edit_ajax.php:428 -#: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:469 +#: application/views/qso/edit_ajax.php:422 +#: application/views/qso/edit_ajax.php:455 +#: application/views/qso/edit_ajax.php:483 #: application/views/qso/edit_ajax.php:496 -#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:555 +#: application/views/qso/edit_ajax.php:523 +#: application/views/qso/edit_ajax.php:535 application/views/qso/index.php:577 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 -#: application/views/view_log/partial/log_ajax.php:146 -#: application/views/view_log/partial/log_ajax.php:184 -#: application/views/view_log/partial/log_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:273 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 -#: src/QSLManager/QSO.php:319 src/QSLManager/QSO.php:379 -#: src/QSLManager/QSO.php:402 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +#: application/views/view_log/partial/log_ajax.php:249 +#: application/views/view_log/partial/log_ajax.php:275 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:276 +#: src/QSLManager/QSO.php:321 src/QSLManager/QSO.php:381 +#: src/QSLManager/QSO.php:404 msgid "Requested" msgstr "Angefragt" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:304 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:351 +#: application/views/dashboard/index.php:367 msgid "VUCC-Grids" msgstr "VUCC-Planquadrate" #: application/views/dayswithqso/index.php:2 -#: application/views/interface_assets/header.php:146 +#: application/views/interface_assets/header.php:148 msgid "Days with QSOs" msgstr "Tage mit QSOs" @@ -5513,7 +6133,7 @@ msgstr "Startdatum" #: application/views/dayswithqso/index.php:58 #: application/views/dayswithqso/index.php:86 #: application/views/dayswithqso/index.php:108 -#: application/views/timeline/index.php:120 +#: application/views/timeline/index.php:153 msgid "End Date" msgstr "Enddatum" @@ -5586,12 +6206,8 @@ msgstr "" #: application/views/debug/index.php:47 #, php-format -msgid "" -"Check this wiki article here for " -"more information." -msgstr "" -"Schau dir diesen Wiki-Artikel hier " -"an um mehr Informationen zu erhalten." +msgid "Check this wiki article %shere%s for more information." +msgstr "Schau dir diesen Wiki-Artikel %shier%s für mehr Informationen an." #: application/views/debug/index.php:48 #, php-format @@ -5745,7 +6361,7 @@ msgstr "Installiert" msgid "Not Installed" msgstr "Nicht installiert" -#: application/views/debug/index.php:283 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:671 msgid "Settings" msgstr "Einstellungen" @@ -5802,7 +6418,7 @@ msgstr "DXCC-Update von Club Log" #: application/views/debug/index.php:506 application/views/debug/index.php:511 #: application/views/debug/index.php:516 application/views/debug/index.php:521 #: application/views/debug/index.php:526 -#: application/views/station_profile/edit.php:22 +#: application/views/station_profile/edit.php:49 msgid "Update" msgstr "Aktualisierung" @@ -5839,14 +6455,13 @@ msgstr "QSO-DB Wartung" 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] "Die Datenbank enthält %d QSO ohne Stationsprofil (Standort)" -msgstr[1] "Die Datenbank enthält %d QSOs ohne Stationsprofil (Standort)" +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:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:57 -#: application/views/station_profile/edit.php:46 -#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" @@ -5868,77 +6483,102 @@ msgstr "Neu zuweisen" #: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" -msgstr "" -"Jedes QSO in deiner Datenbank ist einem Stationsprofil (Standort) zugeordnet" +msgstr "Jedes QSO in deiner Datenbank ist einem Stationsstandort zugeordnet" #: application/views/debug/index.php:604 msgid "Everything ok" msgstr "Alles in Ordnung" #: application/views/debug/index.php:629 +msgid "Albanian" +msgstr "Albanisch" + +#: application/views/debug/index.php:630 +msgid "Bosnian" +msgstr "Bosnisch" + +#: application/views/debug/index.php:631 msgid "Bulgarian" msgstr "Bulgarisch" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:632 msgid "Chinese (Simplified)" msgstr "Chinesisch (Vereinfacht)" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:633 +msgid "Croatian" +msgstr "Kroatisch" + +#: application/views/debug/index.php:634 msgid "Czech" msgstr "Tschechisch" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:635 msgid "Dutch" msgstr "Niederländisch" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:636 msgid "English" msgstr "Englisch" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:637 msgid "Finnish" msgstr "Finnisch" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:638 msgid "French" msgstr "Französisch" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:639 msgid "German" msgstr "Deutsch" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:640 msgid "Greek" msgstr "Griechisch" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:641 msgid "Italian" msgstr "Italienisch" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:642 +msgid "Montenegrin" +msgstr "Montenegrinisch" + +#: application/views/debug/index.php:643 msgid "Polish" msgstr "Polnisch" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:644 msgid "Portuguese" msgstr "Portugiesisch" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:645 msgid "Russian" msgstr "Russisch" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:646 +msgid "Serbian" +msgstr "Serbisch" + +#: application/views/debug/index.php:647 msgid "Spanish" msgstr "Spanisch" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:648 msgid "Swedish" msgstr "Schwedisch" -#: application/views/debug/index.php:644 +#: application/views/debug/index.php:649 msgid "Turkish" msgstr "Türkisch" +#: application/views/distancerecords/index.php:4 +msgid "This page lists distance records per satellite based on gridsquares." +msgstr "" +"Diese Seite zeigt die Entfernungsrekorde pro Satellit basierend auf " +"Planquadraten." + #: application/views/distances/index.php:7 #: application/views/interface_assets/footer.php:30 #: application/views/simplefle/index.php:68 @@ -5946,8 +6586,9 @@ msgid "QSO Data" msgstr "QSO-Daten" #: application/views/distances/index.php:9 -msgid "contacts were plotted.
Your furthest contact was with" -msgstr "Kontakte wurden dargestellt.
Der weiteste Kontakt war" +#, php-format +msgid "contacts were plotted.%s Your furthest contact was with" +msgstr "Kontakte wurden geplottet.%s Dein weitester Kontakt war mit" #: application/views/distances/index.php:10 msgid "in gridsquare" @@ -5990,7 +6631,7 @@ msgid "Date to" msgstr "Datum bis" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:366 +#: application/views/view_log/qso.php:369 msgid "QSL Info" msgstr "QSL-Info" @@ -6016,7 +6657,7 @@ msgstr "QSO hochladen" #: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 #: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 #: application/views/eqsl/tools.php:15 -#: application/views/interface_assets/header.php:243 +#: application/views/interface_assets/header.php:247 msgid "Tools" msgstr "Tools" @@ -6101,7 +6742,7 @@ msgid "" "profile and that the value matches the QTH Nickname you set within eQSL." msgstr "" "Bitte stelle sicher, dass das Feld 'eQSL QTH Nickname' in deinem " -"Stationsprofil gesetzt ist und dass der Wert dem QTH Nickname entspricht, " +"Stationsstandort gesetzt ist und dass der Wert dem QTH Nickname entspricht, " "welchen du innerhalb von eQSL eingestellt hast." #: application/views/eqsl/export.php:37 @@ -6141,7 +6782,7 @@ msgstr "" #: application/views/eqsl/import.php:34 msgid "Choose Station(location) eQSL File belongs to:" -msgstr "Stationsprofil für die eQSL-Datei auswählen:" +msgstr "Stationsstandort für die eQSL-Datei auswählen:" #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 msgid "Log files must have the file type .adi" @@ -6183,27 +6824,15 @@ msgid "QSL Date" msgstr "QSL-Datum" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2324 -#: application/views/interface_assets/footer.php:2342 -#: application/views/interface_assets/footer.php:2363 -#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2338 +#: application/views/interface_assets/footer.php:2356 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 #: application/views/qslcard/index.php:66 -#: application/views/view_log/qso.php:614 +#: application/views/view_log/qso.php:617 msgid "View" msgstr "Ansicht" -#: application/views/gridmap/index.php:38 -#: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:604 -#: application/views/logbookadvanced/useroptions.php:118 -msgid "Propagation" -msgstr "Ausbreitungsart" - -#: application/views/gridmap/index.php:42 -msgid "None/Empty" -msgstr "Keine/Leer" - #: application/views/gridmap/index.php:43 msgid "All except SAT" msgstr "Alle ausser SAT" @@ -6242,7 +6871,7 @@ msgid "" "You need to set a HRDLog Logbook API Code in your station profile. Only " "station profiles with an API Key set are displayed." msgstr "" -"Du musst einen HRDLog API Code in Deinem Stationsprofil hinterlegen. Nur " +"Du musst einen HRDLog API Code in deinem Stationsstandort hinterlegen. Nur " "Stationen mit API-Code werden angezeigt." #: application/views/hrdlog/export.php:24 @@ -6305,8 +6934,8 @@ msgstr "Die QSOs wurden als zu HRDLog exportiert markiert." #: application/views/interface_assets/footer.php:31 #: application/views/search/search_result_ajax.php:404 #: application/views/view_log/partial/log.php:135 -#: application/views/view_log/partial/log_ajax.php:318 -#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log_ajax.php:320 +#: application/views/view_log/qso.php:437 msgid "Edit QSO" msgstr "QSO bearbeiten" @@ -6314,114 +6943,122 @@ msgstr "QSO bearbeiten" msgid "Attention" msgstr "Achtung" -#: application/views/interface_assets/footer.php:36 -msgid "OK" -msgstr "OK" - -#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/footer.php:38 msgid "Warning! Are you sure you want delete QSO with " msgstr "Warnung! Bist du sicher, dass du dieses QSO löschen willst mit " -#: application/views/interface_assets/footer.php:38 +#: application/views/interface_assets/footer.php:39 #: application/views/user/edit.php:493 msgid "Colors" msgstr "Farben" -#: application/views/interface_assets/footer.php:40 +#: application/views/interface_assets/footer.php:41 msgid "Worked not confirmed" msgstr "Gearbeitet, nicht bestätigt" -#: application/views/interface_assets/footer.php:41 +#: application/views/interface_assets/footer.php:42 msgid "Not worked" msgstr "Nicht gearbeitet" -#: application/views/interface_assets/footer.php:44 -#: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/interface_assets/footer.php:46 +#: application/views/qso/index.php:623 +#: application/views/visitor/layout/footer.php:246 msgid "Clear" msgstr "Zurücksetzen" -#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:47 #: application/views/qso/edit_ajax.php:211 -#: application/views/qso/edit_ajax.php:512 +#: application/views/qso/edit_ajax.php:539 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "" "Ausbreitungsart wird von LotW nicht unterstützt. LoTW QSL-Felder deaktiviert." -#: application/views/interface_assets/footer.php:127 -#: application/views/interface_assets/header.php:434 +#: application/views/interface_assets/footer.php:48 +msgid "No states for this DXCC available" +msgstr "Keine Staaten für dieses DXCC verfügbar" + +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "Berechne QRB und QTF" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "Fehlerhaftes Planquadrat. Bitte überprüfen." + +#: application/views/interface_assets/footer.php:132 +#: application/views/interface_assets/header.php:440 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "Versionsinfo" -#: application/views/interface_assets/footer.php:392 +#: application/views/interface_assets/footer.php:398 msgid "Description:" msgstr "Beschreibung:" -#: application/views/interface_assets/footer.php:395 +#: application/views/interface_assets/footer.php:401 msgid "Query description" msgstr "Suchmuster-Beschreibung" -#: application/views/interface_assets/footer.php:411 +#: application/views/interface_assets/footer.php:417 msgid "Your query has been saved!" msgstr "Dein Suchmuster wurde gespeichert!" -#: application/views/interface_assets/footer.php:413 +#: application/views/interface_assets/footer.php:419 #: application/views/search/filter.php:46 msgid "Edit queries" msgstr "Suchmuster bearbeiten" -#: application/views/interface_assets/footer.php:415 +#: application/views/interface_assets/footer.php:421 msgid "Stored queries:" msgstr "Gespeicherte Suchmuster:" -#: application/views/interface_assets/footer.php:420 +#: application/views/interface_assets/footer.php:426 #: application/views/search/filter.php:60 msgid "Run Query" msgstr "Suchmuster ausführen" -#: application/views/interface_assets/footer.php:432 -#: application/views/interface_assets/footer.php:561 -#: application/views/interface_assets/footer.php:625 +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 msgid "Stored Queries" msgstr "Gespeicherte Suchmuster" -#: application/views/interface_assets/footer.php:437 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 msgid "You need to make a query before you search!" msgstr "Du musst ein Suchmuster erstellen, bevor du suchst!" -#: application/views/interface_assets/footer.php:458 -#: application/views/interface_assets/footer.php:589 +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 #: application/views/search/filter.php:79 msgid "Export to ADIF" msgstr "Nach ADIF exportieren" -#: application/views/interface_assets/footer.php:496 +#: application/views/interface_assets/footer.php:502 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" "Warnung! Bist du sicher, dass du dieses gespeicherte Suchmuster löschen " "willst?" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:516 msgid "The stored query has been deleted!" msgstr "Das gespeicherte Suchmuster wurde gelöscht!" -#: application/views/interface_assets/footer.php:519 +#: application/views/interface_assets/footer.php:525 msgid "The stored query could not be deleted. Please try again!" msgstr "" "Das gespeicherte Suchmuster konnte nicht gelöscht werden. Bitte versuche es " "erneut!" -#: application/views/interface_assets/footer.php:545 +#: application/views/interface_assets/footer.php:551 msgid "The query description has been updated!" msgstr "Die Beschreibung des Suchmusters wurde aktualisiert!" -#: application/views/interface_assets/footer.php:549 +#: application/views/interface_assets/footer.php:555 msgid "Something went wrong with the save. Please try again!" msgstr "Etwas ist beim Speichern schiefgelaufen. Bitte versuche es erneut!" -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:678 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -6433,62 +7070,75 @@ msgstr "" "'Federal Republic of Germany'. Wenn du dir sicher bist, ignoriere diese " "Warnung." -#: application/views/interface_assets/footer.php:1156 -#, php-format -msgid "You're not logged it. Please login" -msgstr "Du bist nicht eingeloggt. Bitte logge dich ein" +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:533 +msgid "Callsign: " +msgstr "Rufzeichen: " -#: application/views/interface_assets/footer.php:1362 -#: application/views/interface_assets/footer.php:1366 -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1506 -#: application/views/interface_assets/footer.php:1510 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:731 +msgid "Count: " +msgstr "Anzahl: " + +#: application/views/interface_assets/footer.php:732 +msgid "Grids: " +msgstr "Planquadrate: " + +#: application/views/interface_assets/footer.php:1167 +#, 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:1375 +#: application/views/interface_assets/footer.php:1379 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1523 +#: application/views/interface_assets/footer.php:1526 msgid "grid square" msgstr "Planquadrate" -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1526 msgid "Total count" msgstr "Summe" -#: application/views/interface_assets/footer.php:2100 +#: application/views/interface_assets/footer.php:2114 msgid "QSL Card for " msgstr "QSL-Karte für " -#: application/views/interface_assets/footer.php:2120 +#: application/views/interface_assets/footer.php:2134 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:2160 +#: application/views/interface_assets/footer.php:2174 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "eQSL-Karte" -#: application/views/interface_assets/footer.php:2162 +#: application/views/interface_assets/footer.php:2176 msgid "eQSL Card for " msgstr "eQSL-Karte für " -#: application/views/interface_assets/footer.php:2335 -#: application/views/interface_assets/footer.php:2374 -#: application/views/view_log/qso.php:604 +#: application/views/interface_assets/footer.php:2349 +#: application/views/interface_assets/footer.php:2388 +#: application/views/view_log/qso.php:607 msgid "QSL image file" msgstr "QSL-Bilddatei" -#: application/views/interface_assets/footer.php:2354 +#: application/views/interface_assets/footer.php:2368 msgid "Front QSL Card:" msgstr "Vorderseite QSL-Karte:" -#: application/views/interface_assets/footer.php:2392 +#: application/views/interface_assets/footer.php:2406 msgid "Back QSL Card:" msgstr "Rückseite QSL-Karte:" -#: application/views/interface_assets/footer.php:2403 -#: application/views/interface_assets/footer.php:2428 +#: application/views/interface_assets/footer.php:2417 +#: application/views/interface_assets/footer.php:2442 msgid "Add additional QSOs to a QSL Card" msgstr "Weitere QSOs zu einer QSL-Karte hinzufügen" -#: application/views/interface_assets/footer.php:2439 +#: application/views/interface_assets/footer.php:2453 msgid "Something went wrong. Please try again!" msgstr "Etwas ist schiefgelaufen. Bitte versuche es erneut!" @@ -6544,91 +7194,91 @@ msgstr "Analysen" msgid "Activated Gridsquares" msgstr "Aktivierte Planquadrate" -#: application/views/interface_assets/header.php:160 +#: application/views/interface_assets/header.php:162 msgid "International" msgstr "International" -#: application/views/interface_assets/header.php:166 +#: application/views/interface_assets/header.php:168 msgid "ITU" msgstr "ITU" -#: application/views/interface_assets/header.php:186 +#: application/views/interface_assets/header.php:190 msgid "Canada" msgstr "Kanada" -#: application/views/interface_assets/header.php:192 +#: application/views/interface_assets/header.php:196 msgid "Germany" msgstr "Deutschland" -#: application/views/interface_assets/header.php:196 +#: application/views/interface_assets/header.php:200 msgid "DL Gridmaster" msgstr "DL Gridmaster" -#: application/views/interface_assets/header.php:200 +#: application/views/interface_assets/header.php:204 msgid "Great Britain" msgstr "Großbritannien" -#: application/views/interface_assets/header.php:202 +#: application/views/interface_assets/header.php:206 msgid "WAB" msgstr "WAB" -#: application/views/interface_assets/header.php:206 +#: application/views/interface_assets/header.php:210 msgid "Japan" msgstr "Japan" -#: application/views/interface_assets/header.php:212 +#: application/views/interface_assets/header.php:216 msgid "JA Gridmaster" msgstr "JA Gridmaster" -#: application/views/interface_assets/header.php:216 +#: application/views/interface_assets/header.php:220 msgid "Luxemburg" msgstr "Luxemburg" -#: application/views/interface_assets/header.php:218 +#: application/views/interface_assets/header.php:222 msgid "LX Gridmaster" msgstr "LX Gridmaster" -#: application/views/interface_assets/header.php:222 +#: application/views/interface_assets/header.php:226 msgid "Switzerland" msgstr "Schweiz" -#: application/views/interface_assets/header.php:228 +#: application/views/interface_assets/header.php:232 msgid "USA" msgstr "USA" -#: application/views/interface_assets/header.php:234 +#: application/views/interface_assets/header.php:238 msgid "US Gridmaster" msgstr "US Gridmaster" -#: application/views/interface_assets/header.php:251 +#: application/views/interface_assets/header.php:255 msgid "Bandmap" msgstr "Bandmap" -#: application/views/interface_assets/header.php:253 +#: application/views/interface_assets/header.php:257 msgid "SAT Timers" msgstr "SAT Timer" -#: application/views/interface_assets/header.php:256 +#: application/views/interface_assets/header.php:260 msgid "Satellite Flightpath" msgstr "Satellitenflugbahn" -#: application/views/interface_assets/header.php:258 +#: application/views/interface_assets/header.php:262 msgid "Satellite Pass" msgstr "Satellitenüberflug" -#: application/views/interface_assets/header.php:265 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:269 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "Admin" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:274 msgid "Global Options" msgstr "Globale Optionen" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:280 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:11 +#: application/views/satellite/pass.php:495 #: application/views/statistics/custom.php:20 #: application/views/statistics/custom_result.php:21 #: application/views/statistics/index.php:39 @@ -6636,79 +7286,83 @@ msgstr "Globale Optionen" msgid "Satellites" msgstr "Satelliten" -#: application/views/interface_assets/header.php:282 +#: application/views/interface_assets/header.php:286 msgid "Update Country Files" msgstr "Länderdaten aktualisieren" -#: application/views/interface_assets/header.php:286 +#: application/views/interface_assets/header.php:290 msgid "Debug Information" msgstr "Debug-Informationen" -#: application/views/interface_assets/header.php:333 +#: application/views/interface_assets/header.php:337 msgid "Add/Search Callsign" msgstr "Logge/Suche Call" -#: application/views/interface_assets/header.php:335 +#: application/views/interface_assets/header.php:339 msgid "Log" msgstr "Logge" -#: application/views/interface_assets/header.php:342 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:346 +#: application/views/logbookadvanced/index.php:474 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "Suche Rufzeichen" -#: application/views/interface_assets/header.php:371 +#: application/views/interface_assets/header.php:375 #: application/views/user/edit.php:49 msgid "Account" msgstr "Benutzerkonto" -#: application/views/interface_assets/header.php:386 +#: application/views/interface_assets/header.php:390 msgid "Other Export Options" msgstr "Andere Export-Optionen" -#: application/views/interface_assets/header.php:394 +#: application/views/interface_assets/header.php:398 msgid "Cabrillo Export" msgstr "Cabrillo Export" -#: application/views/interface_assets/header.php:418 +#: application/views/interface_assets/header.php:400 +msgid "EDI Export" +msgstr "EDI Export" + +#: application/views/interface_assets/header.php:424 msgid "QSL Queue" msgstr "QSL-Warteschlange" -#: application/views/interface_assets/header.php:419 +#: application/views/interface_assets/header.php:425 msgid "Labels" msgstr "Etiketten" -#: application/views/interface_assets/header.php:421 +#: application/views/interface_assets/header.php:427 msgid "Third-Party Services" msgstr "Drittanbieter-Dienste" -#: application/views/interface_assets/header.php:424 +#: application/views/interface_assets/header.php:430 msgid "eQSL Import / Export" msgstr "eQSL Import/Export" -#: application/views/interface_assets/header.php:425 +#: application/views/interface_assets/header.php:431 msgid "HRDLog Logbook" msgstr "HRDLog Logbuch" -#: application/views/interface_assets/header.php:435 +#: application/views/interface_assets/header.php:441 msgid "Help" msgstr "Hilfe" -#: application/views/interface_assets/header.php:436 +#: application/views/interface_assets/header.php:442 msgid "Forum" msgstr "Forum" -#: application/views/interface_assets/header.php:438 +#: application/views/interface_assets/header.php:444 msgid "Logout" msgstr "Ausloggen" -#: application/views/interface_assets/header.php:446 +#: application/views/interface_assets/header.php:452 msgid "Select a Location" msgstr "Wähle einen Stationsstandort" -#: application/views/interface_assets/header.php:525 +#: application/views/interface_assets/header.php:531 msgid "Extras" msgstr "Extras" @@ -6986,86 +7640,122 @@ msgid "Start printing at?" msgstr "Druck starten bei?" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:405 -#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "QSL via" -#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/edit.php:23 msgid "LoTW Sent" msgstr "LotW Gesendet" -#: application/views/logbookadvanced/edit.php:23 +#: application/views/logbookadvanced/edit.php:24 msgid "LoTW Received" msgstr "LotW Empfangen" -#: application/views/logbookadvanced/edit.php:73 +#: application/views/logbookadvanced/edit.php:75 msgid "SAT Mode" msgstr "SAT Modus" -#: application/views/logbookadvanced/edit.php:87 +#: application/views/logbookadvanced/edit.php:89 msgid "Band RX" msgstr "Band RX" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "Planquadrate" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "Pfadlinien" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "CQ-Zonen" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "ITU-Zonen" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:174 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "Nachtschatten" + +#: application/views/logbookadvanced/index.php:144 msgid "From" msgstr "Von" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:148 msgid "To" msgstr "bis" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:152 +#: application/views/logbookadvanced/index.php:569 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "Dx" -#: application/views/logbookadvanced/index.php:148 +#: application/views/logbookadvanced/index.php:159 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "- KEIN - (z.B. /MM, /AM)" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:224 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "Keine/Leer" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:540 +msgid "Invalid" +msgstr "Ungültig" + +#: application/views/logbookadvanced/index.php:324 msgid "QSL sent" msgstr "QSL gesendet" -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:375 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:397 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:439 #: application/views/lookup/lotwuser.php:12 -#: application/views/qso/edit_ajax.php:394 -#: application/views/qso/edit_ajax.php:427 -#: application/views/qso/edit_ajax.php:455 -#: application/views/qso/edit_ajax.php:468 +#: application/views/qso/edit_ajax.php:421 +#: application/views/qso/edit_ajax.php:454 +#: application/views/qso/edit_ajax.php:482 #: application/views/qso/edit_ajax.php:495 -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 +#: application/views/qso/edit_ajax.php:522 +#: application/views/qso/edit_ajax.php:534 application/views/qso/index.php:576 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:209 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:236 -#: application/views/station_profile/create.php:275 -#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 #: application/views/station_profile/create.php:293 -#: application/views/station_profile/edit.php:330 -#: application/views/station_profile/edit.php:338 -#: application/views/station_profile/edit.php:364 -#: application/views/station_profile/edit.php:385 -#: application/views/station_profile/edit.php:403 -#: application/views/station_profile/edit.php:410 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 +#: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 #: application/views/user/edit.php:347 application/views/user/edit.php:358 #: application/views/user/edit.php:369 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:399 @@ -7075,35 +7765,35 @@ msgstr "QSL gesendet" msgid "Yes" msgstr "Ja" -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 -#: application/views/logbookadvanced/index.php:376 -#: application/views/logbookadvanced/index.php:387 -#: application/views/logbookadvanced/index.php:398 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:440 #: application/views/lookup/lotwuser.php:14 -#: application/views/qso/edit_ajax.php:393 -#: application/views/qso/edit_ajax.php:426 -#: application/views/qso/edit_ajax.php:454 -#: application/views/qso/edit_ajax.php:467 +#: application/views/qso/edit_ajax.php:420 +#: application/views/qso/edit_ajax.php:453 +#: application/views/qso/edit_ajax.php:481 #: application/views/qso/edit_ajax.php:494 -#: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 +#: application/views/qso/edit_ajax.php:521 +#: application/views/qso/edit_ajax.php:533 application/views/qso/index.php:575 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:210 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:237 -#: application/views/station_profile/create.php:276 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/create.php:292 -#: application/views/station_profile/edit.php:331 -#: application/views/station_profile/edit.php:339 -#: application/views/station_profile/edit.php:365 -#: application/views/station_profile/edit.php:386 -#: application/views/station_profile/edit.php:404 -#: application/views/station_profile/edit.php:411 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 #: application/views/user/edit.php:348 application/views/user/edit.php:359 #: application/views/user/edit.php:370 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:400 @@ -7114,32 +7804,32 @@ msgstr "Ja" msgid "No" msgstr "Nein" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 -#: application/views/logbookadvanced/index.php:389 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:416 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 -#: application/views/qso/edit_ajax.php:396 -#: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:497 application/views/qso/index.php:556 +#: application/views/qso/edit_ajax.php:423 +#: application/views/qso/edit_ajax.php:484 +#: application/views/qso/edit_ajax.php:524 application/views/qso/index.php:578 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:225 -#: application/views/view_log/partial/log_ajax.php:143 -#: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +#: src/QSLManager/QSO.php:273 src/QSLManager/QSO.php:318 msgid "Queued" msgstr "In Warteschlange" -#: application/views/logbookadvanced/index.php:304 -#: application/views/logbookadvanced/index.php:314 -#: application/views/logbookadvanced/index.php:346 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:368 -#: application/views/logbookadvanced/index.php:378 -#: application/views/logbookadvanced/index.php:390 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:373 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:417 +#: application/views/logbookadvanced/index.php:427 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -7147,42 +7837,42 @@ msgstr "In Warteschlange" #: application/views/qslprint/qsolist.php:109 #: application/views/qslprint/qsolist.php:174 #: application/views/qslprint/qsolist.php:189 -#: application/views/qso/edit_ajax.php:397 -#: application/views/qso/edit_ajax.php:429 -#: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:470 -#: application/views/qso/edit_ajax.php:498 -#: application/views/qso/edit_ajax.php:509 application/views/qso/index.php:557 +#: application/views/qso/edit_ajax.php:424 +#: application/views/qso/edit_ajax.php:456 +#: application/views/qso/edit_ajax.php:485 +#: application/views/qso/edit_ajax.php:497 +#: application/views/qso/edit_ajax.php:525 +#: application/views/qso/edit_ajax.php:536 application/views/qso/index.php:579 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/search/search_result_ajax.php:305 #: application/views/search/search_result_ajax.php:320 -#: application/views/view_log/partial/log_ajax.php:149 -#: application/views/view_log/partial/log_ajax.php:187 -#: application/views/view_log/partial/log_ajax.php:242 -#: application/views/view_log/partial/log_ajax.php:268 -#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 -#: src/QSLManager/QSO.php:375 src/QSLManager/QSO.php:398 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +#: application/views/view_log/partial/log_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:270 +#: src/QSLManager/QSO.php:279 src/QSLManager/QSO.php:324 +#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:400 msgid "Invalid (Ignore)" msgstr "Ungültig (Ignorieren)" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:335 msgid "QSL received" msgstr "QSL erhalten" -#: application/views/logbookadvanced/index.php:315 -#: application/views/logbookadvanced/index.php:357 -#: application/views/logbookadvanced/index.php:379 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:428 msgid "Verified" msgstr "Verifiziert" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:346 msgid "QSL send. method" msgstr "QSL-Send. Methode" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:359 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -7191,268 +7881,264 @@ msgstr "QSL-Send. Methode" #: application/views/qslprint/qsolist.php:77 #: application/views/qslprint/qsolist.php:119 #: application/views/qslprint/qsolist.php:210 -#: application/views/qso/edit_ajax.php:408 -#: application/views/qso/edit_ajax.php:441 application/views/qso/index.php:568 +#: application/views/qso/edit_ajax.php:435 +#: application/views/qso/edit_ajax.php:468 application/views/qso/index.php:590 #: application/views/search/search_result_ajax.php:199 #: application/views/search/search_result_ajax.php:241 -#: application/views/view_log/partial/log_ajax.php:162 -#: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +#: src/QSLManager/QSO.php:296 src/QSLManager/QSO.php:339 msgid "Bureau" msgstr "Büro" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:360 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 #: application/views/qslprint/qsolist.php:80 #: application/views/qslprint/qsolist.php:122 #: application/views/qslprint/qsolist.php:211 -#: application/views/qso/edit_ajax.php:407 -#: application/views/qso/edit_ajax.php:440 application/views/qso/index.php:567 +#: application/views/qso/edit_ajax.php:434 +#: application/views/qso/edit_ajax.php:467 application/views/qso/index.php:589 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 -#: application/views/view_log/partial/log_ajax.php:165 -#: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +#: src/QSLManager/QSO.php:299 src/QSLManager/QSO.php:342 msgid "Direct" msgstr "Direkt" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 #: application/views/qslprint/qsolist.php:86 #: application/views/qslprint/qsolist.php:128 #: application/views/qslprint/qsolist.php:212 -#: application/views/qso/edit_ajax.php:409 -#: application/views/qso/edit_ajax.php:442 application/views/qso/index.php:569 +#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:591 #: application/views/search/search_result_ajax.php:208 #: application/views/search/search_result_ajax.php:250 -#: application/views/view_log/partial/log_ajax.php:171 -#: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +#: src/QSLManager/QSO.php:305 src/QSLManager/QSO.php:348 msgid "Electronic" msgstr "Elektronisch" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:362 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 -#: application/views/qso/edit_ajax.php:410 -#: application/views/qso/edit_ajax.php:443 application/views/qso/index.php:570 +#: application/views/qso/edit_ajax.php:437 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:592 #: application/views/search/search_result_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:206 +#: application/views/view_log/partial/log_ajax.php:208 msgid "Manager" msgstr "Manager" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:356 msgid "QSL recv. method" msgstr "QSL-Empf. Methode" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:366 msgid "LoTW sent" msgstr "LoTW gesendet" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:377 msgid "LoTW received" msgstr "LoTW erhalten" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:388 msgid "Clublog sent" msgstr "Clublog gesendet" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:399 msgid "Clublog received" msgstr "Clublog erhalten" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:410 msgid "eQSL sent" msgstr "eQSL gesendet" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "eQSL received" msgstr "eQSL erhalten" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:436 msgid "QSL Images" msgstr "QSL Bilder" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:448 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "Warnung! Bist du sicher, dass du die markierten QSO löschen willst?" -#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:451 msgid "With selected: " msgstr "Bei Markierten: " -#: application/views/logbookadvanced/index.php:425 -#: application/views/qso/edit_ajax.php:595 +#: application/views/logbookadvanced/index.php:452 +#: application/views/qso/edit_ajax.php:622 msgid "Update from Callbook" msgstr "Aktualisieren aus dem Callbook" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:453 msgid "Queue Bureau" msgstr "Angefordert (Büro)" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:454 msgid "Queue Direct" msgstr "Angefordert (Direkt)" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Queue Electronic" msgstr "Angefordert (Elektronisch)" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:456 msgid "Sent (Bureau)" msgstr "Gesendet (Büro)" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:457 msgid "Sent (Direct)" msgstr "Gesendet (Direkt)" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Sent (Electronic)" msgstr "Gesendet (Elektronisch)" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:459 msgid "Not Sent" msgstr "Nicht gesendet" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:460 msgid "QSL Not Required" msgstr "QSL nicht erforderlich" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Not Received" msgstr "Nicht erhalten" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:462 msgid "Received (Bureau)" msgstr "Erhalten (Büro)" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:463 msgid "Received (Direct)" msgstr "Erhalten (Direkt)" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Received (Electronic)" msgstr "Erhalten (Elektronisch)" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:465 msgid "Create ADIF" msgstr "Erstelle ADIF" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:466 msgid "Print Label" msgstr "Label drucken" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "QSL Slideshow" msgstr "QSL-Präsentation" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:472 msgid "Quicksearch with selected: " msgstr "Schnellsuche in Markierten: " -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:477 msgid "Search DXCC" msgstr "Suche DXCC" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:480 msgid "Search State" msgstr "Suche Staat" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Search Gridsquare" msgstr "Suche Planquadrat" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:486 msgid "Search CQ Zone" msgstr "Suche CQ-Zone" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 msgid "Search ITU Zone" msgstr "Suche ITU-Zone" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:492 msgid "Search Mode" msgstr "Suche Mode" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:495 msgid "Search Band" msgstr "Suche Band" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:498 msgid "Search IOTA" msgstr "Suche IOTA" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:501 msgid "Search SOTA" msgstr "Suche SOTA" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 msgid "Search POTA" msgstr "Suche POTA" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:507 msgid "Search WWFF" msgstr "Suche WWFF" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Search Operator" msgstr "Suche Operator" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:516 msgid "Quickfilters" msgstr "Schnellfilter" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "QSL Filters" msgstr "QSL-Filter" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:518 #: application/views/mode/index.php:68 msgid "Filters" msgstr "Filter" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "# Resultate" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:527 #: application/views/qso/index.php:272 -#: application/views/station_profile/edit.php:65 +#: application/views/station_profile/edit.php:92 msgid "Location" msgstr "Standort" -#: application/views/logbookadvanced/index.php:506 -msgid "Callsign: " -msgstr "Rufzeichen: " - -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:539 msgid "Dupes" msgstr "Duplikate" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:547 msgid "Globe map" msgstr "Globus-Karte" -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "De" -#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:605 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "QSL Msg" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:650 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "Mein Refs" @@ -7480,41 +8166,15 @@ msgstr "Inklusive Via" msgid "Column" msgstr "Spalte" -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/useroptions.php:152 msgctxt "Map Options" msgid "Layer" msgstr "Ebene" -#: application/views/logbookadvanced/useroptions.php:149 +#: application/views/logbookadvanced/useroptions.php:153 msgid "Default on" msgstr "Standardmässig an" -#: application/views/logbookadvanced/useroptions.php:154 -#: application/views/stationsetup/exportmapoptions.php:23 -msgctxt "Map Options" -msgid "Path lines" -msgstr "Pfadlinien" - -#: application/views/logbookadvanced/useroptions.php:158 -msgctxt "Map Options" -msgid "Gridsquares" -msgstr "Planquadrate" - -#: application/views/logbookadvanced/useroptions.php:162 -msgctxt "Map Options" -msgid "CQ Zones" -msgstr "CQ-Zonen" - -#: application/views/logbookadvanced/useroptions.php:166 -msgctxt "Map Options" -msgid "ITU Zones" -msgstr "ITU-Zonen" - -#: application/views/logbookadvanced/useroptions.php:170 -msgctxt "Map Options" -msgid "Night Shadow" -msgstr "Nachtschatten" - #: application/views/lookup/index.php:8 msgid "US State" msgstr "US-Staat" @@ -7624,60 +8284,64 @@ msgstr "Verfügbare Zertifikate" msgid "Upload Certificate" msgstr "Zertifikats-Upload" -#: application/views/lotw_views/index.php:41 +#: application/views/lotw_views/index.php:37 msgid "QSO Start Date" msgstr "QSO Startdatum" -#: application/views/lotw_views/index.php:42 +#: application/views/lotw_views/index.php:38 msgid "QSO End Date" msgstr "QSO Enddatum" -#: application/views/lotw_views/index.php:43 +#: application/views/lotw_views/index.php:39 msgid "Date Created" msgstr "Ausstellungsdatum" -#: application/views/lotw_views/index.php:44 +#: application/views/lotw_views/index.php:40 msgid "Date Expires" msgstr "Ablaufdatum" -#: application/views/lotw_views/index.php:46 -#: application/views/view_log/qso.php:404 +#: application/views/lotw_views/index.php:42 +#: application/views/view_log/qso.php:407 msgid "Last Upload" msgstr "Letzter Upload" -#: application/views/lotw_views/index.php:91 +#: application/views/lotw_views/index.php:87 msgid "Expired" msgstr "Abgelaufen" -#: application/views/lotw_views/index.php:93 +#: application/views/lotw_views/index.php:89 msgid "Expiring" msgstr "Läuft ab" -#: application/views/lotw_views/index.php:105 +#: application/views/lotw_views/index.php:91 +msgid "Valid" +msgstr "Gültig" + +#: application/views/lotw_views/index.php:101 #, php-format msgid "Last success: %s" msgstr "Letzter Erfolg: %s" -#: application/views/lotw_views/index.php:108 +#: application/views/lotw_views/index.php:104 #, php-format msgid "Last fail: %s" msgstr "Letzer Fehlversuch: %s" -#: application/views/lotw_views/index.php:114 +#: application/views/lotw_views/index.php:110 msgid "Not Synced" msgstr "Nicht synchronisiert" -#: application/views/lotw_views/index.php:129 +#: application/views/lotw_views/index.php:125 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:144 +#: application/views/lotw_views/index.php:140 msgid "Information" msgstr "Information" -#: application/views/lotw_views/index.php:149 +#: application/views/lotw_views/index.php:145 msgid "Manual Sync" msgstr "Manuelle Synchronisation" @@ -7908,6 +8572,16 @@ msgid "This enables the button to Wavelog's Github page in the public view" msgstr "" "Hier kann der Link zu Github auf der öffentlichen Seite aktiviert werden" +#: application/views/options/appearance.php:107 +msgid "Public Login Button" +msgstr "Öffentlicher Anmelde-Button" + +#: application/views/options/appearance.php:112 +msgid "This enables the button to login to Wavelog in the public view" +msgstr "" +"Dies aktiviert die Schaltfläche, um sich im öffentlichen Bereich bei Wavelog " +"anzumelden" + #: application/views/options/dxcluster.php:38 msgid "Provider of DXClusterCache" msgstr "Provider des DX-Cluster-Caches" @@ -8241,7 +8915,7 @@ msgstr "Gibt es weitere Informationen, über die wir Bescheid wissen sollten?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:64 #: application/views/oqrs/showrequests.php:87 -#: application/views/user/main.php:48 application/views/user/profile.php:24 +#: application/views/user/index.php:48 application/views/user/profile.php:24 msgid "E-mail" msgstr "E-Mail" @@ -8264,21 +8938,21 @@ msgstr "Sende eine 'Nicht im Log'-Anfrage" #: application/views/search/search_result_ajax.php:127 #: application/views/user/edit.php:478 #: application/views/view_log/partial/log.php:22 -#: application/views/view_log/partial/log_ajax.php:86 -#: application/views/view_log/qso.php:503 -#: application/views/view_log/qso.php:507 -#: application/views/view_log/qso.php:511 -#: application/views/view_log/qso.php:515 -#: application/views/view_log/qso.php:521 -#: application/views/view_log/qso.php:528 -#: application/views/view_log/qso.php:535 -#: application/views/view_log/qso.php:542 -#: application/views/view_log/qso.php:549 -#: application/views/view_log/qso.php:556 -#: application/views/view_log/qso.php:563 -#: application/views/view_log/qso.php:570 -#: application/views/view_log/qso.php:577 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log_ajax.php:88 +#: application/views/view_log/qso.php:506 +#: application/views/view_log/qso.php:510 +#: application/views/view_log/qso.php:514 +#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:531 +#: application/views/view_log/qso.php:538 +#: application/views/view_log/qso.php:545 +#: application/views/view_log/qso.php:552 +#: application/views/view_log/qso.php:559 +#: application/views/view_log/qso.php:566 +#: application/views/view_log/qso.php:573 +#: application/views/view_log/qso.php:580 +#: application/views/view_log/qso.php:585 msgid "Station" msgstr "Station" @@ -8286,10 +8960,10 @@ msgstr "Station" #: application/views/qslprint/qslprint.php:28 #: application/views/qslprint/qsolist.php:14 #: application/views/qslprint/qsolist.php:83 -#: application/views/qso/index.php:576 +#: application/views/qso/index.php:598 #: application/views/search/search_result_ajax.php:205 -#: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:300 +#: application/views/view_log/partial/log_ajax.php:170 +#: src/QSLManager/QSO.php:302 msgid "Via" msgstr "Via" @@ -8446,7 +9120,7 @@ msgid "" "You need to set a QRZ Logbook API key in your station profile. Only station " "profiles with an API Key set are displayed." msgstr "" -"Du benötigst einen QRZ-Logbuch-API-Key in Deinem Stationsprofil. Nur " +"Du benötigst einen QRZ-Logbuch-API-Key in deinem Stationsstandort. Nur " "Stationen mit diesem Key werden angezeigt." #: application/views/qrz/export.php:73 @@ -8532,7 +9206,7 @@ msgid "Remove" msgstr "Entfernen" #: application/views/qslprint/qslprint.php:33 -#: application/views/simplefle/index.php:133 +#: application/views/simplefle/index.php:139 msgid "QSO List" msgstr "QSO Liste" @@ -8580,35 +9254,20 @@ msgstr "" "Es wurden keine zusätzlichen QSO's gefunden. Das bedeutet, dass diese " "wahrscheinlich schon in der Warteschlange stehen." -#: application/views/qso/components/winkeysettings.php:7 -#: application/views/qso/components/winkeysettings_results.php:7 -msgid "Winkey Macros" -msgstr "Winkey Macros" - -#: application/views/qso/components/winkeysettings.php:12 -#: application/views/qso/components/winkeysettings.php:28 -#: application/views/qso/components/winkeysettings.php:44 -#: application/views/qso/components/winkeysettings.php:60 -#: application/views/qso/components/winkeysettings.php:76 -#: application/views/qso/components/winkeysettings_results.php:12 -#: application/views/qso/components/winkeysettings_results.php:28 -#: application/views/qso/components/winkeysettings_results.php:44 -#: application/views/qso/components/winkeysettings_results.php:60 -#: application/views/qso/components/winkeysettings_results.php:76 -#, php-format -msgid "Function %d - Name" -msgstr "Funktion %d - Name" - +#: 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:83 -#: application/views/qso/components/winkeysettings_results.php:19 -#: application/views/qso/components/winkeysettings_results.php:35 -#: application/views/qso/components/winkeysettings_results.php:51 -#: application/views/qso/components/winkeysettings_results.php:67 -#: application/views/qso/components/winkeysettings_results.php:83 +#, 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 #, php-format msgid "Function %d - Macro" msgstr "Funktion %d - Makro" @@ -8634,7 +9293,8 @@ msgid "RX Band" msgstr "RX-Band" #: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:346 -#: application/views/view_log/qso.php:542 +#: application/views/reg1test/index.php:114 +#: application/views/view_log/qso.php:545 msgid "Transmit Power (W)" msgstr "Sendeleistung (W)" @@ -8647,10 +9307,6 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "Wird für VUCC MultiGrids verwendet" -#: application/views/qso/edit_ajax.php:177 -msgid "QTH" -msgstr "QTH" - #: application/views/qso/edit_ajax.php:258 msgid "Sat Name" msgstr "Satellitenname" @@ -8659,69 +9315,85 @@ msgstr "Satellitenname" msgid "Sat Mode" msgstr "Sat-Modus" -#: application/views/qso/edit_ajax.php:356 application/views/qso/index.php:255 -#: application/views/qso/index.php:500 application/views/user/edit.php:599 -#: application/views/view_log/qso.php:332 -#: application/views/view_log/qso.php:582 -msgid "Sig Info" -msgstr "Signal-Info" +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:545 +msgid "Antenna Azimuth (°)" +msgstr "Antennen-Azimut (°)" -#: application/views/qso/edit_ajax.php:369 +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:547 +msgid "Antenna azimuth in decimal degrees." +msgstr "Azimut der Antenne in Dezimalgrad." + +#: application/views/qso/edit_ajax.php:274 application/views/qso/index.php:551 +msgid "Antenna Elevation (°)" +msgstr "Antennen-Elevation (°)" + +#: application/views/qso/edit_ajax.php:276 application/views/qso/index.php:553 +msgid "Antenna elevation in decimal degrees." +msgstr "Elevation der Antenne in Dezimalgrad." + +#: application/views/qso/edit_ajax.php:383 application/views/qso/index.php:255 +#: application/views/qso/index.php:510 application/views/user/edit.php:599 +#: application/views/view_log/qso.php:335 +#: application/views/view_log/qso.php:585 +msgid "Sig Info" +msgstr "Sig Info" + +#: application/views/qso/edit_ajax.php:396 msgid "Notes (for internal usage only)" msgstr "Notizen (nur für den internen Gebrauch)" -#: application/views/qso/edit_ajax.php:403 +#: application/views/qso/edit_ajax.php:430 msgid "Sent Method" msgstr "Sendemethode" -#: application/views/qso/edit_ajax.php:406 -#: application/views/qso/edit_ajax.php:439 application/views/qso/index.php:563 -#: application/views/qso/index.php:566 +#: application/views/qso/edit_ajax.php:433 +#: application/views/qso/edit_ajax.php:466 application/views/qso/index.php:585 +#: application/views/qso/index.php:588 msgid "Method" msgstr "Methode" -#: application/views/qso/edit_ajax.php:416 +#: application/views/qso/edit_ajax.php:443 msgid "Sent Via" msgstr "Gesendet via" -#: application/views/qso/edit_ajax.php:430 -#: application/views/qso/edit_ajax.php:471 -#: application/views/qso/edit_ajax.php:510 +#: application/views/qso/edit_ajax.php:457 +#: application/views/qso/edit_ajax.php:498 +#: application/views/qso/edit_ajax.php:537 msgid "Verified (Match)" msgstr "Verifiziert (Match)" -#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:463 msgid "Received Method" msgstr "Empfangsmethode" -#: application/views/qso/edit_ajax.php:477 application/views/qso/index.php:583 +#: application/views/qso/edit_ajax.php:504 application/views/qso/index.php:605 msgid "This note content is exported to QSL services like eqsl.cc." msgstr "Dieser Notizeninhalt wird an QSL Services wie eqsl.cc exportiert." -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:586 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:608 msgid "Get the default message for eQSL, for this station." msgstr "Setze die eQSL-Nachricht auf den Standardtext zurück." -#: application/views/qso/edit_ajax.php:530 +#: application/views/qso/edit_ajax.php:557 msgid "Change Station Profile" -msgstr "Stationsprofil ändern" +msgstr "Stationsstandort ändern" -#: application/views/qso/edit_ajax.php:576 +#: application/views/qso/edit_ajax.php:603 msgid "Exchange (R)" msgstr "Exchange (R)" -#: application/views/qso/edit_ajax.php:581 +#: application/views/qso/edit_ajax.php:608 msgid "Exchange (S)" msgstr "Exchange (S)" -#: application/views/qso/edit_ajax.php:593 +#: application/views/qso/edit_ajax.php:620 #: application/views/search/search_result_ajax.php:432 #: application/views/view_log/partial/log.php:156 -#: application/views/view_log/partial/log_ajax.php:346 +#: application/views/view_log/partial/log_ajax.php:348 msgid "Delete QSO" msgstr "QSO Löschen" -#: application/views/qso/edit_ajax.php:596 +#: application/views/qso/edit_ajax.php:623 msgid "Save changes" msgstr "Änderungen speichern" @@ -8729,7 +9401,7 @@ msgstr "Änderungen speichern" msgid "TimeOff is less than TimeOn" msgstr "Endzeit ist vor der Startzeit" -#: application/views/qso/index.php:5 application/views/qso/index.php:694 +#: application/views/qso/index.php:5 application/views/qso/index.php:718 msgid "Previous Contacts" msgstr "Vorherige Kontakte" @@ -8769,23 +9441,23 @@ msgstr "Endzeit" msgid "Search DXCluster for latest Spot" msgstr "Suche im DX-Cluster nach letztem Spot" -#: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:149 -#: application/views/station_profile/edit.php:191 -#: application/views/user/edit.php:583 application/views/view_log/qso.php:282 -#: application/views/view_log/qso.php:549 +#: application/views/qso/index.php:196 application/views/qso/index.php:449 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 +#: application/views/user/edit.php:583 application/views/view_log/qso.php:285 +#: application/views/view_log/qso.php:552 msgid "IOTA Reference" msgstr "IOTA-Referenznummer" -#: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:165 -#: application/views/station_profile/edit.php:219 -#: application/views/user/edit.php:587 application/views/view_log/qso.php:289 -#: application/views/view_log/qso.php:556 +#: application/views/qso/index.php:212 application/views/qso/index.php:466 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 +#: application/views/user/edit.php:587 application/views/view_log/qso.php:292 +#: application/views/view_log/qso.php:559 msgid "SOTA Reference" msgstr "SOTA-Referenznummer" -#: application/views/qso/index.php:322 application/views/view_log/qso.php:98 +#: application/views/qso/index.php:322 application/views/view_log/qso.php:100 msgid "Frequency (RX)" msgstr "Frequenz (RX)" @@ -8793,39 +9465,39 @@ msgstr "Frequenz (RX)" msgid "Band (RX)" msgstr "Band (RX)" -#: application/views/qso/index.php:458 +#: application/views/qso/index.php:468 msgid "For example: GM/NS-001." msgstr "Zum Beispiel: GM/NS-001." -#: application/views/qso/index.php:471 +#: application/views/qso/index.php:481 msgid "For example: DLFF-0069." msgstr "Zum Beispiel: DLFF-0069." -#: application/views/qso/index.php:484 +#: application/views/qso/index.php:494 msgid "For example: PA-0150. Multiple values allowed." msgstr "Zum Beispiel: PA-0150. Mehrere Werte erlaubt." -#: application/views/qso/index.php:496 +#: application/views/qso/index.php:506 msgid "For example: GMA" msgstr "Zum Beispiel: GMA" -#: application/views/qso/index.php:502 +#: application/views/qso/index.php:512 msgid "For example: DA/NW-357" msgstr "Zum Beispiel: DA/NW-357" -#: application/views/qso/index.php:510 +#: application/views/qso/index.php:520 msgid "For example: Q03" msgstr "Zum Beispiel: Q03" -#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +#: application/views/qso/index.php:529 application/views/view_log/qso.php:210 msgid "Satellite Name" msgstr "Satellit" -#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +#: application/views/qso/index.php:537 application/views/view_log/qso.php:217 msgid "Satellite Mode" msgstr "Satellitenmodus" -#: application/views/qso/index.php:538 +#: application/views/qso/index.php:560 msgid "" "Note content is used within Wavelog only and is not exported to other " "services." @@ -8833,27 +9505,47 @@ msgstr "" "Notizeninhalt wird nur innerhalb von Wavelog genutzt und nicht an andere " "Dienste weitergegeben." -#: application/views/qso/index.php:604 +#: application/views/qso/index.php:626 msgid "Reset to Default" msgstr "Auf Standardwerte zurücksetzen" -#: application/views/qso/index.php:645 +#: application/views/qso/index.php:667 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:647 +#: application/views/qso/index.php:669 msgid "Connect" msgstr "Verbinden" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:678 +msgid "Stop" +msgstr "Stop" + +#: application/views/qso/index.php:679 +msgid "Tune" +msgstr "Abstimmen" + +#: application/views/qso/index.php:680 +msgid "Stop Tune" +msgstr "Abstimmen stoppen" + +#: application/views/qso/index.php:686 +msgid "CW Speed" +msgstr "CW Geschwindigkeit" + +#: application/views/qso/index.php:691 +msgid "Send" +msgstr "Senden" + +#: application/views/qso/index.php:701 msgid "Suggestions" msgstr "Vorschläge" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:708 msgid "Profile Picture" msgstr "Profilbild" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:732 msgid "Max. 5 previous contacts are shown" msgstr "Es werden maximal 5 Kontakte angezeigt" @@ -8888,6 +9580,148 @@ msgstr "Funkgerät-Funktionen" msgid "Please wait..." msgstr "Bitte warten..." +#: application/views/reg1test/index.php:6 +msgid "Select Band" +msgstr "Wähle Band" + +#: application/views/reg1test/index.php:8 +msgid "" +"Bands below 50Mhz are not valid for the EDI REG1TEST format and will produce " +"invalid files." +msgstr "" +"Bänder unterhalb 50Mhz sind im Rahmen des EDI REG1TEST Formates nicht gültig " +"und produzieren somit ungültige Dateien." + +#: application/views/reg1test/index.php:18 +msgid "Export a contest to a REG1TEST EDI log" +msgstr "Exportiere einen Contest im REG1TEST EDI Format" + +#: application/views/reg1test/index.php:48 +msgid "Sent Exchange" +msgstr "Gesendeter Austausch" + +#: application/views/reg1test/index.php:50 +msgid "" +"The exchange which was sent during the contest. Can be any type of " +"information, e.g. Province, DOK, County, State, Power, Name. Max. length: 6 " +"characters." +msgstr "" +"Der Austausch, der während dem Contest gesendet wird. Dies kann jede Art der " +"Information sein, z.B. Provinz, DOK, County, Leistung, Name. Maximale Länge: " +"6 Zeichen." + +#: 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 "" +"Name des Clubs, bei dem die Operator Mitglied sind. Kann zum Beispiel " +"benutzt werden um Punkte innerhalb eines Clubs zu akkumulieren." + +#: application/views/reg1test/index.php:66 +msgid "Callsign of responsible operator" +msgstr "Rufzeichen des verantwortlichen Operators" + +#: application/views/reg1test/index.php:72 +msgid "" +"List of all operators. Seperated with a semicolon ';'. The responsible " +"operator is not needed here." +msgstr "" +"Liste aller Operator getrennt mit einem Semikolon ';'. Der verantwortliche " +"Operator wird hier nicht benötigt." + +#: application/views/reg1test/index.php:75 +msgid "Contest Address 1" +msgstr "Contest Adresse 1" + +#: application/views/reg1test/index.php:77 +msgid "Address of the QTH used during the contest." +msgstr "Adresse des QTH, das während des Contest verwendet wurde." + +#: application/views/reg1test/index.php:80 +msgid "Contest Address 2" +msgstr "Contest Adresse 2" + +#: application/views/reg1test/index.php:84 +msgid "Operator Address 1" +msgstr "Operator Adresse 1" + +#: application/views/reg1test/index.php:86 +msgid "Address of the responsible operator." +msgstr "Adresse des verantwortlichen Operator." + +#: application/views/reg1test/index.php:89 +msgid "Operator Address 2" +msgstr "Operator Adresse 2" + +#: application/views/reg1test/index.php:93 +msgid "Operator Address Postalcode" +msgstr "Operator Adresse Postleitzahl" + +#: application/views/reg1test/index.php:97 +msgid "Operator Address City" +msgstr "Operator Adresse Stadt" + +#: application/views/reg1test/index.php:101 +msgid "Operator Address Country" +msgstr "Operator Adresse Land" + +#: application/views/reg1test/index.php:105 +msgid "Operator Phone Number" +msgstr "Operator Telefonnummer" + +#: application/views/reg1test/index.php:109 +msgid "Transmit Equipment Description" +msgstr "Beschreibung der Sendeausrüstung" + +#: application/views/reg1test/index.php:111 +msgid "Short description of the used equipment." +msgstr "Kurze Beschreibung der verwendeten Ausrüstung." + +#: application/views/reg1test/index.php:116 +msgid "TX Power during the contest in Watt." +msgstr "Sendeleistung während des Contest in Watt." + +#: application/views/reg1test/index.php:119 +msgid "Receive Equipment Description" +msgstr "Empfangs-Gerätebeschreibung" + +#: application/views/reg1test/index.php:121 +msgid "If you used another gear for RX, then describe it here." +msgstr "Beschreibung der Geräte, falls abweichend für RX." + +#: application/views/reg1test/index.php:124 +msgid "Antenna Description" +msgstr "Antennenbeschreibung" + +#: application/views/reg1test/index.php:126 +msgid "What kind of antenna was used." +msgstr "Welche Art von Antenne wurde verwendet." + +#: application/views/reg1test/index.php:129 +msgid "Antenna Height Above Ground (m)" +msgstr "Antennenhöhe über dem Boden (m)" + +#: application/views/reg1test/index.php:131 +msgid "Height of the antenna above the ground." +msgstr "Höhe der Antenne über dem Boden." + +#: application/views/reg1test/index.php:134 +msgid "Band multiplicator" +msgstr "Bandmultiplikator" + +#: 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 "" +"Band Multiplikator. Dieser ist normalerweise 1. Nur ändern, wenn es laut den " +"Contest-Wertungsregeln notwendig ist." + +#: application/views/reg1test/index.php:141 +msgid "Any other remarks." +msgstr "Weitere Bemerkungen." + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8980,10 +9814,71 @@ msgstr "Satellit hinzufügen" msgid "Satellite passes" msgstr "Satellitenüberflüge" -#: application/views/satellite/pass.php:548 +#: application/views/satellite/pass.php:8 +msgid "Min. Satellite Elevation" +msgstr "Min. Satelliten Elevation" + +#: application/views/satellite/pass.php:12 +msgid "Min. Azimuth" +msgstr "Min. Azimut" + +#: application/views/satellite/pass.php:20 +msgid "Max. Azimuth" +msgstr "Max. Azimut" + +#: application/views/satellite/pass.php:32 +msgid "Altitude (meters)" +msgstr "Höhe (Meter)" + +#: application/views/satellite/pass.php:36 application/views/user/edit.php:179 +msgid "Timezone" +msgstr "Zeitzone" + +#: application/views/satellite/pass.php:479 +msgid "Min. time" +msgstr "Min. Zeit" + +#: application/views/satellite/pass.php:487 +msgid "Max. time" +msgstr "Max. Zeit" + +#: application/views/satellite/pass.php:504 msgid "Load predictions" msgstr "Lade Vorhersagen" +#: application/views/satellite/passtable.php:6 +msgid "AOS Time" +msgstr "AOS-Zeit" + +#: application/views/satellite/passtable.php:7 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "Dauer" + +#: application/views/satellite/passtable.php:8 +msgid "AOS Az" +msgstr "AOS Az" + +#: application/views/satellite/passtable.php:9 +msgid "AOS El" +msgstr "AOS El" + +#: application/views/satellite/passtable.php:10 +msgid "Max El" +msgstr "Max El" + +#: application/views/satellite/passtable.php:11 +msgid "LOS Time" +msgstr "LOS-Zeit" + +#: application/views/satellite/passtable.php:12 +msgid "LOS Az" +msgstr "LOS Az" + +#: application/views/satellite/passtable.php:13 +msgid "LOS El" +msgstr "LOS El" + #: application/views/sattimers/index.php:15 #, php-format msgid "" @@ -9006,10 +9901,6 @@ msgstr "Azimuth" msgid "Max Elevation" msgstr "Max. Elevation" -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "Dauer" - #: application/views/search/cqzones.php:5 #: application/views/search/lotw_unconfirmed.php:5 #: application/views/search/main.php:5 @@ -9120,50 +10011,50 @@ msgstr "Rcvd" #: application/views/search/search_result_ajax.php:409 #: application/views/view_log/partial/log.php:140 -#: application/views/view_log/partial/log_ajax.php:323 +#: application/views/view_log/partial/log_ajax.php:325 msgid "Mark QSL Sent (Bureau)" msgstr "Markiere QSL gesendet (Büro)" #: application/views/search/search_result_ajax.php:410 #: application/views/view_log/partial/log.php:141 -#: application/views/view_log/partial/log_ajax.php:324 +#: application/views/view_log/partial/log_ajax.php:326 msgid "Mark QSL Sent (Direct)" msgstr "Markiere QSL gesendet (Direkt)" #: application/views/search/search_result_ajax.php:417 #: application/views/view_log/partial/log.php:148 -#: application/views/view_log/partial/log_ajax.php:333 -#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log_ajax.php:335 +#: application/views/view_log/qso.php:655 msgid "Mark QSL Received (Bureau)" msgstr "Markiere QSL erhalten (Büro)" #: application/views/search/search_result_ajax.php:418 #: application/views/view_log/partial/log.php:149 -#: application/views/view_log/partial/log_ajax.php:334 -#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log_ajax.php:336 +#: application/views/view_log/qso.php:657 msgid "Mark QSL Received (Direct)" msgstr "Markiere QSL erhalten (Direkt)" #: application/views/search/search_result_ajax.php:419 #: application/views/view_log/partial/log.php:150 -#: application/views/view_log/partial/log_ajax.php:325 +#: application/views/view_log/partial/log_ajax.php:327 msgid "Mark QSL Card Requested" msgstr "Markiere QSL-Karte als angefragt" #: application/views/search/search_result_ajax.php:420 #: application/views/view_log/partial/log.php:151 -#: application/views/view_log/partial/log_ajax.php:326 -#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log_ajax.php:328 +#: application/views/view_log/qso.php:669 msgid "Mark QSL Card Not Required" msgstr "Markiere QSL-Karte als nicht notwendig" #: application/views/search/search_result_ajax.php:426 -#: application/views/view_log/partial/log_ajax.php:340 +#: application/views/view_log/partial/log_ajax.php:342 msgid "Lookup on QRZ.com" msgstr "Nachschlagen auf QRZ.com" #: application/views/search/search_result_ajax.php:428 -#: application/views/view_log/partial/log_ajax.php:342 +#: application/views/view_log/partial/log_ajax.php:344 msgid "Lookup on HamQTH" msgstr "Nachschlagen auf HamQTH" @@ -9207,7 +10098,7 @@ msgstr "" "die Syntax und wie FLE funktioniert findest du %s." #: application/views/simplefle/index.php:17 -#: application/views/simplefle/index.php:170 +#: application/views/simplefle/index.php:176 msgid "Syntax Help" msgstr "Syntax-Hilfe" @@ -9308,11 +10199,11 @@ msgstr "Stationsstandort" #: application/views/simplefle/index.php:107 #, php-format msgid "" -"If you did operate from a new location, first create a new Station Location" +"If you did operate from a new location, first create a new %sStation " +"Location%s" msgstr "" -"Falls du von einem neuen Standort gefunkt hast, erstelle erst einen neuen Stationsstandort" +"Wenn du von einem neuen Standort aus operierst, erstelle zuerst einen neuen " +"%sStationsstandort%s" #: application/views/simplefle/index.php:112 msgid "e.g. OK2CQR" @@ -9327,26 +10218,25 @@ msgstr "" msgid "Enter the Data" msgstr "Gibt hier die Daten ein" -#: application/views/simplefle/index.php:148 +#: application/views/simplefle/index.php:154 msgid "Refs" msgstr "Refs" -#: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +#: application/views/simplefle/index.php:166 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" msgstr "" -"Die Ref. kann entweder SOTA, IOTA, POTA oder WWFF sein" +"Die Refs können entweder %sS%sOTA, %sI%sOTA, %sP%sOTA oder %sW%sWFF sein" -#: application/views/simplefle/index.php:167 +#: application/views/simplefle/index.php:173 msgid "Reload QSO List" msgstr "Aktualisiere QSO-Liste" -#: application/views/simplefle/index.php:168 +#: application/views/simplefle/index.php:174 msgid "Save in Wavelog" msgstr "Speichere in Wavelog" -#: application/views/simplefle/index.php:169 +#: application/views/simplefle/index.php:175 msgid "Clear Logging Session" msgstr "Lösche QSO-Daten" @@ -9423,126 +10313,125 @@ msgstr "" #: application/views/simplefle/syntax_help.php:28 #, php-format -msgctxt "uses 'this article'" msgid "" -"A full summary of all commands and the necessary syntax can be found in %s " -"of our Wiki." +"A full summary of all commands and the necessary syntax can be found in " +"%sthis article%s of our Wiki." msgstr "" -"Eine vollständige Zusammenfassung aller Kommandos und der notwendigen Syntax " -"findest du in %s unseres Wikis." +"Eine vollständige Zusammenfassung aller Befehle und der notwendigen Syntax " +"findest du in %sdiesem Artikel%s unseres Wikis." -#: application/views/station_profile/create.php:51 -#: application/views/station_profile/edit.php:40 +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 msgid "Location Name" msgstr "Name des Standorts" -#: application/views/station_profile/create.php:52 -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "Heimat-QTH" -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "Kurzbezeichnung für den Stationsstandort. Zum Beispiel: %s" -#: application/views/station_profile/create.php:59 -#: application/views/station_profile/edit.php:48 +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 msgid "Station callsign. For example: 4W7EST/P" -msgstr "Stationsrufzeichen. Zum Beispiel: HB9HIL/P" +msgstr "Stationsrufzeichen. Zum Beispiel: 4W7EST/P" -#: application/views/station_profile/create.php:63 -#: application/views/station_profile/edit.php:52 +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 msgid "Station Power (W)" msgstr "Sendeleistung der Station (W)" -#: application/views/station_profile/create.php:65 -#: application/views/station_profile/edit.php:54 +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" "Standardmässig eingestellte Sendeleistung in Watt. Wird von CAT-Daten " "überschrieben." -#: application/views/station_profile/create.php:68 -#: application/views/station_profile/edit.php:69 +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 msgid "Station DXCC" msgstr "Stations-DXCC" -#: application/views/station_profile/create.php:71 -#: application/views/station_profile/edit.php:72 +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 msgctxt "DXCC selection" msgid "None" msgstr "Nichts" -#: application/views/station_profile/create.php:78 -#: application/views/station_profile/edit.php:85 +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 msgid "Station DXCC entity. For example: Bolivia" msgstr "Stations DXCC-Entität. Zum Beispiel: Bolivien" -#: application/views/station_profile/create.php:83 -#: application/views/station_profile/edit.php:91 +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 msgid "Station City" msgstr "Station Stadt" -#: application/views/station_profile/create.php:85 -#: application/views/station_profile/edit.php:93 +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 msgid "Station city. For example: Oslo" msgstr "Stations Stadt. Zum Beispiel: Oslo" -#: application/views/station_profile/create.php:94 -#: application/views/station_profile/edit.php:105 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 msgid "Station state. Applies to certain countries only." msgstr "Stations Staat. Ist nur für ausgewählte Länder verfügbar." -#: application/views/station_profile/create.php:99 -#: application/views/station_profile/edit.php:110 +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 msgid "Station County" msgstr "Stations County" -#: application/views/station_profile/create.php:101 -#: application/views/station_profile/edit.php:112 +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "Station County (Nur für USA/Alaska/Hawaii)." -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/edit.php:138 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "Falls du deine CQ Zone nicht kennst %s um es herauszufinden!" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:138 -#: application/views/station_profile/edit.php:155 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 msgid "click here" msgstr "klicke hier" -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/edit.php:155 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "Falls du deine ITU-Zone nicht kennst %s um es herauszufinden!" -#: application/views/station_profile/create.php:135 -#: application/views/station_profile/edit.php:167 -#: application/views/station_profile/edit.php:170 +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 msgid "Station Gridsquare" msgstr "Planquadrat der Station" -#: application/views/station_profile/create.php:140 -#: application/views/station_profile/edit.php:175 +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 msgid "Get Gridsquare" msgstr "Orte mein Planquadrat" -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 #, php-format msgctxt "uses 'click here'" msgid "" @@ -9552,8 +10441,8 @@ msgstr "" "Stations Planquadrat. Zum Beispiel: HM45AP. Falls du deinen Locator nicht " "kennst %s!" -#: application/views/station_profile/create.php:145 -#: application/views/station_profile/edit.php:180 +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." @@ -9561,53 +10450,53 @@ msgstr "" "Wenn du genau auf der Linie eines Planquadrates bist kannst du mehrere " "Planquadrate mit Kommas getrennt eingeben. Zum Beispiel: IO77,IO78,IO87,IO88." -#: application/views/station_profile/create.php:160 -#: application/views/station_profile/edit.php:205 +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 msgid "Station IOTA reference. For example: EU-005" msgstr "IOTA Referenznummer der Station. Zum Beispiel: EU-005" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 msgid "IOTA World website" msgstr "IOTA World Webseite" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 #, php-format msgid "You can look up IOTA references at the %s." msgstr "Du kannst IOTA-Referenzen auf der %s nachschauen." -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 msgid "SOTA Maps website" msgstr "SOTA Karten Webseite" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" "Stations-SOTA-Referenz. Du kannst SOTA-Referenzen auf der %s nachschauen." -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 msgid "GMA Map website" msgstr "GMA-Kartenseite" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" "Stations-WWFF-Referenz. Du kannst WWFF Referenzen auf der %s nachschauen." -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 msgid "POTA Map website" msgstr "POTA-Karten-Webseite" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 #, php-format msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " @@ -9616,44 +10505,44 @@ msgstr "" "Stations-POTA-Referenzen. Es sind mehrere Referenzen durch Komma separiert " "erlaubt. Du kannst POTA Referenzen auf der %s nachschauen." -#: application/views/station_profile/create.php:183 -#: application/views/station_profile/edit.php:260 +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 msgid "Signature Name" msgstr "Signatur-Bezeichnung" -#: application/views/station_profile/create.php:185 -#: application/views/station_profile/edit.php:262 +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 msgid "Station Signature (e.g. GMA).." msgstr "Signatur/Referenz der Station (z.B. GMA).." -#: application/views/station_profile/create.php:189 -#: application/views/station_profile/edit.php:266 +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 msgid "Signature Information" msgstr "Signatur-Information" -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/edit.php:268 +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "Signatur/Referenz-Information der Station (z.B. DA/NW-357)." -#: application/views/station_profile/create.php:195 -#: application/views/station_profile/edit.php:281 +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "eQSL-QTH-Nickname" -#: application/views/station_profile/create.php:197 -#: application/views/station_profile/edit.php:283 +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "Der 'QTH-Nickname' wie er in deinem eQSL Profil konfiguriert ist" -#: application/views/station_profile/create.php:201 -#: application/views/station_profile/edit.php:286 +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 msgid "Default QSLMSG" msgstr "Standard-QSLMSG" -#: application/views/station_profile/create.php:204 -#: application/views/station_profile/edit.php:289 +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." @@ -9661,13 +10550,13 @@ msgstr "" "Definiere eine Standard-Nachricht, welche für jedes QSO in diesem " "Stationsstandort an eQSL übertragen wird." -#: application/views/station_profile/create.php:207 -#: application/views/station_profile/edit.php:328 +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 msgid "Ignore Clublog Upload" msgstr "Ignoriere Clublog-Upload" -#: application/views/station_profile/create.php:212 -#: application/views/station_profile/edit.php:333 +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " "Clublog. If this is deactivated on it's own please check if the Call is " @@ -9678,203 +10567,139 @@ msgstr "" "deaktiviert springt, bitte bei Clublog die Einstellungen für diesen Call " "überprüfen" -#: application/views/station_profile/create.php:215 -#: application/views/station_profile/edit.php:336 +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 msgid "ClubLog Realtime Upload" msgstr "Clublog-Echtzeit-Upload" -#: application/views/station_profile/create.php:224 -#: application/views/station_profile/edit.php:352 +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 msgid "HRDLog.net Username" msgstr "HRDLog.net Benutzername" -#: application/views/station_profile/create.php:226 -#: application/views/station_profile/edit.php:354 +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" "Der Benutzername mit dem du bei HRDlog.net registriert bist (normalerweise " "dein Rufzeichen)." -#: application/views/station_profile/create.php:229 -#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 msgid "HRDLog.net API Key" msgstr "HRDLog.net API-Schlüssel" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "Erstelle deinen API-Code auf deiner %s" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 msgid "HRDLog.net Userprofile page" msgstr "HRDlog.net Benutzerprofil-Seite" -#: application/views/station_profile/create.php:234 -#: application/views/station_profile/edit.php:362 +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 msgid "HRDLog.net Logbook Realtime Upload" msgstr "HRDLog.net Logbuch-Echtzeit-Upload" -#: application/views/station_profile/create.php:243 -#: application/views/station_profile/edit.php:297 +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 msgid "Subscription Required" msgstr "Abonnement erforderlich" -#: application/views/station_profile/create.php:248 +#: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "QRZ.com-Logbuch API-Schlüssel" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "Teste API-Schlüssel" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "Finde deinen API-Schlüssel auf %s" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 msgid "the QRZ.com Logbook settings page" msgstr "der QRZ.com Logbuch-Einstellungen Seite" -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/edit.php:310 +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 msgid "QRZ.com Logbook Upload" msgstr "QRZ.com Logbuch-Upload" -#: application/views/station_profile/create.php:260 -#: application/views/station_profile/edit.php:313 +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 msgid "Realtime" msgstr "Echtzeit" -#: application/views/station_profile/create.php:268 -#: application/views/station_profile/edit.php:378 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "QO-100 Dx Club API-Schlüssel" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "Erstelle deinen API-Schlüssel auf deiner %s" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 msgid "QO-100 Dx Club's profile page" msgstr "QO-100 Dx Club Profil-Seite" -#: application/views/station_profile/create.php:273 -#: application/views/station_profile/edit.php:383 +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 msgid "QO-100 Dx Club Realtime Upload" msgstr "QO-100 Dx Club Echtzeit-Upload" -#: application/views/station_profile/create.php:283 -#: application/views/station_profile/edit.php:401 +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 msgid "OQRS Enabled" msgstr "OQRS aktivieren" -#: application/views/station_profile/create.php:290 -#: application/views/station_profile/edit.php:408 +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 msgid "OQRS Email alert" msgstr "OQRS Email-Benachrichtigung" -#: application/views/station_profile/create.php:295 -#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 msgid "Make sure email is set up under admin and global options." msgstr "" "Stelle sicher, dass du E-Mail unter Admin/Globale Optionen konfiguriert hast." -#: application/views/station_profile/create.php:298 -#: application/views/station_profile/edit.php:416 +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 msgid "OQRS Text" msgstr "OQRS-Text" -#: application/views/station_profile/create.php:300 -#: application/views/station_profile/edit.php:418 +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 msgid "Some info you want to add regarding QSL'ing." msgstr "Einige Informationen, die du zum QSL-Vorgang hinzufügen möchtest." -#: application/views/station_profile/edit.php:122 +#: application/views/station_profile/edit.php:149 msgid "Zones" msgstr "Zonen" -#: application/views/station_profile/edit.php:257 +#: application/views/station_profile/edit.php:284 msgid "Signature" msgstr "Signaturen" -#: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:95 -msgid "" -"Station Locations define operating locations, such as your QTH, a friends " -"QTH, or a portable station." -msgstr "" -"Stationsstandorte definieren die Orte, von denen aus du QRV bist. Dein " -"Zuhause, Bei Freunden oder Unterwegs." - -#: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:96 -msgid "Similar to logbooks, a station profile keeps a set of QSOs together." -msgstr "" -"Ähnlich wie Logbücher trennen die Stationsstandorte die entsprechenden QSO " -"voneinander ab." - -#: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:97 -msgid "" -"Only one station may be active at a time. In the table below this is shown " -"with the -Active Station- badge." -msgstr "" -"Es kann immer nur ein Stationsstandort aktiv sein. Welches das aktuell ist " -"siehst du in der Liste an dem 'Aktive Station' Symbol." - -#: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:101 -msgid "Create a Station Location" -msgstr "Erstelle einen neuen Stationsstandort" - -#: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:105 -msgid "" -"Attention: You need to set an active station location. Go to Callsign-" -">Station Location to select one." -msgstr "" -"Achtung: Du musst einen aktiven Stationsstandort auswählen. Gehe zu " -"Rufzeichen -> Stationsstandorte um einen zu aktivieren." - -#: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:111 -msgid "" -"Due to recent changes within Wavelog you need to reassign QSOs to your " -"station profiles." -msgstr "" -"Aufgrund von Änderungen in Wavelog musst du QSOs wieder einem " -"Stationsstandort zuordnen." - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Maintenance" -msgstr "Wartung" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Please reassign them at " -msgstr "Bitte mache die Zuordnung in " - -#: application/views/station_profile/index.php:41 -#: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:122 -msgid "Profile Name" -msgstr "Station Name" - #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "Name des Stationslogbuchs" @@ -9922,6 +10747,11 @@ msgstr "Wähle verfügbare Stationsstandorte" msgid "Link Location" msgstr "Verknüpfe Standort" +#: application/views/stationsetup/linkedlocations.php:31 +#: application/views/stationsetup/stationsetup.php:122 +msgid "Profile Name" +msgstr "Station Name" + #: application/views/stationsetup/linkedlocations.php:34 msgid "Unlink Station Location" msgstr "Entferne Verknüpfung" @@ -9951,6 +10781,28 @@ msgstr "Besucherseite" msgid "Station Locations" msgstr "Stationsstandorte" +#: application/views/stationsetup/stationsetup.php:95 +msgid "" +"Station Locations define operating locations, such as your QTH, a friends " +"QTH, or a portable station." +msgstr "" +"Stationsstandorte definieren die Orte, von denen aus du QRV bist. Dein " +"Zuhause, Bei Freunden oder Unterwegs." + +#: application/views/stationsetup/stationsetup.php:96 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" +"Ähnlich wie Logbücher trennen die Stationsstandorte die entsprechenden QSO " +"voneinander ab." + +#: application/views/stationsetup/stationsetup.php:97 +msgid "" +"Only one station may be active at a time. In the table below this is shown " +"with the -Active Station- badge." +msgstr "" +"Es kann immer nur ein Stationsstandort aktiv sein. Welches das aktuell ist " +"siehst du in der Liste an dem 'Aktive Station' Symbol." + #: application/views/stationsetup/stationsetup.php:98 msgid "" "The 'Linked' column shows if the station location is linked with the Active " @@ -9959,6 +10811,34 @@ msgstr "" "Die Spalte 'verlinkt' zeigt an, ob der Standort mit dem aktiven Logbuch " "verknüpft wurde." +#: application/views/stationsetup/stationsetup.php:101 +msgid "Create a Station Location" +msgstr "Erstelle einen neuen Stationsstandort" + +#: application/views/stationsetup/stationsetup.php:105 +msgid "" +"Attention: You need to set an active station location. Go to Callsign-" +">Station Location to select one." +msgstr "" +"Achtung: Du musst einen aktiven Stationsstandort auswählen. Gehe zu " +"Rufzeichen -> Stationsstandorte um einen zu aktivieren." + +#: application/views/stationsetup/stationsetup.php:111 +msgid "" +"Due to recent changes within Wavelog you need to reassign QSOs to your " +"station profiles." +msgstr "" +"Aufgrund von Änderungen in Wavelog musst du QSOs wieder einem " +"Stationsstandort zuordnen." + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Maintenance" +msgstr "Wartung" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Please reassign them at " +msgstr "Bitte mache die Zuordnung in " + #: application/views/stationsetup/stationsetup.php:127 msgid "Linked" msgstr "Verlinkt" @@ -10199,12 +11079,13 @@ msgid "4. Step" msgstr "4. Schritt" #: application/views/themes/index.php:73 +#, php-format msgid "" "Click here on 'Add a Theme' and type in the necessary data. Type in the " -"filenames for the logos without the file extension '.png'" +"filenames for the logos %swithout%s the file extension '.png'" msgstr "" -"Klicke hier auf 'Theme hinzufügen' und gib die notwendigen Informationen an. " -"Gib die Dateinamen für die Logos OHNE die Dateiendung '.png' an" +"Klicke hier auf 'Theme hinzufügen' und gib die notwendigen Daten ein. Gib " +"die Dateinamen für die Logos %sohne%s die Dateierweiterung '.png' ein" #: application/views/themes/index.php:83 msgid "Foldername" @@ -10271,6 +11152,10 @@ msgstr "Überprüft auf neue DXCC-Daten" msgid "Update DXCC Data" msgstr "DXCC-Daten aktualisieren" +#: application/views/update/index.php:30 +msgid "Status:" +msgstr "Status:" + #: application/views/update/index.php:34 msgid "Apply DXCC Data to Logbook" msgstr "DXCC-Daten auf das Logbuch anwenden" @@ -10290,19 +11175,19 @@ msgstr "" "und auch bestehende DXCC aktualisiert werden sollen, falls sich etwas " "geändert hat." -#: application/views/update/index.php:40 +#: application/views/update/index.php:45 msgid "Check QSOs missing DXCC data" msgstr "Überprüft QSOs auf fehlende DXCC-Daten" -#: application/views/update/index.php:42 +#: application/views/update/index.php:54 application/views/update/index.php:95 msgid "Re-check all QSOs in logbook" msgstr "Alle QSOs in Logbuch nochmal überprüfen" -#: application/views/update/index.php:45 +#: application/views/update/index.php:59 msgid "Apply Continent Data to Logbook" msgstr "Kontinent-Daten auf Logbuch anwenden" -#: application/views/update/index.php:47 +#: application/views/update/index.php:61 msgid "" "This function can be used to update QSO continent information for all QSOs " "in Wavelog missing that information." @@ -10310,19 +11195,29 @@ msgstr "" "Diese Funktion kann verwendet werden, um QSO-Kontinent-Informationen bei " "allen QSOs in Wavelog zu aktualisieren, bei denen diese Informationen fehlen." -#: application/views/update/index.php:49 +#: application/views/update/index.php:68 msgid "Check QSOs missing continent data" msgstr "Überprüft QSOs auf fehlende Kontinent-Daten" -#: application/views/update/index.php:59 +#: application/views/update/index.php:80 msgid "Here you can update QSOs with missing distance information." msgstr "" "Hier kannst du QSOs mit fehlenden Entfernungsinformationen aktualisieren." -#: application/views/update/index.php:60 +#: application/views/update/index.php:86 msgid "Update distance data" msgstr "Entfernungsdaten aktualisieren" +#: application/views/update/index.php:89 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" +"Verwende die folgende Schaltfläche, um die Entfernungsinformationen für alle " +"deine QSOs zu aktualisieren. Je nach Anzahl der QSOs kann dies einige Zeit " +"in Anspruch nehmen. Bitte habe etwas Geduld." + #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "Benutzerkonto löschen" @@ -10352,13 +11247,13 @@ msgid "General Information" msgstr "Generelle Informationen" #: application/views/user/edit.php:52 application/views/user/login.php:58 -#: application/views/user/login.php:67 application/views/user/login.php:68 +#: application/views/user/login.php:69 application/views/user/login.php:70 #: application/views/user/profile.php:14 msgid "Username" msgstr "Benutzername" #: application/views/user/edit.php:64 application/views/user/login.php:59 -#: application/views/user/login.php:71 application/views/user/login.php:72 +#: application/views/user/login.php:73 application/views/user/login.php:74 #: application/views/user/reset_password.php:21 #: application/views/user/reset_password.php:23 #: application/views/user/reset_password.php:30 @@ -10401,10 +11296,6 @@ msgstr "Wavelog-Sprache" msgid "Choose Wavelog language." msgstr "Wähle eine Sprache für Wavelog." -#: application/views/user/edit.php:179 -msgid "Timezone" -msgstr "Zeitzone" - #: application/views/user/edit.php:187 msgid "Date Format" msgstr "Datumsformat" @@ -10760,6 +11651,134 @@ msgstr "Passwort vergessen?" msgid "You can reset your password here." msgstr "Du kannst dein Passwort hier zurücksetzen." +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" +"Willst du wirklich diesem Benutzer eine E-Mail zum Passwort-Reset senden?" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "Bitte warten..." + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "Password-Reset E-Mail an diesen Benutzer gesendet:" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "Benutzerliste" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "" +"Es muss mindestens ein Benutzer konfiguriert sein, damit Wavelog " +"funktioniert." + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" +"Benutzer können verschiedene Rollen zugewiesen bekommen, die ihnen " +"unterschiedliche Rechte geben wie QSOs zum Logbuch hinzuzufügen und die APIs " +"von Wavelog zu benutzen." + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" +"Der aktuell angemeldete Benutzer wird oben rechts auf jeder Seite angezeigt." + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" +"Mit dem Passwort-Reset-Knopf kannst du dem Benutzer eine E-Mail mit einem " +"Passwort-Reset-Link zuschicken. Dafür müssen die E-Mail Einstellungen in den " +"globalen Optionen korrekt eingerichtet sein." + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "Benutzer anlegen" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "Aktualisiere Liste" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "Typ" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "Zuletzt gesehen" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "Passwort zurücksetzen" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "Imitieren" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "Nie" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "Standorte" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "Logbücher" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "Letztes QSO:" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "Keine QSOs im Log" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "Benutzer imitieren" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" +"Du bist dabei, einen anderen Benutzer zu imitieren. Um zu deinem Admin-Konto " +"zurückzukehren, musst du dich abmelden und erneut als Admin anmelden." + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "Möchtest du diesen Benutzer imitieren?" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "Benutzername:" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "Name:" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "Rufzeichen:" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "E-Mail:" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "Zuletzt gesehen:" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "WARTUNGSMODUS" @@ -10774,107 +11793,17 @@ msgstr "Diese Demo wird jede Nacht um 0200z zurückgesetzt." #: application/views/user/login.php:60 #, php-format -msgid "" -"More Information about Wavelog on Github." -msgstr "" -"Mehr Informationen über Wavelog auf Github." +msgid "More Information about Wavelog on %sGithub%s." +msgstr "Mehr Informationen über Wavelog auf %sGithub%s." -#: application/views/user/login.php:77 +#: application/views/user/login.php:79 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: application/views/user/login.php:83 +#: application/views/user/login.php:85 msgid "Keep me logged in" msgstr "Angemeldet bleiben" -#: application/views/user/main.php:2 -msgid "Do you really want to send this user a password-reset link?" -msgstr "" -"Willst du wirklich diesem Benutzer eine E-Mail zum Passwort-Reset senden?" - -#: application/views/user/main.php:6 -msgid "Please Wait ..." -msgstr "Bitte warten..." - -#: application/views/user/main.php:9 -msgid "Password-reset e-mail sent to user:" -msgstr "Password-Reset E-Mail an diesen Benutzer gesendet:" - -#: application/views/user/main.php:30 -msgid "User List" -msgstr "Benutzerliste" - -#: application/views/user/main.php:33 -msgid "Wavelog needs at least one user configured in order to operate." -msgstr "" -"Es muss mindestens ein Benutzer konfiguriert sein, damit Wavelog " -"funktioniert." - -#: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" -"Benutzer können verschiedene Rollen zugewiesen bekommen, die ihnen " -"unterschiedliche Rechte geben wie QSOs zum Logbuch hinzuzufügen und die APIs " -"von Wavelog zu benutzen." - -#: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "" -"Der aktuell angemeldete Benutzer wird oben rechts auf jeder Seite angezeigt." - -#: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." -msgstr "" -"Mit dem Passwort-Reset-Knopf kannst du dem Benutzer eine E-Mail mit einem " -"Passwort-Reset-Link zuschicken. Dafür müssen die E-Mail Einstellungen in den " -"globalen Optionen korrekt eingerichtet sein." - -#: application/views/user/main.php:38 -msgid "Create user" -msgstr "Benutzer anlegen" - -#: application/views/user/main.php:39 -msgid "Refresh List" -msgstr "Aktualisiere Liste" - -#: application/views/user/main.php:49 -msgid "Type" -msgstr "Typ" - -#: application/views/user/main.php:50 -msgid "Last seen" -msgstr "Zuletzt gesehen" - -#: application/views/user/main.php:53 -msgid "Password Reset" -msgstr "Passwort zurücksetzen" - -#: application/views/user/main.php:79 -msgid "Never" -msgstr "Nie" - -#: application/views/user/main.php:83 -msgid "Locations" -msgstr "Standorte" - -#: application/views/user/main.php:85 -msgid "Logbooks" -msgstr "Logbücher" - -#: application/views/user/main.php:87 -msgid "Last QSO:" -msgstr "Letztes QSO:" - -#: application/views/user/main.php:89 -msgid "No QSOs in Log" -msgstr "Keine QSOs im Log" - #: application/views/user/profile.php:19 msgid "Level" msgstr "Benutzerrolle" @@ -10929,118 +11858,118 @@ msgstr "QSO Details" msgid "QSL Management" msgstr "QSL Verwaltung" -#: application/views/view_log/qso.php:128 +#: application/views/view_log/qso.php:131 msgid "Total Distance" msgstr "Entfernung" -#: application/views/view_log/qso.php:221 +#: application/views/view_log/qso.php:224 msgid "Antenna Azimuth" msgstr "Antennenazimut" -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:231 msgid "Antenna Elevation" msgstr "Antennenelevation" -#: application/views/view_log/qso.php:370 +#: application/views/view_log/qso.php:373 msgid "QSL Card has been sent via the bureau" msgstr "QSL-Karte wurde via Büro gesendet" -#: application/views/view_log/qso.php:372 +#: application/views/view_log/qso.php:375 msgid "QSL Card has been sent via direct" msgstr "QSL-Karte wurde direkt gesendet" -#: application/views/view_log/qso.php:374 +#: application/views/view_log/qso.php:377 msgid "QSL Card has been sent electronically" msgstr "QSL-Karte wurde elektronisch gesendet" -#: application/views/view_log/qso.php:376 +#: application/views/view_log/qso.php:379 msgid "QSL Card has been sent via manager" msgstr "QSL-Karte wurde via Manager gesendet" -#: application/views/view_log/qso.php:378 +#: application/views/view_log/qso.php:381 msgid "QSL Card has been sent" msgstr "QSL-Karte wurde gesendet" -#: application/views/view_log/qso.php:387 +#: application/views/view_log/qso.php:390 msgid "QSL Card has been received via the bureau" msgstr "QSL-Karte wurde via Büro empfangen" -#: application/views/view_log/qso.php:389 +#: application/views/view_log/qso.php:392 msgid "QSL Card has been received via direct" msgstr "QSL-Karte wurde direkt empfangen" -#: application/views/view_log/qso.php:391 +#: application/views/view_log/qso.php:394 msgid "QSL Card has been received electronically" msgstr "QSL-Karte wurde elektronisch empfangen" -#: application/views/view_log/qso.php:393 +#: application/views/view_log/qso.php:396 msgid "QSL Card has been received via manager" msgstr "QSL-Karte wurde via Manager empfangen" -#: application/views/view_log/qso.php:395 +#: application/views/view_log/qso.php:398 msgid "QSL Card has been received" msgstr "QSL-Karte wurde empfangen" -#: application/views/view_log/qso.php:404 +#: application/views/view_log/qso.php:407 msgid "This station uses LoTW." msgstr "Diese Station nutzt LoTW." -#: application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:414 -#: application/views/view_log/qso.php:419 -#: application/views/view_log/qso.php:424 +#: application/views/view_log/qso.php:412 +#: application/views/view_log/qso.php:417 +#: application/views/view_log/qso.php:422 +#: application/views/view_log/qso.php:427 msgid "This QSO was confirmed on" msgstr "Dieses QSO wurde bestätigt am" -#: application/views/view_log/qso.php:435 +#: application/views/view_log/qso.php:438 msgid "More QSOs" msgstr "Mehr QSOs" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:506 msgid "Details" msgstr "Details" -#: application/views/view_log/qso.php:630 +#: application/views/view_log/qso.php:633 msgid "Uploaded QSL Card front image" msgstr "QSL-Kartenfront hochgeladen" -#: application/views/view_log/qso.php:635 +#: application/views/view_log/qso.php:638 msgid "Upload QSL Card image" msgstr "Bild der QSL-Karte hochladen" -#: application/views/view_log/qso.php:640 +#: application/views/view_log/qso.php:643 msgid "Uploaded QSL Card back image" msgstr "QSL-Kartenrückseite hochgeladen" -#: application/views/view_log/qso.php:656 +#: application/views/view_log/qso.php:659 msgid "Mark QSL Received (Electronic)" msgstr "Markiere QSL erhalten (Elektronisch)" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:665 msgid "Mark QSL Card Requested (Bureau)" msgstr "Markiere QSL-Karte als angefragt (Büro)" -#: application/views/view_log/qso.php:664 +#: application/views/view_log/qso.php:667 msgid "Mark QSL Card Requested (Direct)" msgstr "Markiere QSL-Karte als angefragt (Direkt)" -#: application/views/view_log/qso.php:679 +#: application/views/view_log/qso.php:682 msgid "eQSL picture" msgstr "eQSL Bild" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:242 msgid "CSV" msgstr "CSV" -#: application/views/visitor/layout/header.php:75 +#: application/views/visitor/layout/header.php:74 msgid "OQRS" msgstr "OQRS" -#: application/views/visitor/layout/header.php:83 +#: application/views/visitor/layout/header.php:82 msgid "Visit Wavelog on Github" msgstr "Besuche Wavelog auf Github" -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Please enter a callsign!" msgstr "Bitte gib ein Rufzeichen ein!" @@ -11057,7 +11986,7 @@ msgid "" "You need to set a QO-100 Dx Club API key in your station profile. Only " "station profiles with an API Key are displayed." msgstr "" -"Du musst einen QO-100 Dx Club API Schlüssel in deinem Stationsprofil " +"Du musst einen QO-100 Dx Club API Schlüssel in deinem Stationsstandort " "konfigurieren. Nur Profile mit einem API Schlüssel werden angezeigt." #: application/views/webadif/export.php:63 @@ -11143,6 +12072,125 @@ msgstr "Dein Rufzeichen:" msgid "Submit Request" msgstr "Anfrage senden" +#~ msgid "Antarctiva" +#~ msgstr "Antarktis" + +#~ msgid "Distance Records" +#~ msgstr "Entfernungsrekorde" + +#, php-format +#~ msgid "%s = Serial, %s = Gridsquare, %s = Exchange." +#~ msgstr "%s = Laufende Nummer, %s = Planquadrat, %s = Austausch." + +#~ msgid "Key Disabled" +#~ msgstr "Schlüssel deaktiviert" + +#~ msgid "No Key Found" +#~ msgstr "Kein Schlüssel gefunden" + +#~ msgid "Key Invalid - either not found or disabled" +#~ msgstr "Schlüssel ungültig – entweder nicht gefunden oder deaktiviert" + +#, php-format +#~ msgctxt "Dashboard Warning" +#~ msgid "You need to update country files! Click %s to do it." +#~ msgstr "" +#~ "Du musst die Länderdaten aktualisieren! Klicke auf %s, um dies zu tun." + +#, php-format +#~ msgctxt "Dashboard Warning" +#~ msgid "You have no station locations. Click %s to do it:" +#~ msgstr "Du hast keine Stationsstandorte. Klicke %s um dies zu tun:" + +#, php-format +#~ msgctxt "Dashboard Warning" +#~ msgid "You have no station logbook. Click %s to do it:" +#~ msgstr "Du hast kein Stations-Logbuch. Klicke %s um dies zu tun:" + +#~ msgid "Status Master-Cron" +#~ msgstr "Status Master-Cron" + +#~ msgid "Winkey Macros" +#~ msgstr "Winkey Macros" + +#~ msgid "User logged in" +#~ msgstr "Benutzer eingeloggt" + +#, php-format +#~ msgid "You're not logged it. Please %slogin%s" +#~ msgstr "Du bist nicht eingeloggt. Bitte %slogge dich ein%s" + +#~ msgid "" +#~ "If selected, Wavelog will try to import all QSO's of the ADIF, " +#~ "regardless if they match to the chosen station-location." +#~ msgstr "" +#~ "Wenn diese Option ausgewählt ist, wird Wavelog versuchen alle QSOs " +#~ "hochzuladen, unabhängig davon, ob sie mit dem aktiven Stationsstandort " +#~ "zusammenpassen." + +#, php-format +#~ msgid "" +#~ "Check this wiki article here for " +#~ "more information." +#~ msgstr "" +#~ "Schau dir diesen Wiki-Artikel hier an um mehr Informationen zu erhalten." + +#~ msgid "contacts were plotted.
Your furthest contact was with" +#~ msgstr "Kontakte wurden dargestellt.
Der weiteste Kontakt war" + +#, php-format +#~ msgid "You're not logged it. Please login" +#~ msgstr "Du bist nicht eingeloggt. Bitte logge dich ein" + +#, php-format +#~ msgid "" +#~ "If you did operate from a new location, first create a new Station Location" +#~ msgstr "" +#~ "Falls du von einem neuen Standort gefunkt hast, erstelle erst einen neuen " +#~ "Stationsstandort" + +#~ msgid "" +#~ "The Refs can be either SOTA, IOTA, POTA or WWFF" +#~ msgstr "" +#~ "Die Ref. kann entweder SOTA, IOTA, POTA oder WWFF sein" + +#, php-format +#~ msgid "" +#~ "A full summary of all commands and the necessary syntax can be found in " +#~ "this article of our Wiki." +#~ msgstr "" +#~ "Eine vollständige Zusammenfassung aller Befehle und der notwendigen " +#~ "Syntax findest du in diesem Artikel " +#~ "unseres Wikis." + +#~ msgid "" +#~ "Click here on 'Add a Theme' and type in the necessary data. Type in the " +#~ "filenames for the logos without the file extension '.png'" +#~ msgstr "" +#~ "Klicke hier auf 'Theme hinzufügen' und gib die notwendigen Informationen " +#~ "an. Gib die Dateinamen für die Logos OHNE die Dateiendung '.png' " +#~ "an" + +#, php-format +#~ msgid "" +#~ "More Information about Wavelog on Github." +#~ msgstr "" +#~ "Mehr Informationen über Wavelog auf Github." + +#, php-format +#~ msgctxt "uses 'this article'" +#~ msgid "" +#~ "A full summary of all commands and the necessary syntax can be found in " +#~ "%s of our Wiki." +#~ msgstr "" +#~ "Eine vollständige Zusammenfassung aller Kommandos und der notwendigen " +#~ "Syntax findest du in %s unseres Wikis." + #, php-format #~ msgid "" #~ "The current migration is not the version it is supposed to be. Reload " diff --git a/application/locale/el_GR/LC_MESSAGES/messages.mo b/application/locale/el_GR/LC_MESSAGES/messages.mo index a7f65c07a..1d03448b6 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 d68cbe24a..7345cce3f 100644 --- a/application/locale/el_GR/LC_MESSAGES/messages.po +++ b/application/locale/el_GR/LC_MESSAGES/messages.po @@ -3,12 +3,13 @@ # This file is distributed under the MIT licence. # # Fabian Berg , 2024. +# Fabian Berg , 2024. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-09 07:24+0000\n" -"PO-Revision-Date: 2024-07-09 13:25+0000\n" -"Last-Translator: Fabian Berg \n" +"POT-Creation-Date: 2024-09-07 07:18+0000\n" +"PO-Revision-Date: 2024-08-17 10:47+0000\n" +"Last-Translator: Fabian Berg \n" "Language-Team: Greek \n" "Language: el_GR\n" @@ -16,10 +17,104 @@ 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.6\n" +"X-Generator: Weblate 5.6.2\n" -#: application/controllers/Accumulated.php:21 -#: application/views/interface_assets/header.php:150 +#: application/controllers/Accumulated.php:12 +#: application/controllers/Activators.php:13 +#: application/controllers/Activatorsmap.php:13 +#: application/controllers/Adif.php:13 application/controllers/Awards.php:16 +#: application/controllers/Backup.php:13 application/controllers/Backup.php:26 +#: application/controllers/Backup.php:63 application/controllers/Band.php:15 +#: application/controllers/Bandmap.php:9 +#: application/controllers/Cabrillo.php:16 +#: application/controllers/Cabrillo.php:53 +#: application/controllers/Cabrillo.php:80 +#: application/controllers/Cabrillo.php:135 +#: application/controllers/Calltester.php:11 +#: application/controllers/Cfdexport.php:18 +#: application/controllers/Cfdexport.php:29 +#: application/controllers/Components.php:13 +#: application/controllers/Contestcalendar.php:15 +#: application/controllers/Contesting.php:14 +#: application/controllers/Cron.php:26 application/controllers/Cron.php:162 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: application/controllers/Distancerecords.php:11 +#: application/controllers/Distances.php:11 +#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29 +#: application/controllers/Dxatlas.php:51 +#: application/controllers/Dxatlas.php:108 +#: application/controllers/Dxcalendar.php:8 +#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23 +#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 +#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 +#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:353 +#: application/controllers/Eqsl.php:420 application/controllers/Eqsl.php:436 +#: application/controllers/Eqsl.php:497 application/controllers/Hamsat.php:13 +#: application/controllers/Kmlexport.php:18 +#: application/controllers/Kmlexport.php:33 +#: application/controllers/Labels.php:26 +#: application/controllers/Logbookadvanced.php:16 +#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 +#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 +#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 +#: application/controllers/Notes.php:10 application/controllers/Options.php:15 +#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 +#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 +#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 +#: application/controllers/Qso.php:9 application/controllers/Qso.php:19 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:600 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Reg1test.php:18 +#: application/controllers/Reg1test.php:63 +#: application/controllers/Reg1test.php:102 +#: application/controllers/Reg1test.php:130 +#: application/controllers/Reg1test.php:164 +#: application/controllers/Satellite.php:18 +#: application/controllers/Satellite.php:37 +#: application/controllers/Satellite.php:44 +#: application/controllers/Satellite.php:53 +#: application/controllers/Satellite.php:72 +#: application/controllers/Satellite.php:87 +#: application/controllers/Satellite.php:95 +#: application/controllers/Satellite.php:103 +#: application/controllers/Satellite.php:117 +#: application/controllers/Satellite.php:135 +#: application/controllers/Satellite.php:146 +#: application/controllers/Satellite.php:162 +#: application/controllers/Satellite.php:190 +#: application/controllers/Satellite.php:201 +#: application/controllers/Satellite.php:223 +#: application/controllers/Satellite.php:236 +#: application/controllers/Satellite.php:244 +#: application/controllers/Sattimers.php:9 +#: application/controllers/Search.php:13 +#: application/controllers/Simplefle.php:7 +#: application/controllers/Station.php:17 +#: application/controllers/Stationsetup.php:15 +#: application/controllers/Themes.php:17 +#: application/controllers/Timeline.php:10 +#: application/controllers/Timeplotter.php:11 +#: application/controllers/Update.php:24 application/controllers/Update.php:273 +#: application/controllers/Update.php:284 +#: application/controllers/Update.php:295 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 +#: application/controllers/User_options.php:9 +msgid "You're not allowed to do that!" +msgstr "" + +#: application/controllers/Accumulated.php:19 +#: application/views/interface_assets/header.php:152 msgid "Accumulated Statistics" msgstr "Συσσωρευμένα Στατιστικά" @@ -29,24 +124,26 @@ msgid "Activated Gridsquare Map" msgstr "" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:910 -#: application/controllers/Awards.php:942 +#: application/controllers/Awards.php:919 +#: application/controllers/Awards.php:951 #: application/controllers/Gridmap.php:31 -#: application/controllers/Visitor.php:374 -#: application/views/activators/index.php:101 +#: application/controllers/Visitor.php:385 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: application/views/visitor/layout/footer.php:22 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "" #: application/controllers/Activated_gridmap.php:32 #: application/controllers/Gridmap.php:32 -#: application/controllers/Visitor.php:375 +#: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "" #: application/controllers/Activated_gridmap.php:33 #: application/controllers/Gridmap.php:33 -#: application/controllers/Visitor.php:376 +#: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "" @@ -55,12 +152,13 @@ msgid "Total gridsquares activated" msgstr "" #: application/controllers/Activators.php:20 -#: application/views/activators/index.php:2 +#: application/views/activators/index.php:5 #: application/views/interface_assets/header.php:142 msgid "Gridsquare Activators" msgstr "" #: application/controllers/Activatorsmap.php:17 +#: application/views/activators/index.php:2 msgid "Activators Map" msgstr "" @@ -77,7 +175,7 @@ msgid "ADIF Export" msgstr "" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:388 msgid "ADIF Import / Export" msgstr "" @@ -90,20 +188,25 @@ msgstr "" msgid "Unsupported Filetype" msgstr "" -#: application/controllers/Adif.php:245 +#: application/controllers/Adif.php:240 +#: application/views/adif/import_failed.php:12 +msgid "ADIF Import failed!" +msgstr "" + +#: application/controllers/Adif.php:254 msgid "Station Profile not valid for User" msgstr "" -#: application/controllers/Adif.php:252 +#: application/controllers/Adif.php:261 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "" -#: application/controllers/Adif.php:263 +#: application/controllers/Adif.php:272 msgid "DCL Import" msgstr "" -#: application/controllers/Adif.php:319 +#: application/controllers/Adif.php:328 msgid "DCL Data Imported" msgstr "" @@ -133,25 +236,8 @@ msgstr "" msgid "API Key %s has been deleted" msgstr "" -#: application/controllers/Api.php:118 -msgid "Key Disabled" -msgstr "" - -#: application/controllers/Api.php:118 -msgid "No Key Found" -msgstr "" - -#: application/controllers/Api.php:120 -msgid "Key Invalid - either not found or disabled" -msgstr "" - -#: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 -msgid "Valid" -msgstr "Εγκυρος" - #: application/controllers/Awards.php:22 -#: application/views/interface_assets/header.php:158 +#: application/views/interface_assets/header.php:160 #: application/views/qso/edit_ajax.php:35 msgid "Awards" msgstr "" @@ -166,12 +252,13 @@ msgstr "" #: application/controllers/Awards.php:652 #: application/controllers/Awards.php:714 #: application/controllers/Awards.php:776 -#: application/controllers/Awards.php:847 -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:930 -#: application/controllers/Awards.php:1125 -#: application/controllers/Awards.php:1615 -#: application/controllers/Awards.php:1755 +#: application/controllers/Awards.php:856 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:939 +#: application/controllers/Awards.php:1140 +#: application/controllers/Awards.php:1639 +#: application/controllers/Awards.php:1779 +#: application/controllers/Awards.php:1908 #, php-format msgid "Awards - %s" msgstr "" @@ -179,13 +266,13 @@ msgstr "" #: application/controllers/Awards.php:92 #: application/views/awards/dok/index.php:149 #: application/views/bands/index.php:47 -#: application/views/contesting/index.php:170 -#: application/views/interface_assets/header.php:194 -#: application/views/logbookadvanced/index.php:613 +#: application/views/contesting/index.php:53 +#: application/views/interface_assets/header.php:198 +#: application/views/logbookadvanced/index.php:641 #: application/views/logbookadvanced/useroptions.php:130 -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:264 -#: application/views/qso/index.php:508 application/views/user/edit.php:603 -#: application/views/view_log/qso.php:351 +#: application/views/qso/edit_ajax.php:388 application/views/qso/index.php:264 +#: application/views/qso/index.php:518 application/views/user/edit.php:603 +#: application/views/view_log/qso.php:354 msgid "DOK" msgstr "" @@ -193,15 +280,15 @@ msgstr "" #: application/views/bandmap/list.php:112 application/views/bands/index.php:48 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 -#: application/views/interface_assets/header.php:164 +#: application/views/interface_assets/header.php:166 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:145 -#: application/views/logbookadvanced/index.php:580 +#: application/views/logbookadvanced/index.php:156 +#: application/views/logbookadvanced/index.php:608 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 -#: application/views/lotw_views/index.php:40 +#: application/views/lotw_views/index.php:36 #: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 #: application/views/search/cqzones_result.php:15 #: application/views/search/result.php:27 @@ -216,12 +303,12 @@ msgid "Awards - WAJA" msgstr "" #: application/controllers/Awards.php:327 application/views/bands/index.php:51 -#: application/views/interface_assets/header.php:210 +#: application/views/interface_assets/header.php:214 msgid "JCC" msgstr "" #: application/controllers/Awards.php:375 application/views/bands/index.php:57 -#: application/views/interface_assets/header.php:170 +#: application/views/interface_assets/header.php:172 msgid "VUCC" msgstr "" @@ -230,15 +317,20 @@ msgid "Log View - VUCC" msgstr "" #: application/controllers/Awards.php:453 -#: application/controllers/Timeline.php:92 -#: application/controllers/Timeline.php:95 -#: application/controllers/Timeline.php:98 -#: application/controllers/Timeline.php:101 -#: application/controllers/Timeline.php:104 -#: application/controllers/Timeline.php:107 +#: application/controllers/Distancerecords.php:59 +#: application/controllers/Timeline.php:105 +#: application/controllers/Timeline.php:108 +#: application/controllers/Timeline.php:111 +#: application/controllers/Timeline.php:114 +#: application/controllers/Timeline.php:117 +#: application/controllers/Timeline.php:120 msgid "Log View" msgstr "" +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr "" + #: application/controllers/Awards.php:457 msgid " and sat " msgstr "" @@ -260,12 +352,12 @@ msgid " and " msgstr "" #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1289 #: application/views/awards/index.php:8 application/views/bands/index.php:55 #: application/views/dashboard/index.php:9 -#: application/views/interface_assets/header.php:178 -#: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:259 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -273,10 +365,10 @@ msgstr "" #: application/views/qslcard/searchresult.php:49 #: application/views/qslcard/searchresult.php:65 #: application/views/qslcard/searchresult.php:81 -#: application/views/qso/components/previous_contacts.php:83 -#: application/views/qso/edit_ajax.php:336 +#: application/views/qso/components/previous_contacts.php:82 +#: application/views/qso/edit_ajax.php:363 #: application/views/search/search_result_ajax.php:9 -#: application/views/station_profile/edit.php:216 +#: application/views/station_profile/edit.php:243 #: application/views/user/edit.php:234 application/views/user/edit.php:256 #: application/views/user/edit.php:278 application/views/user/edit.php:300 #: application/views/user/edit.php:323 @@ -286,18 +378,18 @@ msgid "SOTA" msgstr "" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1290 #: application/views/bands/index.php:60 #: application/views/dashboard/index.php:10 -#: application/views/interface_assets/header.php:172 -#: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:279 +#: application/views/interface_assets/header.php:176 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/index.php:290 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 -#: application/views/qso/components/previous_contacts.php:84 -#: application/views/qso/edit_ajax.php:341 +#: application/views/qso/components/previous_contacts.php:83 +#: application/views/qso/edit_ajax.php:368 #: application/views/search/search_result_ajax.php:10 -#: application/views/station_profile/edit.php:229 +#: application/views/station_profile/edit.php:256 #: application/views/user/edit.php:235 application/views/user/edit.php:257 #: application/views/user/edit.php:279 application/views/user/edit.php:301 #: application/views/user/edit.php:324 @@ -306,18 +398,18 @@ msgid "WWFF" msgstr "" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1291 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 -#: application/views/interface_assets/header.php:182 +#: application/views/interface_assets/header.php:186 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:274 +#: application/views/logbookadvanced/index.php:623 #: application/views/logbookadvanced/useroptions.php:106 -#: application/views/qso/components/previous_contacts.php:85 -#: application/views/qso/edit_ajax.php:346 +#: application/views/qso/components/previous_contacts.php:84 +#: application/views/qso/edit_ajax.php:373 #: application/views/search/search_result_ajax.php:11 -#: application/views/station_profile/edit.php:242 +#: application/views/station_profile/edit.php:269 #: application/views/user/edit.php:236 application/views/user/edit.php:258 #: application/views/user/edit.php:280 application/views/user/edit.php:302 #: application/views/user/edit.php:325 @@ -336,7 +428,7 @@ msgid "Worked All States (WAS)" msgstr "" #: application/controllers/Awards.php:714 application/views/bands/index.php:53 -#: application/views/interface_assets/header.php:188 +#: application/views/interface_assets/header.php:192 msgid "RAC" msgstr "" @@ -344,74 +436,80 @@ msgstr "" msgid "H26" msgstr "" -#: application/controllers/Awards.php:847 +#: application/controllers/Awards.php:856 msgid "IOTA (Island On The Air)" msgstr "" -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:872 -#: application/views/interface_assets/header.php:230 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 +#: application/views/interface_assets/header.php:234 msgid "US Counties" msgstr "" -#: application/controllers/Awards.php:887 +#: application/controllers/Awards.php:896 msgid "Log View - Counties" msgstr "" -#: application/controllers/Awards.php:894 +#: application/controllers/Awards.php:903 msgid "Awards - " msgstr "" -#: application/controllers/Awards.php:911 -#: application/controllers/Awards.php:943 +#: application/controllers/Awards.php:920 +#: application/controllers/Awards.php:952 msgid "Gridsquares worked" msgstr "" -#: application/controllers/Awards.php:912 -#: application/controllers/Awards.php:944 +#: application/controllers/Awards.php:921 +#: application/controllers/Awards.php:953 msgid "Gridsquares confirmed on LoTW" msgstr "" -#: application/controllers/Awards.php:913 -#: application/controllers/Awards.php:945 +#: application/controllers/Awards.php:922 +#: application/controllers/Awards.php:954 msgid "Gridsquares confirmed by paper QSL" msgstr "" -#: application/controllers/Awards.php:930 +#: application/controllers/Awards.php:939 msgid "Fred Fish Memorial Award (FFMA)" msgstr "" -#: application/controllers/Awards.php:1125 -#: application/views/interface_assets/header.php:168 +#: application/controllers/Awards.php:1140 +#: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "" -#: application/controllers/Awards.php:1143 +#: application/controllers/Awards.php:1158 msgid "Awards - SIG - " msgstr "" -#: application/controllers/Awards.php:1755 -#: application/views/awards/itu/index.php:18 +#: application/controllers/Awards.php:1779 +#: application/views/awards/itu/index.php:20 msgid "ITU Zones" msgstr "" +#: application/controllers/Awards.php:1908 +#: application/views/awards/wac/index.php:8 +#: application/views/interface_assets/header.php:174 +msgid "Worked All Continents (WAC)" +msgstr "" + #: application/controllers/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:284 msgid "Backup" msgstr "" -#: application/controllers/Backup.php:48 +#: application/controllers/Backup.php:50 msgid "ADIF - Backup" msgstr "" -#: application/controllers/Backup.php:80 +#: application/controllers/Backup.php:84 msgid "Notes - Backup" msgstr "" #: application/controllers/Band.php:25 application/views/bands/index.php:28 #: application/views/bands/index.php:32 -#: application/views/interface_assets/header.php:379 +#: application/views/interface_assets/header.php:383 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -427,8 +525,8 @@ msgstr "" #: application/controllers/Bandmap.php:28 #: application/controllers/Bandmap.php:69 -#: application/controllers/Options.php:137 -#: application/controllers/Options.php:148 +#: application/controllers/Options.php:145 +#: application/controllers/Options.php:156 #: application/views/options/sidebar.php:10 msgid "DXCluster" msgstr "" @@ -438,7 +536,7 @@ msgid "Export Cabrillo" msgstr "" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:396 +#: application/views/interface_assets/header.php:402 msgid "CFD Export" msgstr "" @@ -455,7 +553,7 @@ msgid "No user has configured Clublog." msgstr "" #: application/controllers/Contestcalendar.php:19 -#: application/views/interface_assets/header.php:247 +#: application/views/interface_assets/header.php:251 msgid "Contest Calendar" msgstr "" @@ -464,38 +562,62 @@ msgstr "" msgid "Contest Logging" msgstr "Αρχείο διαγωνισμού" -#: application/controllers/Contesting.php:112 -#: application/views/interface_assets/header.php:274 +#: application/controllers/Contesting.php:113 +#: application/views/interface_assets/header.php:278 msgid "Contests" msgstr "" -#: application/controllers/Contesting.php:126 +#: application/controllers/Contesting.php:127 msgid "Update Contest" msgstr "" #: application/controllers/Continents.php:25 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:57 -#: application/views/interface_assets/header.php:154 +#: application/views/interface_assets/header.php:156 msgid "Continents" msgstr "" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:284 +#: application/views/interface_assets/header.php:288 msgid "Cron Manager" msgstr "" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:154 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "" +#: application/controllers/Cron.php:274 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:278 +#, php-format +msgid "" +"Last run occurred more than %s seconds ago.%sPlease check your master cron! " +"It should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:281 +#, php-format +msgid "" +"Last run occurred more than %s minutes ago.%sSeems like your Mastercron " +"isn't running!%sIt should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:286 application/views/cron/index.php:29 +msgctxt "Master Cron" +msgid "Not running" +msgstr "" + #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:392 +#: application/views/interface_assets/header.php:396 msgid "SOTA CSV Export" msgstr "" -#: application/controllers/Dashboard.php:108 -#: application/controllers/Visitor.php:132 +#: application/controllers/Dashboard.php:123 +#: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "" @@ -542,6 +664,12 @@ msgstr "" msgid "File Migration failed. Please check the Error Log." msgstr "" +#: application/controllers/Distancerecords.php:42 +#: application/controllers/Distancerecords.php:59 +#: application/views/interface_assets/header.php:146 +msgid "Satellite Distance Records" +msgstr "" + #: application/controllers/Distances.php:17 #: application/views/distances/index.php:5 #: application/views/distances/index.php:8 @@ -549,27 +677,31 @@ msgstr "" msgid "Distances Worked" msgstr "" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 #: application/views/distances/index.php:15 msgid "QSOs with" msgstr "" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 msgid "and band" msgstr "" +#: application/controllers/Distances.php:83 +msgid "and propagation" +msgstr "" + #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:394 msgid "DX Atlas Gridsquare Export" msgstr "" #: application/controllers/Dxcalendar.php:10 -#: application/views/interface_assets/header.php:245 +#: application/views/interface_assets/header.php:249 msgid "DX Calendar" msgstr "" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:325 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -587,19 +719,19 @@ msgstr "" msgid "eQSL QSO Upload" msgstr "" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:424 msgid "eQSL Tools" msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid " / Errors: " msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid "Successfully downloaded: " msgstr "" -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:481 msgid "eQSL Card Image Download" msgstr "" @@ -609,7 +741,7 @@ msgid "Gridsquare Map" msgstr "" #: application/controllers/Gridmap.php:34 -#: application/controllers/Visitor.php:377 +#: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "" @@ -629,7 +761,7 @@ msgid "No QSOs found to upload." msgstr "" #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:392 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "" @@ -642,59 +774,59 @@ msgstr "" msgid "Create Label Type" msgstr "" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:402 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:406 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:403 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:407 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 #: application/views/labels/index.php:76 msgid "Paper Type" msgstr "" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:404 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:408 #: application/views/labels/index.php:42 application/views/labels/index.php:77 msgid "Measurement" msgstr "" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:405 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:409 msgid "Top Margin" msgstr "" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:406 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:410 msgid "Left Margin" msgstr "" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:407 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:411 msgid "QSLs Horizontally" msgstr "" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:408 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:412 msgid "QSLs Vertically" msgstr "" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:409 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:413 msgid "Horizontal Space" msgstr "" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:410 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:414 msgid "Vertical Space" msgstr "" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:411 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:415 msgid "Label width" msgstr "" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:412 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:416 msgid "Label height" msgstr "" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:413 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:417 msgid "Size of Font" msgstr "" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:414 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:418 msgid "Number of QSOs on label" msgstr "" @@ -703,22 +835,22 @@ msgid "Create Paper Type" msgstr "" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:461 +#: application/controllers/Labels.php:465 msgid "Paper Name" msgstr "" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:462 +#: application/controllers/Labels.php:466 msgid "Paper Width" msgstr "" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:463 +#: application/controllers/Labels.php:467 msgid "Paper Height" msgstr "" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:471 +#: application/controllers/Labels.php:475 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -745,27 +877,27 @@ msgstr "" msgid "0 QSOs found for print!" msgstr "" -#: application/controllers/Labels.php:391 +#: application/controllers/Labels.php:395 msgid "Edit Label" msgstr "" -#: application/controllers/Labels.php:420 +#: application/controllers/Labels.php:424 msgid "Label was saved." msgstr "" -#: application/controllers/Labels.php:428 +#: application/controllers/Labels.php:432 msgid "Label was deleted." msgstr "" -#: application/controllers/Labels.php:450 +#: application/controllers/Labels.php:454 msgid "Edit Paper" msgstr "" -#: application/controllers/Labels.php:475 +#: application/controllers/Labels.php:479 msgid "Paper was saved." msgstr "" -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "Paper was deleted." msgstr "" @@ -789,20 +921,20 @@ msgstr "" msgid "Logbook" msgstr "Αρχείο επαφών" -#: application/controllers/Logbook.php:653 -#: application/controllers/Logbook.php:668 +#: application/controllers/Logbook.php:657 +#: application/controllers/Logbook.php:672 #: application/views/activated_gridmap/index.php:58 #: application/views/awards/dok/index.php:55 #: application/views/awards/dxcc/index.php:61 -#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/helvetia/index.php:55 #: application/views/awards/jcc/index.php:52 -#: application/views/awards/rac/index.php:45 +#: application/views/awards/rac/index.php:47 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:72 -#: application/views/awards/waja/index.php:53 -#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:55 +#: application/views/awards/was/index.php:55 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:568 +#: application/views/logbookadvanced/index.php:596 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -815,20 +947,21 @@ msgstr "Αρχείο επαφών" msgid "QSL" msgstr "" -#: application/controllers/Logbook.php:656 +#: application/controllers/Logbook.php:660 #: application/views/activated_gridmap/index.php:66 -#: application/views/awards/cq/index.php:58 +#: application/views/awards/cq/index.php:60 #: application/views/awards/dok/index.php:59 #: application/views/awards/dxcc/index.php:65 -#: application/views/awards/helvetia/index.php:57 -#: application/views/awards/itu/index.php:58 +#: application/views/awards/helvetia/index.php:59 +#: application/views/awards/itu/index.php:60 #: application/views/awards/jcc/index.php:56 -#: application/views/awards/rac/index.php:49 +#: application/views/awards/rac/index.php:51 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:80 -#: application/views/awards/waja/index.php:57 -#: application/views/awards/was/index.php:57 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -836,28 +969,29 @@ msgstr "" #: application/views/qslprint/qsolist.php:21 #: application/views/qslprint/qsolist.php:167 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:384 +#: application/views/qso/edit_ajax.php:411 #: application/views/search/result_search.php:22 #: application/views/search/search_result_ajax.php:298 #: application/views/search/search_result_ajax.php:313 #: application/views/timeline/index.php:60 application/views/user/edit.php:563 -#: application/views/user/edit.php:659 application/views/view_log/qso.php:408 +#: application/views/user/edit.php:659 application/views/view_log/qso.php:411 msgid "LoTW" msgstr "" -#: application/controllers/Logbook.php:659 +#: application/controllers/Logbook.php:663 #: application/views/activated_gridmap/index.php:74 -#: application/views/awards/cq/index.php:62 +#: application/views/awards/cq/index.php:64 #: application/views/awards/dok/index.php:63 #: application/views/awards/dxcc/index.php:69 -#: application/views/awards/helvetia/index.php:61 -#: application/views/awards/itu/index.php:62 +#: application/views/awards/helvetia/index.php:63 +#: application/views/awards/itu/index.php:64 #: application/views/awards/jcc/index.php:60 -#: application/views/awards/rac/index.php:53 +#: application/views/awards/rac/index.php:55 #: application/views/awards/wab/index.php:88 -#: application/views/awards/waja/index.php:61 -#: application/views/awards/was/index.php:61 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:52 +#: application/views/awards/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:117 #: application/views/logbookadvanced/useroptions.php:70 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 @@ -865,63 +999,67 @@ msgstr "" #: application/views/qslprint/qsolist.php:18 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:151 -#: application/views/qso/edit_ajax.php:381 +#: application/views/qso/edit_ajax.php:408 #: application/views/search/result_search.php:16 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:273 -#: application/views/station_profile/edit.php:278 +#: application/views/station_profile/edit.php:305 #: application/views/timeline/index.php:64 application/views/user/edit.php:564 #: application/views/user/edit.php:667 application/views/user/edit.php:731 msgid "eQSL" msgstr "" -#: application/controllers/Logbook.php:665 +#: application/controllers/Logbook.php:669 #: application/views/awards/dok/index.php:71 #: application/views/awards/dxcc/index.php:77 #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 -#: application/views/awards/waja/index.php:69 +#: application/views/awards/waja/index.php:71 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 -#: application/views/station_profile/edit.php:325 +#: application/views/station_profile/edit.php:352 +#: application/views/timeline/index.php:68 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 -#: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/partial/log_ajax.php:85 +#: application/views/view_log/qso.php:426 msgid "Clublog" msgstr "" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1284 #: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:39 #: application/views/adif/dcl_success.php:33 -#: application/views/awards/cq/index.php:86 +#: application/views/awards/cq/index.php:88 #: application/views/awards/dok/index.php:91 #: application/views/awards/dxcc/index.php:162 -#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/helvetia/index.php:87 #: application/views/awards/iota/index.php:105 -#: application/views/awards/itu/index.php:86 +#: application/views/awards/itu/index.php:88 #: application/views/awards/jcc/index.php:88 -#: application/views/awards/rac/index.php:77 +#: application/views/awards/rac/index.php:79 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:53 -#: application/views/awards/waja/index.php:89 -#: application/views/awards/was/index.php:85 +#: application/views/awards/wac/index.php:110 +#: application/views/awards/waja/index.php:91 +#: application/views/awards/was/index.php:87 #: application/views/components/hamsat/table.php:30 -#: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:203 +#: application/views/contesting/index.php:108 +#: application/views/contesting/index.php:250 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 +#: 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/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:170 -#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/index.php:181 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -938,14 +1076,14 @@ msgstr "" #: application/views/qslcard/searchresult.php:76 #: application/views/qslprint/qslprint.php:24 #: application/views/qslprint/qsolist.php:9 -#: application/views/qso/components/previous_contacts.php:78 +#: application/views/qso/components/previous_contacts.php:77 #: application/views/qso/edit_ajax.php:119 application/views/qso/index.php:136 #: application/views/satellite/index.php:24 #: application/views/search/cqzones_result.php:10 #: application/views/search/lotw_unconfirmed_result.php:8 #: application/views/search/result_search.php:7 #: application/views/search/search_result_ajax.php:4 -#: application/views/simplefle/index.php:144 +#: application/views/simplefle/index.php:150 #: application/views/statistics/custom.php:60 #: application/views/statistics/custom_result.php:62 #: application/views/statistics/custom_result.php:88 @@ -957,17 +1095,17 @@ msgstr "" #: application/views/user/edit.php:295 application/views/user/edit.php:318 #: application/views/view_log/partial/log.php:9 #: application/views/view_log/partial/log_ajax.php:4 -#: application/views/view_log/qso.php:104 application/views/visitor/index.php:6 +#: application/views/view_log/qso.php:107 application/views/visitor/index.php:6 #: application/views/widgets/qsos.php:29 msgid "Mode" msgstr "Τρόπος" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1285 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:111 -#: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:547 +#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:251 +#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -976,25 +1114,25 @@ msgstr "Τρόπος" #: application/views/qslcard/searchresult.php:77 #: application/views/qslprint/qslprint.php:26 #: application/views/qslprint/qsolist.php:11 -#: application/views/qso/components/previous_contacts.php:79 +#: application/views/qso/components/previous_contacts.php:78 #: application/views/qso/edit_ajax.php:142 application/views/qso/index.php:177 #: application/views/search/search_result_ajax.php:5 -#: application/views/simplefle/index.php:145 +#: application/views/simplefle/index.php:151 #: application/views/user/edit.php:230 application/views/user/edit.php:252 #: application/views/user/edit.php:274 application/views/user/edit.php:296 #: application/views/user/edit.php:319 #: application/views/view_log/partial/log.php:10 #: application/views/view_log/partial/log_ajax.php:5 -#: application/views/view_log/qso.php:109 application/views/visitor/index.php:9 +#: application/views/view_log/qso.php:112 application/views/visitor/index.php:9 msgid "RST (S)" msgstr "" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1286 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:550 +#: application/views/contesting/index.php:189 +#: application/views/contesting/index.php:252 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1003,51 +1141,50 @@ msgstr "" #: application/views/qslcard/searchresult.php:78 #: application/views/qslprint/qslprint.php:27 #: application/views/qslprint/qsolist.php:12 -#: application/views/qso/components/previous_contacts.php:80 +#: application/views/qso/components/previous_contacts.php:79 #: application/views/qso/edit_ajax.php:147 application/views/qso/index.php:182 #: application/views/search/search_result_ajax.php:6 -#: application/views/simplefle/index.php:146 +#: application/views/simplefle/index.php:152 #: application/views/user/edit.php:231 application/views/user/edit.php:253 #: application/views/user/edit.php:275 application/views/user/edit.php:297 #: application/views/user/edit.php:320 #: application/views/view_log/partial/log.php:11 #: application/views/view_log/partial/log_ajax.php:6 -#: application/views/view_log/qso.php:114 +#: application/views/view_log/qso.php:117 #: application/views/visitor/index.php:12 msgid "RST (R)" msgstr "" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1287 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 #: application/views/qslcard/searchresult.php:47 #: application/views/qslcard/searchresult.php:63 #: application/views/qslcard/searchresult.php:79 -#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/components/previous_contacts.php:80 #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 -#: application/views/station_profile/index.php:43 #: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 -#: application/views/timeline/index.php:118 application/views/user/edit.php:232 +#: application/views/timeline/index.php:151 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 #: application/views/user/edit.php:298 application/views/user/edit.php:321 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:235 -#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:238 +#: application/views/view_log/qso.php:531 #: application/views/visitor/index.php:15 msgid "Country" msgstr "Χώρα" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1288 #: application/views/awards/iota/index.php:169 #: application/views/bands/index.php:50 application/views/dashboard/index.php:8 -#: application/views/interface_assets/header.php:180 +#: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1056,11 +1193,11 @@ msgstr "Χώρα" #: application/views/qslcard/searchresult.php:48 #: application/views/qslcard/searchresult.php:64 #: application/views/qslcard/searchresult.php:80 -#: application/views/qso/components/previous_contacts.php:82 -#: application/views/qso/edit_ajax.php:318 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 -#: application/views/timeline/index.php:202 application/views/user/edit.php:233 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:235 application/views/user/edit.php:233 #: application/views/user/edit.php:255 application/views/user/edit.php:277 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/view_log/partial/log_ajax.php:8 @@ -1068,17 +1205,17 @@ msgstr "Χώρα" msgid "IOTA" msgstr "" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1292 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:20 -#: application/views/awards/rac/index.php:141 -#: application/views/awards/was/index.php:149 -#: application/views/contesting/index.php:173 +#: application/views/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 +#: application/views/contesting/index.php:56 #: application/views/dashboard/index.php:12 -#: application/views/logbookadvanced/edit.php:20 -#: application/views/logbookadvanced/edit.php:64 -#: application/views/logbookadvanced/index.php:162 -#: application/views/logbookadvanced/index.php:583 +#: application/views/logbookadvanced/edit.php:21 +#: application/views/logbookadvanced/edit.php:66 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:611 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1086,9 +1223,9 @@ msgstr "" #: application/views/qslcard/searchresult.php:50 #: application/views/qslcard/searchresult.php:66 #: application/views/qslcard/searchresult.php:82 -#: application/views/qso/components/previous_contacts.php:86 +#: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 -#: application/views/timeline/index.php:177 application/views/user/edit.php:237 +#: application/views/timeline/index.php:210 application/views/user/edit.php:237 #: application/views/user/edit.php:259 application/views/user/edit.php:281 #: application/views/user/edit.php:303 application/views/user/edit.php:326 #: application/views/view_log/partial/log_ajax.php:12 @@ -1096,20 +1233,21 @@ msgstr "" msgid "State" msgstr "Επαρχία" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1293 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:17 -#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:13 +#: application/views/distancerecords/index.php:20 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:166 -#: application/views/logbookadvanced/index.php:556 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1118,38 +1256,39 @@ msgstr "Επαρχία" #: application/views/qslcard/searchresult.php:51 #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 -#: application/views/qso/components/previous_contacts.php:87 +#: application/views/qso/components/previous_contacts.php:86 #: application/views/qso/edit_ajax.php:156 application/views/qso/index.php:279 +#: application/views/satellite/pass.php:28 #: application/views/search/cqzones_result.php:12 #: application/views/search/result.php:33 #: application/views/search/search_result_ajax.php:13 -#: application/views/simplefle/index.php:147 -#: application/views/station_profile/index.php:44 +#: application/views/simplefle/index.php:153 #: application/views/stationsetup/stationsetup.php:125 -#: application/views/timeline/index.php:257 application/views/user/edit.php:130 +#: application/views/timeline/index.php:290 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 #: application/views/user/edit.php:327 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:518 #: application/views/visitor/index.php:27 msgid "Gridsquare" msgstr "" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1294 #: application/views/activated_gridmap/index.php:108 #: application/views/awards/ffma/index.php:36 #: application/views/awards/gridmaster/index.php:35 #: 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/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/index.php:12 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 #: application/views/qslcard/searchresult.php:52 #: application/views/qslcard/searchresult.php:68 #: application/views/qslcard/searchresult.php:84 -#: application/views/qso/components/previous_contacts.php:88 +#: application/views/qso/components/previous_contacts.php:87 #: application/views/search/search_result_ajax.php:14 #: application/views/user/edit.php:239 application/views/user/edit.php:261 #: application/views/user/edit.php:283 application/views/user/edit.php:305 @@ -1159,32 +1298,33 @@ msgstr "" msgid "Distance" msgstr "" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1295 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:8 -#: application/views/activators/index.php:7 +#: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 -#: application/views/awards/cq/index.php:72 +#: application/views/awards/cq/index.php:74 #: application/views/awards/dok/index.php:77 #: application/views/awards/dxcc/index.php:117 -#: application/views/awards/helvetia/index.php:71 +#: application/views/awards/helvetia/index.php:73 #: application/views/awards/iota/index.php:91 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:74 #: application/views/awards/jcc/index.php:74 #: application/views/awards/pota/index.php:35 -#: application/views/awards/rac/index.php:63 +#: application/views/awards/rac/index.php:65 #: application/views/awards/sig/qso_list.php:13 #: application/views/awards/sota/index.php:26 #: application/views/awards/vucc/index.php:21 #: application/views/awards/wab/index.php:22 -#: application/views/awards/waja/index.php:75 -#: application/views/awards/was/index.php:71 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/waja/index.php:77 +#: application/views/awards/was/index.php:73 #: application/views/awards/wwff/index.php:35 #: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:45 -#: application/views/contesting/index.php:70 -#: application/views/contesting/index.php:202 +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:249 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:549 application/views/dxatlas/index.php:31 @@ -1192,8 +1332,8 @@ msgstr "" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1211,13 +1351,13 @@ msgstr "" #: application/views/qslmanagement/index.php:24 #: application/views/qslprint/qslprint.php:25 #: application/views/qslprint/qsolist.php:10 -#: application/views/qso/components/previous_contacts.php:89 +#: application/views/qso/components/previous_contacts.php:88 #: application/views/qso/edit_ajax.php:83 application/views/qso/index.php:151 #: application/views/search/cqzones_result.php:11 #: application/views/search/lotw_unconfirmed_result.php:9 #: application/views/search/result_search.php:10 #: application/views/search/search_result_ajax.php:15 -#: application/views/simplefle/index.php:143 +#: application/views/simplefle/index.php:149 #: application/views/stationsetup/exportmapoptions.php:31 #: application/views/statistics/custom.php:53 #: application/views/statistics/custom_result.php:55 @@ -1235,72 +1375,71 @@ msgstr "" msgid "Band" msgstr "Ζώνη" -#: application/controllers/Logbook.php:1285 +#: application/controllers/Logbook.php:1296 #: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 -#: application/views/contesting/index.php:87 +#: application/views/contesting/index.php:138 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 #: application/views/qslcard/searchresult.php:70 #: application/views/qslcard/searchresult.php:86 -#: application/views/qso/components/previous_contacts.php:90 +#: application/views/qso/components/previous_contacts.php:89 #: application/views/qso/edit_ajax.php:71 application/views/qso/index.php:169 #: application/views/search/search_result_ajax.php:16 #: application/views/user/edit.php:228 application/views/user/edit.php:250 #: application/views/user/edit.php:272 application/views/user/edit.php:294 #: application/views/user/edit.php:317 #: application/views/view_log/partial/log_ajax.php:16 -#: application/views/view_log/qso.php:93 application/views/visitor/index.php:36 +#: application/views/view_log/qso.php:94 application/views/visitor/index.php:36 msgid "Frequency" msgstr "Συχνότητα" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1297 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:283 -#: application/views/logbookadvanced/index.php:598 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:626 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 #: application/views/qslcard/searchresult.php:87 -#: application/views/qso/components/previous_contacts.php:91 +#: application/views/qso/components/previous_contacts.php:90 #: application/views/search/search_result_ajax.php:17 #: application/views/simplefle/index.php:112 #: application/views/user/edit.php:240 application/views/user/edit.php:262 #: application/views/user/edit.php:284 application/views/user/edit.php:306 #: application/views/user/edit.php:329 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:538 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "Χειριστής" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1318 #: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:669 +#: application/views/interface_assets/footer.php:675 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:154 +#: application/views/logbookadvanced/index.php:165 #: application/views/lookup/index.php:31 -#: application/views/lotw_views/index.php:56 +#: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 #: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 -#: application/views/station_profile/create.php:73 -#: application/views/station_profile/edit.php:78 -#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 #: application/views/stationsetup/stationsetup.php:150 -#: application/views/timeline/index.php:134 +#: application/views/timeline/index.php:167 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 -#: application/views/view_log/qso.php:236 -#: application/views/view_log/qso.php:529 +#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:532 msgid "Deleted DXCC" msgstr "" @@ -1314,7 +1453,7 @@ msgstr "" #: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83 #: application/controllers/Lotw.php:125 application/views/adif/import.php:27 -#: application/views/interface_assets/header.php:423 +#: application/views/interface_assets/header.php:429 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1322,28 +1461,55 @@ msgstr "" msgid "Logbook of the World" msgstr "" -#: application/controllers/Lotw.php:610 +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "" + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "" + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "" + +#: application/controllers/Lotw.php:413 +#, 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:617 msgid "LoTW ADIF Information" msgstr "" -#: application/controllers/Lotw.php:718 +#: application/controllers/Lotw.php:725 msgid "LoTW ADIF Import" msgstr "" -#: application/controllers/Lotw.php:830 +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "" + +#: application/controllers/Lotw.php:837 msgid "LoTW .TQ8 Upload" msgstr "" -#: application/controllers/Lotw.php:927 application/controllers/Lotw.php:932 +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "" + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 msgid "LoTW .TQ8 Sent" msgstr "" -#: application/controllers/Lotw.php:939 +#: application/controllers/Lotw.php:946 msgid "LoTW .TQ8 Not Sent" msgstr "" #: application/controllers/Mode.php:25 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:276 #: application/views/mode/index.php:15 msgid "Modes" msgstr "" @@ -1352,28 +1518,28 @@ msgstr "" msgid "Edit Mode" msgstr "" -#: application/controllers/Notes.php:19 +#: application/controllers/Notes.php:18 #: application/views/interface_assets/header.php:128 #: application/views/notes/add.php:9 application/views/notes/edit.php:10 #: application/views/notes/main.php:5 application/views/notes/main.php:8 #: application/views/notes/view.php:6 application/views/notes/view.php:9 #: application/views/qso/edit_ajax.php:36 -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:38 -#: application/views/qso/index.php:541 application/views/qso/index.php:586 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:590 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:38 +#: application/views/qso/index.php:563 application/views/qso/index.php:608 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:593 msgid "Notes" msgstr "Σημειώσεις" -#: application/controllers/Notes.php:38 +#: application/controllers/Notes.php:37 msgid "Add Notes" msgstr "" -#: application/controllers/Notes.php:58 +#: application/controllers/Notes.php:64 #: application/views/oqrs/showrequests.php:88 msgid "Note" msgstr "" -#: application/controllers/Notes.php:79 application/views/notes/edit.php:7 +#: application/controllers/Notes.php:92 application/views/notes/edit.php:7 #: application/views/notes/view.php:19 msgid "Edit Note" msgstr "Επεξεργασία Σημείωσης" @@ -1381,16 +1547,16 @@ msgstr "Επεξεργασία Σημείωσης" #: application/controllers/Options.php:31 #: application/controllers/Options.php:41 #: application/controllers/Options.php:56 -#: application/controllers/Options.php:136 -#: application/controllers/Options.php:147 -#: application/controllers/Options.php:184 -#: application/controllers/Options.php:195 -#: application/controllers/Options.php:228 -#: application/controllers/Options.php:239 -#: application/controllers/Options.php:309 -#: application/controllers/Options.php:319 -#: application/controllers/Options.php:387 -#: application/controllers/Options.php:397 +#: application/controllers/Options.php:144 +#: application/controllers/Options.php:155 +#: application/controllers/Options.php:192 +#: application/controllers/Options.php:203 +#: application/controllers/Options.php:236 +#: application/controllers/Options.php:247 +#: application/controllers/Options.php:317 +#: application/controllers/Options.php:327 +#: application/controllers/Options.php:395 +#: application/controllers/Options.php:405 msgid "Wavelog Options" msgstr "" @@ -1407,95 +1573,96 @@ msgstr "" #: application/controllers/Options.php:110 #: application/controllers/Options.php:118 #: application/controllers/Options.php:126 +#: application/controllers/Options.php:134 msgid "Options saved" msgstr "" -#: application/controllers/Options.php:165 +#: application/controllers/Options.php:173 msgid "de continent changed to " msgstr "" -#: application/controllers/Options.php:170 +#: application/controllers/Options.php:178 msgid "Maximum age of spots changed to " msgstr "" -#: application/controllers/Options.php:175 +#: application/controllers/Options.php:183 msgid "DXCluster Cache URL changed to " msgstr "" -#: application/controllers/Options.php:185 -#: application/controllers/Options.php:196 +#: application/controllers/Options.php:193 +#: application/controllers/Options.php:204 msgid "Radio Settings" msgstr "" -#: application/controllers/Options.php:217 +#: application/controllers/Options.php:225 msgid "Radio Timeout Warning changed to " msgstr "" -#: application/controllers/Options.php:229 -#: application/controllers/Options.php:240 +#: application/controllers/Options.php:237 +#: application/controllers/Options.php:248 #: application/views/options/sidebar.php:6 msgid "Email" msgstr "" -#: application/controllers/Options.php:297 +#: application/controllers/Options.php:305 msgid "The settings were saved successfully." msgstr "" -#: application/controllers/Options.php:299 +#: application/controllers/Options.php:307 msgid "Something went wrong with saving the settings. Try again." msgstr "" -#: application/controllers/Options.php:310 -#: application/controllers/Options.php:320 +#: application/controllers/Options.php:318 +#: application/controllers/Options.php:328 #: application/views/options/sidebar.php:8 msgid "OQRS Options" msgstr "" -#: application/controllers/Options.php:333 +#: application/controllers/Options.php:341 msgid "OQRS options have been saved." msgstr "" -#: application/controllers/Options.php:373 -#: application/controllers/Options.php:378 +#: application/controllers/Options.php:381 +#: application/controllers/Options.php:386 msgid "Testmail failed. Something went wrong." msgstr "" -#: application/controllers/Options.php:375 +#: application/controllers/Options.php:383 msgid "Testmail sent. Email settings seem to be correct." msgstr "" -#: application/controllers/Options.php:388 -#: application/controllers/Options.php:398 +#: application/controllers/Options.php:396 +#: application/controllers/Options.php:406 msgid "Version Info Settings" msgstr "" -#: application/controllers/Options.php:404 +#: application/controllers/Options.php:412 msgid "Version Info Header changed to" msgstr "" -#: application/controllers/Options.php:408 +#: application/controllers/Options.php:416 msgid "Version Info Mode changed to" msgstr "" -#: application/controllers/Options.php:413 +#: application/controllers/Options.php:421 msgid "Version Info Custom Text saved!" msgstr "" -#: application/controllers/Options.php:424 +#: application/controllers/Options.php:432 msgid "Version Info will be shown to all users again" msgstr "" -#: application/controllers/Options.php:432 +#: application/controllers/Options.php:440 msgid "Version Info will not be shown to any user" msgstr "" -#: application/controllers/Oqrs.php:22 application/controllers/Oqrs.php:61 -#: application/controllers/Oqrs.php:73 +#: application/controllers/Oqrs.php:46 application/controllers/Oqrs.php:85 +#: application/controllers/Oqrs.php:97 msgid "Log Search & OQRS" msgstr "" -#: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:413 +#: application/controllers/Oqrs.php:127 +#: application/views/interface_assets/header.php:419 msgid "OQRS Requests" msgstr "" @@ -1503,8 +1670,46 @@ msgstr "" msgid "QRB Calculator" msgstr "" +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "" + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" + #: application/controllers/Qrz.php:173 -#: application/views/interface_assets/header.php:426 +#: application/views/interface_assets/header.php:432 msgid "QRZ Logbook" msgstr "" @@ -1516,8 +1721,8 @@ msgstr "" msgid "QRZ ADIF Information" msgstr "" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:261 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:277 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1540,13 +1745,13 @@ msgid "Add QSO" msgstr "" #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Hardware Interfaces" msgstr "" #: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 +#: application/views/contesting/index.php:143 #: application/views/qso/index.php:312 msgid "Radio" msgstr "Ραδιόφωνο" @@ -1556,10 +1761,10 @@ msgid "Timestamp" msgstr "" #: application/controllers/Radio.php:52 -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 +#: application/views/logbookadvanced/index.php:550 +#: application/views/lotw_views/index.php:43 #: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 +#: application/views/simplefle/index.php:177 #: application/views/stationsetup/exportmapoptions.php:5 #: application/views/statistics/custom.php:31 #: application/views/statistics/custom_result.php:33 @@ -1567,7 +1772,7 @@ msgid "Options" msgstr "" #: application/controllers/Radio.php:90 -#: application/views/contesting/index.php:96 +#: application/views/contesting/index.php:147 #: application/views/qso/index.php:316 msgid "last updated" msgstr "" @@ -1583,26 +1788,24 @@ msgstr "" #: application/controllers/Radio.php:105 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2323 -#: application/views/interface_assets/footer.php:2341 -#: application/views/interface_assets/footer.php:2362 -#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2337 +#: application/views/interface_assets/footer.php:2355 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 #: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:514 -#: application/views/lotw_views/index.php:118 +#: application/views/logbookadvanced/index.php:542 +#: application/views/lotw_views/index.php:114 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 #: application/views/qslcard/index.php:65 #: application/views/satellite/edit.php:40 #: application/views/satellite/index.php:26 #: application/views/search/stored_queries.php:22 -#: application/views/station_profile/index.php:55 -#: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 #: application/views/stationsetup/stationsetup.php:137 #: application/views/stationsetup/stationsetup.php:192 -#: application/views/themes/index.php:107 application/views/user/main.php:54 -#: application/views/view_log/qso.php:613 +#: application/views/themes/index.php:107 application/views/user/index.php:57 +#: application/views/view_log/qso.php:616 msgid "Delete" msgstr "" @@ -1610,11 +1813,15 @@ msgstr "" msgid "No CAT interfaced radios found." msgstr "" -#: application/controllers/Satellite.php:37 +#: application/controllers/Reg1test.php:25 +msgid "Export EDI" +msgstr "" + +#: application/controllers/Satellite.php:39 msgid "Create Satellite" msgstr "" -#: application/controllers/Satellite.php:60 +#: application/controllers/Satellite.php:66 msgid "Edit Satellite" msgstr "" @@ -1627,10 +1834,7 @@ msgstr "" #: application/views/awards/counties/index.php:8 #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:19 -#: application/views/awards/was/index.php:21 -#: application/views/dashboard/index.php:64 -#: application/views/dashboard/index.php:73 -#: application/views/dashboard/index.php:82 +#: application/views/awards/was/index.php:23 #: application/views/simplefle/index.php:16 msgid "here" msgstr "" @@ -1642,9 +1846,10 @@ msgstr "" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:336 -#: application/views/interface_assets/header.php:343 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:340 +#: application/views/interface_assets/header.php:347 +#: application/views/logbookadvanced/index.php:538 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1658,8 +1863,8 @@ msgstr "" #: application/views/search/lotw_unconfirmed.php:37 #: application/views/search/main.php:4 application/views/search/main.php:12 #: application/views/search/main.php:33 -#: application/views/visitor/layout/header.php:99 -#: application/views/visitor/layout/header.php:100 +#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:98 msgid "Search" msgstr "" @@ -1677,15 +1882,23 @@ msgid "" "date" msgstr "" -#: application/controllers/Station.php:35 -#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/controllers/Station.php:36 +#: application/controllers/Stationsetup.php:226 +msgid "Create Station Location" +msgstr "" + +#: application/controllers/Station.php:51 +msgid "Edit Station Location: " +msgstr "" + +#: application/controllers/Station.php:59 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 -#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/edit.php:19 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:427 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 @@ -1693,22 +1906,13 @@ msgstr "" msgid "Station Location" msgstr "Τοποθεσία Σταθμού" -#: application/controllers/Station.php:55 -#: application/controllers/Stationsetup.php:226 -msgid "Create Station Location" -msgstr "" - -#: application/controllers/Station.php:70 -msgid "Edit Station Location: " -msgstr "" - -#: application/controllers/Station.php:92 +#: application/controllers/Station.php:73 msgid "Duplicate Station Location:" msgstr "" #: application/controllers/Stationsetup.php:35 -#: application/views/interface_assets/header.php:377 -#: application/views/interface_assets/header.php:488 +#: application/views/interface_assets/header.php:381 +#: application/views/interface_assets/header.php:494 msgid "Station Setup" msgstr "" @@ -1726,7 +1930,7 @@ msgstr "" #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 #: application/controllers/Stationsetup.php:436 -#: application/views/qso/index.php:608 +#: application/views/qso/index.php:630 msgid "Error" msgstr "" @@ -1758,9 +1962,10 @@ msgstr "" #: application/views/options/appearance.php:83 #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 +#: application/views/options/appearance.php:110 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:259 -#: application/views/station_profile/edit.php:312 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 msgid "Disabled" @@ -1772,7 +1977,7 @@ msgid "Set as Active Logbook" msgstr "" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:486 +#: application/views/interface_assets/header.php:492 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1795,20 +2000,17 @@ msgid "Are you sure you want to delete the public slug?" msgstr "" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "" "Are you sure you want to make the following station the active station: " msgstr "" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "" #: application/controllers/Stationsetup.php:351 -#: application/views/station_profile/index.php:71 #: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "" @@ -1817,54 +2019,45 @@ msgstr "" #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:28 -#: application/views/station_profile/index.php:76 #: application/views/stationsetup/stationsetup.php:161 -#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/user/index.php:90 application/views/user/index.php:92 msgid "QSO" msgstr "" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 -#: application/views/cron/index.php:56 -#: application/views/interface_assets/footer.php:535 -#: application/views/interface_assets/footer.php:544 +#: application/views/cron/index.php:58 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 #: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:541 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 -#: application/views/station_profile/index.php:46 -#: application/views/station_profile/index.php:79 #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 -#: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/views/themes/index.php:104 application/views/user/index.php:52 msgid "Edit" msgstr "" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:99 #: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:54 -#: application/views/station_profile/index.php:101 #: application/views/stationsetup/stationsetup.php:136 #: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "" #: application/controllers/Stationsetup.php:367 -#: application/views/station_profile/index.php:47 -#: application/views/station_profile/index.php:82 #: application/views/stationsetup/stationsetup.php:129 #: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "" #: application/controllers/Stationsetup.php:372 -#: application/views/station_profile/index.php:105 #: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "" @@ -1897,7 +2090,7 @@ msgid "QSL Statistics" msgstr "" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:282 msgid "Themes" msgstr "" @@ -1909,14 +2102,14 @@ msgstr "" msgid "Edit Theme" msgstr "" -#: application/controllers/Timeline.php:17 -#: application/views/interface_assets/header.php:148 +#: application/controllers/Timeline.php:15 +#: application/views/interface_assets/header.php:150 #: application/views/timeline/index.php:2 msgid "Timeline" msgstr "" #: application/controllers/Timeplotter.php:17 -#: application/views/interface_assets/header.php:152 +#: application/views/interface_assets/header.php:154 #: application/views/timeplotter/index.php:9 msgid "Timeplotter" msgstr "" @@ -1957,130 +2150,154 @@ msgstr "" msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:268 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:272 msgid "User Accounts" msgstr "" -#: application/controllers/User.php:52 +#: application/controllers/User.php:76 msgid "Add User" msgstr "" -#: application/controllers/User.php:166 +#: application/controllers/User.php:190 msgid "Users" msgstr "" -#: application/controllers/User.php:240 application/controllers/User.php:673 +#: application/controllers/User.php:264 application/controllers/User.php:697 msgid "Edit User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 -#: application/views/user/main.php:3 application/views/user/main.php:46 +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 msgid "User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 +#: application/controllers/User.php:689 application/controllers/User.php:692 msgid "edited" msgstr "" -#: application/controllers/User.php:722 +#: application/controllers/User.php:746 msgid "Profile" msgstr "" -#: application/controllers/User.php:779 +#: application/controllers/User.php:803 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "" -#: application/controllers/User.php:843 application/controllers/User.php:853 +#: application/controllers/User.php:867 application/controllers/User.php:877 msgid "Login failed. Try again." msgstr "" -#: application/controllers/User.php:860 -#: application/views/interface_assets/header.php:356 -#: application/views/user/login.php:89 -#: application/views/visitor/layout/header.php:88 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:360 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "" -#: application/controllers/User.php:868 -msgid "User logged in" -msgstr "" - -#: application/controllers/User.php:899 +#: application/controllers/User.php:922 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " "Only administrators are currently allowed to log in." msgstr "" -#: application/controllers/User.php:902 +#: application/controllers/User.php:925 msgid "Incorrect username or password!" msgstr "" -#: application/controllers/User.php:919 +#: application/controllers/User.php:942 #, php-format msgid "User %s logged out." msgstr "" -#: application/controllers/User.php:933 +#: application/controllers/User.php:956 msgid "Password Reset is disabled on the Demo!" msgstr "" -#: application/controllers/User.php:946 +#: application/controllers/User.php:969 msgid "Forgot Password" msgstr "" -#: application/controllers/User.php:996 application/views/user/main.php:8 +#: application/controllers/User.php:1019 application/views/user/index.php:8 msgid "Email settings are incorrect." msgstr "" -#: application/controllers/User.php:1000 application/controllers/User.php:1005 +#: application/controllers/User.php:1023 application/controllers/User.php:1028 msgid "Password Reset Processed." msgstr "" -#: application/controllers/User.php:1107 +#: application/controllers/User.php:1129 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "" +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "" + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "" + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "" + #: application/controllers/Visitor.php:50 -#: application/controllers/Visitor.php:79 -#: application/controllers/Visitor.php:142 -#: application/controllers/Visitor.php:169 -#: application/controllers/Visitor.php:199 -#: application/controllers/Visitor.php:478 +#: application/controllers/Visitor.php:81 +#: application/controllers/Visitor.php:148 +#: application/controllers/Visitor.php:175 +#: application/controllers/Visitor.php:210 +#: application/controllers/Visitor.php:472 #: application/controllers/Widgets.php:40 msgid "Unknown Public Page." msgstr "" -#: application/controllers/Visitor.php:74 -#: application/controllers/Visitor.php:165 -#: application/controllers/Visitor.php:195 -#: application/controllers/Visitor.php:474 +#: application/controllers/Visitor.php:76 +#: application/controllers/Visitor.php:171 +#: application/controllers/Visitor.php:206 +#: application/controllers/Visitor.php:468 #: application/controllers/Widgets.php:36 msgid "Empty Logbook" msgstr "" -#: application/controllers/Visitor.php:205 +#: application/controllers/Visitor.php:216 msgid "Satellite Gridsquare Map" msgstr "" -#: application/controllers/Visitor.php:411 +#: application/controllers/Visitor.php:405 #: application/views/stationsetup/stationsetup.php:35 msgid "Public Search" msgstr "" -#: application/controllers/Visitor.php:444 +#: application/controllers/Visitor.php:438 msgid "Export Map" msgstr "" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:427 +#: application/views/interface_assets/header.php:433 msgid "QO-100 Dx Club Upload" msgstr "" @@ -2092,6 +2309,84 @@ msgstr "" msgid "No stations found that are using Wavelog OQRS." msgstr "" +#: application/libraries/Subdivisions.php:31 +msgctxt "Division Name (States in various countries)." +msgid "Province" +msgstr "" + +#: application/libraries/Subdivisions.php:39 +msgctxt "Division Name (States in various countries)." +msgid "Oblast" +msgstr "" + +#: application/libraries/Subdivisions.php:41 +#: application/libraries/Subdivisions.php:47 +msgctxt "Division Name (States in various countries)." +msgid "Region" +msgstr "" + +#: application/libraries/Subdivisions.php:45 +msgctxt "Division Name (States in various countries)." +msgid "Department" +msgstr "" + +#: application/libraries/Subdivisions.php:49 +msgctxt "Division Name (States in various countries)." +msgid "Municipality" +msgstr "" + +#: application/libraries/Subdivisions.php:51 +msgctxt "Division Name (States in various countries)." +msgid "Federal State" +msgstr "" + +#: application/libraries/Subdivisions.php:56 +#: application/libraries/Subdivisions.php:94 +msgctxt "Division Name (States in various countries)." +msgid "County" +msgstr "" + +#: application/libraries/Subdivisions.php:60 +#: application/libraries/Subdivisions.php:85 +msgctxt "Division Name (States in various countries)." +msgid "District" +msgstr "" + +#: application/libraries/Subdivisions.php:62 +msgctxt "Division Name (States in various countries)." +msgid "Canton" +msgstr "" + +#: application/libraries/Subdivisions.php:64 +msgctxt "Division Name (States in various countries)." +msgid "US State" +msgstr "" + +#: application/libraries/Subdivisions.php:67 +msgctxt "Division Name (States in various countries)." +msgid "Prefecture" +msgstr "" + +#: application/libraries/Subdivisions.php:69 +msgctxt "Division Name (States in various countries)." +msgid "State" +msgstr "" + +#: application/libraries/Subdivisions.php:78 +msgctxt "Division Name (States in various countries)." +msgid "US County" +msgstr "" + +#: application/libraries/Subdivisions.php:90 +msgctxt "Division Name (States in various countries)." +msgid "DME" +msgstr "" + +#: application/libraries/Subdivisions.php:92 +msgctxt "Division Name (States in various countries)." +msgid "City / Ku / Gun" +msgstr "" + #: application/models/Eqslmethods_model.php:281 msgid "Your eQSL username and/or password is incorrect." msgstr "" @@ -2128,31 +2423,31 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4255 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4261 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4266 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4269 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4272 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4275 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4278 msgid "unknown" msgstr "" @@ -2181,7 +2476,7 @@ msgid "Accumulated number of WAJA worked" msgstr "" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:222 +#: application/views/dashboard/index.php:238 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2194,7 +2489,7 @@ msgid "Yearly" msgstr "" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:243 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Μήνας" @@ -2210,29 +2505,33 @@ msgstr "" #: application/views/accumulate/index.php:24 #: application/views/accumulate/index.php:34 +#: application/views/accumulate/index.php:83 #: application/views/activated_gridmap/index.php:10 #: application/views/activated_gridmap/index.php:22 #: application/views/activated_gridmap/index.php:32 #: application/views/activated_gridmap/index.php:41 -#: application/views/activators/index.php:10 -#: application/views/awards/cq/index.php:75 -#: application/views/awards/cq/index.php:89 +#: application/views/activators/index.php:13 +#: application/views/awards/cq/index.php:77 +#: application/views/awards/cq/index.php:91 #: application/views/awards/dok/index.php:94 #: application/views/awards/dxcc/index.php:134 #: application/views/awards/dxcc/index.php:150 #: application/views/awards/dxcc/index.php:165 -#: application/views/awards/helvetia/index.php:88 +#: application/views/awards/helvetia/index.php:90 #: application/views/awards/iota/index.php:108 -#: application/views/awards/itu/index.php:75 -#: application/views/awards/itu/index.php:89 +#: application/views/awards/itu/index.php:77 +#: application/views/awards/itu/index.php:91 #: application/views/awards/jcc/index.php:91 -#: application/views/awards/rac/index.php:80 +#: application/views/awards/rac/index.php:82 #: application/views/awards/wab/index.php:24 #: application/views/awards/wab/index.php:36 #: application/views/awards/wab/index.php:46 #: application/views/awards/wab/index.php:55 -#: application/views/awards/waja/index.php:92 -#: application/views/awards/was/index.php:88 +#: application/views/awards/wac/index.php:81 +#: application/views/awards/wac/index.php:97 +#: application/views/awards/wac/index.php:113 +#: application/views/awards/waja/index.php:94 +#: application/views/awards/was/index.php:90 #: application/views/bandmap/list.php:71 application/views/bandmap/list.php:78 #: application/views/bandmap/list.php:90 application/views/bands/index.php:117 #: application/views/cabrillo/index.php:65 @@ -2243,6 +2542,7 @@ msgstr "" #: application/views/csv/index.php:94 application/views/distances/index.php:21 #: application/views/distances/index.php:36 #: application/views/distances/index.php:46 +#: application/views/distances/index.php:56 #: application/views/dxatlas/index.php:21 #: application/views/dxatlas/index.php:33 #: application/views/dxatlas/index.php:44 @@ -2254,28 +2554,29 @@ msgstr "" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1435 -#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1448 +#: application/views/interface_assets/footer.php:1587 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:172 #: application/views/logbookadvanced/index.php:183 #: application/views/logbookadvanced/index.php:194 -#: application/views/logbookadvanced/index.php:203 -#: application/views/logbookadvanced/index.php:212 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:205 +#: application/views/logbookadvanced/index.php:214 +#: application/views/logbookadvanced/index.php:223 #: application/views/logbookadvanced/index.php:248 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:321 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:374 -#: application/views/logbookadvanced/index.php:385 -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:259 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:423 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2286,11 +2587,12 @@ msgstr "" #: application/views/stationsetup/exportmapoptions.php:33 #: application/views/timeline/index.php:10 #: application/views/timeline/index.php:22 +#: application/views/timeline/index.php:77 #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 #: application/views/user/edit.php:633 -#: application/views/visitor/layout/footer.php:169 +#: application/views/visitor/layout/footer.php:171 msgid "All" msgstr "" @@ -2328,29 +2630,254 @@ msgstr "" msgid "Period" msgstr "" -#: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: application/views/accumulate/index.php:80 +#: application/views/distances/index.php:53 +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/timeline/index.php:74 +msgid "Propagation" +msgstr "" + +#: application/views/accumulate/index.php:84 +#: application/views/distances/index.php:57 +#: application/views/timeline/index.php:78 +msgid "All but SAT" +msgstr "" + +#: application/views/accumulate/index.php:85 +#: application/views/distances/index.php:58 +#: application/views/gridmap/index.php:42 +#: application/views/logbookadvanced/edit.php:142 +#: application/views/logbookadvanced/index.php:307 +#: application/views/timeline/index.php:79 +msgid "None/Empty" +msgstr "" + +#: application/views/accumulate/index.php:86 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/logbookadvanced/index.php:225 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:414 +#: application/views/timeline/index.php:80 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/accumulate/index.php:87 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/logbookadvanced/index.php:226 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:415 +#: application/views/timeline/index.php:81 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/accumulate/index.php:88 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/logbookadvanced/index.php:227 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:416 +#: application/views/timeline/index.php:82 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/accumulate/index.php:89 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/logbookadvanced/index.php:228 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:417 +#: application/views/timeline/index.php:83 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/accumulate/index.php:90 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/logbookadvanced/index.php:229 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:418 +#: application/views/timeline/index.php:84 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/accumulate/index.php:91 +#: 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/logbookadvanced/index.php:230 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:419 +#: application/views/timeline/index.php:85 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/accumulate/index.php:92 +#: 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/logbookadvanced/index.php:231 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:420 +#: application/views/timeline/index.php:86 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/accumulate/index.php:93 +#: 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/logbookadvanced/index.php:232 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:421 +#: application/views/timeline/index.php:87 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/accumulate/index.php:94 +#: 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/logbookadvanced/index.php:233 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:422 +#: application/views/timeline/index.php:88 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/accumulate/index.php:95 +#: 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/logbookadvanced/index.php:234 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:423 +#: application/views/timeline/index.php:89 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/accumulate/index.php:96 +#: 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/logbookadvanced/index.php:235 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:424 +#: application/views/timeline/index.php:90 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/accumulate/index.php:97 +#: 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/logbookadvanced/index.php:236 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:425 +#: application/views/timeline/index.php:91 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/accumulate/index.php:98 +#: 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/logbookadvanced/index.php:237 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:426 +#: application/views/timeline/index.php:92 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/accumulate/index.php:99 +#: 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/logbookadvanced/index.php:238 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:427 +#: application/views/timeline/index.php:93 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/accumulate/index.php:100 +#: 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/logbookadvanced/index.php:239 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:428 +#: application/views/timeline/index.php:94 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/accumulate/index.php:101 +#: 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/logbookadvanced/index.php:240 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:429 +#: application/views/timeline/index.php:95 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Δορυφόρος" + +#: application/views/accumulate/index.php:102 +#: 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/logbookadvanced/index.php:241 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:430 +#: application/views/timeline/index.php:96 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/accumulate/index.php:103 +#: 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/logbookadvanced/index.php:242 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:431 +#: application/views/timeline/index.php:97 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/accumulate/index.php:112 +#: application/views/activators/index.php:53 +#: application/views/awards/cq/index.php:113 #: application/views/awards/dok/index.php:127 #: application/views/awards/dxcc/index.php:187 -#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/helvetia/index.php:112 #: application/views/awards/iota/index.php:130 -#: application/views/awards/itu/index.php:111 +#: application/views/awards/itu/index.php:113 #: application/views/awards/jcc/index.php:113 -#: application/views/awards/rac/index.php:102 -#: application/views/awards/waja/index.php:114 -#: application/views/awards/was/index.php:110 -#: application/views/distances/index.php:53 +#: application/views/awards/rac/index.php:104 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:79 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 #: application/views/stationsetup/exportmapoptions.php:6 -#: application/views/timeline/index.php:72 -#: application/views/timeline/index.php:137 -#: application/views/timeline/index.php:164 -#: application/views/timeline/index.php:189 -#: application/views/timeline/index.php:218 -#: application/views/timeline/index.php:243 -#: application/views/timeline/index.php:270 +#: application/views/timeline/index.php:105 +#: application/views/timeline/index.php:170 +#: application/views/timeline/index.php:197 +#: application/views/timeline/index.php:222 +#: application/views/timeline/index.php:251 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:303 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "" @@ -2358,12 +2885,15 @@ msgstr "" #: application/views/activated_gridmap/index.php:20 #: application/views/awards/dxcc/index.php:131 #: application/views/awards/wab/index.php:34 +#: application/views/awards/wac/index.php:78 #: 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/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/edit.php:17 +#: application/views/logbookadvanced/index.php:203 #: application/views/satellite/flightpath.php:34 +#: application/views/satellite/passtable.php:5 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2372,9 +2902,10 @@ msgstr "Δορυφόρος" #: application/views/activated_gridmap/index.php:30 #: application/views/awards/dxcc/index.php:147 #: application/views/awards/wab/index.php:44 +#: application/views/awards/wac/index.php:94 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:212 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2389,16 +2920,17 @@ msgid "Confirmation" msgstr "" #: application/views/activated_gridmap/index.php:82 -#: application/views/awards/cq/index.php:66 +#: application/views/awards/cq/index.php:68 #: application/views/awards/dok/index.php:67 #: application/views/awards/dxcc/index.php:73 -#: application/views/awards/helvetia/index.php:65 -#: application/views/awards/itu/index.php:66 +#: application/views/awards/helvetia/index.php:67 +#: application/views/awards/itu/index.php:68 #: application/views/awards/jcc/index.php:64 -#: application/views/awards/rac/index.php:57 +#: application/views/awards/rac/index.php:59 #: application/views/awards/wab/index.php:96 -#: application/views/awards/waja/index.php:65 -#: application/views/awards/was/index.php:65 +#: application/views/awards/wac/index.php:56 +#: application/views/awards/waja/index.php:67 +#: application/views/awards/was/index.php:67 #: application/views/gridmap/index.php:125 application/views/user/edit.php:675 msgid "QRZ.com" msgstr "" @@ -2434,59 +2966,62 @@ msgstr "" #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:37 #: application/views/gridmap/index.php:156 -#: application/views/logbookadvanced/index.php:12 +#: application/views/logbookadvanced/index.php:13 msgid "Bearing" msgstr "" -#: application/views/activators/index.php:23 +#: application/views/activators/index.php:26 msgctxt "Orbiter LEO or GEO" msgid "Both" msgstr "" -#: application/views/activators/index.php:30 +#: application/views/activators/index.php:33 msgid "Minimum Count" msgstr "" -#: application/views/activators/index.php:77 +#: application/views/activators/index.php:76 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:46 -#: application/views/awards/cq/index.php:196 +#: application/views/awards/cq/index.php:198 #: application/views/awards/dok/index.php:196 #: application/views/awards/dxcc/index.php:280 -#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/helvetia/index.php:200 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:196 +#: application/views/awards/itu/index.php:198 #: application/views/awards/jcc/index.php:236 #: application/views/awards/pota/index.php:67 -#: application/views/awards/rac/index.php:190 +#: application/views/awards/rac/index.php:192 #: application/views/awards/sig/index.php:45 #: application/views/awards/sota/index.php:53 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:39 -#: application/views/awards/waja/index.php:200 -#: application/views/awards/was/index.php:198 +#: application/views/awards/wac/index.php:199 +#: application/views/awards/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 +#: application/views/distancerecords/index.php:50 #: application/views/public_search/empty.php:3 -#: application/views/qrz/export.php:64 application/views/timeline/index.php:102 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:135 msgid "Nothing found!" msgstr "" -#: application/views/activators/index.php:99 -#: application/views/adif/import.php:66 application/views/adif/import.php:172 -#: application/views/adif/import.php:217 +#: application/views/activators/index.php:98 +#: application/views/adif/import.php:66 application/views/adif/import.php:182 +#: application/views/adif/import.php:227 #: application/views/awards/pota/index.php:34 #: application/views/awards/sig/qso_list.php:11 #: application/views/awards/sota/index.php:25 #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:104 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:152 +#: application/views/contesting/index.php:156 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:168 +#: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 -#: application/views/lotw_views/index.php:39 +#: application/views/lotw_views/index.php:35 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 #: application/views/qslcard/index.php:28 @@ -2495,35 +3030,36 @@ msgstr "" #: application/views/qslprint/qslprint.php:21 #: application/views/qslprint/qsolist.php:6 #: application/views/qso/edit_ajax.php:62 application/views/qso/index.php:124 +#: application/views/reg1test/index.php:33 #: application/views/search/cqzones.php:32 #: application/views/search/cqzones_result.php:9 #: application/views/search/lotw_unconfirmed.php:33 #: application/views/search/lotw_unconfirmed_result.php:6 #: application/views/search/result.php:11 -#: application/views/simplefle/index.php:142 -#: application/views/station_profile/edit.php:36 +#: application/views/simplefle/index.php:148 +#: application/views/station_profile/edit.php:63 #: application/views/stationsetup/linkedlocations.php:17 -#: application/views/user/edit.php:123 application/views/user/main.php:4 -#: application/views/user/main.php:47 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:507 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 +#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:510 msgid "Callsign" msgstr "" -#: application/views/activators/index.php:100 +#: application/views/activators/index.php:99 msgid "Count" msgstr "" -#: application/views/activators/index.php:102 -#: application/views/timeline/index.php:121 -#: application/views/timeline/index.php:153 -#: application/views/timeline/index.php:178 -#: application/views/timeline/index.php:205 -#: application/views/timeline/index.php:232 -#: application/views/timeline/index.php:258 +#: application/views/activators/index.php:101 +#: application/views/timeline/index.php:154 +#: application/views/timeline/index.php:186 +#: application/views/timeline/index.php:211 +#: application/views/timeline/index.php:238 +#: application/views/timeline/index.php:265 +#: application/views/timeline/index.php:291 msgid "Show QSO's" msgstr "" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "" @@ -2564,10 +3100,12 @@ msgstr "" #: application/views/awards/wwff/index.php:32 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:25 -#: application/views/contesting/index.php:42 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36 +#: application/views/contesting/index.php:93 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:163 +#: application/views/debug/index.php:545 +#: application/views/distancerecords/index.php:16 +#: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2580,22 +3118,22 @@ msgstr "" #: application/views/qslcard/searchresult.php:4 #: application/views/qslprint/qslprint.php:22 #: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:64 -#: application/views/qso/index.php:100 +#: application/views/qso/index.php:100 application/views/satellite/pass.php:473 #: application/views/search/cqzones_result.php:7 #: application/views/search/result_search.php:4 #: application/views/search/search_result_ajax.php:89 -#: application/views/simplefle/index.php:140 +#: application/views/simplefle/index.php:146 #: application/views/statistics/custom.php:38 #: application/views/statistics/custom_result.php:40 #: application/views/statistics/custom_result.php:85 -#: application/views/timeline/index.php:116 -#: application/views/timeline/index.php:151 -#: application/views/timeline/index.php:176 -#: application/views/timeline/index.php:201 -#: application/views/timeline/index.php:230 -#: application/views/timeline/index.php:255 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:184 +#: application/views/timeline/index.php:209 +#: application/views/timeline/index.php:234 +#: application/views/timeline/index.php:263 +#: application/views/timeline/index.php:288 #: application/views/view_log/partial/log.php:4 -#: application/views/view_log/partial/log_ajax.php:57 +#: application/views/view_log/partial/log_ajax.php:59 #: application/views/visitor/index.php:147 #: application/views/widgets/qsos.php:24 msgid "Date" @@ -2606,10 +3144,12 @@ msgstr "Ημερομηνία" #: application/views/awards/wwff/index.php:33 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:26 -#: application/views/contesting/index.php:47 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37 +#: application/views/contesting/index.php:98 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:166 +#: application/views/debug/index.php:546 +#: application/views/distancerecords/index.php:17 +#: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2620,12 +3160,12 @@ msgstr "Ημερομηνία" #: application/views/search/cqzones_result.php:8 #: application/views/search/result_search.php:5 #: application/views/search/search_result_ajax.php:91 -#: application/views/simplefle/index.php:141 +#: application/views/simplefle/index.php:147 #: application/views/statistics/custom_result.php:86 -#: application/views/timeline/index.php:256 +#: application/views/timeline/index.php:289 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 -#: application/views/view_log/partial/log_ajax.php:59 +#: application/views/view_log/partial/log_ajax.php:61 #: application/views/visitor/index.php:150 #: application/views/widgets/qsos.php:26 msgid "Time" @@ -2634,7 +3174,7 @@ msgstr "Ωρα" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 -#: application/views/contesting/index.php:201 +#: application/views/contesting/index.php:248 #: application/views/debug/index.php:547 application/views/debug/index.php:582 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -2646,7 +3186,7 @@ msgstr "Ωρα" #: application/views/search/search_result_ajax.php:93 #: application/views/statistics/custom_result.php:87 #: application/views/view_log/partial/log.php:8 -#: application/views/view_log/partial/log_ajax.php:61 +#: application/views/view_log/partial/log_ajax.php:63 #: application/views/visitor/index.php:152 #: application/views/widgets/qsos.php:28 msgid "Call" @@ -2664,14 +3204,14 @@ msgstr "" msgid "DCL QSL Status" msgstr "" -#: application/views/adif/import.php:36 application/views/adif/import.php:242 +#: application/views/adif/import.php:36 application/views/adif/import.php:252 msgid "DARC DCL" msgstr "" #: application/views/adif/import.php:55 -#: application/views/dashboard/index.php:97 -#: application/views/dashboard/index.php:118 -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:112 +#: application/views/dashboard/index.php:133 +#: application/views/dashboard/index.php:139 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2681,29 +3221,29 @@ msgstr "Σημαντικό" msgid "Log Files must have the file type *.adi" msgstr "" -#: application/views/adif/import.php:56 application/views/view_log/qso.php:622 +#: application/views/adif/import.php:56 application/views/view_log/qso.php:625 msgid "Maximum file upload size is " msgstr "" -#: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:175 +#: application/views/adif/import.php:56 application/views/adif/import.php:230 +#: application/views/adif/import.php:268 application/views/debug/index.php:175 #: application/views/debug/index.php:192 application/views/debug/index.php:537 #: application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:34 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 -#: application/views/station_profile/index.php:31 #: application/views/stationsetup/stationsetup.php:111 -#: application/views/view_log/qso.php:622 +#: application/views/view_log/qso.php:625 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" msgstr "" #: application/views/adif/import.php:60 application/views/adif/import.php:62 -#: application/views/adif/import.php:168 application/views/adif/import.php:215 +#: application/views/adif/import.php:178 application/views/adif/import.php:225 #: application/views/eqsl/import.php:36 application/views/hrdlog/export.php:69 -#: application/views/qrz/export.php:89 application/views/webadif/export.php:89 +#: application/views/qrz/export.php:89 application/views/reg1test/index.php:30 +#: application/views/webadif/export.php:89 msgid "Select Station Location" msgstr "" @@ -2730,69 +3270,75 @@ msgstr "" #: application/views/adif/import.php:95 application/views/adif/import.php:105 #: application/views/adif/import.php:115 application/views/adif/import.php:125 +#: application/views/adif/import.php:135 msgid "Select if ADIF being imported does not contain this information." msgstr "" #: application/views/adif/import.php:103 -msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" +msgid "Mark imported QSOs as uploaded to eQSL Logbook" msgstr "" #: application/views/adif/import.php:113 -msgid "Mark imported QSOs as uploaded to QRZ Logbook" +msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" msgstr "" #: application/views/adif/import.php:123 -msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgid "Mark imported QSOs as uploaded to QRZ Logbook" msgstr "" #: application/views/adif/import.php:133 +msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgstr "" + +#: application/views/adif/import.php:143 msgid "Use DXCC information from ADIF" msgstr "" -#: application/views/adif/import.php:135 +#: application/views/adif/import.php:145 msgid "" "If not selected, Wavelog will attempt to determine DXCC information " "automatically." msgstr "" -#: application/views/adif/import.php:143 +#: application/views/adif/import.php:153 msgid "Always use login-callsign as operator-name on import" msgstr "" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:32 -#: application/views/interface_assets/footer.php:495 -#: application/views/interface_assets/footer.php:2119 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2133 msgid "DANGER" msgstr "" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 msgid "Ignore Stationcallsign on import" msgstr "" -#: application/views/adif/import.php:154 +#: application/views/adif/import.php:164 +#, php-format msgid "" -"If selected, Wavelog will try to import all QSO's of the ADIF, " +"If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " "regardless if they match to the chosen station-location." msgstr "" -#: application/views/adif/import.php:158 application/views/adif/import.php:273 +#: application/views/adif/import.php:168 application/views/adif/import.php:283 #: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 #: application/views/webadif/export.php:55 msgid "Upload" msgstr "" -#: application/views/adif/import.php:165 +#: application/views/adif/import.php:175 msgid "Take your logbook file anywhere!" msgstr "" -#: application/views/adif/import.php:166 +#: application/views/adif/import.php:176 msgid "" "Exporting ADIFs allows you to import contacts into third party applications " "like LoTW, Awards or just for keeping a backup." msgstr "" -#: application/views/adif/import.php:176 application/views/adif/import.php:222 +#: application/views/adif/import.php:186 application/views/adif/import.php:232 #: application/views/cfd/index.php:15 application/views/csv/index.php:118 #: application/views/dxatlas/index.php:118 #: application/views/hrdlog/export.php:77 application/views/kml/index.php:103 @@ -2801,7 +3347,7 @@ msgstr "" msgid "From date" msgstr "Από την ημερομηνία" -#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/adif/import.php:189 application/views/adif/import.php:235 #: application/views/cfd/index.php:20 application/views/csv/index.php:123 #: application/views/dxatlas/index.php:123 #: application/views/hrdlog/export.php:82 application/views/kml/index.php:108 @@ -2810,40 +3356,40 @@ msgstr "Από την ημερομηνία" msgid "To date" msgstr "" -#: application/views/adif/import.php:187 +#: application/views/adif/import.php:197 msgid "Mark exported QSOs as uploaded to LoTW" msgstr "" -#: application/views/adif/import.php:195 +#: application/views/adif/import.php:205 msgid "Export QSOs not uploaded to LoTW" msgstr "" -#: application/views/adif/import.php:200 +#: application/views/adif/import.php:210 msgid "Export QSO's" msgstr "" -#: application/views/adif/import.php:205 +#: application/views/adif/import.php:215 msgid "Export Satellite-Only QSOs" msgstr "" -#: application/views/adif/import.php:206 +#: application/views/adif/import.php:216 msgid "Export All Satellite QSOs" msgstr "" -#: application/views/adif/import.php:208 +#: application/views/adif/import.php:218 msgid "Export All Satellite QSOs Confirmed on LoTW" msgstr "" -#: application/views/adif/import.php:220 application/views/hrdlog/export.php:74 +#: application/views/adif/import.php:230 application/views/hrdlog/export.php:74 #: application/views/qrz/export.php:94 application/views/webadif/export.php:94 msgid "If a date range is not selected then all QSOs will be marked!" msgstr "" -#: application/views/adif/import.php:228 +#: application/views/adif/import.php:238 msgid "Mark QSOs as exported to LoTW" msgstr "" -#: application/views/adif/import.php:242 +#: application/views/adif/import.php:252 #, php-format msgid "" "Go to %s and export your logbook with confirmed DOKs. To speed up the " @@ -2852,36 +3398,47 @@ msgid "" "with DOK info." msgstr "" -#: application/views/adif/import.php:249 +#: application/views/adif/import.php:259 msgid "Only import DOK data from QSOs confirmed on DCL." msgstr "" -#: application/views/adif/import.php:251 +#: application/views/adif/import.php:261 msgid "" "Uncheck if you also want to update DOK with data from unconfirmed QSOs in " "DCL." msgstr "" -#: application/views/adif/import.php:258 +#: application/views/adif/import.php:268 msgid "Overwrites exisiting DOK in log by DCL (if different)." msgstr "" -#: application/views/adif/import.php:260 +#: application/views/adif/import.php:270 msgid "" "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " "log." msgstr "" -#: application/views/adif/import.php:267 +#: application/views/adif/import.php:277 msgid "Ignore QSOs that cannot be matched." msgstr "Ignore QSOs that cannot be matched" -#: application/views/adif/import.php:269 +#: application/views/adif/import.php:279 msgid "" "If unchecked, information about QSOs which could not be found in Wavelog " "will be displayed." msgstr "" +#: application/views/adif/import_failed.php:15 +msgid "The ADIF file could not be parsed correctly." +msgstr "" + +#: application/views/adif/import_failed.php:16 +msgid "" +"At least one of the ADIF fields could not be parsed and/or inserted into the " +"database. Please check the imported ADIF file. You can use an online ADIF " +"file checker. For example:" +msgstr "" + #: application/views/adif/import_success.php:15 msgid "Yay, its imported!" msgstr "" @@ -2934,24 +3491,22 @@ msgstr "" #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 -#: application/views/interface_assets/footer.php:43 -#: application/views/interface_assets/footer.php:530 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 -#: application/views/options/appearance.php:107 +#: application/views/options/appearance.php:116 #: application/views/options/dxcluster.php:67 #: application/views/options/email.php:112 #: application/views/options/oqrs.php:63 #: application/views/options/radios.php:45 #: application/views/options/version_dialog.php:78 -#: application/views/qso/components/winkeysettings.php:90 -#: application/views/qso/components/winkeysettings_results.php:90 #: application/views/satellite/create.php:70 #: application/views/simplefle/index.php:22 msgid "Save" msgstr "" #: application/views/api/help.php:14 -#: application/views/interface_assets/header.php:431 +#: application/views/interface_assets/header.php:437 msgid "API Keys" msgstr "" @@ -2975,7 +3530,7 @@ msgid "API URL" msgstr "" #: application/views/api/help.php:19 application/views/api/help.php:38 -#: application/views/cron/index.php:21 application/views/debug/index.php:36 +#: application/views/cron/index.php:22 application/views/debug/index.php:36 msgid "Copy to clipboard" msgstr "Αντιγραφή στο πρόχειρο" @@ -2984,14 +3539,15 @@ msgid "The API URL for this Wavelog instance is" msgstr "" #: application/views/api/help.php:20 application/views/dxcalendar/index.php:15 -#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:477 -#: application/views/qso/index.php:538 application/views/qso/index.php:583 +#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:504 +#: application/views/qso/index.php:560 application/views/qso/index.php:605 #: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 #: application/views/sattimers/index.php:73 #: application/views/sattimers/index.php:75 +#: application/views/sattimers/index.php:77 #: application/views/search/filter.php:69 msgid "Info" msgstr "Πληροφορίες" @@ -3007,7 +3563,7 @@ msgid "API Key" msgstr "" #: application/views/api/help.php:28 application/views/cron/edit.php:30 -#: application/views/cron/index.php:51 +#: application/views/cron/index.php:53 #: application/views/search/stored_queries.php:8 msgid "Description" msgstr "" @@ -3020,19 +3576,18 @@ msgstr "" msgid "Permissions" msgstr "" -#: application/views/api/help.php:31 application/views/cron/index.php:52 -#: application/views/lotw_views/index.php:45 +#: application/views/api/help.php:31 application/views/cron/index.php:54 +#: application/views/lotw_views/index.php:41 #: application/views/mode/index.php:31 #: application/views/oqrs/showrequests.php:91 #: application/views/sattimers/index.php:39 #: application/views/stationsetup/stationsetup.php:31 -#: application/views/timeline/index.php:119 -#: application/views/update/index.php:30 +#: application/views/timeline/index.php:152 msgid "Status" msgstr "Κατάσταση" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:519 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3068,6 +3623,7 @@ msgstr "" #: application/views/awards/counties/details.php:4 #: application/views/awards/details.php:1 #: application/views/awards/vucc/band.php:4 +#: application/views/distancerecords/details.php:1 #: application/views/timeline/details.php:2 msgid "Filtering on" msgstr "" @@ -3078,8 +3634,8 @@ msgstr "" #: application/views/awards/counties/index.php:6 #: application/views/awards/counties/index.php:13 -#: application/views/awards/cq/index.php:17 -#: application/views/awards/cq/index.php:24 +#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:26 #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:13 #: application/views/awards/dxcc/index.php:13 @@ -3088,12 +3644,12 @@ msgstr "" #: application/views/awards/ffma/index.php:14 #: application/views/awards/gridmaster/index.php:6 #: application/views/awards/gridmaster/index.php:13 -#: application/views/awards/helvetia/index.php:17 -#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:26 #: application/views/awards/iota/index.php:15 #: application/views/awards/iota/index.php:22 -#: application/views/awards/itu/index.php:17 -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:26 #: application/views/awards/jcc/index.php:15 #: application/views/awards/jcc/index.php:22 #: application/views/awards/pota/index.php:6 @@ -3106,10 +3662,12 @@ msgstr "" #: application/views/awards/vucc/index.php:13 #: application/views/awards/wab/index.php:11 #: application/views/awards/wab/index.php:18 -#: application/views/awards/waja/index.php:16 -#: application/views/awards/waja/index.php:23 -#: application/views/awards/was/index.php:17 -#: application/views/awards/was/index.php:24 +#: application/views/awards/wac/index.php:7 +#: application/views/awards/wac/index.php:14 +#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:25 +#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:26 #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:13 msgid "Award Info" @@ -3147,17 +3705,18 @@ msgid "Counties Confirmed" msgstr "" #: application/views/awards/counties/index.php:39 -#: application/views/awards/cq/index.php:174 +#: application/views/awards/cq/index.php:176 #: application/views/awards/dok/index.php:174 #: application/views/awards/dxcc/index.php:257 -#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/helvetia/index.php:179 #: application/views/awards/iota/index.php:201 -#: application/views/awards/itu/index.php:174 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:185 -#: application/views/awards/rac/index.php:169 -#: application/views/awards/waja/index.php:177 -#: application/views/awards/was/index.php:177 -#: application/views/dashboard/index.php:217 +#: application/views/awards/rac/index.php:171 +#: application/views/awards/wac/index.php:177 +#: application/views/awards/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:233 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3173,213 +3732,230 @@ msgstr "" msgid "Total" msgstr "" -#: application/views/awards/cq/index.php:18 +#: application/views/awards/cq/index.php:3 +#: application/views/awards/cq/index.php:150 application/views/csv/index.php:80 +#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/logbookadvanced/edit.php:6 +#: application/views/logbookadvanced/index.php:246 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:284 +#: application/views/qso/index.php:390 +#: application/views/search/cqzones_result.php:13 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:264 +#: application/views/timeplotter/index.php:44 +msgid "CQ Zone" +msgstr "" + +#: application/views/awards/cq/index.php:4 +#: application/views/awards/itu/index.php:4 +msgid "Hover over a zone" +msgstr "" + +#: application/views/awards/cq/index.php:20 msgid "CQ Magazine WAZ Award" msgstr "" -#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:21 msgid "" "The CQ Magazine is located in the US and one of the most popular amateur " "radio magazines in the world. The magazine first appeared in January 1945 " "and focuses on awards and the practical aspects of amateur radio." msgstr "" -#: application/views/awards/cq/index.php:20 +#: application/views/awards/cq/index.php:22 msgid "" "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to " "all 40 CQ Zones along with the corresponding confirmation." msgstr "" -#: application/views/awards/cq/index.php:21 +#: application/views/awards/cq/index.php:23 #, php-format msgctxt "uses 'CQ Magazine'" msgid "You can find all the information and rules on the Website of the %s." msgstr "" -#: application/views/awards/cq/index.php:23 +#: application/views/awards/cq/index.php:25 msgid "Awards - CQ Magazine WAZ" msgstr "" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 #: application/views/awards/wab/list.php:6 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:73 -#: application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:362 -#: application/views/interface_assets/footer.php:39 +#: application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:378 +#: application/views/interface_assets/footer.php:40 #: application/views/visitor/index.php:266 msgid "Confirmed" msgstr "Επιβεβαιωμένο" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:256 +#: application/views/dashboard/index.php:372 #: application/views/visitor/index.php:262 msgid "Worked" msgstr "" -#: application/views/awards/cq/index.php:36 +#: application/views/awards/cq/index.php:38 #: application/views/awards/dok/index.php:41 #: application/views/awards/dxcc/index.php:43 -#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:43 -#: application/views/awards/itu/index.php:36 +#: application/views/awards/itu/index.php:38 #: application/views/awards/jcc/index.php:34 -#: application/views/awards/rac/index.php:27 -#: application/views/awards/waja/index.php:35 -#: application/views/awards/was/index.php:35 +#: application/views/awards/rac/index.php:29 +#: application/views/awards/wac/index.php:26 +#: application/views/awards/waja/index.php:37 +#: application/views/awards/was/index.php:37 msgid "Show worked" msgstr "" -#: application/views/awards/cq/index.php:40 +#: application/views/awards/cq/index.php:42 #: application/views/awards/dok/index.php:45 #: application/views/awards/dxcc/index.php:47 -#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:47 -#: application/views/awards/itu/index.php:40 +#: application/views/awards/itu/index.php:42 #: application/views/awards/jcc/index.php:38 -#: application/views/awards/rac/index.php:31 -#: application/views/awards/waja/index.php:39 -#: application/views/awards/was/index.php:39 +#: application/views/awards/rac/index.php:33 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/waja/index.php:41 +#: application/views/awards/was/index.php:41 msgid "Show confirmed" msgstr "" -#: application/views/awards/cq/index.php:44 +#: application/views/awards/cq/index.php:46 #: application/views/awards/dxcc/index.php:51 -#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:51 -#: application/views/awards/itu/index.php:44 +#: application/views/awards/itu/index.php:46 #: application/views/awards/jcc/index.php:42 -#: application/views/awards/rac/index.php:35 -#: application/views/awards/waja/index.php:43 -#: application/views/awards/was/index.php:43 +#: application/views/awards/rac/index.php:37 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/waja/index.php:45 +#: application/views/awards/was/index.php:45 msgid "Show not worked" msgstr "" -#: application/views/awards/cq/index.php:50 +#: application/views/awards/cq/index.php:52 #: application/views/awards/dok/index.php:51 #: application/views/awards/dxcc/index.php:57 -#: application/views/awards/helvetia/index.php:49 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/helvetia/index.php:51 +#: application/views/awards/itu/index.php:52 #: application/views/awards/jcc/index.php:48 -#: application/views/awards/rac/index.php:41 -#: application/views/awards/waja/index.php:49 -#: application/views/awards/was/index.php:49 +#: application/views/awards/rac/index.php:43 +#: application/views/awards/wac/index.php:40 +#: application/views/awards/waja/index.php:51 +#: application/views/awards/was/index.php:51 msgid "Show QSO with QSL Type" msgstr "" -#: application/views/awards/cq/index.php:54 -#: application/views/awards/itu/index.php:54 -#: application/views/interface_assets/footer.php:2098 -#: application/views/qso/edit_ajax.php:378 +#: application/views/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/awards/wac/index.php:44 +#: application/views/interface_assets/footer.php:2112 +#: application/views/qso/edit_ajax.php:405 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "Κάρτa QSL" -#: application/views/awards/cq/index.php:110 +#: application/views/awards/cq/index.php:112 #: application/views/awards/dok/index.php:126 #: application/views/awards/dxcc/index.php:186 -#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/helvetia/index.php:111 #: application/views/awards/iota/index.php:129 -#: application/views/awards/itu/index.php:110 +#: application/views/awards/itu/index.php:112 #: application/views/awards/jcc/index.php:112 -#: application/views/awards/rac/index.php:101 -#: application/views/awards/waja/index.php:113 -#: application/views/awards/was/index.php:109 +#: application/views/awards/rac/index.php:103 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/waja/index.php:115 +#: application/views/awards/was/index.php:111 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:523 +#: application/views/logbookadvanced/index.php:551 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 msgid "Reset" msgstr "" -#: application/views/awards/cq/index.php:113 +#: application/views/awards/cq/index.php:115 msgid "Show CQ Zone Map" msgstr "" -#: application/views/awards/cq/index.php:122 +#: application/views/awards/cq/index.php:124 #: application/views/awards/dxcc/index.php:199 -#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/helvetia/index.php:124 #: application/views/awards/iota/index.php:142 -#: application/views/awards/itu/index.php:122 -#: application/views/awards/rac/index.php:114 -#: application/views/awards/waja/index.php:126 -#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:124 +#: application/views/awards/rac/index.php:116 +#: application/views/awards/waja/index.php:128 +#: application/views/awards/was/index.php:124 msgid "Table" msgstr "" -#: application/views/awards/cq/index.php:125 +#: application/views/awards/cq/index.php:127 #: application/views/awards/dok/index.php:128 #: application/views/awards/dxcc/index.php:202 -#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/helvetia/index.php:127 #: application/views/awards/iota/index.php:145 -#: application/views/awards/itu/index.php:125 +#: application/views/awards/itu/index.php:127 #: application/views/awards/jcc/index.php:129 -#: application/views/awards/rac/index.php:117 +#: application/views/awards/rac/index.php:119 #: application/views/awards/wab/index.php:108 -#: application/views/awards/waja/index.php:129 -#: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:516 +#: application/views/awards/waja/index.php:131 +#: application/views/awards/was/index.php:127 +#: application/views/logbookadvanced/index.php:544 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "" -#: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 -#: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:235 -#: application/views/logbookadvanced/index.php:586 -#: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:90 -#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 -#: application/views/qso/index.php:390 -#: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:106 -#: application/views/station_profile/edit.php:126 -#: application/views/timeline/index.php:231 -#: application/views/timeplotter/index.php:44 -msgid "CQ Zone" -msgstr "" - -#: application/views/awards/cq/index.php:165 +#: application/views/awards/cq/index.php:167 #: application/views/awards/dok/index.php:165 #: application/views/awards/dxcc/index.php:248 -#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/helvetia/index.php:170 #: application/views/awards/iota/index.php:192 -#: application/views/awards/itu/index.php:165 +#: application/views/awards/itu/index.php:167 #: application/views/awards/jcc/index.php:168 -#: application/views/awards/rac/index.php:160 -#: application/views/awards/waja/index.php:168 -#: application/views/awards/was/index.php:168 +#: application/views/awards/rac/index.php:162 +#: application/views/awards/wac/index.php:168 +#: application/views/awards/waja/index.php:170 +#: application/views/awards/was/index.php:170 msgid "Summary" msgstr "" -#: application/views/awards/cq/index.php:178 +#: application/views/awards/cq/index.php:180 #: application/views/awards/dok/index.php:178 #: application/views/awards/dxcc/index.php:262 -#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:206 -#: application/views/awards/itu/index.php:178 +#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:195 -#: application/views/awards/rac/index.php:173 -#: application/views/awards/waja/index.php:182 -#: application/views/awards/was/index.php:181 +#: application/views/awards/rac/index.php:175 +#: application/views/awards/wac/index.php:181 +#: application/views/awards/waja/index.php:184 +#: application/views/awards/was/index.php:183 msgid "Total worked" msgstr "" -#: application/views/awards/cq/index.php:185 +#: application/views/awards/cq/index.php:187 #: application/views/awards/dok/index.php:185 #: application/views/awards/dxcc/index.php:269 -#: application/views/awards/helvetia/index.php:188 +#: application/views/awards/helvetia/index.php:190 #: application/views/awards/iota/index.php:213 -#: application/views/awards/itu/index.php:185 +#: application/views/awards/itu/index.php:187 #: application/views/awards/jcc/index.php:214 -#: application/views/awards/rac/index.php:180 -#: application/views/awards/waja/index.php:189 -#: application/views/awards/was/index.php:188 +#: application/views/awards/rac/index.php:182 +#: application/views/awards/wac/index.php:188 +#: application/views/awards/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "" @@ -3427,23 +4003,24 @@ msgstr "" #: application/views/awards/dok/index.php:37 #: application/views/awards/dxcc/index.php:39 -#: application/views/awards/helvetia/index.php:31 +#: application/views/awards/helvetia/index.php:33 #: application/views/awards/iota/index.php:39 #: application/views/awards/jcc/index.php:30 -#: application/views/awards/rac/index.php:23 -#: application/views/awards/waja/index.php:31 -#: application/views/awards/was/index.php:31 +#: application/views/awards/rac/index.php:25 +#: application/views/awards/waja/index.php:33 +#: application/views/awards/was/index.php:33 msgid "Worked / Confirmed" msgstr "" #: application/views/awards/dok/index.php:80 #: application/views/awards/dxcc/index.php:120 -#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/helvetia/index.php:76 #: application/views/awards/iota/index.php:94 #: application/views/awards/jcc/index.php:77 -#: application/views/awards/rac/index.php:66 -#: application/views/awards/waja/index.php:78 -#: application/views/awards/was/index.php:74 +#: application/views/awards/rac/index.php:68 +#: application/views/awards/wac/index.php:66 +#: application/views/awards/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "" @@ -3464,10 +4041,12 @@ msgid "" msgstr "" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 msgid "ARRL website" msgstr "" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 #, php-format msgid "You can find all information about the DXCC Award on the %s." msgstr "" @@ -3489,63 +4068,77 @@ msgstr "" #: application/views/awards/dxcc/index.php:87 #: application/views/awards/iota/index.php:61 #: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/logbookadvanced/edit.php:144 +#: application/views/logbookadvanced/index.php:309 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 -#: application/views/view_log/qso.php:250 +#: application/views/view_log/qso.php:253 msgid "Antarctica" msgstr "" #: application/views/awards/dxcc/index.php:91 #: application/views/awards/iota/index.php:65 #: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/logbookadvanced/edit.php:143 +#: application/views/logbookadvanced/index.php:308 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 -#: application/views/view_log/qso.php:247 +#: application/views/view_log/qso.php:250 msgid "Africa" msgstr "" #: application/views/awards/dxcc/index.php:95 #: application/views/awards/iota/index.php:69 #: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/logbookadvanced/edit.php:146 +#: application/views/logbookadvanced/index.php:311 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 -#: application/views/view_log/qso.php:253 +#: application/views/view_log/qso.php:256 msgid "Asia" msgstr "" #: application/views/awards/dxcc/index.php:99 #: application/views/awards/iota/index.php:73 #: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/logbookadvanced/edit.php:147 +#: application/views/logbookadvanced/index.php:312 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 -#: application/views/view_log/qso.php:256 +#: application/views/view_log/qso.php:259 msgid "Europe" msgstr "" #: application/views/awards/dxcc/index.php:103 #: application/views/awards/iota/index.php:77 #: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/logbookadvanced/edit.php:145 +#: application/views/logbookadvanced/index.php:310 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 -#: application/views/view_log/qso.php:259 +#: application/views/view_log/qso.php:262 msgid "North America" msgstr "" #: application/views/awards/dxcc/index.php:107 #: application/views/awards/iota/index.php:81 #: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/logbookadvanced/edit.php:148 +#: application/views/logbookadvanced/index.php:313 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:265 +#: application/views/view_log/qso.php:268 msgid "South America" msgstr "" #: application/views/awards/dxcc/index.php:111 #: application/views/awards/iota/index.php:85 #: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/logbookadvanced/edit.php:149 +#: application/views/logbookadvanced/index.php:314 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 -#: application/views/view_log/qso.php:262 +#: application/views/view_log/qso.php:265 msgid "Oceania" msgstr "" @@ -3559,13 +4152,13 @@ msgstr "" #: application/views/awards/dxcc/index.php:226 #: application/views/awards/iota/index.php:170 -#: application/views/timeline/index.php:117 -#: application/views/timeline/index.php:204 +#: application/views/timeline/index.php:150 +#: application/views/timeline/index.php:237 msgid "Prefix" msgstr "" #: application/views/awards/ffma/index.php:8 -#: application/views/interface_assets/header.php:236 +#: application/views/interface_assets/header.php:240 msgid "Fred Fish Memorial Award" msgstr "" @@ -3620,11 +4213,20 @@ msgstr "" msgid "This map shows only QSOs worked on SAT." msgstr "" -#: application/views/awards/helvetia/index.php:18 +#: application/views/awards/helvetia/index.php:3 +msgctxt "Switzerland Canton" +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:4 +msgid "Hover over a canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:20 msgid "HELVETIA 26 | SWITZERLAND AWARD" msgstr "" -#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:21 msgid "" "The USKA (Union of Swiss Shortwave Amateurs) sponsors two awards, the " "HELVETIA 26 (H26) Award and the SWITZERLAND Award, aimed at promoting " @@ -3632,33 +4234,33 @@ msgid "" "as possible on multiple bands." msgstr "" -#: application/views/awards/helvetia/index.php:20 +#: application/views/awards/helvetia/index.php:22 msgid "" "These awards come in two versions: one for HF bands and the other for VHF " "(including SHF and UHF) bands. Valid connections for these awards date back " "to January 1, 1980" msgstr "" -#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/helvetia/index.php:23 #: application/views/awards/jcc/index.php:19 #: application/views/awards/sota/index.php:10 #: application/views/awards/wab/index.php:15 -#: application/views/awards/waja/index.php:20 +#: application/views/awards/waja/index.php:22 #: application/views/awards/wwff/index.php:10 #, php-format msgid "For more information, please visit: %s." msgstr "" -#: application/views/awards/helvetia/index.php:112 +#: application/views/awards/helvetia/index.php:114 msgid "Show Helvetia Map" msgstr "" -#: application/views/awards/helvetia/index.php:149 +#: application/views/awards/helvetia/index.php:151 msgid "Canton" msgstr "" #: application/views/awards/index.php:9 application/views/bands/index.php:46 -#: application/views/interface_assets/header.php:162 +#: application/views/interface_assets/header.php:164 msgid "CQ" msgstr "" @@ -3706,11 +4308,11 @@ msgstr "" #: application/views/awards/iota/index.php:171 #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 -#: application/views/contesting/index.php:153 -#: application/views/contesting/index.php:171 +#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:214 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:559 +#: application/views/logbookadvanced/index.php:587 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3720,12 +4322,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:19 #: application/views/stationsetup/stationsetup.php:30 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:203 application/views/user/edit.php:241 +#: application/views/timeline/index.php:236 application/views/user/edit.php:241 #: application/views/user/edit.php:263 application/views/user/edit.php:285 #: application/views/user/edit.php:307 application/views/user/edit.php:330 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:191 -#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:194 +#: application/views/view_log/qso.php:514 msgid "Name" msgstr "" @@ -3733,7 +4335,19 @@ msgstr "" msgid "Deleted" msgstr "" -#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:3 +#: application/views/awards/itu/index.php:150 +#: application/views/logbookadvanced/edit.php:10 +#: application/views/logbookadvanced/index.php:257 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:400 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 +msgid "ITU Zone" +msgstr "" + +#: application/views/awards/itu/index.php:21 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -3741,30 +4355,20 @@ msgid "" "(ITU)." msgstr "" -#: application/views/awards/itu/index.php:20 +#: application/views/awards/itu/index.php:22 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "" -#: application/views/awards/itu/index.php:23 +#: application/views/awards/itu/index.php:25 msgid "Awards - ITU Zones" msgstr "" -#: application/views/awards/itu/index.php:113 +#: application/views/awards/itu/index.php:115 msgid "Show ITU Zone Map" msgstr "" -#: application/views/awards/itu/index.php:148 -#: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:246 -#: application/views/logbookadvanced/index.php:589 -#: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:120 -#: application/views/station_profile/edit.php:143 -msgid "ITU Zone" -msgstr "" - #: application/views/awards/jcc/index.php:16 msgid "JCC - Japan Century Cities Award" msgstr "" @@ -3790,7 +4394,7 @@ msgstr "" #: application/views/awards/jcc/index.php:116 #: application/views/cabrillo/index.php:180 application/views/cfd/index.php:25 #: application/views/csv/index.php:128 application/views/dxatlas/index.php:128 -#: application/views/kml/index.php:113 +#: application/views/kml/index.php:113 application/views/reg1test/index.php:145 msgid "Export" msgstr "" @@ -3801,18 +4405,19 @@ msgid "Results" msgstr "" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 +#: application/views/distancerecords/index.php:13 msgid "Number" msgstr "" #: application/views/awards/jcc/index.php:152 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:524 msgid "City" msgstr "" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:368 #: application/views/distances/index.php:23 msgid "SAT" msgstr "" @@ -3844,15 +4449,24 @@ msgid "" msgstr "" #: application/views/awards/pota/index.php:31 -#: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:177 -#: application/views/station_profile/edit.php:245 -#: application/views/user/edit.php:595 application/views/view_log/qso.php:303 -#: application/views/view_log/qso.php:570 +#: application/views/qso/index.php:236 application/views/qso/index.php:492 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 +#: application/views/user/edit.php:595 application/views/view_log/qso.php:306 +#: application/views/view_log/qso.php:573 msgid "POTA Reference(s)" msgstr "Παραπομπή POTA" -#: application/views/awards/rac/index.php:104 +#: application/views/awards/rac/index.php:3 +msgctxt "Canada Province" +msgid "Province" +msgstr "" + +#: application/views/awards/rac/index.php:4 +msgid "Hover over a province" +msgstr "" + +#: application/views/awards/rac/index.php:106 msgid "Show RAC Map" msgstr "" @@ -3902,7 +4516,7 @@ msgstr "" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:535 +#: application/views/logbookadvanced/index.php:563 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -3998,17 +4612,48 @@ msgstr "" msgid "WAB Square" msgstr "" -#: application/views/awards/waja/index.php:17 +#: application/views/awards/wac/index.php:9 +msgid "" +"Sponsored by the International Amateur Radio Union (IARU), the Worked All " +"Continents award is issued for working and confirming all six continents. " +"These are North America, South America, Oceania, Asia, Europe and Africa." +msgstr "" + +#: application/views/awards/wac/index.php:13 +msgid "Awards - Worked All Continents (WAC)" +msgstr "" + +#: application/views/awards/wac/index.php:151 +#: application/views/continents/index.php:62 +#: application/views/logbookadvanced/edit.php:25 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 +#: application/views/view_log/qso.php:245 +msgid "Continent" +msgstr "" + +#: application/views/awards/waja/index.php:3 +msgctxt "Japan Prefecture" +msgid "Prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:4 +msgid "Hover over a prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:19 msgid "WAJA - Worked All Japan prefectures Award" msgstr "" -#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:20 msgid "" "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " "radio operators to work all the prefectures in Japan." msgstr "" -#: application/views/awards/waja/index.php:19 +#: application/views/awards/waja/index.php:21 msgid "" "May be claimed for having contacted (heard) and received a QSL card from an " "amateur station located in each of the 47 prefectures of Japan. A list of " @@ -4016,20 +4661,29 @@ msgid "" "however names of prefectures may be omitted." msgstr "" -#: application/views/awards/waja/index.php:116 +#: application/views/awards/waja/index.php:118 msgid "Show WAJA Map" msgstr "" -#: application/views/awards/waja/index.php:152 -#: application/views/timeline/index.php:152 +#: application/views/awards/waja/index.php:154 +#: application/views/timeline/index.php:185 msgid "Prefecture" msgstr "" -#: application/views/awards/was/index.php:18 +#: application/views/awards/was/index.php:3 +msgctxt "USA State" +msgid "State" +msgstr "" + +#: application/views/awards/was/index.php:4 +msgid "Hover over a state" +msgstr "" + +#: application/views/awards/was/index.php:20 msgid "WAS Award" msgstr "" -#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:21 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -4037,7 +4691,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:20 +#: application/views/awards/was/index.php:22 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -4046,13 +4700,13 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:21 +#: application/views/awards/was/index.php:23 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:112 +#: application/views/awards/was/index.php:114 msgid "Show WAS Map" msgstr "" @@ -4075,11 +4729,11 @@ msgid "" msgstr "" #: application/views/awards/wwff/index.php:31 -#: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:171 -#: application/views/station_profile/edit.php:232 -#: application/views/user/edit.php:591 application/views/view_log/qso.php:296 -#: application/views/view_log/qso.php:563 +#: application/views/qso/index.php:224 application/views/qso/index.php:479 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 +#: application/views/user/edit.php:591 application/views/view_log/qso.php:299 +#: application/views/view_log/qso.php:566 msgid "WWFF Reference" msgstr "Παραπομπή WWFF" @@ -4134,8 +4788,8 @@ msgstr "" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 #: application/views/contesting/index.php:15 -#: application/views/contesting/index.php:94 -#: application/views/contesting/index.php:169 +#: application/views/contesting/index.php:52 +#: application/views/contesting/index.php:145 #: application/views/qso/index.php:314 msgid "None" msgstr "" @@ -4215,25 +4869,25 @@ msgid "" "will be hidden and cannot be selected." msgstr "" -#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:351 -#: application/views/qso/index.php:248 application/views/qso/index.php:494 -#: application/views/user/edit.php:599 application/views/view_log/qso.php:325 -#: application/views/view_log/qso.php:577 +#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 +#: application/views/qso/index.php:248 application/views/qso/index.php:504 +#: application/views/user/edit.php:599 application/views/view_log/qso.php:328 +#: application/views/view_log/qso.php:580 msgid "Sig" msgstr "" -#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:312 -#: application/views/qso/index.php:433 +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:339 +#: application/views/qso/index.php:443 msgid "USA County" msgstr "Κομητεία ΗΠΑ " #: application/views/bands/index.php:58 -#: application/views/interface_assets/header.php:208 +#: application/views/interface_assets/header.php:212 msgid "WAJA" msgstr "" #: application/views/bands/index.php:59 -#: application/views/interface_assets/header.php:232 +#: application/views/interface_assets/header.php:236 msgid "WAS" msgstr "" @@ -4263,9 +4917,8 @@ msgstr "" #: application/views/bands/index.php:152 #: application/views/contesting/add.php:74 -#: application/views/interface_assets/footer.php:42 -#: application/views/qso/components/winkeysettings.php:91 -#: application/views/qso/components/winkeysettings_results.php:91 +#: application/views/contesting/index.php:83 +#: application/views/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4295,22 +4948,28 @@ msgstr "" #: application/views/cabrillo/index.php:2 #: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:59 +#: application/views/reg1test/index.php:2 +#: application/views/reg1test/index.php:36 msgid "Proceed" msgstr "" #: application/views/cabrillo/index.php:3 +#: application/views/reg1test/index.php:3 msgid "Select Year" msgstr "" #: application/views/cabrillo/index.php:4 +#: application/views/reg1test/index.php:4 msgid "Select Contest" msgstr "" #: application/views/cabrillo/index.php:5 +#: application/views/reg1test/index.php:5 msgid "Select Date Range" msgstr "" #: application/views/cabrillo/index.php:6 +#: application/views/reg1test/index.php:7 msgid "No contests were found for this station location!" msgstr "" @@ -4323,10 +4982,12 @@ msgid "Select Station Location:" msgstr "" #: application/views/cabrillo/index.php:44 +#: application/views/reg1test/index.php:53 msgid "Club" msgstr "" #: application/views/cabrillo/index.php:48 +#: application/views/reg1test/index.php:58 msgid "Category Operator" msgstr "" @@ -4367,10 +5028,12 @@ msgid "Category Overlay" msgstr "" #: application/views/cabrillo/index.php:150 +#: application/views/reg1test/index.php:70 msgid "Operators" msgstr "" #: application/views/cabrillo/index.php:155 +#: application/views/reg1test/index.php:139 msgid "Soapbox" msgstr "" @@ -4395,6 +5058,7 @@ msgid "Address Country" msgstr "" #: application/views/cabrillo/index.php:186 +#: application/views/reg1test/index.php:150 msgid "No contests were found in your log." msgstr "" @@ -4428,13 +5092,13 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:158 +#: application/views/contesting/index.php:219 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:629 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 -#: application/views/view_log/qso.php:199 +#: application/views/view_log/qso.php:202 msgid "Comment" msgstr "Σχόλιο" @@ -4466,9 +5130,9 @@ msgid "No Contests" msgstr "" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/edit.php:21 -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:635 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4496,10 +5160,11 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:38 -#: application/views/dashboard/index.php:262 -#: application/views/dashboard/index.php:289 -#: application/views/dashboard/index.php:310 -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:278 +#: application/views/dashboard/index.php:305 +#: application/views/dashboard/index.php:326 +#: application/views/dashboard/index.php:347 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "" @@ -4533,7 +5198,7 @@ msgstr "" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:466 +#: application/views/interface_assets/header.php:472 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:43 @@ -4588,15 +5253,15 @@ msgid "Name of Contest in ADIF-specification" msgstr "" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "" #: application/views/contesting/edit.php:31 -#: application/views/contesting/index.php:24 -#: application/views/qso/edit_ajax.php:548 -#: application/views/view_log/qso.php:275 +#: application/views/contesting/index.php:25 +#: application/views/qso/edit_ajax.php:575 +#: application/views/view_log/qso.php:278 msgid "Contest Name" msgstr "Ονομα Διαγωνισμού" @@ -4632,90 +5297,138 @@ msgstr "" msgid "Serial + Gridsquare" msgstr "" -#: application/views/contesting/index.php:34 +#: application/views/contesting/index.php:21 +msgid "Serial + Gridsquare + Exchange" +msgstr "" + +#: application/views/contesting/index.php:35 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:539 application/views/qso/index.php:352 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:352 msgid "Operator Callsign" msgstr "" -#: application/views/contesting/index.php:116 -#: application/views/contesting/index.php:208 -#: application/views/qso/edit_ajax.php:571 -msgid "Serial (S)" +#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:45 +msgid "More Settings" msgstr "" -#: application/views/contesting/index.php:121 -#: application/views/contesting/index.php:206 -msgid "Exch (S)" -msgstr "" - -#: application/views/contesting/index.php:126 -msgid "Gridsquare (S)" -msgstr "" - -#: application/views/contesting/index.php:136 -#: application/views/contesting/index.php:209 -#: application/views/qso/edit_ajax.php:566 -msgid "Serial (R)" -msgstr "" - -#: application/views/contesting/index.php:141 -#: application/views/contesting/index.php:207 -msgid "Exch (R)" -msgstr "" - -#: application/views/contesting/index.php:146 -msgid "Gridsquare (R)" -msgstr "" - -#: application/views/contesting/index.php:163 -msgid "Reset QSO" -msgstr "Επαναφορά QSO" - -#: application/views/contesting/index.php:164 -#: application/views/qso/index.php:607 -msgid "Save QSO" -msgstr "Aποθήκευση QSO" - -#: application/views/contesting/index.php:166 +#: application/views/contesting/index.php:49 msgid "Copy received exchange to" msgstr "" -#: application/views/contesting/index.php:168 +#: application/views/contesting/index.php:51 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "" -#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:55 msgid "Age" msgstr "" -#: application/views/contesting/index.php:174 +#: application/views/contesting/index.php:57 msgid "RX Power (W)" msgstr "" -#: application/views/contesting/index.php:175 +#: application/views/contesting/index.php:58 msgid "Locator" msgstr "Τοποθετών" -#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:59 +#: application/views/qso/edit_ajax.php:177 +msgid "QTH" +msgstr "" + +#: application/views/contesting/index.php:64 +msgid "Sequence of Exchanges" +msgstr "" + +#: application/views/contesting/index.php:67 +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 "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Grid" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Serial" +msgstr "" + +#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:255 +#: application/views/qso/edit_ajax.php:598 +msgid "Serial (S)" +msgstr "" + +#: application/views/contesting/index.php:177 +msgid "Gridsquare (S)" +msgstr "" + +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:253 +msgid "Exch (S)" +msgstr "" + +#: application/views/contesting/index.php:196 +#: application/views/contesting/index.php:256 +#: application/views/qso/edit_ajax.php:593 +msgid "Serial (R)" +msgstr "" + +#: application/views/contesting/index.php:201 +msgid "Gridsquare (R)" +msgstr "" + +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:254 +msgid "Exch (R)" +msgstr "" + +#: application/views/contesting/index.php:224 +msgid "Reset QSO" +msgstr "Επαναφορά QSO" + +#: application/views/contesting/index.php:225 +#: application/views/qso/index.php:629 +msgid "Save QSO" +msgstr "Aποθήκευση QSO" + +#: application/views/contesting/index.php:234 msgid "Callsign Suggestions" msgstr "Προτάσεις διακριτικού" -#: application/views/contesting/index.php:194 +#: application/views/contesting/index.php:241 msgid "Contest Logbook" msgstr "Αρχείο διαγωνισμού" -#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:258 #: application/views/qso/edit_ajax.php:164 msgid "VUCC Gridsquare" msgstr "" -#: application/views/continents/index.php:62 -#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 -#: application/views/view_log/qso.php:242 -msgid "Continent" -msgstr "" - #: application/views/continents/index.php:63 #: application/views/statistics/index.php:19 #: application/views/statistics/index.php:113 @@ -4733,14 +5446,15 @@ msgstr "" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:261 -#: application/views/station_profile/edit.php:314 +#: application/views/options/appearance.php:109 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 msgid "Enabled" msgstr "" -#: application/views/cron/edit.php:36 application/views/cron/index.php:53 +#: application/views/cron/edit.php:36 application/views/cron/index.php:55 msgid "Intervall" msgstr "" @@ -4790,6 +5504,7 @@ msgstr "" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "" @@ -4803,79 +5518,84 @@ msgid "" "requiring CLI access." msgstr "" -#: application/views/cron/index.php:18 +#: application/views/cron/index.php:19 msgid "" "To execute cron jobs based on the data below, remove all old cron jobs and " "create a new one:" msgstr "" -#: application/views/cron/index.php:27 application/views/cron/index.php:31 -msgid "Status Master-Cron" +#: application/views/cron/index.php:29 application/views/cron/index.php:33 +msgid "Status Master-Cron:" msgstr "" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgctxt "PHP Version" msgid "Min. Version is" msgstr "" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgid "PHP Version not supported." msgstr "" -#: application/views/cron/index.php:41 +#: application/views/cron/index.php:43 msgid "Cron List" msgstr "" -#: application/views/cron/index.php:50 +#: application/views/cron/index.php:52 #: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "" -#: application/views/cron/index.php:54 +#: application/views/cron/index.php:56 msgid "Last Run" msgstr "" -#: application/views/cron/index.php:55 +#: application/views/cron/index.php:57 msgid "Next Run" msgstr "" -#: application/views/cron/index.php:68 +#: application/views/cron/index.php:70 msgid "healthy" msgstr "" -#: application/views/cron/index.php:70 +#: application/views/cron/index.php:72 msgid "failed" msgstr "" -#: application/views/cron/index.php:75 +#: application/views/cron/index.php:74 +msgid "pending" +msgstr "" + +#: application/views/cron/index.php:79 msgid "disabled" msgstr "" -#: application/views/cron/index.php:79 application/views/cron/index.php:81 -#: application/views/cron/index.php:83 application/views/debug/index.php:494 +#: application/views/cron/index.php:83 application/views/cron/index.php:85 +#: application/views/cron/index.php:87 application/views/debug/index.php:494 #: application/views/debug/index.php:500 application/views/debug/index.php:505 #: application/views/debug/index.php:510 application/views/debug/index.php:515 #: application/views/debug/index.php:520 application/views/debug/index.php:525 +#: application/views/user/index.php:138 msgid "never" msgstr "" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:102 msgid "Your Mastercron isn't running." msgstr "" -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:103 msgid "" "Copy the cron above to a external cron service or into your server's cron to " "use this cron manager." msgstr "" -#: application/views/cron/index.php:100 +#: application/views/cron/index.php:104 msgid "" "On a basic linux server with shell access use this command to edit your " "crons:" msgstr "" -#: application/views/cron/index.php:107 +#: application/views/cron/index.php:111 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -4893,154 +5613,10 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:411 msgid "Propagation Mode" msgstr "Λειτουργία διάδοσης" -#: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:214 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 -msgctxt "Propagation Mode" -msgid "Aircraft Scatter" -msgstr "" - -#: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:215 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 -msgctxt "Propagation Mode" -msgid "Aurora" -msgstr "" - -#: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:216 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 -msgctxt "Propagation Mode" -msgid "Aurora-E" -msgstr "" - -#: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:217 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 -msgctxt "Propagation Mode" -msgid "Back scatter" -msgstr "" - -#: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:218 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 -msgctxt "Propagation Mode" -msgid "EchoLink" -msgstr "" - -#: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:219 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 -msgctxt "Propagation Mode" -msgid "Earth-Moon-Earth" -msgstr "" - -#: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:220 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 -msgctxt "Propagation Mode" -msgid "Sporadic E" -msgstr "" - -#: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:221 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 -msgctxt "Propagation Mode" -msgid "Field Aligned Irregularities" -msgstr "" - -#: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:222 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 -msgctxt "Propagation Mode" -msgid "F2 Reflection" -msgstr "" - -#: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:223 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 -msgctxt "Propagation Mode" -msgid "Internet-assisted" -msgstr "" - -#: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:224 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 -msgctxt "Propagation Mode" -msgid "Ionoscatter" -msgstr "" - -#: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:225 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 -msgctxt "Propagation Mode" -msgid "IRLP" -msgstr "" - -#: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:226 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 -msgctxt "Propagation Mode" -msgid "Meteor scatter" -msgstr "" - -#: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:227 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 -msgctxt "Propagation Mode" -msgid "Terrestrial or atmospheric repeater or transponder" -msgstr "" - -#: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:228 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 -msgctxt "Propagation Mode" -msgid "Rain scatter" -msgstr "" - -#: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:229 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 -msgctxt "Propagation Mode" -msgid "Satellite" -msgstr "Δορυφόρος" - -#: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:230 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 -msgctxt "Propagation Mode" -msgid "Trans-equatorial" -msgstr "" - -#: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:231 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 -msgctxt "Propagation Mode" -msgid "Tropospheric ducting" -msgstr "" - #: application/views/dashboard/index.php:5 msgid "RSTS" msgstr "" @@ -5049,85 +5625,99 @@ msgstr "" msgid "RSTR" msgstr "" -#: application/views/dashboard/index.php:56 +#: application/views/dashboard/index.php:58 msgid "" "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" msgstr "" -#: application/views/dashboard/index.php:63 +#: application/views/dashboard/index.php:65 #, php-format msgctxt "Dashboard Warning" -msgid "You need to update country files! Click %s to do it." +msgid "You need to update country files! Click %shere%s to do it." msgstr "" -#: application/views/dashboard/index.php:72 +#: application/views/dashboard/index.php:73 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station locations. Click %s to do it:" +msgid "You have no station locations. Click %shere%s to do it." msgstr "" #: application/views/dashboard/index.php:81 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station logbook. Click %s to do it:" +msgid "You have no station logbook. Click %shere%s to do it." msgstr "" -#: application/views/dashboard/index.php:91 +#: application/views/dashboard/index.php:89 +#, php-format +msgctxt "Dashboard Warning" +msgid "" +"Your active Station Location isn't linked to your Logbook. Click %shere%s to " +"do it." +msgstr "" + +#: application/views/dashboard/index.php:97 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station linked to your Logbook. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:106 #, php-format msgid "You have had %d QSO today" msgid_plural "You have had %d QSOs today" msgstr[0] "" msgstr[1] "" -#: application/views/dashboard/index.php:97 +#: application/views/dashboard/index.php:112 msgid "You have made no QSOs today; time to turn on the radio!" msgstr "Δεν έχετε κάνει κανένα QSO σήμερα. ώρα να ανοίξετε τον ασύρματο!" -#: application/views/dashboard/index.php:104 +#: application/views/dashboard/index.php:119 msgid "Attention: you need to set an active station location." msgstr "Προσοχή: πρέπει να ορίσετε μια ενεργή θέση σταθμού." -#: application/views/dashboard/index.php:110 +#: application/views/dashboard/index.php:125 msgid "" "You have themes without defined theme mode. Please ask the admin to edit the " "themes." msgstr "" -#: application/views/dashboard/index.php:118 +#: application/views/dashboard/index.php:133 msgid "At least one of your LoTW certificates is expired!" msgstr "Τουλάχιστον ένα από τα πιστοποιητικά LoTW σας έχει λήξει!" -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:139 msgid "At least one of your LoTW certificates is about to expire!" msgstr "Τουλάχιστον ένα από τα πιστοποιητικά LoTW πρόκειται να λήξει!" -#: application/views/dashboard/index.php:213 +#: application/views/dashboard/index.php:229 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "QSOs Αναλυτικά" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:252 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "Χώρες Αναλυτικά" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:269 #: application/views/visitor/index.php:275 msgid "Needed" msgstr "Απαιτείται" -#: application/views/dashboard/index.php:266 -#: application/views/dashboard/index.php:293 -#: application/views/dashboard/index.php:314 -#: application/views/dashboard/index.php:335 +#: application/views/dashboard/index.php:282 +#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:330 +#: application/views/dashboard/index.php:351 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:167 -#: application/views/qso/edit_ajax.php:390 -#: application/views/qso/edit_ajax.php:451 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:550 +#: application/views/qso/edit_ajax.php:417 +#: application/views/qso/edit_ajax.php:478 +#: application/views/qso/edit_ajax.php:518 application/views/qso/index.php:572 #: application/views/search/result_search.php:8 #: application/views/search/search_result_ajax.php:180 #: application/views/search/search_result_ajax.php:260 @@ -5135,91 +5725,91 @@ msgstr "Απαιτείται" #: application/views/search/search_result_ajax.php:332 #: application/views/search/search_result_ajax.php:362 #: application/views/statistics/custom_result.php:89 -#: application/views/view_log/partial/log_ajax.php:140 -#: application/views/view_log/partial/log_ajax.php:217 -#: application/views/view_log/partial/log_ajax.php:237 -#: application/views/view_log/partial/log_ajax.php:287 -#: application/views/view_log/partial/log_ajax.php:295 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:289 +#: application/views/view_log/partial/log_ajax.php:297 #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 -#: src/QSLManager/QSO.php:371 src/QSLManager/QSO.php:423 -#: src/QSLManager/QSO.php:459 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:270 +#: src/QSLManager/QSO.php:373 src/QSLManager/QSO.php:425 +#: src/QSLManager/QSO.php:461 msgid "Sent" msgstr "Απεσταλμένα" -#: application/views/dashboard/index.php:272 -#: application/views/dashboard/index.php:299 -#: application/views/dashboard/index.php:320 -#: application/views/dashboard/index.php:341 +#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:315 +#: application/views/dashboard/index.php:336 +#: application/views/dashboard/index.php:357 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 #: application/views/qslprint/qsolist.php:151 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:423 -#: application/views/qso/edit_ajax.php:464 -#: application/views/qso/edit_ajax.php:503 +#: application/views/qso/edit_ajax.php:450 +#: application/views/qso/edit_ajax.php:491 +#: application/views/qso/edit_ajax.php:530 #: application/views/search/search_result_ajax.php:222 #: application/views/search/search_result_ajax.php:273 #: application/views/search/search_result_ajax.php:313 #: application/views/search/search_result_ajax.php:345 #: application/views/search/search_result_ajax.php:375 -#: application/views/view_log/partial/log_ajax.php:178 -#: application/views/view_log/partial/log_ajax.php:218 -#: application/views/view_log/partial/log_ajax.php:263 -#: application/views/view_log/partial/log_ajax.php:288 -#: application/views/view_log/partial/log_ajax.php:296 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:265 +#: application/views/view_log/partial/log_ajax.php:290 +#: application/views/view_log/partial/log_ajax.php:298 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 -#: src/QSLManager/QSO.php:394 src/QSLManager/QSO.php:436 -#: src/QSLManager/QSO.php:472 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:315 +#: src/QSLManager/QSO.php:396 src/QSLManager/QSO.php:438 +#: src/QSLManager/QSO.php:474 msgid "Received" msgstr "Ελήφθη" -#: application/views/dashboard/index.php:278 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:388 -#: application/views/logbookadvanced/index.php:399 +#: application/views/dashboard/index.php:294 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:415 +#: application/views/logbookadvanced/index.php:426 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 -#: application/views/qso/edit_ajax.php:395 -#: application/views/qso/edit_ajax.php:428 -#: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:469 +#: application/views/qso/edit_ajax.php:422 +#: application/views/qso/edit_ajax.php:455 +#: application/views/qso/edit_ajax.php:483 #: application/views/qso/edit_ajax.php:496 -#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:555 +#: application/views/qso/edit_ajax.php:523 +#: application/views/qso/edit_ajax.php:535 application/views/qso/index.php:577 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 -#: application/views/view_log/partial/log_ajax.php:146 -#: application/views/view_log/partial/log_ajax.php:184 -#: application/views/view_log/partial/log_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:273 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 -#: src/QSLManager/QSO.php:319 src/QSLManager/QSO.php:379 -#: src/QSLManager/QSO.php:402 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +#: application/views/view_log/partial/log_ajax.php:249 +#: application/views/view_log/partial/log_ajax.php:275 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:276 +#: src/QSLManager/QSO.php:321 src/QSLManager/QSO.php:381 +#: src/QSLManager/QSO.php:404 msgid "Requested" msgstr "Έχει ζητηθεί" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:304 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:351 +#: application/views/dashboard/index.php:367 msgid "VUCC-Grids" msgstr "" #: application/views/dayswithqso/index.php:2 -#: application/views/interface_assets/header.php:146 +#: application/views/interface_assets/header.php:148 msgid "Days with QSOs" msgstr "" @@ -5248,7 +5838,7 @@ msgstr "" #: application/views/dayswithqso/index.php:58 #: application/views/dayswithqso/index.php:86 #: application/views/dayswithqso/index.php:108 -#: application/views/timeline/index.php:120 +#: application/views/timeline/index.php:153 msgid "End Date" msgstr "" @@ -5315,9 +5905,7 @@ msgstr "" #: application/views/debug/index.php:47 #, php-format -msgid "" -"Check this wiki article here for " -"more information." +msgid "Check this wiki article %shere%s for more information." msgstr "" #: application/views/debug/index.php:48 @@ -5461,7 +6049,7 @@ msgstr "" msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:283 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:671 msgid "Settings" msgstr "" @@ -5518,7 +6106,7 @@ msgstr "" #: application/views/debug/index.php:506 application/views/debug/index.php:511 #: application/views/debug/index.php:516 application/views/debug/index.php:521 #: application/views/debug/index.php:526 -#: application/views/station_profile/edit.php:22 +#: application/views/station_profile/edit.php:49 msgid "Update" msgstr "" @@ -5560,9 +6148,8 @@ msgstr[1] "" #: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:57 -#: application/views/station_profile/edit.php:46 -#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" @@ -5590,69 +6177,93 @@ msgid "Everything ok" msgstr "" #: application/views/debug/index.php:629 -msgid "Bulgarian" +msgid "Albanian" msgstr "" #: application/views/debug/index.php:630 -msgid "Chinese (Simplified)" +msgid "Bosnian" msgstr "" #: application/views/debug/index.php:631 -msgid "Czech" +msgid "Bulgarian" msgstr "" #: application/views/debug/index.php:632 -msgid "Dutch" +msgid "Chinese (Simplified)" msgstr "" #: application/views/debug/index.php:633 -msgid "English" +msgid "Croatian" msgstr "" #: application/views/debug/index.php:634 -msgid "Finnish" +msgid "Czech" msgstr "" #: application/views/debug/index.php:635 -msgid "French" +msgid "Dutch" msgstr "" #: application/views/debug/index.php:636 -msgid "German" +msgid "English" msgstr "" #: application/views/debug/index.php:637 -msgid "Greek" +msgid "Finnish" msgstr "" #: application/views/debug/index.php:638 -msgid "Italian" +msgid "French" msgstr "" #: application/views/debug/index.php:639 -msgid "Polish" +msgid "German" msgstr "" #: application/views/debug/index.php:640 -msgid "Portuguese" +msgid "Greek" msgstr "" #: application/views/debug/index.php:641 -msgid "Russian" +msgid "Italian" msgstr "" #: application/views/debug/index.php:642 -msgid "Spanish" +msgid "Montenegrin" msgstr "" #: application/views/debug/index.php:643 -msgid "Swedish" +msgid "Polish" msgstr "" #: application/views/debug/index.php:644 +msgid "Portuguese" +msgstr "" + +#: application/views/debug/index.php:645 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:646 +msgid "Serbian" +msgstr "" + +#: application/views/debug/index.php:647 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:648 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:649 msgid "Turkish" msgstr "" +#: application/views/distancerecords/index.php:4 +msgid "This page lists distance records per satellite based on gridsquares." +msgstr "" + #: application/views/distances/index.php:7 #: application/views/interface_assets/footer.php:30 #: application/views/simplefle/index.php:68 @@ -5660,7 +6271,8 @@ msgid "QSO Data" msgstr "" #: application/views/distances/index.php:9 -msgid "contacts were plotted.
Your furthest contact was with" +#, php-format +msgid "contacts were plotted.%s Your furthest contact was with" msgstr "" #: application/views/distances/index.php:10 @@ -5702,7 +6314,7 @@ msgid "Date to" msgstr "" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:366 +#: application/views/view_log/qso.php:369 msgid "QSL Info" msgstr "Πληροφορίες QSL" @@ -5728,7 +6340,7 @@ msgstr "" #: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 #: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 #: application/views/eqsl/tools.php:15 -#: application/views/interface_assets/header.php:243 +#: application/views/interface_assets/header.php:247 msgid "Tools" msgstr "" @@ -5868,27 +6480,15 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2324 -#: application/views/interface_assets/footer.php:2342 -#: application/views/interface_assets/footer.php:2363 -#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2338 +#: application/views/interface_assets/footer.php:2356 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 #: application/views/qslcard/index.php:66 -#: application/views/view_log/qso.php:614 +#: application/views/view_log/qso.php:617 msgid "View" msgstr "" -#: application/views/gridmap/index.php:38 -#: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:604 -#: application/views/logbookadvanced/useroptions.php:118 -msgid "Propagation" -msgstr "" - -#: application/views/gridmap/index.php:42 -msgid "None/Empty" -msgstr "" - #: application/views/gridmap/index.php:43 msgid "All except SAT" msgstr "" @@ -5984,8 +6584,8 @@ msgstr "" #: application/views/interface_assets/footer.php:31 #: application/views/search/search_result_ajax.php:404 #: application/views/view_log/partial/log.php:135 -#: application/views/view_log/partial/log_ajax.php:318 -#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log_ajax.php:320 +#: application/views/view_log/qso.php:437 msgid "Edit QSO" msgstr "Επεξεργασία QSO" @@ -5993,171 +6593,192 @@ msgstr "Επεξεργασία QSO" msgid "Attention" msgstr "" -#: application/views/interface_assets/footer.php:36 -msgid "OK" -msgstr "" - -#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/footer.php:38 msgid "Warning! Are you sure you want delete QSO with " msgstr "" -#: application/views/interface_assets/footer.php:38 +#: application/views/interface_assets/footer.php:39 #: application/views/user/edit.php:493 msgid "Colors" msgstr "" -#: application/views/interface_assets/footer.php:40 +#: application/views/interface_assets/footer.php:41 msgid "Worked not confirmed" msgstr "" -#: application/views/interface_assets/footer.php:41 +#: application/views/interface_assets/footer.php:42 msgid "Not worked" msgstr "" -#: application/views/interface_assets/footer.php:44 -#: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/interface_assets/footer.php:46 +#: application/views/qso/index.php:623 +#: application/views/visitor/layout/footer.php:246 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:47 #: application/views/qso/edit_ajax.php:211 -#: application/views/qso/edit_ajax.php:512 +#: application/views/qso/edit_ajax.php:539 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "" -#: application/views/interface_assets/footer.php:127 -#: application/views/interface_assets/header.php:434 +#: application/views/interface_assets/footer.php:48 +msgid "No states for this DXCC available" +msgstr "" + +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "" + +#: application/views/interface_assets/footer.php:132 +#: application/views/interface_assets/header.php:440 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:392 +#: application/views/interface_assets/footer.php:398 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:395 +#: application/views/interface_assets/footer.php:401 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:411 +#: application/views/interface_assets/footer.php:417 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:413 +#: application/views/interface_assets/footer.php:419 #: application/views/search/filter.php:46 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:415 +#: application/views/interface_assets/footer.php:421 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:420 +#: application/views/interface_assets/footer.php:426 #: application/views/search/filter.php:60 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:432 -#: application/views/interface_assets/footer.php:561 -#: application/views/interface_assets/footer.php:625 +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:437 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:458 -#: application/views/interface_assets/footer.php:589 +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 #: application/views/search/filter.php:79 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:496 +#: application/views/interface_assets/footer.php:502 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:516 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:519 +#: application/views/interface_assets/footer.php:525 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:545 +#: application/views/interface_assets/footer.php:551 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:549 +#: application/views/interface_assets/footer.php:555 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:678 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1156 -#, php-format -msgid "You're not logged it. Please login" +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:533 +msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:1362 -#: application/views/interface_assets/footer.php:1366 -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1506 -#: application/views/interface_assets/footer.php:1510 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:731 +msgid "Count: " +msgstr "" + +#: application/views/interface_assets/footer.php:732 +msgid "Grids: " +msgstr "" + +#: application/views/interface_assets/footer.php:1167 +#, php-format +msgid "You're not logged in. Please %slogin%s" +msgstr "" + +#: application/views/interface_assets/footer.php:1375 +#: application/views/interface_assets/footer.php:1379 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1523 +#: application/views/interface_assets/footer.php:1526 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1526 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2100 +#: application/views/interface_assets/footer.php:2114 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2120 +#: application/views/interface_assets/footer.php:2134 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2160 +#: application/views/interface_assets/footer.php:2174 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2162 +#: application/views/interface_assets/footer.php:2176 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2335 -#: application/views/interface_assets/footer.php:2374 -#: application/views/view_log/qso.php:604 +#: application/views/interface_assets/footer.php:2349 +#: application/views/interface_assets/footer.php:2388 +#: application/views/view_log/qso.php:607 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2354 +#: application/views/interface_assets/footer.php:2368 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2392 +#: application/views/interface_assets/footer.php:2406 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2403 -#: application/views/interface_assets/footer.php:2428 +#: application/views/interface_assets/footer.php:2417 +#: application/views/interface_assets/footer.php:2442 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2439 +#: application/views/interface_assets/footer.php:2453 msgid "Something went wrong. Please try again!" msgstr "" @@ -6213,91 +6834,91 @@ msgstr "" msgid "Activated Gridsquares" msgstr "" -#: application/views/interface_assets/header.php:160 +#: application/views/interface_assets/header.php:162 msgid "International" msgstr "" -#: application/views/interface_assets/header.php:166 +#: application/views/interface_assets/header.php:168 msgid "ITU" msgstr "" -#: application/views/interface_assets/header.php:186 +#: application/views/interface_assets/header.php:190 msgid "Canada" msgstr "" -#: application/views/interface_assets/header.php:192 +#: application/views/interface_assets/header.php:196 msgid "Germany" msgstr "" -#: application/views/interface_assets/header.php:196 +#: application/views/interface_assets/header.php:200 msgid "DL Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:200 +#: application/views/interface_assets/header.php:204 msgid "Great Britain" msgstr "" -#: application/views/interface_assets/header.php:202 +#: application/views/interface_assets/header.php:206 msgid "WAB" msgstr "" -#: application/views/interface_assets/header.php:206 +#: application/views/interface_assets/header.php:210 msgid "Japan" msgstr "" -#: application/views/interface_assets/header.php:212 +#: application/views/interface_assets/header.php:216 msgid "JA Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:216 +#: application/views/interface_assets/header.php:220 msgid "Luxemburg" msgstr "" -#: application/views/interface_assets/header.php:218 +#: application/views/interface_assets/header.php:222 msgid "LX Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:222 +#: application/views/interface_assets/header.php:226 msgid "Switzerland" msgstr "" -#: application/views/interface_assets/header.php:228 +#: application/views/interface_assets/header.php:232 msgid "USA" msgstr "" -#: application/views/interface_assets/header.php:234 +#: application/views/interface_assets/header.php:238 msgid "US Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:251 +#: application/views/interface_assets/header.php:255 msgid "Bandmap" msgstr "" -#: application/views/interface_assets/header.php:253 +#: application/views/interface_assets/header.php:257 msgid "SAT Timers" msgstr "" -#: application/views/interface_assets/header.php:256 +#: application/views/interface_assets/header.php:260 msgid "Satellite Flightpath" msgstr "" -#: application/views/interface_assets/header.php:258 +#: application/views/interface_assets/header.php:262 msgid "Satellite Pass" msgstr "" -#: application/views/interface_assets/header.php:265 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:269 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:274 msgid "Global Options" msgstr "" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:280 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:11 +#: application/views/satellite/pass.php:495 #: application/views/statistics/custom.php:20 #: application/views/statistics/custom_result.php:21 #: application/views/statistics/index.php:39 @@ -6305,79 +6926,83 @@ msgstr "" msgid "Satellites" msgstr "" -#: application/views/interface_assets/header.php:282 +#: application/views/interface_assets/header.php:286 msgid "Update Country Files" msgstr "" -#: application/views/interface_assets/header.php:286 +#: application/views/interface_assets/header.php:290 msgid "Debug Information" msgstr "" -#: application/views/interface_assets/header.php:333 +#: application/views/interface_assets/header.php:337 msgid "Add/Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:335 +#: application/views/interface_assets/header.php:339 msgid "Log" msgstr "" -#: application/views/interface_assets/header.php:342 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:346 +#: application/views/logbookadvanced/index.php:474 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:371 +#: application/views/interface_assets/header.php:375 #: application/views/user/edit.php:49 msgid "Account" msgstr "" -#: application/views/interface_assets/header.php:386 +#: application/views/interface_assets/header.php:390 msgid "Other Export Options" msgstr "" -#: application/views/interface_assets/header.php:394 +#: application/views/interface_assets/header.php:398 msgid "Cabrillo Export" msgstr "" -#: application/views/interface_assets/header.php:418 -msgid "QSL Queue" -msgstr "" - -#: application/views/interface_assets/header.php:419 -msgid "Labels" -msgstr "" - -#: application/views/interface_assets/header.php:421 -msgid "Third-Party Services" +#: application/views/interface_assets/header.php:400 +msgid "EDI Export" msgstr "" #: application/views/interface_assets/header.php:424 -msgid "eQSL Import / Export" +msgid "QSL Queue" msgstr "" #: application/views/interface_assets/header.php:425 +msgid "Labels" +msgstr "" + +#: application/views/interface_assets/header.php:427 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:430 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:431 msgid "HRDLog Logbook" msgstr "" -#: application/views/interface_assets/header.php:435 +#: application/views/interface_assets/header.php:441 msgid "Help" msgstr "" -#: application/views/interface_assets/header.php:436 +#: application/views/interface_assets/header.php:442 msgid "Forum" msgstr "" -#: application/views/interface_assets/header.php:438 +#: application/views/interface_assets/header.php:444 msgid "Logout" msgstr "" -#: application/views/interface_assets/header.php:446 +#: application/views/interface_assets/header.php:452 msgid "Select a Location" msgstr "" -#: application/views/interface_assets/header.php:525 +#: application/views/interface_assets/header.php:531 msgid "Extras" msgstr "" @@ -6648,86 +7273,122 @@ msgid "Start printing at?" msgstr "" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:405 -#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" -#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/edit.php:23 msgid "LoTW Sent" msgstr "" -#: application/views/logbookadvanced/edit.php:23 +#: application/views/logbookadvanced/edit.php:24 msgid "LoTW Received" msgstr "" -#: application/views/logbookadvanced/edit.php:73 +#: application/views/logbookadvanced/edit.php:75 msgid "SAT Mode" msgstr "" -#: application/views/logbookadvanced/edit.php:87 +#: application/views/logbookadvanced/edit.php:89 msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:174 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:144 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:148 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:152 +#: application/views/logbookadvanced/index.php:569 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:148 +#: application/views/logbookadvanced/index.php:159 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:224 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:540 +msgid "Invalid" +msgstr "" + +#: application/views/logbookadvanced/index.php:324 msgid "QSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:375 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:397 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:439 #: application/views/lookup/lotwuser.php:12 -#: application/views/qso/edit_ajax.php:394 -#: application/views/qso/edit_ajax.php:427 -#: application/views/qso/edit_ajax.php:455 -#: application/views/qso/edit_ajax.php:468 +#: application/views/qso/edit_ajax.php:421 +#: application/views/qso/edit_ajax.php:454 +#: application/views/qso/edit_ajax.php:482 #: application/views/qso/edit_ajax.php:495 -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 +#: application/views/qso/edit_ajax.php:522 +#: application/views/qso/edit_ajax.php:534 application/views/qso/index.php:576 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:209 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:236 -#: application/views/station_profile/create.php:275 -#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 #: application/views/station_profile/create.php:293 -#: application/views/station_profile/edit.php:330 -#: application/views/station_profile/edit.php:338 -#: application/views/station_profile/edit.php:364 -#: application/views/station_profile/edit.php:385 -#: application/views/station_profile/edit.php:403 -#: application/views/station_profile/edit.php:410 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 +#: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 #: application/views/user/edit.php:347 application/views/user/edit.php:358 #: application/views/user/edit.php:369 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:399 @@ -6737,35 +7398,35 @@ msgstr "" msgid "Yes" msgstr "Ναι" -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 -#: application/views/logbookadvanced/index.php:376 -#: application/views/logbookadvanced/index.php:387 -#: application/views/logbookadvanced/index.php:398 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:440 #: application/views/lookup/lotwuser.php:14 -#: application/views/qso/edit_ajax.php:393 -#: application/views/qso/edit_ajax.php:426 -#: application/views/qso/edit_ajax.php:454 -#: application/views/qso/edit_ajax.php:467 +#: application/views/qso/edit_ajax.php:420 +#: application/views/qso/edit_ajax.php:453 +#: application/views/qso/edit_ajax.php:481 #: application/views/qso/edit_ajax.php:494 -#: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 +#: application/views/qso/edit_ajax.php:521 +#: application/views/qso/edit_ajax.php:533 application/views/qso/index.php:575 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:210 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:237 -#: application/views/station_profile/create.php:276 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/create.php:292 -#: application/views/station_profile/edit.php:331 -#: application/views/station_profile/edit.php:339 -#: application/views/station_profile/edit.php:365 -#: application/views/station_profile/edit.php:386 -#: application/views/station_profile/edit.php:404 -#: application/views/station_profile/edit.php:411 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 #: application/views/user/edit.php:348 application/views/user/edit.php:359 #: application/views/user/edit.php:370 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:400 @@ -6776,32 +7437,32 @@ msgstr "Ναι" msgid "No" msgstr "Οχι" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 -#: application/views/logbookadvanced/index.php:389 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:416 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 -#: application/views/qso/edit_ajax.php:396 -#: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:497 application/views/qso/index.php:556 +#: application/views/qso/edit_ajax.php:423 +#: application/views/qso/edit_ajax.php:484 +#: application/views/qso/edit_ajax.php:524 application/views/qso/index.php:578 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:225 -#: application/views/view_log/partial/log_ajax.php:143 -#: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +#: src/QSLManager/QSO.php:273 src/QSLManager/QSO.php:318 msgid "Queued" msgstr "Σε ουρά" -#: application/views/logbookadvanced/index.php:304 -#: application/views/logbookadvanced/index.php:314 -#: application/views/logbookadvanced/index.php:346 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:368 -#: application/views/logbookadvanced/index.php:378 -#: application/views/logbookadvanced/index.php:390 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:373 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:417 +#: application/views/logbookadvanced/index.php:427 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6809,42 +7470,42 @@ msgstr "Σε ουρά" #: application/views/qslprint/qsolist.php:109 #: application/views/qslprint/qsolist.php:174 #: application/views/qslprint/qsolist.php:189 -#: application/views/qso/edit_ajax.php:397 -#: application/views/qso/edit_ajax.php:429 -#: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:470 -#: application/views/qso/edit_ajax.php:498 -#: application/views/qso/edit_ajax.php:509 application/views/qso/index.php:557 +#: application/views/qso/edit_ajax.php:424 +#: application/views/qso/edit_ajax.php:456 +#: application/views/qso/edit_ajax.php:485 +#: application/views/qso/edit_ajax.php:497 +#: application/views/qso/edit_ajax.php:525 +#: application/views/qso/edit_ajax.php:536 application/views/qso/index.php:579 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/search/search_result_ajax.php:305 #: application/views/search/search_result_ajax.php:320 -#: application/views/view_log/partial/log_ajax.php:149 -#: application/views/view_log/partial/log_ajax.php:187 -#: application/views/view_log/partial/log_ajax.php:242 -#: application/views/view_log/partial/log_ajax.php:268 -#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 -#: src/QSLManager/QSO.php:375 src/QSLManager/QSO.php:398 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +#: application/views/view_log/partial/log_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:270 +#: src/QSLManager/QSO.php:279 src/QSLManager/QSO.php:324 +#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:400 msgid "Invalid (Ignore)" msgstr "Μη έγκυρο (Αγνόησή)" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:335 msgid "QSL received" msgstr "" -#: application/views/logbookadvanced/index.php:315 -#: application/views/logbookadvanced/index.php:357 -#: application/views/logbookadvanced/index.php:379 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:428 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:346 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:359 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6853,268 +7514,264 @@ msgstr "" #: application/views/qslprint/qsolist.php:77 #: application/views/qslprint/qsolist.php:119 #: application/views/qslprint/qsolist.php:210 -#: application/views/qso/edit_ajax.php:408 -#: application/views/qso/edit_ajax.php:441 application/views/qso/index.php:568 +#: application/views/qso/edit_ajax.php:435 +#: application/views/qso/edit_ajax.php:468 application/views/qso/index.php:590 #: application/views/search/search_result_ajax.php:199 #: application/views/search/search_result_ajax.php:241 -#: application/views/view_log/partial/log_ajax.php:162 -#: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +#: src/QSLManager/QSO.php:296 src/QSLManager/QSO.php:339 msgid "Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:360 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 #: application/views/qslprint/qsolist.php:80 #: application/views/qslprint/qsolist.php:122 #: application/views/qslprint/qsolist.php:211 -#: application/views/qso/edit_ajax.php:407 -#: application/views/qso/edit_ajax.php:440 application/views/qso/index.php:567 +#: application/views/qso/edit_ajax.php:434 +#: application/views/qso/edit_ajax.php:467 application/views/qso/index.php:589 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 -#: application/views/view_log/partial/log_ajax.php:165 -#: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +#: src/QSLManager/QSO.php:299 src/QSLManager/QSO.php:342 msgid "Direct" msgstr "Απευθείας" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 #: application/views/qslprint/qsolist.php:86 #: application/views/qslprint/qsolist.php:128 #: application/views/qslprint/qsolist.php:212 -#: application/views/qso/edit_ajax.php:409 -#: application/views/qso/edit_ajax.php:442 application/views/qso/index.php:569 +#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:591 #: application/views/search/search_result_ajax.php:208 #: application/views/search/search_result_ajax.php:250 -#: application/views/view_log/partial/log_ajax.php:171 -#: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +#: src/QSLManager/QSO.php:305 src/QSLManager/QSO.php:348 msgid "Electronic" msgstr "Ηλεκτρονική" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:362 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 -#: application/views/qso/edit_ajax.php:410 -#: application/views/qso/edit_ajax.php:443 application/views/qso/index.php:570 +#: application/views/qso/edit_ajax.php:437 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:592 #: application/views/search/search_result_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:206 +#: application/views/view_log/partial/log_ajax.php:208 msgid "Manager" msgstr "Διευθυντής" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:356 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:366 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:377 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:388 msgid "Clublog sent" msgstr "" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:399 msgid "Clublog received" msgstr "" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:410 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:436 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:448 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" -#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:451 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:425 -#: application/views/qso/edit_ajax.php:595 +#: application/views/logbookadvanced/index.php:452 +#: application/views/qso/edit_ajax.php:622 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:453 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:454 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:456 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:457 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:459 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:460 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:462 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:463 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:465 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:466 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:472 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:477 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:480 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:486 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:492 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:495 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:498 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:501 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:507 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:516 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:518 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:527 #: application/views/qso/index.php:272 -#: application/views/station_profile/edit.php:65 +#: application/views/station_profile/edit.php:92 msgid "Location" msgstr "Τοποθεσία" -#: application/views/logbookadvanced/index.php:506 -msgid "Callsign: " -msgstr "" - -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:539 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:547 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:605 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:650 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -7142,41 +7799,15 @@ msgstr "" msgid "Column" msgstr "" -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/useroptions.php:152 msgctxt "Map Options" msgid "Layer" msgstr "" -#: application/views/logbookadvanced/useroptions.php:149 +#: application/views/logbookadvanced/useroptions.php:153 msgid "Default on" msgstr "" -#: application/views/logbookadvanced/useroptions.php:154 -#: application/views/stationsetup/exportmapoptions.php:23 -msgctxt "Map Options" -msgid "Path lines" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:158 -msgctxt "Map Options" -msgid "Gridsquares" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:162 -msgctxt "Map Options" -msgid "CQ Zones" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:166 -msgctxt "Map Options" -msgid "ITU Zones" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:170 -msgctxt "Map Options" -msgid "Night Shadow" -msgstr "" - #: application/views/lookup/index.php:8 msgid "US State" msgstr "" @@ -7281,60 +7912,64 @@ msgstr "Διαθέσιμα Πιστοποιητικά" msgid "Upload Certificate" msgstr "Ανέβασμα Πιστοποιητικού" -#: application/views/lotw_views/index.php:41 +#: application/views/lotw_views/index.php:37 msgid "QSO Start Date" msgstr "Ημερομηνία έναρξης QSO" -#: application/views/lotw_views/index.php:42 +#: application/views/lotw_views/index.php:38 msgid "QSO End Date" msgstr "Ημερομηνία λήξης QSO" -#: application/views/lotw_views/index.php:43 +#: application/views/lotw_views/index.php:39 msgid "Date Created" msgstr "Ημερομηνία Δημιουργίας" -#: application/views/lotw_views/index.php:44 +#: application/views/lotw_views/index.php:40 msgid "Date Expires" msgstr "Ημερομηνία Λήξης " -#: application/views/lotw_views/index.php:46 -#: application/views/view_log/qso.php:404 +#: application/views/lotw_views/index.php:42 +#: application/views/view_log/qso.php:407 msgid "Last Upload" msgstr "Τελευταία μεταφόρτωση" -#: application/views/lotw_views/index.php:91 +#: application/views/lotw_views/index.php:87 msgid "Expired" msgstr "Ληγμένο" -#: application/views/lotw_views/index.php:93 +#: application/views/lotw_views/index.php:89 msgid "Expiring" msgstr "Λήγει" -#: application/views/lotw_views/index.php:105 +#: application/views/lotw_views/index.php:91 +msgid "Valid" +msgstr "Εγκυρος" + +#: application/views/lotw_views/index.php:101 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:108 +#: application/views/lotw_views/index.php:104 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:114 +#: application/views/lotw_views/index.php:110 msgid "Not Synced" msgstr "Μη συγχρονισμένο" -#: application/views/lotw_views/index.php:129 +#: application/views/lotw_views/index.php:125 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" "Πρέπει να ανεβάσετε ορισμένα πιστοποιητικά LoTW p12 για να χρησιμοποιήσετε " "αυτήν την περιοχή." -#: application/views/lotw_views/index.php:144 +#: application/views/lotw_views/index.php:140 msgid "Information" msgstr "Πληροφορίες" -#: application/views/lotw_views/index.php:149 +#: application/views/lotw_views/index.php:145 msgid "Manual Sync" msgstr "Χειροκίνητος συγχρονισμός" @@ -7550,6 +8185,14 @@ msgstr "" msgid "This enables the button to Wavelog's Github page in the public view" msgstr "" +#: application/views/options/appearance.php:107 +msgid "Public Login Button" +msgstr "" + +#: application/views/options/appearance.php:112 +msgid "This enables the button to login to Wavelog in the public view" +msgstr "" + #: application/views/options/dxcluster.php:38 msgid "Provider of DXClusterCache" msgstr "" @@ -7847,7 +8490,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:64 #: application/views/oqrs/showrequests.php:87 -#: application/views/user/main.php:48 application/views/user/profile.php:24 +#: application/views/user/index.php:48 application/views/user/profile.php:24 msgid "E-mail" msgstr "" @@ -7870,21 +8513,21 @@ msgstr "" #: application/views/search/search_result_ajax.php:127 #: application/views/user/edit.php:478 #: application/views/view_log/partial/log.php:22 -#: application/views/view_log/partial/log_ajax.php:86 -#: application/views/view_log/qso.php:503 -#: application/views/view_log/qso.php:507 -#: application/views/view_log/qso.php:511 -#: application/views/view_log/qso.php:515 -#: application/views/view_log/qso.php:521 -#: application/views/view_log/qso.php:528 -#: application/views/view_log/qso.php:535 -#: application/views/view_log/qso.php:542 -#: application/views/view_log/qso.php:549 -#: application/views/view_log/qso.php:556 -#: application/views/view_log/qso.php:563 -#: application/views/view_log/qso.php:570 -#: application/views/view_log/qso.php:577 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log_ajax.php:88 +#: application/views/view_log/qso.php:506 +#: application/views/view_log/qso.php:510 +#: application/views/view_log/qso.php:514 +#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:531 +#: application/views/view_log/qso.php:538 +#: application/views/view_log/qso.php:545 +#: application/views/view_log/qso.php:552 +#: application/views/view_log/qso.php:559 +#: application/views/view_log/qso.php:566 +#: application/views/view_log/qso.php:573 +#: application/views/view_log/qso.php:580 +#: application/views/view_log/qso.php:585 msgid "Station" msgstr "Σταθμός" @@ -7892,10 +8535,10 @@ msgstr "Σταθμός" #: application/views/qslprint/qslprint.php:28 #: application/views/qslprint/qsolist.php:14 #: application/views/qslprint/qsolist.php:83 -#: application/views/qso/index.php:576 +#: application/views/qso/index.php:598 #: application/views/search/search_result_ajax.php:205 -#: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:300 +#: application/views/view_log/partial/log_ajax.php:170 +#: src/QSLManager/QSO.php:302 msgid "Via" msgstr "Μέσω" @@ -8124,7 +8767,7 @@ msgid "Remove" msgstr "" #: application/views/qslprint/qslprint.php:33 -#: application/views/simplefle/index.php:133 +#: application/views/simplefle/index.php:139 msgid "QSO List" msgstr "" @@ -8170,35 +8813,20 @@ msgid "" "queue." msgstr "" -#: application/views/qso/components/winkeysettings.php:7 -#: application/views/qso/components/winkeysettings_results.php:7 -msgid "Winkey Macros" -msgstr "" - -#: application/views/qso/components/winkeysettings.php:12 -#: application/views/qso/components/winkeysettings.php:28 -#: application/views/qso/components/winkeysettings.php:44 -#: application/views/qso/components/winkeysettings.php:60 -#: application/views/qso/components/winkeysettings.php:76 -#: application/views/qso/components/winkeysettings_results.php:12 -#: application/views/qso/components/winkeysettings_results.php:28 -#: application/views/qso/components/winkeysettings_results.php:44 -#: application/views/qso/components/winkeysettings_results.php:60 -#: application/views/qso/components/winkeysettings_results.php:76 -#, php-format -msgid "Function %d - Name" -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:83 -#: application/views/qso/components/winkeysettings_results.php:19 -#: application/views/qso/components/winkeysettings_results.php:35 -#: application/views/qso/components/winkeysettings_results.php:51 -#: application/views/qso/components/winkeysettings_results.php:67 -#: application/views/qso/components/winkeysettings_results.php:83 +#, 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 #, php-format msgid "Function %d - Macro" msgstr "" @@ -8224,7 +8852,8 @@ msgid "RX Band" msgstr "" #: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:346 -#: application/views/view_log/qso.php:542 +#: application/views/reg1test/index.php:114 +#: application/views/view_log/qso.php:545 msgid "Transmit Power (W)" msgstr "Ισχύ διαβίβασης (W)" @@ -8236,10 +8865,6 @@ msgstr "Δώστε τιμή ισχύος σε Watts. Συμπεριλάβετε msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:177 -msgid "QTH" -msgstr "" - #: application/views/qso/edit_ajax.php:258 msgid "Sat Name" msgstr "" @@ -8248,70 +8873,86 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:356 application/views/qso/index.php:255 -#: application/views/qso/index.php:500 application/views/user/edit.php:599 -#: application/views/view_log/qso.php:332 -#: application/views/view_log/qso.php:582 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:545 +msgid "Antenna Azimuth (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:547 +msgid "Antenna azimuth in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:274 application/views/qso/index.php:551 +msgid "Antenna Elevation (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:276 application/views/qso/index.php:553 +msgid "Antenna elevation in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:383 application/views/qso/index.php:255 +#: application/views/qso/index.php:510 application/views/user/edit.php:599 +#: application/views/view_log/qso.php:335 +#: application/views/view_log/qso.php:585 msgid "Sig Info" msgstr "" -#: application/views/qso/edit_ajax.php:369 +#: application/views/qso/edit_ajax.php:396 msgid "Notes (for internal usage only)" msgstr "" -#: application/views/qso/edit_ajax.php:403 +#: application/views/qso/edit_ajax.php:430 msgid "Sent Method" msgstr "" -#: application/views/qso/edit_ajax.php:406 -#: application/views/qso/edit_ajax.php:439 application/views/qso/index.php:563 -#: application/views/qso/index.php:566 +#: application/views/qso/edit_ajax.php:433 +#: application/views/qso/edit_ajax.php:466 application/views/qso/index.php:585 +#: application/views/qso/index.php:588 msgid "Method" msgstr "Μέθοδος" -#: application/views/qso/edit_ajax.php:416 +#: application/views/qso/edit_ajax.php:443 msgid "Sent Via" msgstr "" -#: application/views/qso/edit_ajax.php:430 -#: application/views/qso/edit_ajax.php:471 -#: application/views/qso/edit_ajax.php:510 +#: application/views/qso/edit_ajax.php:457 +#: application/views/qso/edit_ajax.php:498 +#: application/views/qso/edit_ajax.php:537 msgid "Verified (Match)" msgstr "" -#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:463 msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:477 application/views/qso/index.php:583 +#: application/views/qso/edit_ajax.php:504 application/views/qso/index.php:605 msgid "This note content is exported to QSL services like eqsl.cc." msgstr "" "Αυτό το περιεχόμενο σημείωσης εξάγεται σε υπηρεσίες QSL όπως το eqsl.cc." -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:586 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:608 msgid "Get the default message for eQSL, for this station." msgstr "" -#: application/views/qso/edit_ajax.php:530 +#: application/views/qso/edit_ajax.php:557 msgid "Change Station Profile" msgstr "" -#: application/views/qso/edit_ajax.php:576 +#: application/views/qso/edit_ajax.php:603 msgid "Exchange (R)" msgstr "" -#: application/views/qso/edit_ajax.php:581 +#: application/views/qso/edit_ajax.php:608 msgid "Exchange (S)" msgstr "" -#: application/views/qso/edit_ajax.php:593 +#: application/views/qso/edit_ajax.php:620 #: application/views/search/search_result_ajax.php:432 #: application/views/view_log/partial/log.php:156 -#: application/views/view_log/partial/log_ajax.php:346 +#: application/views/view_log/partial/log_ajax.php:348 msgid "Delete QSO" msgstr "Διαγραφή QSO" -#: application/views/qso/edit_ajax.php:596 +#: application/views/qso/edit_ajax.php:623 msgid "Save changes" msgstr "" @@ -8319,7 +8960,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:5 application/views/qso/index.php:694 +#: application/views/qso/index.php:5 application/views/qso/index.php:718 msgid "Previous Contacts" msgstr "Προηγούμενες Επαφές" @@ -8359,23 +9000,23 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:149 -#: application/views/station_profile/edit.php:191 -#: application/views/user/edit.php:583 application/views/view_log/qso.php:282 -#: application/views/view_log/qso.php:549 +#: application/views/qso/index.php:196 application/views/qso/index.php:449 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 +#: application/views/user/edit.php:583 application/views/view_log/qso.php:285 +#: application/views/view_log/qso.php:552 msgid "IOTA Reference" msgstr "Παραπομπή IOTA" -#: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:165 -#: application/views/station_profile/edit.php:219 -#: application/views/user/edit.php:587 application/views/view_log/qso.php:289 -#: application/views/view_log/qso.php:556 +#: application/views/qso/index.php:212 application/views/qso/index.php:466 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 +#: application/views/user/edit.php:587 application/views/view_log/qso.php:292 +#: application/views/view_log/qso.php:559 msgid "SOTA Reference" msgstr "Παραπομπή SOTA" -#: application/views/qso/index.php:322 application/views/view_log/qso.php:98 +#: application/views/qso/index.php:322 application/views/view_log/qso.php:100 msgid "Frequency (RX)" msgstr "Συχνότητα (RX)" @@ -8383,39 +9024,39 @@ msgstr "Συχνότητα (RX)" msgid "Band (RX)" msgstr "Ζώνη (RX)" -#: application/views/qso/index.php:458 +#: application/views/qso/index.php:468 msgid "For example: GM/NS-001." msgstr "Για παράδειγμα: GM/NS-001." -#: application/views/qso/index.php:471 +#: application/views/qso/index.php:481 msgid "For example: DLFF-0069." msgstr "Για παράδειγμα: DLFF-0069." -#: application/views/qso/index.php:484 +#: application/views/qso/index.php:494 msgid "For example: PA-0150. Multiple values allowed." msgstr "Για παράδειγμα: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:496 +#: application/views/qso/index.php:506 msgid "For example: GMA" msgstr "Για παράδειγμα: GMA" -#: application/views/qso/index.php:502 +#: application/views/qso/index.php:512 msgid "For example: DA/NW-357" msgstr "Για παράδειγμα: DA/NW-357" -#: application/views/qso/index.php:510 +#: application/views/qso/index.php:520 msgid "For example: Q03" msgstr "Για παράδειγμα: Q03" -#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +#: application/views/qso/index.php:529 application/views/view_log/qso.php:210 msgid "Satellite Name" msgstr "Όνομα δορυφόρου" -#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +#: application/views/qso/index.php:537 application/views/view_log/qso.php:217 msgid "Satellite Mode" msgstr "Λειτουργία δορυφόρου" -#: application/views/qso/index.php:538 +#: application/views/qso/index.php:560 msgid "" "Note content is used within Wavelog only and is not exported to other " "services." @@ -8423,27 +9064,47 @@ msgstr "" "Το περιεχόμενο σημείωσης χρησιμοποιείται μόνο στο Wavelog και δεν εξάγεται " "σε άλλες υπηρεσίες." -#: application/views/qso/index.php:604 +#: application/views/qso/index.php:626 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:645 +#: application/views/qso/index.php:667 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:647 +#: application/views/qso/index.php:669 msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:678 +msgid "Stop" +msgstr "" + +#: application/views/qso/index.php:679 +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:680 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:686 +msgid "CW Speed" +msgstr "" + +#: application/views/qso/index.php:691 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:701 msgid "Suggestions" msgstr "Εισήγησης" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:708 msgid "Profile Picture" msgstr "Εικόνα προφίλ" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:732 msgid "Max. 5 previous contacts are shown" msgstr "" @@ -8474,6 +9135,137 @@ msgstr "" msgid "Please wait..." msgstr "" +#: application/views/reg1test/index.php:6 +msgid "Select Band" +msgstr "" + +#: application/views/reg1test/index.php:8 +msgid "" +"Bands below 50Mhz are not valid for the EDI REG1TEST format and will produce " +"invalid files." +msgstr "" + +#: application/views/reg1test/index.php:18 +msgid "Export a contest to a REG1TEST EDI log" +msgstr "" + +#: application/views/reg1test/index.php:48 +msgid "Sent Exchange" +msgstr "" + +#: application/views/reg1test/index.php:50 +msgid "" +"The exchange which was sent during the contest. Can be any type of " +"information, e.g. Province, DOK, County, State, Power, Name. Max. length: 6 " +"characters." +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:66 +msgid "Callsign of responsible operator" +msgstr "" + +#: application/views/reg1test/index.php:72 +msgid "" +"List of all operators. Seperated with a semicolon ';'. The responsible " +"operator is not needed here." +msgstr "" + +#: application/views/reg1test/index.php:75 +msgid "Contest Address 1" +msgstr "" + +#: application/views/reg1test/index.php:77 +msgid "Address of the QTH used during the contest." +msgstr "" + +#: application/views/reg1test/index.php:80 +msgid "Contest Address 2" +msgstr "" + +#: application/views/reg1test/index.php:84 +msgid "Operator Address 1" +msgstr "" + +#: application/views/reg1test/index.php:86 +msgid "Address of the responsible operator." +msgstr "" + +#: application/views/reg1test/index.php:89 +msgid "Operator Address 2" +msgstr "" + +#: application/views/reg1test/index.php:93 +msgid "Operator Address Postalcode" +msgstr "" + +#: application/views/reg1test/index.php:97 +msgid "Operator Address City" +msgstr "" + +#: application/views/reg1test/index.php:101 +msgid "Operator Address Country" +msgstr "" + +#: application/views/reg1test/index.php:105 +msgid "Operator Phone Number" +msgstr "" + +#: application/views/reg1test/index.php:109 +msgid "Transmit Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:111 +msgid "Short description of the used equipment." +msgstr "" + +#: application/views/reg1test/index.php:116 +msgid "TX Power during the contest in Watt." +msgstr "" + +#: application/views/reg1test/index.php:119 +msgid "Receive Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:121 +msgid "If you used another gear for RX, then describe it here." +msgstr "" + +#: application/views/reg1test/index.php:124 +msgid "Antenna Description" +msgstr "" + +#: application/views/reg1test/index.php:126 +msgid "What kind of antenna was used." +msgstr "" + +#: application/views/reg1test/index.php:129 +msgid "Antenna Height Above Ground (m)" +msgstr "" + +#: application/views/reg1test/index.php:131 +msgid "Height of the antenna above the ground." +msgstr "" + +#: application/views/reg1test/index.php:134 +msgid "Band multiplicator" +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:141 +msgid "Any other remarks." +msgstr "" + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8563,10 +9355,71 @@ msgstr "" msgid "Satellite passes" msgstr "" -#: application/views/satellite/pass.php:548 +#: application/views/satellite/pass.php:8 +msgid "Min. Satellite Elevation" +msgstr "" + +#: application/views/satellite/pass.php:12 +msgid "Min. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:20 +msgid "Max. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:32 +msgid "Altitude (meters)" +msgstr "" + +#: application/views/satellite/pass.php:36 application/views/user/edit.php:179 +msgid "Timezone" +msgstr "" + +#: application/views/satellite/pass.php:479 +msgid "Min. time" +msgstr "" + +#: application/views/satellite/pass.php:487 +msgid "Max. time" +msgstr "" + +#: application/views/satellite/pass.php:504 msgid "Load predictions" msgstr "" +#: application/views/satellite/passtable.php:6 +msgid "AOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:7 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "" + +#: application/views/satellite/passtable.php:8 +msgid "AOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:9 +msgid "AOS El" +msgstr "" + +#: application/views/satellite/passtable.php:10 +msgid "Max El" +msgstr "" + +#: application/views/satellite/passtable.php:11 +msgid "LOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:12 +msgid "LOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:13 +msgid "LOS El" +msgstr "" + #: application/views/sattimers/index.php:15 #, php-format msgid "" @@ -8587,10 +9440,6 @@ msgstr "" msgid "Max Elevation" msgstr "" -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "" - #: application/views/search/cqzones.php:5 #: application/views/search/lotw_unconfirmed.php:5 #: application/views/search/main.php:5 @@ -8697,50 +9546,50 @@ msgstr "" #: application/views/search/search_result_ajax.php:409 #: application/views/view_log/partial/log.php:140 -#: application/views/view_log/partial/log_ajax.php:323 +#: application/views/view_log/partial/log_ajax.php:325 msgid "Mark QSL Sent (Bureau)" msgstr "Σημείωση QSL ως απεσταλμένο (Bureau)" #: application/views/search/search_result_ajax.php:410 #: application/views/view_log/partial/log.php:141 -#: application/views/view_log/partial/log_ajax.php:324 +#: application/views/view_log/partial/log_ajax.php:326 msgid "Mark QSL Sent (Direct)" msgstr "Σημείωση QSL ως απεσταλμένο (Απευθείας)" #: application/views/search/search_result_ajax.php:417 #: application/views/view_log/partial/log.php:148 -#: application/views/view_log/partial/log_ajax.php:333 -#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log_ajax.php:335 +#: application/views/view_log/qso.php:655 msgid "Mark QSL Received (Bureau)" msgstr "Σημείωση QSL ως Ελήφθη (Bureau)" #: application/views/search/search_result_ajax.php:418 #: application/views/view_log/partial/log.php:149 -#: application/views/view_log/partial/log_ajax.php:334 -#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log_ajax.php:336 +#: application/views/view_log/qso.php:657 msgid "Mark QSL Received (Direct)" msgstr "Σημείωση QSL ως Ελήφθη (Απευθείας)" #: application/views/search/search_result_ajax.php:419 #: application/views/view_log/partial/log.php:150 -#: application/views/view_log/partial/log_ajax.php:325 +#: application/views/view_log/partial/log_ajax.php:327 msgid "Mark QSL Card Requested" msgstr "Σημείωση QSL ζητήθηκε" #: application/views/search/search_result_ajax.php:420 #: application/views/view_log/partial/log.php:151 -#: application/views/view_log/partial/log_ajax.php:326 -#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log_ajax.php:328 +#: application/views/view_log/qso.php:669 msgid "Mark QSL Card Not Required" msgstr "Σημείωση QSL μη απαραίτητο" #: application/views/search/search_result_ajax.php:426 -#: application/views/view_log/partial/log_ajax.php:340 +#: application/views/view_log/partial/log_ajax.php:342 msgid "Lookup on QRZ.com" msgstr "" #: application/views/search/search_result_ajax.php:428 -#: application/views/view_log/partial/log_ajax.php:342 +#: application/views/view_log/partial/log_ajax.php:344 msgid "Lookup on HamQTH" msgstr "" @@ -8775,7 +9624,7 @@ msgid "" msgstr "" #: application/views/simplefle/index.php:17 -#: application/views/simplefle/index.php:170 +#: application/views/simplefle/index.php:176 msgid "Syntax Help" msgstr "" @@ -8869,8 +9718,8 @@ msgstr "" #: application/views/simplefle/index.php:107 #, php-format msgid "" -"If you did operate from a new location, first create a new Station Location" +"If you did operate from a new location, first create a new %sStation " +"Location%s" msgstr "" #: application/views/simplefle/index.php:112 @@ -8885,24 +9734,24 @@ msgstr "" msgid "Enter the Data" msgstr "" -#: application/views/simplefle/index.php:148 +#: application/views/simplefle/index.php:154 msgid "Refs" msgstr "" -#: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +#: application/views/simplefle/index.php:166 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" msgstr "" -#: application/views/simplefle/index.php:167 +#: application/views/simplefle/index.php:173 msgid "Reload QSO List" msgstr "" -#: application/views/simplefle/index.php:168 +#: application/views/simplefle/index.php:174 msgid "Save in Wavelog" msgstr "" -#: application/views/simplefle/index.php:169 +#: application/views/simplefle/index.php:175 msgid "Clear Logging Session" msgstr "" @@ -8959,122 +9808,121 @@ msgstr "" #: application/views/simplefle/syntax_help.php:28 #, php-format -msgctxt "uses 'this article'" msgid "" -"A full summary of all commands and the necessary syntax can be found in %s " -"of our Wiki." +"A full summary of all commands and the necessary syntax can be found in " +"%sthis article%s of our Wiki." msgstr "" -#: application/views/station_profile/create.php:51 -#: application/views/station_profile/edit.php:40 +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:52 -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:59 -#: application/views/station_profile/edit.php:48 +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 msgid "Station callsign. For example: 4W7EST/P" msgstr "" -#: application/views/station_profile/create.php:63 -#: application/views/station_profile/edit.php:52 +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 msgid "Station Power (W)" msgstr "" -#: application/views/station_profile/create.php:65 -#: application/views/station_profile/edit.php:54 +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" -#: application/views/station_profile/create.php:68 -#: application/views/station_profile/edit.php:69 +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 msgid "Station DXCC" msgstr "" -#: application/views/station_profile/create.php:71 -#: application/views/station_profile/edit.php:72 +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 msgctxt "DXCC selection" msgid "None" msgstr "" -#: application/views/station_profile/create.php:78 -#: application/views/station_profile/edit.php:85 +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:83 -#: application/views/station_profile/edit.php:91 +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 msgid "Station City" msgstr "" -#: application/views/station_profile/create.php:85 -#: application/views/station_profile/edit.php:93 +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:94 -#: application/views/station_profile/edit.php:105 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 msgid "Station state. Applies to certain countries only." msgstr "" -#: application/views/station_profile/create.php:99 -#: application/views/station_profile/edit.php:110 +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 msgid "Station County" msgstr "" -#: application/views/station_profile/create.php:101 -#: application/views/station_profile/edit.php:112 +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/edit.php:138 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:138 -#: application/views/station_profile/edit.php:155 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 msgid "click here" msgstr "" -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/edit.php:155 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:135 -#: application/views/station_profile/edit.php:167 -#: application/views/station_profile/edit.php:170 +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 msgid "Station Gridsquare" msgstr "" -#: application/views/station_profile/create.php:140 -#: application/views/station_profile/edit.php:175 +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 msgid "Get Gridsquare" msgstr "" -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 #, php-format msgctxt "uses 'click here'" msgid "" @@ -9082,304 +9930,250 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:145 -#: application/views/station_profile/edit.php:180 +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" -#: application/views/station_profile/create.php:160 -#: application/views/station_profile/edit.php:205 +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 msgid "Station IOTA reference. For example: EU-005" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 #, php-format msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:183 -#: application/views/station_profile/edit.php:260 +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 msgid "Signature Name" msgstr "" -#: application/views/station_profile/create.php:185 -#: application/views/station_profile/edit.php:262 +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 msgid "Station Signature (e.g. GMA).." msgstr "" -#: application/views/station_profile/create.php:189 -#: application/views/station_profile/edit.php:266 +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 msgid "Signature Information" msgstr "" -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/edit.php:268 +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "" -#: application/views/station_profile/create.php:195 -#: application/views/station_profile/edit.php:281 +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:197 -#: application/views/station_profile/edit.php:283 +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "" -#: application/views/station_profile/create.php:201 -#: application/views/station_profile/edit.php:286 +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 msgid "Default QSLMSG" msgstr "" -#: application/views/station_profile/create.php:204 -#: application/views/station_profile/edit.php:289 +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "" -#: application/views/station_profile/create.php:207 -#: application/views/station_profile/edit.php:328 +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:212 -#: application/views/station_profile/edit.php:333 +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " "Clublog. If this is deactivated on it's own please check if the Call is " "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:215 -#: application/views/station_profile/edit.php:336 +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 msgid "ClubLog Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:224 -#: application/views/station_profile/edit.php:352 +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 msgid "HRDLog.net Username" msgstr "" -#: application/views/station_profile/create.php:226 -#: application/views/station_profile/edit.php:354 +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" -#: application/views/station_profile/create.php:229 -#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 msgid "HRDLog.net API Key" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:234 -#: application/views/station_profile/edit.php:362 +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 msgid "HRDLog.net Logbook Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:243 -#: application/views/station_profile/edit.php:297 +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 msgid "Subscription Required" msgstr "" -#: application/views/station_profile/create.php:248 +#: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/edit.php:310 +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 msgid "QRZ.com Logbook Upload" msgstr "" -#: application/views/station_profile/create.php:260 -#: application/views/station_profile/edit.php:313 +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:268 -#: application/views/station_profile/edit.php:378 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:273 -#: application/views/station_profile/edit.php:383 +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 msgid "QO-100 Dx Club Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:283 -#: application/views/station_profile/edit.php:401 +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 msgid "OQRS Enabled" msgstr "" -#: application/views/station_profile/create.php:290 -#: application/views/station_profile/edit.php:408 +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 msgid "OQRS Email alert" msgstr "" -#: application/views/station_profile/create.php:295 -#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 msgid "Make sure email is set up under admin and global options." msgstr "" -#: application/views/station_profile/create.php:298 -#: application/views/station_profile/edit.php:416 +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 msgid "OQRS Text" msgstr "" -#: application/views/station_profile/create.php:300 -#: application/views/station_profile/edit.php:418 +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 msgid "Some info you want to add regarding QSL'ing." msgstr "" -#: application/views/station_profile/edit.php:122 +#: application/views/station_profile/edit.php:149 msgid "Zones" msgstr "" -#: application/views/station_profile/edit.php:257 +#: application/views/station_profile/edit.php:284 msgid "Signature" msgstr "" -#: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:95 -msgid "" -"Station Locations define operating locations, such as your QTH, a friends " -"QTH, or a portable station." -msgstr "" - -#: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:96 -msgid "Similar to logbooks, a station profile keeps a set of QSOs together." -msgstr "" - -#: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:97 -msgid "" -"Only one station may be active at a time. In the table below this is shown " -"with the -Active Station- badge." -msgstr "" - -#: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:101 -msgid "Create a Station Location" -msgstr "" - -#: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:105 -msgid "" -"Attention: You need to set an active station location. Go to Callsign-" -">Station Location to select one." -msgstr "" - -#: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:111 -msgid "" -"Due to recent changes within Wavelog you need to reassign QSOs to your " -"station profiles." -msgstr "" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Maintenance" -msgstr "" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Please reassign them at " -msgstr "" - -#: application/views/station_profile/index.php:41 -#: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:122 -msgid "Profile Name" -msgstr "" - #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "" @@ -9427,6 +10221,11 @@ msgstr "" msgid "Link Location" msgstr "" +#: application/views/stationsetup/linkedlocations.php:31 +#: application/views/stationsetup/stationsetup.php:122 +msgid "Profile Name" +msgstr "" + #: application/views/stationsetup/linkedlocations.php:34 msgid "Unlink Station Location" msgstr "" @@ -9451,12 +10250,52 @@ msgstr "" msgid "Station Locations" msgstr "" +#: application/views/stationsetup/stationsetup.php:95 +msgid "" +"Station Locations define operating locations, such as your QTH, a friends " +"QTH, or a portable station." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:96 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:97 +msgid "" +"Only one station may be active at a time. In the table below this is shown " +"with the -Active Station- badge." +msgstr "" + #: application/views/stationsetup/stationsetup.php:98 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." msgstr "" +#: application/views/stationsetup/stationsetup.php:101 +msgid "Create a Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:105 +msgid "" +"Attention: You need to set an active station location. Go to Callsign-" +">Station Location to select one." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:111 +msgid "" +"Due to recent changes within Wavelog you need to reassign QSOs to your " +"station profiles." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Maintenance" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Please reassign them at " +msgstr "" + #: application/views/stationsetup/stationsetup.php:127 msgid "Linked" msgstr "" @@ -9673,9 +10512,10 @@ msgid "4. Step" msgstr "" #: application/views/themes/index.php:73 +#, php-format msgid "" "Click here on 'Add a Theme' and type in the necessary data. Type in the " -"filenames for the logos without the file extension '.png'" +"filenames for the logos %swithout%s the file extension '.png'" msgstr "" #: application/views/themes/index.php:83 @@ -9738,6 +10578,10 @@ msgstr "" msgid "Update DXCC Data" msgstr "" +#: application/views/update/index.php:30 +msgid "Status:" +msgstr "" + #: application/views/update/index.php:34 msgid "Apply DXCC Data to Logbook" msgstr "" @@ -9751,36 +10595,43 @@ msgid "" "\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." msgstr "" -#: application/views/update/index.php:40 +#: application/views/update/index.php:45 msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:54 application/views/update/index.php:95 msgid "Re-check all QSOs in logbook" msgstr "" -#: application/views/update/index.php:45 +#: application/views/update/index.php:59 msgid "Apply Continent Data to Logbook" msgstr "" -#: application/views/update/index.php:47 +#: application/views/update/index.php:61 msgid "" "This function can be used to update QSO continent information for all QSOs " "in Wavelog missing that information." msgstr "" -#: application/views/update/index.php:49 +#: application/views/update/index.php:68 msgid "Check QSOs missing continent data" msgstr "" -#: application/views/update/index.php:59 +#: application/views/update/index.php:80 msgid "Here you can update QSOs with missing distance information." msgstr "" -#: application/views/update/index.php:60 +#: application/views/update/index.php:86 msgid "Update distance data" msgstr "" +#: application/views/update/index.php:89 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" + #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "" @@ -9810,13 +10661,13 @@ msgid "General Information" msgstr "" #: application/views/user/edit.php:52 application/views/user/login.php:58 -#: application/views/user/login.php:67 application/views/user/login.php:68 +#: application/views/user/login.php:69 application/views/user/login.php:70 #: application/views/user/profile.php:14 msgid "Username" msgstr "" #: application/views/user/edit.php:64 application/views/user/login.php:59 -#: application/views/user/login.php:71 application/views/user/login.php:72 +#: application/views/user/login.php:73 application/views/user/login.php:74 #: application/views/user/reset_password.php:21 #: application/views/user/reset_password.php:23 #: application/views/user/reset_password.php:30 @@ -9859,10 +10710,6 @@ msgstr "" msgid "Choose Wavelog language." msgstr "" -#: application/views/user/edit.php:179 -msgid "Timezone" -msgstr "" - #: application/views/user/edit.php:187 msgid "Date Format" msgstr "" @@ -10196,6 +11043,122 @@ msgstr "" msgid "You can reset your password here." msgstr "" +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "" + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "" + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "" @@ -10210,96 +11173,17 @@ msgstr "" #: application/views/user/login.php:60 #, php-format -msgid "" -"More Information about Wavelog on Github." +msgid "More Information about Wavelog on %sGithub%s." msgstr "" -#: application/views/user/login.php:77 +#: application/views/user/login.php:79 msgid "Forgot your password?" msgstr "" -#: application/views/user/login.php:83 +#: application/views/user/login.php:85 msgid "Keep me logged in" msgstr "" -#: application/views/user/main.php:2 -msgid "Do you really want to send this user a password-reset link?" -msgstr "" - -#: application/views/user/main.php:6 -msgid "Please Wait ..." -msgstr "" - -#: application/views/user/main.php:9 -msgid "Password-reset e-mail sent to user:" -msgstr "" - -#: application/views/user/main.php:30 -msgid "User List" -msgstr "" - -#: application/views/user/main.php:33 -msgid "Wavelog needs at least one user configured in order to operate." -msgstr "" - -#: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" - -#: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "" - -#: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." -msgstr "" - -#: application/views/user/main.php:38 -msgid "Create user" -msgstr "" - -#: application/views/user/main.php:39 -msgid "Refresh List" -msgstr "" - -#: application/views/user/main.php:49 -msgid "Type" -msgstr "" - -#: application/views/user/main.php:50 -msgid "Last seen" -msgstr "" - -#: application/views/user/main.php:53 -msgid "Password Reset" -msgstr "" - -#: application/views/user/main.php:79 -msgid "Never" -msgstr "" - -#: application/views/user/main.php:83 -msgid "Locations" -msgstr "" - -#: application/views/user/main.php:85 -msgid "Logbooks" -msgstr "" - -#: application/views/user/main.php:87 -msgid "Last QSO:" -msgstr "" - -#: application/views/user/main.php:89 -msgid "No QSOs in Log" -msgstr "" - #: application/views/user/profile.php:19 msgid "Level" msgstr "" @@ -10349,118 +11233,118 @@ msgstr "Στοιχεία QSO" msgid "QSL Management" msgstr "" -#: application/views/view_log/qso.php:128 +#: application/views/view_log/qso.php:131 msgid "Total Distance" msgstr "Συνολική Απόσταση" -#: application/views/view_log/qso.php:221 +#: application/views/view_log/qso.php:224 msgid "Antenna Azimuth" msgstr "" -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:231 msgid "Antenna Elevation" msgstr "" -#: application/views/view_log/qso.php:370 +#: application/views/view_log/qso.php:373 msgid "QSL Card has been sent via the bureau" msgstr "Η κάρτα QSL έχει σταλεί μέσω του γραφείου" -#: application/views/view_log/qso.php:372 +#: application/views/view_log/qso.php:375 msgid "QSL Card has been sent via direct" msgstr "Η κάρτα QSL έχει σταλεί απευθείας" -#: application/views/view_log/qso.php:374 +#: application/views/view_log/qso.php:377 msgid "QSL Card has been sent electronically" msgstr "Η κάρτα QSL έχει σταλεί ηλεκτρονικά" -#: application/views/view_log/qso.php:376 +#: application/views/view_log/qso.php:379 msgid "QSL Card has been sent via manager" msgstr "Η κάρτα QSL έχει σταλεί μέσω του διαχειριστή" -#: application/views/view_log/qso.php:378 +#: application/views/view_log/qso.php:381 msgid "QSL Card has been sent" msgstr "Η κάρτα QSL έχει σταλεί" -#: application/views/view_log/qso.php:387 +#: application/views/view_log/qso.php:390 msgid "QSL Card has been received via the bureau" msgstr "Η κάρτα QSL έχει παραληφθεί μέσω του γραφείου" -#: application/views/view_log/qso.php:389 +#: application/views/view_log/qso.php:392 msgid "QSL Card has been received via direct" msgstr "Η κάρτα QSL έχει παραληφθεί απευθείας" -#: application/views/view_log/qso.php:391 +#: application/views/view_log/qso.php:394 msgid "QSL Card has been received electronically" msgstr "Η κάρτα QSL έχει παραληφθεί ηλεκτρονικά" -#: application/views/view_log/qso.php:393 +#: application/views/view_log/qso.php:396 msgid "QSL Card has been received via manager" msgstr "Η κάρτα QSL έχει παραληφθεί μέσω του διαχειριστή" -#: application/views/view_log/qso.php:395 +#: application/views/view_log/qso.php:398 msgid "QSL Card has been received" msgstr "Η κάρτα QSL έχει παραληφθεί" -#: application/views/view_log/qso.php:404 +#: application/views/view_log/qso.php:407 msgid "This station uses LoTW." msgstr "" -#: application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:414 -#: application/views/view_log/qso.php:419 -#: application/views/view_log/qso.php:424 +#: application/views/view_log/qso.php:412 +#: application/views/view_log/qso.php:417 +#: application/views/view_log/qso.php:422 +#: application/views/view_log/qso.php:427 msgid "This QSO was confirmed on" msgstr "Αυτό το QSO επιβεβαιώθηκε στις" -#: application/views/view_log/qso.php:435 +#: application/views/view_log/qso.php:438 msgid "More QSOs" msgstr "" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:506 msgid "Details" msgstr "" -#: application/views/view_log/qso.php:630 +#: application/views/view_log/qso.php:633 msgid "Uploaded QSL Card front image" msgstr "Μεταφορτώθηκε η μπροστινή εικόνα της κάρτας QSL" -#: application/views/view_log/qso.php:635 +#: application/views/view_log/qso.php:638 msgid "Upload QSL Card image" msgstr "Μεταφόρτωση εικόνας κάρτας QSL" -#: application/views/view_log/qso.php:640 +#: application/views/view_log/qso.php:643 msgid "Uploaded QSL Card back image" msgstr "Μεταφορτώθηκε η πίσω εικόνα της κάρτας QSL" -#: application/views/view_log/qso.php:656 +#: application/views/view_log/qso.php:659 msgid "Mark QSL Received (Electronic)" msgstr "Σημείωση QSL ως Ελήφθη (Ηλεκτρονικός)" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:665 msgid "Mark QSL Card Requested (Bureau)" msgstr "Σημείωση QSL ζητήθηκε (Bureau)" -#: application/views/view_log/qso.php:664 +#: application/views/view_log/qso.php:667 msgid "Mark QSL Card Requested (Direct)" msgstr "Σημείωση QSL ζητήθηκε (Απευθείας)" -#: application/views/view_log/qso.php:679 +#: application/views/view_log/qso.php:682 msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:242 msgid "CSV" msgstr "" -#: application/views/visitor/layout/header.php:75 +#: application/views/visitor/layout/header.php:74 msgid "OQRS" msgstr "" -#: application/views/visitor/layout/header.php:83 +#: application/views/visitor/layout/header.php:82 msgid "Visit Wavelog on Github" msgstr "" -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Please enter a callsign!" msgstr "" diff --git a/application/locale/es_ES/LC_MESSAGES/messages.mo b/application/locale/es_ES/LC_MESSAGES/messages.mo index 7d6e83c43..afa24561e 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 00f8a5a65..20378a1bf 100644 --- a/application/locale/es_ES/LC_MESSAGES/messages.po +++ b/application/locale/es_ES/LC_MESSAGES/messages.po @@ -3,12 +3,14 @@ # This file is distributed under the MIT licence. # # CieNTi , 2024. +# "Francisco (F4VSE)" , 2024. +# Francisco Jiménez-Martín Sánchez , 2024. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-09 07:24+0000\n" -"PO-Revision-Date: 2024-07-09 13:25+0000\n" -"Last-Translator: Anonymous \n" +"POT-Creation-Date: 2024-09-07 07:18+0000\n" +"PO-Revision-Date: 2024-08-28 05:06+0000\n" +"Last-Translator: Francisco Jiménez-Martín Sánchez \n" "Language-Team: Spanish \n" "Language: es_ES\n" @@ -16,10 +18,104 @@ 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.6\n" +"X-Generator: Weblate 5.7\n" -#: application/controllers/Accumulated.php:21 -#: application/views/interface_assets/header.php:150 +#: application/controllers/Accumulated.php:12 +#: application/controllers/Activators.php:13 +#: application/controllers/Activatorsmap.php:13 +#: application/controllers/Adif.php:13 application/controllers/Awards.php:16 +#: application/controllers/Backup.php:13 application/controllers/Backup.php:26 +#: application/controllers/Backup.php:63 application/controllers/Band.php:15 +#: application/controllers/Bandmap.php:9 +#: application/controllers/Cabrillo.php:16 +#: application/controllers/Cabrillo.php:53 +#: application/controllers/Cabrillo.php:80 +#: application/controllers/Cabrillo.php:135 +#: application/controllers/Calltester.php:11 +#: application/controllers/Cfdexport.php:18 +#: application/controllers/Cfdexport.php:29 +#: application/controllers/Components.php:13 +#: application/controllers/Contestcalendar.php:15 +#: application/controllers/Contesting.php:14 +#: application/controllers/Cron.php:26 application/controllers/Cron.php:162 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: application/controllers/Distancerecords.php:11 +#: application/controllers/Distances.php:11 +#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29 +#: application/controllers/Dxatlas.php:51 +#: application/controllers/Dxatlas.php:108 +#: application/controllers/Dxcalendar.php:8 +#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23 +#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 +#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 +#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:353 +#: application/controllers/Eqsl.php:420 application/controllers/Eqsl.php:436 +#: application/controllers/Eqsl.php:497 application/controllers/Hamsat.php:13 +#: application/controllers/Kmlexport.php:18 +#: application/controllers/Kmlexport.php:33 +#: application/controllers/Labels.php:26 +#: application/controllers/Logbookadvanced.php:16 +#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 +#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 +#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 +#: application/controllers/Notes.php:10 application/controllers/Options.php:15 +#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 +#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 +#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 +#: application/controllers/Qso.php:9 application/controllers/Qso.php:19 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:600 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Reg1test.php:18 +#: application/controllers/Reg1test.php:63 +#: application/controllers/Reg1test.php:102 +#: application/controllers/Reg1test.php:130 +#: application/controllers/Reg1test.php:164 +#: application/controllers/Satellite.php:18 +#: application/controllers/Satellite.php:37 +#: application/controllers/Satellite.php:44 +#: application/controllers/Satellite.php:53 +#: application/controllers/Satellite.php:72 +#: application/controllers/Satellite.php:87 +#: application/controllers/Satellite.php:95 +#: application/controllers/Satellite.php:103 +#: application/controllers/Satellite.php:117 +#: application/controllers/Satellite.php:135 +#: application/controllers/Satellite.php:146 +#: application/controllers/Satellite.php:162 +#: application/controllers/Satellite.php:190 +#: application/controllers/Satellite.php:201 +#: application/controllers/Satellite.php:223 +#: application/controllers/Satellite.php:236 +#: application/controllers/Satellite.php:244 +#: application/controllers/Sattimers.php:9 +#: application/controllers/Search.php:13 +#: application/controllers/Simplefle.php:7 +#: application/controllers/Station.php:17 +#: application/controllers/Stationsetup.php:15 +#: application/controllers/Themes.php:17 +#: application/controllers/Timeline.php:10 +#: application/controllers/Timeplotter.php:11 +#: application/controllers/Update.php:24 application/controllers/Update.php:273 +#: application/controllers/Update.php:284 +#: application/controllers/Update.php:295 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 +#: application/controllers/User_options.php:9 +msgid "You're not allowed to do that!" +msgstr "¡No está permitido hacer eso!" + +#: application/controllers/Accumulated.php:19 +#: application/views/interface_assets/header.php:152 msgid "Accumulated Statistics" msgstr "Estadísticas Acumuladas" @@ -29,24 +125,26 @@ msgid "Activated Gridsquare Map" msgstr "Mapa de Gridsquares Activados" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:910 -#: application/controllers/Awards.php:942 +#: application/controllers/Awards.php:919 +#: application/controllers/Awards.php:951 #: application/controllers/Gridmap.php:31 -#: application/controllers/Visitor.php:374 -#: application/views/activators/index.php:101 +#: application/controllers/Visitor.php:385 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: application/views/visitor/layout/footer.php:22 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "Cuadrículas" #: application/controllers/Activated_gridmap.php:32 #: application/controllers/Gridmap.php:32 -#: application/controllers/Visitor.php:375 +#: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "Gridsquares confirmados" #: application/controllers/Activated_gridmap.php:33 #: application/controllers/Gridmap.php:33 -#: application/controllers/Visitor.php:376 +#: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "Gridsquares sin confirmación" @@ -55,12 +153,13 @@ msgid "Total gridsquares activated" msgstr "Total de gridsquares activados" #: application/controllers/Activators.php:20 -#: application/views/activators/index.php:2 +#: application/views/activators/index.php:5 #: application/views/interface_assets/header.php:142 msgid "Gridsquare Activators" msgstr "Activadores de Gridsquare" #: application/controllers/Activatorsmap.php:17 +#: application/views/activators/index.php:2 msgid "Activators Map" msgstr "Mapa de Activadores" @@ -77,7 +176,7 @@ msgid "ADIF Export" msgstr "Exportar ADIF" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:388 msgid "ADIF Import / Export" msgstr "Importar / Exportar ADIF" @@ -90,20 +189,25 @@ msgstr "Importar ADIF" msgid "Unsupported Filetype" msgstr "Tipo de fichero no soportado" -#: application/controllers/Adif.php:245 +#: application/controllers/Adif.php:240 +#: application/views/adif/import_failed.php:12 +msgid "ADIF Import failed!" +msgstr "" + +#: application/controllers/Adif.php:254 msgid "Station Profile not valid for User" msgstr "Perfil de Estación no válida para el Usuario" -#: application/controllers/Adif.php:252 +#: application/controllers/Adif.php:261 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "ADIF Importado" -#: application/controllers/Adif.php:263 +#: application/controllers/Adif.php:272 msgid "DCL Import" msgstr "Importar DCL" -#: application/controllers/Adif.php:319 +#: application/controllers/Adif.php:328 msgid "DCL Data Imported" msgstr "Datos DCL Importados" @@ -133,25 +237,8 @@ msgstr "La descripción de la API Key %s se ha actualizado." msgid "API Key %s has been deleted" msgstr "La API Key %s ha sido borrada" -#: application/controllers/Api.php:118 -msgid "Key Disabled" -msgstr "Key desactivada" - -#: application/controllers/Api.php:118 -msgid "No Key Found" -msgstr "Key no encontrada" - -#: application/controllers/Api.php:120 -msgid "Key Invalid - either not found or disabled" -msgstr "Key Inválida - no se encontró o está desactivada" - -#: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 -msgid "Valid" -msgstr "Válido" - #: application/controllers/Awards.php:22 -#: application/views/interface_assets/header.php:158 +#: application/views/interface_assets/header.php:160 #: application/views/qso/edit_ajax.php:35 msgid "Awards" msgstr "Diplomas" @@ -166,12 +253,13 @@ msgstr "Diplomas" #: application/controllers/Awards.php:652 #: application/controllers/Awards.php:714 #: application/controllers/Awards.php:776 -#: application/controllers/Awards.php:847 -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:930 -#: application/controllers/Awards.php:1125 -#: application/controllers/Awards.php:1615 -#: application/controllers/Awards.php:1755 +#: application/controllers/Awards.php:856 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:939 +#: application/controllers/Awards.php:1140 +#: application/controllers/Awards.php:1639 +#: application/controllers/Awards.php:1779 +#: application/controllers/Awards.php:1908 #, php-format msgid "Awards - %s" msgstr "Diplomas - %s" @@ -179,13 +267,13 @@ msgstr "Diplomas - %s" #: application/controllers/Awards.php:92 #: application/views/awards/dok/index.php:149 #: application/views/bands/index.php:47 -#: application/views/contesting/index.php:170 -#: application/views/interface_assets/header.php:194 -#: application/views/logbookadvanced/index.php:613 +#: application/views/contesting/index.php:53 +#: application/views/interface_assets/header.php:198 +#: application/views/logbookadvanced/index.php:641 #: application/views/logbookadvanced/useroptions.php:130 -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:264 -#: application/views/qso/index.php:508 application/views/user/edit.php:603 -#: application/views/view_log/qso.php:351 +#: application/views/qso/edit_ajax.php:388 application/views/qso/index.php:264 +#: application/views/qso/index.php:518 application/views/user/edit.php:603 +#: application/views/view_log/qso.php:354 msgid "DOK" msgstr "DOK" @@ -193,15 +281,15 @@ msgstr "DOK" #: application/views/bandmap/list.php:112 application/views/bands/index.php:48 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 -#: application/views/interface_assets/header.php:164 +#: application/views/interface_assets/header.php:166 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:145 -#: application/views/logbookadvanced/index.php:580 +#: application/views/logbookadvanced/index.php:156 +#: application/views/logbookadvanced/index.php:608 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 -#: application/views/lotw_views/index.php:40 +#: application/views/lotw_views/index.php:36 #: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 #: application/views/search/cqzones_result.php:15 #: application/views/search/result.php:27 @@ -216,12 +304,12 @@ msgid "Awards - WAJA" msgstr "Diplomas - WAJA" #: application/controllers/Awards.php:327 application/views/bands/index.php:51 -#: application/views/interface_assets/header.php:210 +#: application/views/interface_assets/header.php:214 msgid "JCC" msgstr "JCC" #: application/controllers/Awards.php:375 application/views/bands/index.php:57 -#: application/views/interface_assets/header.php:170 +#: application/views/interface_assets/header.php:172 msgid "VUCC" msgstr "VUCC" @@ -230,15 +318,20 @@ msgid "Log View - VUCC" msgstr "Vista de registro - VUCC" #: application/controllers/Awards.php:453 -#: application/controllers/Timeline.php:92 -#: application/controllers/Timeline.php:95 -#: application/controllers/Timeline.php:98 -#: application/controllers/Timeline.php:101 -#: application/controllers/Timeline.php:104 -#: application/controllers/Timeline.php:107 +#: application/controllers/Distancerecords.php:59 +#: application/controllers/Timeline.php:105 +#: application/controllers/Timeline.php:108 +#: application/controllers/Timeline.php:111 +#: application/controllers/Timeline.php:114 +#: application/controllers/Timeline.php:117 +#: application/controllers/Timeline.php:120 msgid "Log View" msgstr "Vista de registro" +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr "" + #: application/controllers/Awards.php:457 msgid " and sat " msgstr " y satélite " @@ -260,12 +353,12 @@ msgid " and " msgstr " y " #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1289 #: application/views/awards/index.php:8 application/views/bands/index.php:55 #: application/views/dashboard/index.php:9 -#: application/views/interface_assets/header.php:178 -#: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:259 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -273,10 +366,10 @@ msgstr " y " #: application/views/qslcard/searchresult.php:49 #: application/views/qslcard/searchresult.php:65 #: application/views/qslcard/searchresult.php:81 -#: application/views/qso/components/previous_contacts.php:83 -#: application/views/qso/edit_ajax.php:336 +#: application/views/qso/components/previous_contacts.php:82 +#: application/views/qso/edit_ajax.php:363 #: application/views/search/search_result_ajax.php:9 -#: application/views/station_profile/edit.php:216 +#: application/views/station_profile/edit.php:243 #: application/views/user/edit.php:234 application/views/user/edit.php:256 #: application/views/user/edit.php:278 application/views/user/edit.php:300 #: application/views/user/edit.php:323 @@ -286,18 +379,18 @@ msgid "SOTA" msgstr "SOTA" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1290 #: application/views/bands/index.php:60 #: application/views/dashboard/index.php:10 -#: application/views/interface_assets/header.php:172 -#: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:279 +#: application/views/interface_assets/header.php:176 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/index.php:290 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 -#: application/views/qso/components/previous_contacts.php:84 -#: application/views/qso/edit_ajax.php:341 +#: application/views/qso/components/previous_contacts.php:83 +#: application/views/qso/edit_ajax.php:368 #: application/views/search/search_result_ajax.php:10 -#: application/views/station_profile/edit.php:229 +#: application/views/station_profile/edit.php:256 #: application/views/user/edit.php:235 application/views/user/edit.php:257 #: application/views/user/edit.php:279 application/views/user/edit.php:301 #: application/views/user/edit.php:324 @@ -306,18 +399,18 @@ msgid "WWFF" msgstr "WWFF" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1291 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 -#: application/views/interface_assets/header.php:182 +#: application/views/interface_assets/header.php:186 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:274 +#: application/views/logbookadvanced/index.php:623 #: application/views/logbookadvanced/useroptions.php:106 -#: application/views/qso/components/previous_contacts.php:85 -#: application/views/qso/edit_ajax.php:346 +#: application/views/qso/components/previous_contacts.php:84 +#: application/views/qso/edit_ajax.php:373 #: application/views/search/search_result_ajax.php:11 -#: application/views/station_profile/edit.php:242 +#: application/views/station_profile/edit.php:269 #: application/views/user/edit.php:236 application/views/user/edit.php:258 #: application/views/user/edit.php:280 application/views/user/edit.php:302 #: application/views/user/edit.php:325 @@ -336,7 +429,7 @@ msgid "Worked All States (WAS)" msgstr "" #: application/controllers/Awards.php:714 application/views/bands/index.php:53 -#: application/views/interface_assets/header.php:188 +#: application/views/interface_assets/header.php:192 msgid "RAC" msgstr "RAC" @@ -344,74 +437,80 @@ msgstr "RAC" msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:847 +#: application/controllers/Awards.php:856 msgid "IOTA (Island On The Air)" msgstr "IOTA (Islas en el Aire)" -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:872 -#: application/views/interface_assets/header.php:230 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 +#: application/views/interface_assets/header.php:234 msgid "US Counties" msgstr "Condados de EEUU" -#: application/controllers/Awards.php:887 +#: application/controllers/Awards.php:896 msgid "Log View - Counties" msgstr "Vista de registro - Condados" -#: application/controllers/Awards.php:894 +#: application/controllers/Awards.php:903 msgid "Awards - " msgstr "Diplomas - " -#: application/controllers/Awards.php:911 -#: application/controllers/Awards.php:943 +#: application/controllers/Awards.php:920 +#: application/controllers/Awards.php:952 msgid "Gridsquares worked" msgstr "Cuadrículas trabajadas" -#: application/controllers/Awards.php:912 -#: application/controllers/Awards.php:944 +#: application/controllers/Awards.php:921 +#: application/controllers/Awards.php:953 msgid "Gridsquares confirmed on LoTW" msgstr "Cuadrículas confirmadas en LoTW" -#: application/controllers/Awards.php:913 -#: application/controllers/Awards.php:945 +#: application/controllers/Awards.php:922 +#: application/controllers/Awards.php:954 msgid "Gridsquares confirmed by paper QSL" msgstr "Cuadrículas confirmadas por QSL físicas" -#: application/controllers/Awards.php:930 +#: application/controllers/Awards.php:939 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Diploma Memorial Fred Fish (FFMA)" -#: application/controllers/Awards.php:1125 -#: application/views/interface_assets/header.php:168 +#: application/controllers/Awards.php:1140 +#: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1143 +#: application/controllers/Awards.php:1158 msgid "Awards - SIG - " msgstr "Diplomas - SIG - " -#: application/controllers/Awards.php:1755 -#: application/views/awards/itu/index.php:18 +#: application/controllers/Awards.php:1779 +#: application/views/awards/itu/index.php:20 msgid "ITU Zones" msgstr "Zonas ITU" +#: application/controllers/Awards.php:1908 +#: application/views/awards/wac/index.php:8 +#: application/views/interface_assets/header.php:174 +msgid "Worked All Continents (WAC)" +msgstr "" + #: application/controllers/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:284 msgid "Backup" msgstr "Copia de seguridad" -#: application/controllers/Backup.php:48 +#: application/controllers/Backup.php:50 msgid "ADIF - Backup" msgstr "ADIF - Copia de seguridad" -#: application/controllers/Backup.php:80 +#: application/controllers/Backup.php:84 msgid "Notes - Backup" msgstr "Notas - Copia de seguridad" #: application/controllers/Band.php:25 application/views/bands/index.php:28 #: application/views/bands/index.php:32 -#: application/views/interface_assets/header.php:379 +#: application/views/interface_assets/header.php:383 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -427,8 +526,8 @@ msgstr "Editar Banda" #: application/controllers/Bandmap.php:28 #: application/controllers/Bandmap.php:69 -#: application/controllers/Options.php:137 -#: application/controllers/Options.php:148 +#: application/controllers/Options.php:145 +#: application/controllers/Options.php:156 #: application/views/options/sidebar.php:10 msgid "DXCluster" msgstr "DXCluster" @@ -438,7 +537,7 @@ msgid "Export Cabrillo" msgstr "Exportar Cabrillo" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:396 +#: application/views/interface_assets/header.php:402 msgid "CFD Export" msgstr "Exportar en CFD" @@ -455,7 +554,7 @@ msgid "No user has configured Clublog." msgstr "Ningún usuario ha configurado Clublog." #: application/controllers/Contestcalendar.php:19 -#: application/views/interface_assets/header.php:247 +#: application/views/interface_assets/header.php:251 msgid "Contest Calendar" msgstr "Calendario de Concursos" @@ -464,38 +563,62 @@ msgstr "Calendario de Concursos" msgid "Contest Logging" msgstr "Registro de Concurso" -#: application/controllers/Contesting.php:112 -#: application/views/interface_assets/header.php:274 +#: application/controllers/Contesting.php:113 +#: application/views/interface_assets/header.php:278 msgid "Contests" msgstr "Concursos" -#: application/controllers/Contesting.php:126 +#: application/controllers/Contesting.php:127 msgid "Update Contest" msgstr "Actualizar Concurso" #: application/controllers/Continents.php:25 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:57 -#: application/views/interface_assets/header.php:154 +#: application/views/interface_assets/header.php:156 msgid "Continents" msgstr "Continentes" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:284 +#: application/views/interface_assets/header.php:288 msgid "Cron Manager" msgstr "Gestión de Cron" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:154 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "Editar trabajo de Cron" +#: application/controllers/Cron.php:274 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:278 +#, php-format +msgid "" +"Last run occurred more than %s seconds ago.%sPlease check your master cron! " +"It should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:281 +#, php-format +msgid "" +"Last run occurred more than %s minutes ago.%sSeems like your Mastercron " +"isn't running!%sIt should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:286 application/views/cron/index.php:29 +msgctxt "Master Cron" +msgid "Not running" +msgstr "" + #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:392 +#: application/views/interface_assets/header.php:396 msgid "SOTA CSV Export" msgstr "Exportar CSV de SOTA" -#: application/controllers/Dashboard.php:108 -#: application/controllers/Visitor.php:132 +#: application/controllers/Dashboard.php:123 +#: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "Panel de control" @@ -542,6 +665,12 @@ msgstr "" msgid "File Migration failed. Please check the Error Log." msgstr "" +#: application/controllers/Distancerecords.php:42 +#: application/controllers/Distancerecords.php:59 +#: application/views/interface_assets/header.php:146 +msgid "Satellite Distance Records" +msgstr "" + #: application/controllers/Distances.php:17 #: application/views/distances/index.php:5 #: application/views/distances/index.php:8 @@ -549,27 +678,31 @@ msgstr "" msgid "Distances Worked" msgstr "Distancias Trabajadas" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 #: application/views/distances/index.php:15 msgid "QSOs with" msgstr "QSOs con" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 msgid "and band" msgstr "y banda" +#: application/controllers/Distances.php:83 +msgid "and propagation" +msgstr "" + #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:394 msgid "DX Atlas Gridsquare Export" msgstr "Exportar Cuadrícula DX Atlas" #: application/controllers/Dxcalendar.php:10 -#: application/views/interface_assets/header.php:245 +#: application/views/interface_assets/header.php:249 msgid "DX Calendar" msgstr "Calendario DX" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:325 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -587,19 +720,19 @@ msgstr "Información de importación de eQSL" msgid "eQSL QSO Upload" msgstr "" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:424 msgid "eQSL Tools" msgstr "Herramientas de eQSL" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid " / Errors: " msgstr " / Errores: " -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid "Successfully downloaded: " msgstr "Descargado satisfactoriamente: " -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:481 msgid "eQSL Card Image Download" msgstr "Descargar Imagen de Tarjeta eQSL" @@ -609,7 +742,7 @@ msgid "Gridsquare Map" msgstr "Mapa de Gridsquares" #: application/controllers/Gridmap.php:34 -#: application/controllers/Visitor.php:377 +#: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "Total de gridsquares trabajados" @@ -629,7 +762,7 @@ msgid "No QSOs found to upload." msgstr "" #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:392 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "Exportación KML" @@ -642,59 +775,59 @@ msgstr "" msgid "Create Label Type" msgstr "" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:402 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:406 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:403 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:407 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 #: application/views/labels/index.php:76 msgid "Paper Type" msgstr "" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:404 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:408 #: application/views/labels/index.php:42 application/views/labels/index.php:77 msgid "Measurement" msgstr "" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:405 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:409 msgid "Top Margin" msgstr "" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:406 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:410 msgid "Left Margin" msgstr "" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:407 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:411 msgid "QSLs Horizontally" msgstr "" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:408 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:412 msgid "QSLs Vertically" msgstr "" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:409 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:413 msgid "Horizontal Space" msgstr "" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:410 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:414 msgid "Vertical Space" msgstr "" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:411 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:415 msgid "Label width" msgstr "" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:412 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:416 msgid "Label height" msgstr "" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:413 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:417 msgid "Size of Font" msgstr "" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:414 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:418 msgid "Number of QSOs on label" msgstr "" @@ -703,22 +836,22 @@ msgid "Create Paper Type" msgstr "" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:461 +#: application/controllers/Labels.php:465 msgid "Paper Name" msgstr "" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:462 +#: application/controllers/Labels.php:466 msgid "Paper Width" msgstr "" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:463 +#: application/controllers/Labels.php:467 msgid "Paper Height" msgstr "" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:471 +#: application/controllers/Labels.php:475 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -745,27 +878,27 @@ msgstr "" msgid "0 QSOs found for print!" msgstr "" -#: application/controllers/Labels.php:391 +#: application/controllers/Labels.php:395 msgid "Edit Label" msgstr "" -#: application/controllers/Labels.php:420 +#: application/controllers/Labels.php:424 msgid "Label was saved." msgstr "" -#: application/controllers/Labels.php:428 +#: application/controllers/Labels.php:432 msgid "Label was deleted." msgstr "" -#: application/controllers/Labels.php:450 +#: application/controllers/Labels.php:454 msgid "Edit Paper" msgstr "" -#: application/controllers/Labels.php:475 +#: application/controllers/Labels.php:479 msgid "Paper was saved." msgstr "" -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "Paper was deleted." msgstr "" @@ -789,20 +922,20 @@ msgstr "" msgid "Logbook" msgstr "Libro de Guardia" -#: application/controllers/Logbook.php:653 -#: application/controllers/Logbook.php:668 +#: application/controllers/Logbook.php:657 +#: application/controllers/Logbook.php:672 #: application/views/activated_gridmap/index.php:58 #: application/views/awards/dok/index.php:55 #: application/views/awards/dxcc/index.php:61 -#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/helvetia/index.php:55 #: application/views/awards/jcc/index.php:52 -#: application/views/awards/rac/index.php:45 +#: application/views/awards/rac/index.php:47 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:72 -#: application/views/awards/waja/index.php:53 -#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:55 +#: application/views/awards/was/index.php:55 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:568 +#: application/views/logbookadvanced/index.php:596 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -815,20 +948,21 @@ msgstr "Libro de Guardia" msgid "QSL" msgstr "" -#: application/controllers/Logbook.php:656 +#: application/controllers/Logbook.php:660 #: application/views/activated_gridmap/index.php:66 -#: application/views/awards/cq/index.php:58 +#: application/views/awards/cq/index.php:60 #: application/views/awards/dok/index.php:59 #: application/views/awards/dxcc/index.php:65 -#: application/views/awards/helvetia/index.php:57 -#: application/views/awards/itu/index.php:58 +#: application/views/awards/helvetia/index.php:59 +#: application/views/awards/itu/index.php:60 #: application/views/awards/jcc/index.php:56 -#: application/views/awards/rac/index.php:49 +#: application/views/awards/rac/index.php:51 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:80 -#: application/views/awards/waja/index.php:57 -#: application/views/awards/was/index.php:57 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -836,28 +970,29 @@ msgstr "" #: application/views/qslprint/qsolist.php:21 #: application/views/qslprint/qsolist.php:167 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:384 +#: application/views/qso/edit_ajax.php:411 #: application/views/search/result_search.php:22 #: application/views/search/search_result_ajax.php:298 #: application/views/search/search_result_ajax.php:313 #: application/views/timeline/index.php:60 application/views/user/edit.php:563 -#: application/views/user/edit.php:659 application/views/view_log/qso.php:408 +#: application/views/user/edit.php:659 application/views/view_log/qso.php:411 msgid "LoTW" msgstr "" -#: application/controllers/Logbook.php:659 +#: application/controllers/Logbook.php:663 #: application/views/activated_gridmap/index.php:74 -#: application/views/awards/cq/index.php:62 +#: application/views/awards/cq/index.php:64 #: application/views/awards/dok/index.php:63 #: application/views/awards/dxcc/index.php:69 -#: application/views/awards/helvetia/index.php:61 -#: application/views/awards/itu/index.php:62 +#: application/views/awards/helvetia/index.php:63 +#: application/views/awards/itu/index.php:64 #: application/views/awards/jcc/index.php:60 -#: application/views/awards/rac/index.php:53 +#: application/views/awards/rac/index.php:55 #: application/views/awards/wab/index.php:88 -#: application/views/awards/waja/index.php:61 -#: application/views/awards/was/index.php:61 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:52 +#: application/views/awards/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:117 #: application/views/logbookadvanced/useroptions.php:70 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 @@ -865,63 +1000,67 @@ msgstr "" #: application/views/qslprint/qsolist.php:18 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:151 -#: application/views/qso/edit_ajax.php:381 +#: application/views/qso/edit_ajax.php:408 #: application/views/search/result_search.php:16 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:273 -#: application/views/station_profile/edit.php:278 +#: application/views/station_profile/edit.php:305 #: application/views/timeline/index.php:64 application/views/user/edit.php:564 #: application/views/user/edit.php:667 application/views/user/edit.php:731 msgid "eQSL" msgstr "" -#: application/controllers/Logbook.php:665 +#: application/controllers/Logbook.php:669 #: application/views/awards/dok/index.php:71 #: application/views/awards/dxcc/index.php:77 #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 -#: application/views/awards/waja/index.php:69 +#: application/views/awards/waja/index.php:71 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 -#: application/views/station_profile/edit.php:325 +#: application/views/station_profile/edit.php:352 +#: application/views/timeline/index.php:68 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 -#: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/partial/log_ajax.php:85 +#: application/views/view_log/qso.php:426 msgid "Clublog" msgstr "" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1284 #: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:39 #: application/views/adif/dcl_success.php:33 -#: application/views/awards/cq/index.php:86 +#: application/views/awards/cq/index.php:88 #: application/views/awards/dok/index.php:91 #: application/views/awards/dxcc/index.php:162 -#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/helvetia/index.php:87 #: application/views/awards/iota/index.php:105 -#: application/views/awards/itu/index.php:86 +#: application/views/awards/itu/index.php:88 #: application/views/awards/jcc/index.php:88 -#: application/views/awards/rac/index.php:77 +#: application/views/awards/rac/index.php:79 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:53 -#: application/views/awards/waja/index.php:89 -#: application/views/awards/was/index.php:85 +#: application/views/awards/wac/index.php:110 +#: application/views/awards/waja/index.php:91 +#: application/views/awards/was/index.php:87 #: application/views/components/hamsat/table.php:30 -#: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:203 +#: application/views/contesting/index.php:108 +#: application/views/contesting/index.php:250 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 +#: 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/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:170 -#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/index.php:181 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -938,14 +1077,14 @@ msgstr "" #: application/views/qslcard/searchresult.php:76 #: application/views/qslprint/qslprint.php:24 #: application/views/qslprint/qsolist.php:9 -#: application/views/qso/components/previous_contacts.php:78 +#: application/views/qso/components/previous_contacts.php:77 #: application/views/qso/edit_ajax.php:119 application/views/qso/index.php:136 #: application/views/satellite/index.php:24 #: application/views/search/cqzones_result.php:10 #: application/views/search/lotw_unconfirmed_result.php:8 #: application/views/search/result_search.php:7 #: application/views/search/search_result_ajax.php:4 -#: application/views/simplefle/index.php:144 +#: application/views/simplefle/index.php:150 #: application/views/statistics/custom.php:60 #: application/views/statistics/custom_result.php:62 #: application/views/statistics/custom_result.php:88 @@ -957,17 +1096,17 @@ msgstr "" #: application/views/user/edit.php:295 application/views/user/edit.php:318 #: application/views/view_log/partial/log.php:9 #: application/views/view_log/partial/log_ajax.php:4 -#: application/views/view_log/qso.php:104 application/views/visitor/index.php:6 +#: application/views/view_log/qso.php:107 application/views/visitor/index.php:6 #: application/views/widgets/qsos.php:29 msgid "Mode" msgstr "Modo" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1285 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:111 -#: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:547 +#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:251 +#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -976,25 +1115,25 @@ msgstr "Modo" #: application/views/qslcard/searchresult.php:77 #: application/views/qslprint/qslprint.php:26 #: application/views/qslprint/qsolist.php:11 -#: application/views/qso/components/previous_contacts.php:79 +#: application/views/qso/components/previous_contacts.php:78 #: application/views/qso/edit_ajax.php:142 application/views/qso/index.php:177 #: application/views/search/search_result_ajax.php:5 -#: application/views/simplefle/index.php:145 +#: application/views/simplefle/index.php:151 #: application/views/user/edit.php:230 application/views/user/edit.php:252 #: application/views/user/edit.php:274 application/views/user/edit.php:296 #: application/views/user/edit.php:319 #: application/views/view_log/partial/log.php:10 #: application/views/view_log/partial/log_ajax.php:5 -#: application/views/view_log/qso.php:109 application/views/visitor/index.php:9 +#: application/views/view_log/qso.php:112 application/views/visitor/index.php:9 msgid "RST (S)" msgstr "RST (Enviada)" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1286 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:550 +#: application/views/contesting/index.php:189 +#: application/views/contesting/index.php:252 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1003,51 +1142,50 @@ msgstr "RST (Enviada)" #: application/views/qslcard/searchresult.php:78 #: application/views/qslprint/qslprint.php:27 #: application/views/qslprint/qsolist.php:12 -#: application/views/qso/components/previous_contacts.php:80 +#: application/views/qso/components/previous_contacts.php:79 #: application/views/qso/edit_ajax.php:147 application/views/qso/index.php:182 #: application/views/search/search_result_ajax.php:6 -#: application/views/simplefle/index.php:146 +#: application/views/simplefle/index.php:152 #: application/views/user/edit.php:231 application/views/user/edit.php:253 #: application/views/user/edit.php:275 application/views/user/edit.php:297 #: application/views/user/edit.php:320 #: application/views/view_log/partial/log.php:11 #: application/views/view_log/partial/log_ajax.php:6 -#: application/views/view_log/qso.php:114 +#: application/views/view_log/qso.php:117 #: application/views/visitor/index.php:12 msgid "RST (R)" msgstr "RST (Recibida)" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1287 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 #: application/views/qslcard/searchresult.php:47 #: application/views/qslcard/searchresult.php:63 #: application/views/qslcard/searchresult.php:79 -#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/components/previous_contacts.php:80 #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 -#: application/views/station_profile/index.php:43 #: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 -#: application/views/timeline/index.php:118 application/views/user/edit.php:232 +#: application/views/timeline/index.php:151 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 #: application/views/user/edit.php:298 application/views/user/edit.php:321 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:235 -#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:238 +#: application/views/view_log/qso.php:531 #: application/views/visitor/index.php:15 msgid "Country" msgstr "País" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1288 #: application/views/awards/iota/index.php:169 #: application/views/bands/index.php:50 application/views/dashboard/index.php:8 -#: application/views/interface_assets/header.php:180 +#: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1056,11 +1194,11 @@ msgstr "País" #: application/views/qslcard/searchresult.php:48 #: application/views/qslcard/searchresult.php:64 #: application/views/qslcard/searchresult.php:80 -#: application/views/qso/components/previous_contacts.php:82 -#: application/views/qso/edit_ajax.php:318 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 -#: application/views/timeline/index.php:202 application/views/user/edit.php:233 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:235 application/views/user/edit.php:233 #: application/views/user/edit.php:255 application/views/user/edit.php:277 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/view_log/partial/log_ajax.php:8 @@ -1068,17 +1206,17 @@ msgstr "País" msgid "IOTA" msgstr "" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1292 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:20 -#: application/views/awards/rac/index.php:141 -#: application/views/awards/was/index.php:149 -#: application/views/contesting/index.php:173 +#: application/views/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 +#: application/views/contesting/index.php:56 #: application/views/dashboard/index.php:12 -#: application/views/logbookadvanced/edit.php:20 -#: application/views/logbookadvanced/edit.php:64 -#: application/views/logbookadvanced/index.php:162 -#: application/views/logbookadvanced/index.php:583 +#: application/views/logbookadvanced/edit.php:21 +#: application/views/logbookadvanced/edit.php:66 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:611 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1086,9 +1224,9 @@ msgstr "" #: application/views/qslcard/searchresult.php:50 #: application/views/qslcard/searchresult.php:66 #: application/views/qslcard/searchresult.php:82 -#: application/views/qso/components/previous_contacts.php:86 +#: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 -#: application/views/timeline/index.php:177 application/views/user/edit.php:237 +#: application/views/timeline/index.php:210 application/views/user/edit.php:237 #: application/views/user/edit.php:259 application/views/user/edit.php:281 #: application/views/user/edit.php:303 application/views/user/edit.php:326 #: application/views/view_log/partial/log_ajax.php:12 @@ -1096,20 +1234,21 @@ msgstr "" msgid "State" msgstr "Estado" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1293 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:17 -#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:13 +#: application/views/distancerecords/index.php:20 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:166 -#: application/views/logbookadvanced/index.php:556 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1118,38 +1257,39 @@ msgstr "Estado" #: application/views/qslcard/searchresult.php:51 #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 -#: application/views/qso/components/previous_contacts.php:87 +#: application/views/qso/components/previous_contacts.php:86 #: application/views/qso/edit_ajax.php:156 application/views/qso/index.php:279 +#: application/views/satellite/pass.php:28 #: application/views/search/cqzones_result.php:12 #: application/views/search/result.php:33 #: application/views/search/search_result_ajax.php:13 -#: application/views/simplefle/index.php:147 -#: application/views/station_profile/index.php:44 +#: application/views/simplefle/index.php:153 #: application/views/stationsetup/stationsetup.php:125 -#: application/views/timeline/index.php:257 application/views/user/edit.php:130 +#: application/views/timeline/index.php:290 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 #: application/views/user/edit.php:327 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:518 #: application/views/visitor/index.php:27 msgid "Gridsquare" msgstr "" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1294 #: application/views/activated_gridmap/index.php:108 #: application/views/awards/ffma/index.php:36 #: application/views/awards/gridmaster/index.php:35 #: 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/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/index.php:12 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 #: application/views/qslcard/searchresult.php:52 #: application/views/qslcard/searchresult.php:68 #: application/views/qslcard/searchresult.php:84 -#: application/views/qso/components/previous_contacts.php:88 +#: application/views/qso/components/previous_contacts.php:87 #: application/views/search/search_result_ajax.php:14 #: application/views/user/edit.php:239 application/views/user/edit.php:261 #: application/views/user/edit.php:283 application/views/user/edit.php:305 @@ -1159,32 +1299,33 @@ msgstr "" msgid "Distance" msgstr "Distancia" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1295 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:8 -#: application/views/activators/index.php:7 +#: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 -#: application/views/awards/cq/index.php:72 +#: application/views/awards/cq/index.php:74 #: application/views/awards/dok/index.php:77 #: application/views/awards/dxcc/index.php:117 -#: application/views/awards/helvetia/index.php:71 +#: application/views/awards/helvetia/index.php:73 #: application/views/awards/iota/index.php:91 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:74 #: application/views/awards/jcc/index.php:74 #: application/views/awards/pota/index.php:35 -#: application/views/awards/rac/index.php:63 +#: application/views/awards/rac/index.php:65 #: application/views/awards/sig/qso_list.php:13 #: application/views/awards/sota/index.php:26 #: application/views/awards/vucc/index.php:21 #: application/views/awards/wab/index.php:22 -#: application/views/awards/waja/index.php:75 -#: application/views/awards/was/index.php:71 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/waja/index.php:77 +#: application/views/awards/was/index.php:73 #: application/views/awards/wwff/index.php:35 #: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:45 -#: application/views/contesting/index.php:70 -#: application/views/contesting/index.php:202 +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:249 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:549 application/views/dxatlas/index.php:31 @@ -1192,8 +1333,8 @@ msgstr "Distancia" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1211,13 +1352,13 @@ msgstr "Distancia" #: application/views/qslmanagement/index.php:24 #: application/views/qslprint/qslprint.php:25 #: application/views/qslprint/qsolist.php:10 -#: application/views/qso/components/previous_contacts.php:89 +#: application/views/qso/components/previous_contacts.php:88 #: application/views/qso/edit_ajax.php:83 application/views/qso/index.php:151 #: application/views/search/cqzones_result.php:11 #: application/views/search/lotw_unconfirmed_result.php:9 #: application/views/search/result_search.php:10 #: application/views/search/search_result_ajax.php:15 -#: application/views/simplefle/index.php:143 +#: application/views/simplefle/index.php:149 #: application/views/stationsetup/exportmapoptions.php:31 #: application/views/statistics/custom.php:53 #: application/views/statistics/custom_result.php:55 @@ -1235,72 +1376,71 @@ msgstr "Distancia" msgid "Band" msgstr "Banda" -#: application/controllers/Logbook.php:1285 +#: application/controllers/Logbook.php:1296 #: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 -#: application/views/contesting/index.php:87 +#: application/views/contesting/index.php:138 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 #: application/views/qslcard/searchresult.php:70 #: application/views/qslcard/searchresult.php:86 -#: application/views/qso/components/previous_contacts.php:90 +#: application/views/qso/components/previous_contacts.php:89 #: application/views/qso/edit_ajax.php:71 application/views/qso/index.php:169 #: application/views/search/search_result_ajax.php:16 #: application/views/user/edit.php:228 application/views/user/edit.php:250 #: application/views/user/edit.php:272 application/views/user/edit.php:294 #: application/views/user/edit.php:317 #: application/views/view_log/partial/log_ajax.php:16 -#: application/views/view_log/qso.php:93 application/views/visitor/index.php:36 +#: application/views/view_log/qso.php:94 application/views/visitor/index.php:36 msgid "Frequency" msgstr "Frecuencia" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1297 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:283 -#: application/views/logbookadvanced/index.php:598 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:626 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 #: application/views/qslcard/searchresult.php:87 -#: application/views/qso/components/previous_contacts.php:91 +#: application/views/qso/components/previous_contacts.php:90 #: application/views/search/search_result_ajax.php:17 #: application/views/simplefle/index.php:112 #: application/views/user/edit.php:240 application/views/user/edit.php:262 #: application/views/user/edit.php:284 application/views/user/edit.php:306 #: application/views/user/edit.php:329 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:538 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "Operador" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1318 #: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:669 +#: application/views/interface_assets/footer.php:675 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:154 +#: application/views/logbookadvanced/index.php:165 #: application/views/lookup/index.php:31 -#: application/views/lotw_views/index.php:56 +#: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 #: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 -#: application/views/station_profile/create.php:73 -#: application/views/station_profile/edit.php:78 -#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 #: application/views/stationsetup/stationsetup.php:150 -#: application/views/timeline/index.php:134 +#: application/views/timeline/index.php:167 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 -#: application/views/view_log/qso.php:236 -#: application/views/view_log/qso.php:529 +#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:532 msgid "Deleted DXCC" msgstr "DXCC Eliminado" @@ -1314,7 +1454,7 @@ msgstr "" #: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83 #: application/controllers/Lotw.php:125 application/views/adif/import.php:27 -#: application/views/interface_assets/header.php:423 +#: application/views/interface_assets/header.php:429 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1322,28 +1462,55 @@ msgstr "" msgid "Logbook of the World" msgstr "" -#: application/controllers/Lotw.php:610 +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "" + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "" + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "" + +#: application/controllers/Lotw.php:413 +#, 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:617 msgid "LoTW ADIF Information" msgstr "" -#: application/controllers/Lotw.php:718 +#: application/controllers/Lotw.php:725 msgid "LoTW ADIF Import" msgstr "" -#: application/controllers/Lotw.php:830 +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "" + +#: application/controllers/Lotw.php:837 msgid "LoTW .TQ8 Upload" msgstr "" -#: application/controllers/Lotw.php:927 application/controllers/Lotw.php:932 +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "" + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 msgid "LoTW .TQ8 Sent" msgstr "" -#: application/controllers/Lotw.php:939 +#: application/controllers/Lotw.php:946 msgid "LoTW .TQ8 Not Sent" msgstr "" #: application/controllers/Mode.php:25 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:276 #: application/views/mode/index.php:15 msgid "Modes" msgstr "Modos" @@ -1352,28 +1519,28 @@ msgstr "Modos" msgid "Edit Mode" msgstr "" -#: application/controllers/Notes.php:19 +#: application/controllers/Notes.php:18 #: application/views/interface_assets/header.php:128 #: application/views/notes/add.php:9 application/views/notes/edit.php:10 #: application/views/notes/main.php:5 application/views/notes/main.php:8 #: application/views/notes/view.php:6 application/views/notes/view.php:9 #: application/views/qso/edit_ajax.php:36 -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:38 -#: application/views/qso/index.php:541 application/views/qso/index.php:586 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:590 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:38 +#: application/views/qso/index.php:563 application/views/qso/index.php:608 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:593 msgid "Notes" msgstr "Notas" -#: application/controllers/Notes.php:38 +#: application/controllers/Notes.php:37 msgid "Add Notes" msgstr "" -#: application/controllers/Notes.php:58 +#: application/controllers/Notes.php:64 #: application/views/oqrs/showrequests.php:88 msgid "Note" msgstr "" -#: application/controllers/Notes.php:79 application/views/notes/edit.php:7 +#: application/controllers/Notes.php:92 application/views/notes/edit.php:7 #: application/views/notes/view.php:19 msgid "Edit Note" msgstr "Editar nota" @@ -1381,16 +1548,16 @@ msgstr "Editar nota" #: application/controllers/Options.php:31 #: application/controllers/Options.php:41 #: application/controllers/Options.php:56 -#: application/controllers/Options.php:136 -#: application/controllers/Options.php:147 -#: application/controllers/Options.php:184 -#: application/controllers/Options.php:195 -#: application/controllers/Options.php:228 -#: application/controllers/Options.php:239 -#: application/controllers/Options.php:309 -#: application/controllers/Options.php:319 -#: application/controllers/Options.php:387 -#: application/controllers/Options.php:397 +#: application/controllers/Options.php:144 +#: application/controllers/Options.php:155 +#: application/controllers/Options.php:192 +#: application/controllers/Options.php:203 +#: application/controllers/Options.php:236 +#: application/controllers/Options.php:247 +#: application/controllers/Options.php:317 +#: application/controllers/Options.php:327 +#: application/controllers/Options.php:395 +#: application/controllers/Options.php:405 msgid "Wavelog Options" msgstr "Opciones de Wavelog" @@ -1407,97 +1574,98 @@ msgstr "Apariencia" #: application/controllers/Options.php:110 #: application/controllers/Options.php:118 #: application/controllers/Options.php:126 +#: application/controllers/Options.php:134 msgid "Options saved" msgstr "" -#: application/controllers/Options.php:165 +#: application/controllers/Options.php:173 msgid "de continent changed to " msgstr "de continente cambiado a " -#: application/controllers/Options.php:170 +#: application/controllers/Options.php:178 msgid "Maximum age of spots changed to " msgstr "Máxima edad de spots cambiada a " -#: application/controllers/Options.php:175 +#: application/controllers/Options.php:183 msgid "DXCluster Cache URL changed to " msgstr "URL del DXCluster-Cache cambiada a " -#: application/controllers/Options.php:185 -#: application/controllers/Options.php:196 +#: application/controllers/Options.php:193 +#: application/controllers/Options.php:204 msgid "Radio Settings" msgstr "Configuración de Radio" -#: application/controllers/Options.php:217 +#: application/controllers/Options.php:225 msgid "Radio Timeout Warning changed to " msgstr "Advertencia de Tiempo de Espera de Radio cambiada a " -#: application/controllers/Options.php:229 -#: application/controllers/Options.php:240 +#: application/controllers/Options.php:237 +#: application/controllers/Options.php:248 #: application/views/options/sidebar.php:6 msgid "Email" msgstr "" -#: application/controllers/Options.php:297 +#: application/controllers/Options.php:305 msgid "The settings were saved successfully." msgstr "Las configuraciones fueron guardadas exitosamente." -#: application/controllers/Options.php:299 +#: application/controllers/Options.php:307 msgid "Something went wrong with saving the settings. Try again." msgstr "Algo salió mal guardando las configuraciones. Intente de nuevo." -#: application/controllers/Options.php:310 -#: application/controllers/Options.php:320 +#: application/controllers/Options.php:318 +#: application/controllers/Options.php:328 #: application/views/options/sidebar.php:8 msgid "OQRS Options" msgstr "Opciones OQRS" -#: application/controllers/Options.php:333 +#: application/controllers/Options.php:341 msgid "OQRS options have been saved." msgstr "Las opciones de OQRS se han guardado." -#: application/controllers/Options.php:373 -#: application/controllers/Options.php:378 +#: application/controllers/Options.php:381 +#: application/controllers/Options.php:386 msgid "Testmail failed. Something went wrong." msgstr "El correo de prueba ha fallado. Algo salió mal." -#: application/controllers/Options.php:375 +#: application/controllers/Options.php:383 msgid "Testmail sent. Email settings seem to be correct." msgstr "" "El correo de prueba fue enviado. La configuración de correo electrónico " "parece correcta." -#: application/controllers/Options.php:388 -#: application/controllers/Options.php:398 +#: application/controllers/Options.php:396 +#: application/controllers/Options.php:406 msgid "Version Info Settings" msgstr "Configuración de Información de Versión" -#: application/controllers/Options.php:404 +#: application/controllers/Options.php:412 msgid "Version Info Header changed to" msgstr "El Encabezado de Información de Versión cambió a" -#: application/controllers/Options.php:408 +#: application/controllers/Options.php:416 msgid "Version Info Mode changed to" msgstr "Modo de Información de Versión ha cambiado a" -#: application/controllers/Options.php:413 +#: application/controllers/Options.php:421 msgid "Version Info Custom Text saved!" msgstr "¡Texto Personalizado de la Información de Versión guardado!" -#: application/controllers/Options.php:424 +#: application/controllers/Options.php:432 msgid "Version Info will be shown to all users again" msgstr "La Información de Versión será mostrada a todos los usuarios de nuevo" -#: application/controllers/Options.php:432 +#: application/controllers/Options.php:440 msgid "Version Info will not be shown to any user" msgstr "La Información de Versión no será mostrada a nadie" -#: application/controllers/Oqrs.php:22 application/controllers/Oqrs.php:61 -#: application/controllers/Oqrs.php:73 +#: application/controllers/Oqrs.php:46 application/controllers/Oqrs.php:85 +#: application/controllers/Oqrs.php:97 msgid "Log Search & OQRS" msgstr "" -#: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:413 +#: application/controllers/Oqrs.php:127 +#: application/views/interface_assets/header.php:419 msgid "OQRS Requests" msgstr "" @@ -1505,8 +1673,46 @@ msgstr "" msgid "QRB Calculator" msgstr "" +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "" + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" + #: application/controllers/Qrz.php:173 -#: application/views/interface_assets/header.php:426 +#: application/views/interface_assets/header.php:432 msgid "QRZ Logbook" msgstr "" @@ -1518,8 +1724,8 @@ msgstr "" msgid "QRZ ADIF Information" msgstr "" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:261 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:277 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1542,13 +1748,13 @@ msgid "Add QSO" msgstr "" #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Hardware Interfaces" msgstr "" #: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 +#: application/views/contesting/index.php:143 #: application/views/qso/index.php:312 msgid "Radio" msgstr "" @@ -1558,10 +1764,10 @@ msgid "Timestamp" msgstr "" #: application/controllers/Radio.php:52 -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 +#: application/views/logbookadvanced/index.php:550 +#: application/views/lotw_views/index.php:43 #: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 +#: application/views/simplefle/index.php:177 #: application/views/stationsetup/exportmapoptions.php:5 #: application/views/statistics/custom.php:31 #: application/views/statistics/custom_result.php:33 @@ -1569,7 +1775,7 @@ msgid "Options" msgstr "Opciones" #: application/controllers/Radio.php:90 -#: application/views/contesting/index.php:96 +#: application/views/contesting/index.php:147 #: application/views/qso/index.php:316 msgid "last updated" msgstr "" @@ -1585,26 +1791,24 @@ msgstr "" #: application/controllers/Radio.php:105 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2323 -#: application/views/interface_assets/footer.php:2341 -#: application/views/interface_assets/footer.php:2362 -#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2337 +#: application/views/interface_assets/footer.php:2355 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 #: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:514 -#: application/views/lotw_views/index.php:118 +#: application/views/logbookadvanced/index.php:542 +#: application/views/lotw_views/index.php:114 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 #: application/views/qslcard/index.php:65 #: application/views/satellite/edit.php:40 #: application/views/satellite/index.php:26 #: application/views/search/stored_queries.php:22 -#: application/views/station_profile/index.php:55 -#: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 #: application/views/stationsetup/stationsetup.php:137 #: application/views/stationsetup/stationsetup.php:192 -#: application/views/themes/index.php:107 application/views/user/main.php:54 -#: application/views/view_log/qso.php:613 +#: application/views/themes/index.php:107 application/views/user/index.php:57 +#: application/views/view_log/qso.php:616 msgid "Delete" msgstr "Eliminar" @@ -1612,11 +1816,15 @@ msgstr "Eliminar" msgid "No CAT interfaced radios found." msgstr "" -#: application/controllers/Satellite.php:37 +#: application/controllers/Reg1test.php:25 +msgid "Export EDI" +msgstr "" + +#: application/controllers/Satellite.php:39 msgid "Create Satellite" msgstr "" -#: application/controllers/Satellite.php:60 +#: application/controllers/Satellite.php:66 msgid "Edit Satellite" msgstr "" @@ -1629,10 +1837,7 @@ msgstr "" #: application/views/awards/counties/index.php:8 #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:19 -#: application/views/awards/was/index.php:21 -#: application/views/dashboard/index.php:64 -#: application/views/dashboard/index.php:73 -#: application/views/dashboard/index.php:82 +#: application/views/awards/was/index.php:23 #: application/views/simplefle/index.php:16 msgid "here" msgstr "" @@ -1644,9 +1849,10 @@ msgstr "" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:336 -#: application/views/interface_assets/header.php:343 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:340 +#: application/views/interface_assets/header.php:347 +#: application/views/logbookadvanced/index.php:538 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1660,8 +1866,8 @@ msgstr "" #: application/views/search/lotw_unconfirmed.php:37 #: application/views/search/main.php:4 application/views/search/main.php:12 #: application/views/search/main.php:33 -#: application/views/visitor/layout/header.php:99 -#: application/views/visitor/layout/header.php:100 +#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:98 msgid "Search" msgstr "Buscar" @@ -1679,15 +1885,23 @@ msgid "" "date" msgstr "" -#: application/controllers/Station.php:35 -#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/controllers/Station.php:36 +#: application/controllers/Stationsetup.php:226 +msgid "Create Station Location" +msgstr "Crear Localización de Estación" + +#: application/controllers/Station.php:51 +msgid "Edit Station Location: " +msgstr "Editar Localización de Estación: " + +#: application/controllers/Station.php:59 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 -#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/edit.php:19 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:427 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 @@ -1695,22 +1909,13 @@ msgstr "" msgid "Station Location" msgstr "Perfil de estación" -#: application/controllers/Station.php:55 -#: application/controllers/Stationsetup.php:226 -msgid "Create Station Location" -msgstr "Crear Localización de Estación" - -#: application/controllers/Station.php:70 -msgid "Edit Station Location: " -msgstr "Editar Localización de Estación: " - -#: application/controllers/Station.php:92 +#: application/controllers/Station.php:73 msgid "Duplicate Station Location:" msgstr "" #: application/controllers/Stationsetup.php:35 -#: application/views/interface_assets/header.php:377 -#: application/views/interface_assets/header.php:488 +#: application/views/interface_assets/header.php:381 +#: application/views/interface_assets/header.php:494 msgid "Station Setup" msgstr "" @@ -1728,7 +1933,7 @@ msgstr "" #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 #: application/controllers/Stationsetup.php:436 -#: application/views/qso/index.php:608 +#: application/views/qso/index.php:630 msgid "Error" msgstr "" @@ -1760,9 +1965,10 @@ msgstr "" #: application/views/options/appearance.php:83 #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 +#: application/views/options/appearance.php:110 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:259 -#: application/views/station_profile/edit.php:312 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 msgid "Disabled" @@ -1774,7 +1980,7 @@ msgid "Set as Active Logbook" msgstr "Establecer como Libro de Guardia Activo" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:486 +#: application/views/interface_assets/header.php:492 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1800,20 +2006,17 @@ msgid "Are you sure you want to delete the public slug?" msgstr "" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "" "Are you sure you want to make the following station the active station: " msgstr "¿Está seguro que desea poner como activa la siguiente estación: " #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "Poner como Activa" #: application/controllers/Stationsetup.php:351 -#: application/views/station_profile/index.php:71 #: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "Estación Activa" @@ -1822,55 +2025,46 @@ msgstr "Estación Activa" #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:28 -#: application/views/station_profile/index.php:76 #: application/views/stationsetup/stationsetup.php:161 -#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/user/index.php:90 application/views/user/index.php:92 msgid "QSO" msgstr "" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 -#: application/views/cron/index.php:56 -#: application/views/interface_assets/footer.php:535 -#: application/views/interface_assets/footer.php:544 +#: application/views/cron/index.php:58 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 #: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:541 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 -#: application/views/station_profile/index.php:46 -#: application/views/station_profile/index.php:79 #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 -#: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/views/themes/index.php:104 application/views/user/index.php:52 msgid "Edit" msgstr "Editar" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:99 #: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" "¿Está seguro que desea eliminar todos los QSOs en este perfil de estación?" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:54 -#: application/views/station_profile/index.php:101 #: application/views/stationsetup/stationsetup.php:136 #: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "Libro Vacío" #: application/controllers/Stationsetup.php:367 -#: application/views/station_profile/index.php:47 -#: application/views/station_profile/index.php:82 #: application/views/stationsetup/stationsetup.php:129 #: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "Copiar" #: application/controllers/Stationsetup.php:372 -#: application/views/station_profile/index.php:105 #: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "" @@ -1903,7 +2097,7 @@ msgid "QSL Statistics" msgstr "" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:282 msgid "Themes" msgstr "Temas" @@ -1915,14 +2109,14 @@ msgstr "" msgid "Edit Theme" msgstr "" -#: application/controllers/Timeline.php:17 -#: application/views/interface_assets/header.php:148 +#: application/controllers/Timeline.php:15 +#: application/views/interface_assets/header.php:150 #: application/views/timeline/index.php:2 msgid "Timeline" msgstr "Línea de Tiempo" #: application/controllers/Timeplotter.php:17 -#: application/views/interface_assets/header.php:152 +#: application/views/interface_assets/header.php:154 #: application/views/timeplotter/index.php:9 msgid "Timeplotter" msgstr "Gráfico de Tiempo" @@ -1963,130 +2157,154 @@ msgstr "" msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:268 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:272 msgid "User Accounts" msgstr "Cuentas de Usuario" -#: application/controllers/User.php:52 +#: application/controllers/User.php:76 msgid "Add User" msgstr "" -#: application/controllers/User.php:166 +#: application/controllers/User.php:190 msgid "Users" msgstr "" -#: application/controllers/User.php:240 application/controllers/User.php:673 +#: application/controllers/User.php:264 application/controllers/User.php:697 msgid "Edit User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 -#: application/views/user/main.php:3 application/views/user/main.php:46 +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 msgid "User" msgstr "Usuario" -#: application/controllers/User.php:665 application/controllers/User.php:668 +#: application/controllers/User.php:689 application/controllers/User.php:692 msgid "edited" msgstr "editado" -#: application/controllers/User.php:722 +#: application/controllers/User.php:746 msgid "Profile" msgstr "" -#: application/controllers/User.php:779 +#: application/controllers/User.php:803 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "" -#: application/controllers/User.php:843 application/controllers/User.php:853 +#: application/controllers/User.php:867 application/controllers/User.php:877 msgid "Login failed. Try again." msgstr "" -#: application/controllers/User.php:860 -#: application/views/interface_assets/header.php:356 -#: application/views/user/login.php:89 -#: application/views/visitor/layout/header.php:88 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:360 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "Iniciar Sesión" -#: application/controllers/User.php:868 -msgid "User logged in" -msgstr "" - -#: application/controllers/User.php:899 +#: application/controllers/User.php:922 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " "Only administrators are currently allowed to log in." msgstr "" -#: application/controllers/User.php:902 +#: application/controllers/User.php:925 msgid "Incorrect username or password!" msgstr "" -#: application/controllers/User.php:919 +#: application/controllers/User.php:942 #, php-format msgid "User %s logged out." msgstr "" -#: application/controllers/User.php:933 +#: application/controllers/User.php:956 msgid "Password Reset is disabled on the Demo!" msgstr "" -#: application/controllers/User.php:946 +#: application/controllers/User.php:969 msgid "Forgot Password" msgstr "" -#: application/controllers/User.php:996 application/views/user/main.php:8 +#: application/controllers/User.php:1019 application/views/user/index.php:8 msgid "Email settings are incorrect." msgstr "" -#: application/controllers/User.php:1000 application/controllers/User.php:1005 +#: application/controllers/User.php:1023 application/controllers/User.php:1028 msgid "Password Reset Processed." msgstr "" -#: application/controllers/User.php:1107 +#: application/controllers/User.php:1129 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "Restablecer Contraseña" +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "" + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "" + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "" + #: application/controllers/Visitor.php:50 -#: application/controllers/Visitor.php:79 -#: application/controllers/Visitor.php:142 -#: application/controllers/Visitor.php:169 -#: application/controllers/Visitor.php:199 -#: application/controllers/Visitor.php:478 +#: application/controllers/Visitor.php:81 +#: application/controllers/Visitor.php:148 +#: application/controllers/Visitor.php:175 +#: application/controllers/Visitor.php:210 +#: application/controllers/Visitor.php:472 #: application/controllers/Widgets.php:40 msgid "Unknown Public Page." msgstr "" -#: application/controllers/Visitor.php:74 -#: application/controllers/Visitor.php:165 -#: application/controllers/Visitor.php:195 -#: application/controllers/Visitor.php:474 +#: application/controllers/Visitor.php:76 +#: application/controllers/Visitor.php:171 +#: application/controllers/Visitor.php:206 +#: application/controllers/Visitor.php:468 #: application/controllers/Widgets.php:36 msgid "Empty Logbook" msgstr "" -#: application/controllers/Visitor.php:205 +#: application/controllers/Visitor.php:216 msgid "Satellite Gridsquare Map" msgstr "" -#: application/controllers/Visitor.php:411 +#: application/controllers/Visitor.php:405 #: application/views/stationsetup/stationsetup.php:35 msgid "Public Search" msgstr "Búsqueda Pública" -#: application/controllers/Visitor.php:444 +#: application/controllers/Visitor.php:438 msgid "Export Map" msgstr "" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:427 +#: application/views/interface_assets/header.php:433 msgid "QO-100 Dx Club Upload" msgstr "" @@ -2098,6 +2316,84 @@ msgstr "" msgid "No stations found that are using Wavelog OQRS." msgstr "" +#: application/libraries/Subdivisions.php:31 +msgctxt "Division Name (States in various countries)." +msgid "Province" +msgstr "" + +#: application/libraries/Subdivisions.php:39 +msgctxt "Division Name (States in various countries)." +msgid "Oblast" +msgstr "" + +#: application/libraries/Subdivisions.php:41 +#: application/libraries/Subdivisions.php:47 +msgctxt "Division Name (States in various countries)." +msgid "Region" +msgstr "" + +#: application/libraries/Subdivisions.php:45 +msgctxt "Division Name (States in various countries)." +msgid "Department" +msgstr "" + +#: application/libraries/Subdivisions.php:49 +msgctxt "Division Name (States in various countries)." +msgid "Municipality" +msgstr "" + +#: application/libraries/Subdivisions.php:51 +msgctxt "Division Name (States in various countries)." +msgid "Federal State" +msgstr "" + +#: application/libraries/Subdivisions.php:56 +#: application/libraries/Subdivisions.php:94 +msgctxt "Division Name (States in various countries)." +msgid "County" +msgstr "" + +#: application/libraries/Subdivisions.php:60 +#: application/libraries/Subdivisions.php:85 +msgctxt "Division Name (States in various countries)." +msgid "District" +msgstr "" + +#: application/libraries/Subdivisions.php:62 +msgctxt "Division Name (States in various countries)." +msgid "Canton" +msgstr "" + +#: application/libraries/Subdivisions.php:64 +msgctxt "Division Name (States in various countries)." +msgid "US State" +msgstr "" + +#: application/libraries/Subdivisions.php:67 +msgctxt "Division Name (States in various countries)." +msgid "Prefecture" +msgstr "" + +#: application/libraries/Subdivisions.php:69 +msgctxt "Division Name (States in various countries)." +msgid "State" +msgstr "" + +#: application/libraries/Subdivisions.php:78 +msgctxt "Division Name (States in various countries)." +msgid "US County" +msgstr "" + +#: application/libraries/Subdivisions.php:90 +msgctxt "Division Name (States in various countries)." +msgid "DME" +msgstr "" + +#: application/libraries/Subdivisions.php:92 +msgctxt "Division Name (States in various countries)." +msgid "City / Ku / Gun" +msgstr "" + #: application/models/Eqslmethods_model.php:281 msgid "Your eQSL username and/or password is incorrect." msgstr "" @@ -2134,31 +2430,31 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4255 msgid "QSO could not be matched" msgstr "QSOs que no concuerdan" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4261 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "confirmados por LoTW/Clublog/eQSL/Concurso" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4266 msgid "confirmed by award manager" msgstr "confirmados por el administrador del premio" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4269 msgid "confirmed by cross-check of DCL data" msgstr "confirmados al hacer chequeo cruzadoc on datos de DCL" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4272 msgid "confirmation pending" msgstr "pendiente de confirmación" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4275 msgid "unconfirmed" msgstr "sin confirmar" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4278 msgid "unknown" msgstr "desconocido" @@ -2187,7 +2483,7 @@ msgid "Accumulated number of WAJA worked" msgstr "" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:222 +#: application/views/dashboard/index.php:238 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2200,7 +2496,7 @@ msgid "Yearly" msgstr "" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:243 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Mes" @@ -2216,29 +2512,33 @@ msgstr "" #: application/views/accumulate/index.php:24 #: application/views/accumulate/index.php:34 +#: application/views/accumulate/index.php:83 #: application/views/activated_gridmap/index.php:10 #: application/views/activated_gridmap/index.php:22 #: application/views/activated_gridmap/index.php:32 #: application/views/activated_gridmap/index.php:41 -#: application/views/activators/index.php:10 -#: application/views/awards/cq/index.php:75 -#: application/views/awards/cq/index.php:89 +#: application/views/activators/index.php:13 +#: application/views/awards/cq/index.php:77 +#: application/views/awards/cq/index.php:91 #: application/views/awards/dok/index.php:94 #: application/views/awards/dxcc/index.php:134 #: application/views/awards/dxcc/index.php:150 #: application/views/awards/dxcc/index.php:165 -#: application/views/awards/helvetia/index.php:88 +#: application/views/awards/helvetia/index.php:90 #: application/views/awards/iota/index.php:108 -#: application/views/awards/itu/index.php:75 -#: application/views/awards/itu/index.php:89 +#: application/views/awards/itu/index.php:77 +#: application/views/awards/itu/index.php:91 #: application/views/awards/jcc/index.php:91 -#: application/views/awards/rac/index.php:80 +#: application/views/awards/rac/index.php:82 #: application/views/awards/wab/index.php:24 #: application/views/awards/wab/index.php:36 #: application/views/awards/wab/index.php:46 #: application/views/awards/wab/index.php:55 -#: application/views/awards/waja/index.php:92 -#: application/views/awards/was/index.php:88 +#: application/views/awards/wac/index.php:81 +#: application/views/awards/wac/index.php:97 +#: application/views/awards/wac/index.php:113 +#: application/views/awards/waja/index.php:94 +#: application/views/awards/was/index.php:90 #: application/views/bandmap/list.php:71 application/views/bandmap/list.php:78 #: application/views/bandmap/list.php:90 application/views/bands/index.php:117 #: application/views/cabrillo/index.php:65 @@ -2249,6 +2549,7 @@ msgstr "" #: application/views/csv/index.php:94 application/views/distances/index.php:21 #: application/views/distances/index.php:36 #: application/views/distances/index.php:46 +#: application/views/distances/index.php:56 #: application/views/dxatlas/index.php:21 #: application/views/dxatlas/index.php:33 #: application/views/dxatlas/index.php:44 @@ -2260,28 +2561,29 @@ msgstr "" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1435 -#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1448 +#: application/views/interface_assets/footer.php:1587 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:172 #: application/views/logbookadvanced/index.php:183 #: application/views/logbookadvanced/index.php:194 -#: application/views/logbookadvanced/index.php:203 -#: application/views/logbookadvanced/index.php:212 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:205 +#: application/views/logbookadvanced/index.php:214 +#: application/views/logbookadvanced/index.php:223 #: application/views/logbookadvanced/index.php:248 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:321 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:374 -#: application/views/logbookadvanced/index.php:385 -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:259 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:423 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2292,11 +2594,12 @@ msgstr "" #: application/views/stationsetup/exportmapoptions.php:33 #: application/views/timeline/index.php:10 #: application/views/timeline/index.php:22 +#: application/views/timeline/index.php:77 #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 #: application/views/user/edit.php:633 -#: application/views/visitor/layout/footer.php:169 +#: application/views/visitor/layout/footer.php:171 msgid "All" msgstr "" @@ -2334,29 +2637,254 @@ msgstr "" msgid "Period" msgstr "" -#: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: application/views/accumulate/index.php:80 +#: application/views/distances/index.php:53 +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/timeline/index.php:74 +msgid "Propagation" +msgstr "Propagación" + +#: application/views/accumulate/index.php:84 +#: application/views/distances/index.php:57 +#: application/views/timeline/index.php:78 +msgid "All but SAT" +msgstr "" + +#: application/views/accumulate/index.php:85 +#: application/views/distances/index.php:58 +#: application/views/gridmap/index.php:42 +#: application/views/logbookadvanced/edit.php:142 +#: application/views/logbookadvanced/index.php:307 +#: application/views/timeline/index.php:79 +msgid "None/Empty" +msgstr "" + +#: application/views/accumulate/index.php:86 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/logbookadvanced/index.php:225 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:414 +#: application/views/timeline/index.php:80 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/accumulate/index.php:87 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/logbookadvanced/index.php:226 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:415 +#: application/views/timeline/index.php:81 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/accumulate/index.php:88 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/logbookadvanced/index.php:227 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:416 +#: application/views/timeline/index.php:82 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/accumulate/index.php:89 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/logbookadvanced/index.php:228 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:417 +#: application/views/timeline/index.php:83 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/accumulate/index.php:90 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/logbookadvanced/index.php:229 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:418 +#: application/views/timeline/index.php:84 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/accumulate/index.php:91 +#: 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/logbookadvanced/index.php:230 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:419 +#: application/views/timeline/index.php:85 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/accumulate/index.php:92 +#: 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/logbookadvanced/index.php:231 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:420 +#: application/views/timeline/index.php:86 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/accumulate/index.php:93 +#: 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/logbookadvanced/index.php:232 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:421 +#: application/views/timeline/index.php:87 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/accumulate/index.php:94 +#: 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/logbookadvanced/index.php:233 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:422 +#: application/views/timeline/index.php:88 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/accumulate/index.php:95 +#: 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/logbookadvanced/index.php:234 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:423 +#: application/views/timeline/index.php:89 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/accumulate/index.php:96 +#: 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/logbookadvanced/index.php:235 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:424 +#: application/views/timeline/index.php:90 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/accumulate/index.php:97 +#: 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/logbookadvanced/index.php:236 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:425 +#: application/views/timeline/index.php:91 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/accumulate/index.php:98 +#: 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/logbookadvanced/index.php:237 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:426 +#: application/views/timeline/index.php:92 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/accumulate/index.php:99 +#: 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/logbookadvanced/index.php:238 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:427 +#: application/views/timeline/index.php:93 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/accumulate/index.php:100 +#: 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/logbookadvanced/index.php:239 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:428 +#: application/views/timeline/index.php:94 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/accumulate/index.php:101 +#: 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/logbookadvanced/index.php:240 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:429 +#: application/views/timeline/index.php:95 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Satélite" + +#: application/views/accumulate/index.php:102 +#: 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/logbookadvanced/index.php:241 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:430 +#: application/views/timeline/index.php:96 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/accumulate/index.php:103 +#: 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/logbookadvanced/index.php:242 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:431 +#: application/views/timeline/index.php:97 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/accumulate/index.php:112 +#: application/views/activators/index.php:53 +#: application/views/awards/cq/index.php:113 #: application/views/awards/dok/index.php:127 #: application/views/awards/dxcc/index.php:187 -#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/helvetia/index.php:112 #: application/views/awards/iota/index.php:130 -#: application/views/awards/itu/index.php:111 +#: application/views/awards/itu/index.php:113 #: application/views/awards/jcc/index.php:113 -#: application/views/awards/rac/index.php:102 -#: application/views/awards/waja/index.php:114 -#: application/views/awards/was/index.php:110 -#: application/views/distances/index.php:53 +#: application/views/awards/rac/index.php:104 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:79 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 #: application/views/stationsetup/exportmapoptions.php:6 -#: application/views/timeline/index.php:72 -#: application/views/timeline/index.php:137 -#: application/views/timeline/index.php:164 -#: application/views/timeline/index.php:189 -#: application/views/timeline/index.php:218 -#: application/views/timeline/index.php:243 -#: application/views/timeline/index.php:270 +#: application/views/timeline/index.php:105 +#: application/views/timeline/index.php:170 +#: application/views/timeline/index.php:197 +#: application/views/timeline/index.php:222 +#: application/views/timeline/index.php:251 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:303 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "Mostrar" @@ -2364,12 +2892,15 @@ msgstr "Mostrar" #: application/views/activated_gridmap/index.php:20 #: application/views/awards/dxcc/index.php:131 #: application/views/awards/wab/index.php:34 +#: application/views/awards/wac/index.php:78 #: 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/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/edit.php:17 +#: application/views/logbookadvanced/index.php:203 #: application/views/satellite/flightpath.php:34 +#: application/views/satellite/passtable.php:5 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2378,9 +2909,10 @@ msgstr "Satélite" #: application/views/activated_gridmap/index.php:30 #: application/views/awards/dxcc/index.php:147 #: application/views/awards/wab/index.php:44 +#: application/views/awards/wac/index.php:94 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:212 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2395,16 +2927,17 @@ msgid "Confirmation" msgstr "Confirmación" #: application/views/activated_gridmap/index.php:82 -#: application/views/awards/cq/index.php:66 +#: application/views/awards/cq/index.php:68 #: application/views/awards/dok/index.php:67 #: application/views/awards/dxcc/index.php:73 -#: application/views/awards/helvetia/index.php:65 -#: application/views/awards/itu/index.php:66 +#: application/views/awards/helvetia/index.php:67 +#: application/views/awards/itu/index.php:68 #: application/views/awards/jcc/index.php:64 -#: application/views/awards/rac/index.php:57 +#: application/views/awards/rac/index.php:59 #: application/views/awards/wab/index.php:96 -#: application/views/awards/waja/index.php:65 -#: application/views/awards/was/index.php:65 +#: application/views/awards/wac/index.php:56 +#: application/views/awards/waja/index.php:67 +#: application/views/awards/was/index.php:67 #: application/views/gridmap/index.php:125 application/views/user/edit.php:675 msgid "QRZ.com" msgstr "" @@ -2440,59 +2973,62 @@ msgstr "Longitud" #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:37 #: application/views/gridmap/index.php:156 -#: application/views/logbookadvanced/index.php:12 +#: application/views/logbookadvanced/index.php:13 msgid "Bearing" msgstr "Dirección" -#: application/views/activators/index.php:23 +#: application/views/activators/index.php:26 msgctxt "Orbiter LEO or GEO" msgid "Both" msgstr "" -#: application/views/activators/index.php:30 +#: application/views/activators/index.php:33 msgid "Minimum Count" msgstr "Cuenta Mínima" -#: application/views/activators/index.php:77 +#: application/views/activators/index.php:76 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:46 -#: application/views/awards/cq/index.php:196 +#: application/views/awards/cq/index.php:198 #: application/views/awards/dok/index.php:196 #: application/views/awards/dxcc/index.php:280 -#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/helvetia/index.php:200 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:196 +#: application/views/awards/itu/index.php:198 #: application/views/awards/jcc/index.php:236 #: application/views/awards/pota/index.php:67 -#: application/views/awards/rac/index.php:190 +#: application/views/awards/rac/index.php:192 #: application/views/awards/sig/index.php:45 #: application/views/awards/sota/index.php:53 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:39 -#: application/views/awards/waja/index.php:200 -#: application/views/awards/was/index.php:198 +#: application/views/awards/wac/index.php:199 +#: application/views/awards/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 +#: application/views/distancerecords/index.php:50 #: application/views/public_search/empty.php:3 -#: application/views/qrz/export.php:64 application/views/timeline/index.php:102 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:135 msgid "Nothing found!" msgstr "" -#: application/views/activators/index.php:99 -#: application/views/adif/import.php:66 application/views/adif/import.php:172 -#: application/views/adif/import.php:217 +#: application/views/activators/index.php:98 +#: application/views/adif/import.php:66 application/views/adif/import.php:182 +#: application/views/adif/import.php:227 #: application/views/awards/pota/index.php:34 #: application/views/awards/sig/qso_list.php:11 #: application/views/awards/sota/index.php:25 #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:104 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:152 +#: application/views/contesting/index.php:156 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:168 +#: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 -#: application/views/lotw_views/index.php:39 +#: application/views/lotw_views/index.php:35 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 #: application/views/qslcard/index.php:28 @@ -2501,35 +3037,36 @@ msgstr "" #: application/views/qslprint/qslprint.php:21 #: application/views/qslprint/qsolist.php:6 #: application/views/qso/edit_ajax.php:62 application/views/qso/index.php:124 +#: application/views/reg1test/index.php:33 #: application/views/search/cqzones.php:32 #: application/views/search/cqzones_result.php:9 #: application/views/search/lotw_unconfirmed.php:33 #: application/views/search/lotw_unconfirmed_result.php:6 #: application/views/search/result.php:11 -#: application/views/simplefle/index.php:142 -#: application/views/station_profile/edit.php:36 +#: application/views/simplefle/index.php:148 +#: application/views/station_profile/edit.php:63 #: application/views/stationsetup/linkedlocations.php:17 -#: application/views/user/edit.php:123 application/views/user/main.php:4 -#: application/views/user/main.php:47 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:507 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 +#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:510 msgid "Callsign" -msgstr "Rufzeichen" +msgstr "Indicativo" -#: application/views/activators/index.php:100 +#: application/views/activators/index.php:99 msgid "Count" msgstr "Conteo" -#: application/views/activators/index.php:102 -#: application/views/timeline/index.php:121 -#: application/views/timeline/index.php:153 -#: application/views/timeline/index.php:178 -#: application/views/timeline/index.php:205 -#: application/views/timeline/index.php:232 -#: application/views/timeline/index.php:258 +#: application/views/activators/index.php:101 +#: application/views/timeline/index.php:154 +#: application/views/timeline/index.php:186 +#: application/views/timeline/index.php:211 +#: application/views/timeline/index.php:238 +#: application/views/timeline/index.php:265 +#: application/views/timeline/index.php:291 msgid "Show QSO's" msgstr "Ver QSOs" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "Mostrar Mapa" @@ -2570,10 +3107,12 @@ msgstr "Hay datos diferentes para DOKs en su libro comparados con DCL" #: application/views/awards/wwff/index.php:32 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:25 -#: application/views/contesting/index.php:42 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36 +#: application/views/contesting/index.php:93 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:163 +#: application/views/debug/index.php:545 +#: application/views/distancerecords/index.php:16 +#: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2586,22 +3125,22 @@ msgstr "Hay datos diferentes para DOKs en su libro comparados con DCL" #: application/views/qslcard/searchresult.php:4 #: application/views/qslprint/qslprint.php:22 #: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:64 -#: application/views/qso/index.php:100 +#: application/views/qso/index.php:100 application/views/satellite/pass.php:473 #: application/views/search/cqzones_result.php:7 #: application/views/search/result_search.php:4 #: application/views/search/search_result_ajax.php:89 -#: application/views/simplefle/index.php:140 +#: application/views/simplefle/index.php:146 #: application/views/statistics/custom.php:38 #: application/views/statistics/custom_result.php:40 #: application/views/statistics/custom_result.php:85 -#: application/views/timeline/index.php:116 -#: application/views/timeline/index.php:151 -#: application/views/timeline/index.php:176 -#: application/views/timeline/index.php:201 -#: application/views/timeline/index.php:230 -#: application/views/timeline/index.php:255 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:184 +#: application/views/timeline/index.php:209 +#: application/views/timeline/index.php:234 +#: application/views/timeline/index.php:263 +#: application/views/timeline/index.php:288 #: application/views/view_log/partial/log.php:4 -#: application/views/view_log/partial/log_ajax.php:57 +#: application/views/view_log/partial/log_ajax.php:59 #: application/views/visitor/index.php:147 #: application/views/widgets/qsos.php:24 msgid "Date" @@ -2612,10 +3151,12 @@ msgstr "Fecha" #: application/views/awards/wwff/index.php:33 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:26 -#: application/views/contesting/index.php:47 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37 +#: application/views/contesting/index.php:98 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:166 +#: application/views/debug/index.php:546 +#: application/views/distancerecords/index.php:17 +#: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2626,12 +3167,12 @@ msgstr "Fecha" #: application/views/search/cqzones_result.php:8 #: application/views/search/result_search.php:5 #: application/views/search/search_result_ajax.php:91 -#: application/views/simplefle/index.php:141 +#: application/views/simplefle/index.php:147 #: application/views/statistics/custom_result.php:86 -#: application/views/timeline/index.php:256 +#: application/views/timeline/index.php:289 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 -#: application/views/view_log/partial/log_ajax.php:59 +#: application/views/view_log/partial/log_ajax.php:61 #: application/views/visitor/index.php:150 #: application/views/widgets/qsos.php:26 msgid "Time" @@ -2640,7 +3181,7 @@ msgstr "Tiempo Test" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 -#: application/views/contesting/index.php:201 +#: application/views/contesting/index.php:248 #: application/views/debug/index.php:547 application/views/debug/index.php:582 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -2652,7 +3193,7 @@ msgstr "Tiempo Test" #: application/views/search/search_result_ajax.php:93 #: application/views/statistics/custom_result.php:87 #: application/views/view_log/partial/log.php:8 -#: application/views/view_log/partial/log_ajax.php:61 +#: application/views/view_log/partial/log_ajax.php:63 #: application/views/visitor/index.php:152 #: application/views/widgets/qsos.php:28 msgid "Call" @@ -2670,14 +3211,14 @@ msgstr "" msgid "DCL QSL Status" msgstr "" -#: application/views/adif/import.php:36 application/views/adif/import.php:242 +#: application/views/adif/import.php:36 application/views/adif/import.php:252 msgid "DARC DCL" msgstr "" #: application/views/adif/import.php:55 -#: application/views/dashboard/index.php:97 -#: application/views/dashboard/index.php:118 -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:112 +#: application/views/dashboard/index.php:133 +#: application/views/dashboard/index.php:139 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2687,29 +3228,29 @@ msgstr "Importante" msgid "Log Files must have the file type *.adi" msgstr "Los archivos de registro deben tener el tipo de archivo *.adi" -#: application/views/adif/import.php:56 application/views/view_log/qso.php:622 +#: application/views/adif/import.php:56 application/views/view_log/qso.php:625 msgid "Maximum file upload size is " msgstr "El tamaño máximo del archivo subido es " -#: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:175 +#: application/views/adif/import.php:56 application/views/adif/import.php:230 +#: application/views/adif/import.php:268 application/views/debug/index.php:175 #: application/views/debug/index.php:192 application/views/debug/index.php:537 #: application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:34 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 -#: application/views/station_profile/index.php:31 #: application/views/stationsetup/stationsetup.php:111 -#: application/views/view_log/qso.php:622 +#: application/views/view_log/qso.php:625 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" msgstr "Advertencia" #: application/views/adif/import.php:60 application/views/adif/import.php:62 -#: application/views/adif/import.php:168 application/views/adif/import.php:215 +#: application/views/adif/import.php:178 application/views/adif/import.php:225 #: application/views/eqsl/import.php:36 application/views/hrdlog/export.php:69 -#: application/views/qrz/export.php:89 application/views/webadif/export.php:89 +#: application/views/qrz/export.php:89 application/views/reg1test/index.php:30 +#: application/views/webadif/export.php:89 msgid "Select Station Location" msgstr "Seleccione la Localización de la Estación" @@ -2736,29 +3277,34 @@ msgstr "Marcar QSOs importadas como subidas a LoTW" #: application/views/adif/import.php:95 application/views/adif/import.php:105 #: application/views/adif/import.php:115 application/views/adif/import.php:125 +#: application/views/adif/import.php:135 msgid "Select if ADIF being imported does not contain this information." msgstr "" "Seleccione si el archivo ADIF que se va a importar no incluye esta " "información." #: application/views/adif/import.php:103 +msgid "Mark imported QSOs as uploaded to eQSL Logbook" +msgstr "" + +#: application/views/adif/import.php:113 msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" msgstr "Marcar QSOs importadas como subidas al libro de guardia de HRDLog.net" -#: application/views/adif/import.php:113 +#: application/views/adif/import.php:123 msgid "Mark imported QSOs as uploaded to QRZ Logbook" msgstr "Marcar QSOs importadas como subidas al libro de guardia de QRZ Logbook" -#: application/views/adif/import.php:123 +#: application/views/adif/import.php:133 msgid "Mark imported QSOs as uploaded to Clublog Logbook" msgstr "" "Marcar QSOs importadas como subidas al libro de guardia de Clublog Logbook" -#: application/views/adif/import.php:133 +#: application/views/adif/import.php:143 msgid "Use DXCC information from ADIF" msgstr "Usar la información DXCC del ADIF" -#: application/views/adif/import.php:135 +#: application/views/adif/import.php:145 msgid "" "If not selected, Wavelog will attempt to determine DXCC information " "automatically." @@ -2766,42 +3312,41 @@ msgstr "" "Si no se selecciona, Wavelog intentará determinar la información DXCC " "automáticamente." -#: application/views/adif/import.php:143 +#: application/views/adif/import.php:153 msgid "Always use login-callsign as operator-name on import" msgstr "" "Siempre use el indicativo usado para iniciar sesión como el nombre de " "operador al importar" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:32 -#: application/views/interface_assets/footer.php:495 -#: application/views/interface_assets/footer.php:2119 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2133 msgid "DANGER" msgstr "PELIGRO" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 msgid "Ignore Stationcallsign on import" msgstr "Ignorar el indicativo de la Estación al importar" -#: application/views/adif/import.php:154 +#: application/views/adif/import.php:164 +#, php-format msgid "" -"If selected, Wavelog will try to import all QSO's of the ADIF, " +"If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " "regardless if they match to the chosen station-location." msgstr "" -"Si se selecciona, Wavelog intentará importar todos los QSOs del ADIF, " -"sin importar si concuerdan con la estación/localización seleccionada." -#: application/views/adif/import.php:158 application/views/adif/import.php:273 +#: application/views/adif/import.php:168 application/views/adif/import.php:283 #: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 #: application/views/webadif/export.php:55 msgid "Upload" msgstr "Subir" -#: application/views/adif/import.php:165 +#: application/views/adif/import.php:175 msgid "Take your logbook file anywhere!" msgstr "¡Lleve su archivo de libro de guardia a cualquier lugar!" -#: application/views/adif/import.php:166 +#: application/views/adif/import.php:176 msgid "" "Exporting ADIFs allows you to import contacts into third party applications " "like LoTW, Awards or just for keeping a backup." @@ -2809,7 +3354,7 @@ msgstr "" "Exportar archivos ADIF le permite importar contactos en aplicaciones de " "terceros como LoTW, Diplomas o para simplemente tener una copia de seguridad." -#: application/views/adif/import.php:176 application/views/adif/import.php:222 +#: application/views/adif/import.php:186 application/views/adif/import.php:232 #: application/views/cfd/index.php:15 application/views/csv/index.php:118 #: application/views/dxatlas/index.php:118 #: application/views/hrdlog/export.php:77 application/views/kml/index.php:103 @@ -2818,7 +3363,7 @@ msgstr "" msgid "From date" msgstr "Desde la fecha" -#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/adif/import.php:189 application/views/adif/import.php:235 #: application/views/cfd/index.php:20 application/views/csv/index.php:123 #: application/views/dxatlas/index.php:123 #: application/views/hrdlog/export.php:82 application/views/kml/index.php:108 @@ -2827,41 +3372,41 @@ msgstr "Desde la fecha" msgid "To date" msgstr "Hasta la fecha" -#: application/views/adif/import.php:187 +#: application/views/adif/import.php:197 msgid "Mark exported QSOs as uploaded to LoTW" msgstr "Marcar QSOs exportados como subidos a LoTW" -#: application/views/adif/import.php:195 +#: application/views/adif/import.php:205 msgid "Export QSOs not uploaded to LoTW" msgstr "Exportar QSOs que no se hayan subido a LoTW" -#: application/views/adif/import.php:200 +#: application/views/adif/import.php:210 msgid "Export QSO's" msgstr "Exportar QSOs" -#: application/views/adif/import.php:205 +#: application/views/adif/import.php:215 msgid "Export Satellite-Only QSOs" msgstr "Exportar solo QSOs de satélite" -#: application/views/adif/import.php:206 +#: application/views/adif/import.php:216 msgid "Export All Satellite QSOs" msgstr "Exportar todos los QSOs de satélite" -#: application/views/adif/import.php:208 +#: application/views/adif/import.php:218 msgid "Export All Satellite QSOs Confirmed on LoTW" msgstr "Exportar todos los QSOs de satélite confirmados en LoTW" -#: application/views/adif/import.php:220 application/views/hrdlog/export.php:74 +#: application/views/adif/import.php:230 application/views/hrdlog/export.php:74 #: application/views/qrz/export.php:94 application/views/webadif/export.php:94 msgid "If a date range is not selected then all QSOs will be marked!" msgstr "" "¡Si no selecciona un rango de fechas entonces todos los QSOs serán marcados!" -#: application/views/adif/import.php:228 +#: application/views/adif/import.php:238 msgid "Mark QSOs as exported to LoTW" msgstr "Marcar QSOs como exportados a LoTW" -#: application/views/adif/import.php:242 +#: application/views/adif/import.php:252 #, php-format msgid "" "Go to %s and export your logbook with confirmed DOKs. To speed up the " @@ -2870,11 +3415,11 @@ msgid "" "with DOK info." msgstr "" -#: application/views/adif/import.php:249 +#: application/views/adif/import.php:259 msgid "Only import DOK data from QSOs confirmed on DCL." msgstr "Solo importar datos DOK de los QSO confirmados en DCL." -#: application/views/adif/import.php:251 +#: application/views/adif/import.php:261 msgid "" "Uncheck if you also want to update DOK with data from unconfirmed QSOs in " "DCL." @@ -2882,11 +3427,11 @@ msgstr "" "Si se deja desactivado, se actualizarán los datos DOK con datos de los QSO " "no confirmados en DCL." -#: application/views/adif/import.php:258 +#: application/views/adif/import.php:268 msgid "Overwrites exisiting DOK in log by DCL (if different)." msgstr "" -#: application/views/adif/import.php:260 +#: application/views/adif/import.php:270 msgid "" "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " "log." @@ -2894,16 +3439,27 @@ msgstr "" "Si está activo, Wavelog forzará la sobreescritura de los DOK existentes con " "los DOK desde el libro de DCL." -#: application/views/adif/import.php:267 +#: application/views/adif/import.php:277 msgid "Ignore QSOs that cannot be matched." msgstr "Ignorar QSOs que no concuerden" -#: application/views/adif/import.php:269 +#: application/views/adif/import.php:279 msgid "" "If unchecked, information about QSOs which could not be found in Wavelog " "will be displayed." msgstr "" +#: application/views/adif/import_failed.php:15 +msgid "The ADIF file could not be parsed correctly." +msgstr "" + +#: application/views/adif/import_failed.php:16 +msgid "" +"At least one of the ADIF fields could not be parsed and/or inserted into the " +"database. Please check the imported ADIF file. You can use an online ADIF " +"file checker. For example:" +msgstr "" + #: application/views/adif/import_success.php:15 msgid "Yay, its imported!" msgstr "¡Bien, lo hemos importado!" @@ -2958,24 +3514,22 @@ msgstr "" #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 -#: application/views/interface_assets/footer.php:43 -#: application/views/interface_assets/footer.php:530 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 -#: application/views/options/appearance.php:107 +#: application/views/options/appearance.php:116 #: application/views/options/dxcluster.php:67 #: application/views/options/email.php:112 #: application/views/options/oqrs.php:63 #: application/views/options/radios.php:45 #: application/views/options/version_dialog.php:78 -#: application/views/qso/components/winkeysettings.php:90 -#: application/views/qso/components/winkeysettings_results.php:90 #: application/views/satellite/create.php:70 #: application/views/simplefle/index.php:22 msgid "Save" msgstr "Guardar" #: application/views/api/help.php:14 -#: application/views/interface_assets/header.php:431 +#: application/views/interface_assets/header.php:437 msgid "API Keys" msgstr "" @@ -2999,7 +3553,7 @@ msgid "API URL" msgstr "" #: application/views/api/help.php:19 application/views/api/help.php:38 -#: application/views/cron/index.php:21 application/views/debug/index.php:36 +#: application/views/cron/index.php:22 application/views/debug/index.php:36 msgid "Copy to clipboard" msgstr "Copiar al portapapeles" @@ -3008,14 +3562,15 @@ msgid "The API URL for this Wavelog instance is" msgstr "" #: application/views/api/help.php:20 application/views/dxcalendar/index.php:15 -#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:477 -#: application/views/qso/index.php:538 application/views/qso/index.php:583 +#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:504 +#: application/views/qso/index.php:560 application/views/qso/index.php:605 #: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 #: application/views/sattimers/index.php:73 #: application/views/sattimers/index.php:75 +#: application/views/sattimers/index.php:77 #: application/views/search/filter.php:69 msgid "Info" msgstr "Información" @@ -3031,7 +3586,7 @@ msgid "API Key" msgstr "" #: application/views/api/help.php:28 application/views/cron/edit.php:30 -#: application/views/cron/index.php:51 +#: application/views/cron/index.php:53 #: application/views/search/stored_queries.php:8 msgid "Description" msgstr "" @@ -3044,19 +3599,18 @@ msgstr "" msgid "Permissions" msgstr "" -#: application/views/api/help.php:31 application/views/cron/index.php:52 -#: application/views/lotw_views/index.php:45 +#: application/views/api/help.php:31 application/views/cron/index.php:54 +#: application/views/lotw_views/index.php:41 #: application/views/mode/index.php:31 #: application/views/oqrs/showrequests.php:91 #: application/views/sattimers/index.php:39 #: application/views/stationsetup/stationsetup.php:31 -#: application/views/timeline/index.php:119 -#: application/views/update/index.php:30 +#: application/views/timeline/index.php:152 msgid "Status" msgstr "Estado" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:519 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "Actiones" @@ -3092,6 +3646,7 @@ msgstr "" #: application/views/awards/counties/details.php:4 #: application/views/awards/details.php:1 #: application/views/awards/vucc/band.php:4 +#: application/views/distancerecords/details.php:1 #: application/views/timeline/details.php:2 msgid "Filtering on" msgstr "Filtrado por" @@ -3102,8 +3657,8 @@ msgstr "" #: application/views/awards/counties/index.php:6 #: application/views/awards/counties/index.php:13 -#: application/views/awards/cq/index.php:17 -#: application/views/awards/cq/index.php:24 +#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:26 #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:13 #: application/views/awards/dxcc/index.php:13 @@ -3112,12 +3667,12 @@ msgstr "" #: application/views/awards/ffma/index.php:14 #: application/views/awards/gridmaster/index.php:6 #: application/views/awards/gridmaster/index.php:13 -#: application/views/awards/helvetia/index.php:17 -#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:26 #: application/views/awards/iota/index.php:15 #: application/views/awards/iota/index.php:22 -#: application/views/awards/itu/index.php:17 -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:26 #: application/views/awards/jcc/index.php:15 #: application/views/awards/jcc/index.php:22 #: application/views/awards/pota/index.php:6 @@ -3130,10 +3685,12 @@ msgstr "" #: application/views/awards/vucc/index.php:13 #: application/views/awards/wab/index.php:11 #: application/views/awards/wab/index.php:18 -#: application/views/awards/waja/index.php:16 -#: application/views/awards/waja/index.php:23 -#: application/views/awards/was/index.php:17 -#: application/views/awards/was/index.php:24 +#: application/views/awards/wac/index.php:7 +#: application/views/awards/wac/index.php:14 +#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:25 +#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:26 #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:13 msgid "Award Info" @@ -3171,17 +3728,18 @@ msgid "Counties Confirmed" msgstr "" #: application/views/awards/counties/index.php:39 -#: application/views/awards/cq/index.php:174 +#: application/views/awards/cq/index.php:176 #: application/views/awards/dok/index.php:174 #: application/views/awards/dxcc/index.php:257 -#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/helvetia/index.php:179 #: application/views/awards/iota/index.php:201 -#: application/views/awards/itu/index.php:174 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:185 -#: application/views/awards/rac/index.php:169 -#: application/views/awards/waja/index.php:177 -#: application/views/awards/was/index.php:177 -#: application/views/dashboard/index.php:217 +#: application/views/awards/rac/index.php:171 +#: application/views/awards/wac/index.php:177 +#: application/views/awards/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:233 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3197,213 +3755,230 @@ msgstr "" msgid "Total" msgstr "" -#: application/views/awards/cq/index.php:18 +#: application/views/awards/cq/index.php:3 +#: application/views/awards/cq/index.php:150 application/views/csv/index.php:80 +#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/logbookadvanced/edit.php:6 +#: application/views/logbookadvanced/index.php:246 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:284 +#: application/views/qso/index.php:390 +#: application/views/search/cqzones_result.php:13 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:264 +#: application/views/timeplotter/index.php:44 +msgid "CQ Zone" +msgstr "Zona CQ" + +#: application/views/awards/cq/index.php:4 +#: application/views/awards/itu/index.php:4 +msgid "Hover over a zone" +msgstr "" + +#: application/views/awards/cq/index.php:20 msgid "CQ Magazine WAZ Award" msgstr "" -#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:21 msgid "" "The CQ Magazine is located in the US and one of the most popular amateur " "radio magazines in the world. The magazine first appeared in January 1945 " "and focuses on awards and the practical aspects of amateur radio." msgstr "" -#: application/views/awards/cq/index.php:20 +#: application/views/awards/cq/index.php:22 msgid "" "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to " "all 40 CQ Zones along with the corresponding confirmation." msgstr "" -#: application/views/awards/cq/index.php:21 +#: application/views/awards/cq/index.php:23 #, php-format msgctxt "uses 'CQ Magazine'" msgid "You can find all the information and rules on the Website of the %s." msgstr "" -#: application/views/awards/cq/index.php:23 +#: application/views/awards/cq/index.php:25 msgid "Awards - CQ Magazine WAZ" msgstr "" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 #: application/views/awards/wab/list.php:6 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:73 -#: application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:362 -#: application/views/interface_assets/footer.php:39 +#: application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:378 +#: application/views/interface_assets/footer.php:40 #: application/views/visitor/index.php:266 msgid "Confirmed" msgstr "Confirmados" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:256 +#: application/views/dashboard/index.php:372 #: application/views/visitor/index.php:262 msgid "Worked" msgstr "Realizados" -#: application/views/awards/cq/index.php:36 +#: application/views/awards/cq/index.php:38 #: application/views/awards/dok/index.php:41 #: application/views/awards/dxcc/index.php:43 -#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:43 -#: application/views/awards/itu/index.php:36 +#: application/views/awards/itu/index.php:38 #: application/views/awards/jcc/index.php:34 -#: application/views/awards/rac/index.php:27 -#: application/views/awards/waja/index.php:35 -#: application/views/awards/was/index.php:35 +#: application/views/awards/rac/index.php:29 +#: application/views/awards/wac/index.php:26 +#: application/views/awards/waja/index.php:37 +#: application/views/awards/was/index.php:37 msgid "Show worked" msgstr "" -#: application/views/awards/cq/index.php:40 +#: application/views/awards/cq/index.php:42 #: application/views/awards/dok/index.php:45 #: application/views/awards/dxcc/index.php:47 -#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:47 -#: application/views/awards/itu/index.php:40 +#: application/views/awards/itu/index.php:42 #: application/views/awards/jcc/index.php:38 -#: application/views/awards/rac/index.php:31 -#: application/views/awards/waja/index.php:39 -#: application/views/awards/was/index.php:39 +#: application/views/awards/rac/index.php:33 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/waja/index.php:41 +#: application/views/awards/was/index.php:41 msgid "Show confirmed" msgstr "" -#: application/views/awards/cq/index.php:44 +#: application/views/awards/cq/index.php:46 #: application/views/awards/dxcc/index.php:51 -#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:51 -#: application/views/awards/itu/index.php:44 +#: application/views/awards/itu/index.php:46 #: application/views/awards/jcc/index.php:42 -#: application/views/awards/rac/index.php:35 -#: application/views/awards/waja/index.php:43 -#: application/views/awards/was/index.php:43 +#: application/views/awards/rac/index.php:37 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/waja/index.php:45 +#: application/views/awards/was/index.php:45 msgid "Show not worked" msgstr "" -#: application/views/awards/cq/index.php:50 +#: application/views/awards/cq/index.php:52 #: application/views/awards/dok/index.php:51 #: application/views/awards/dxcc/index.php:57 -#: application/views/awards/helvetia/index.php:49 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/helvetia/index.php:51 +#: application/views/awards/itu/index.php:52 #: application/views/awards/jcc/index.php:48 -#: application/views/awards/rac/index.php:41 -#: application/views/awards/waja/index.php:49 -#: application/views/awards/was/index.php:49 +#: application/views/awards/rac/index.php:43 +#: application/views/awards/wac/index.php:40 +#: application/views/awards/waja/index.php:51 +#: application/views/awards/was/index.php:51 msgid "Show QSO with QSL Type" msgstr "" -#: application/views/awards/cq/index.php:54 -#: application/views/awards/itu/index.php:54 -#: application/views/interface_assets/footer.php:2098 -#: application/views/qso/edit_ajax.php:378 +#: application/views/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/awards/wac/index.php:44 +#: application/views/interface_assets/footer.php:2112 +#: application/views/qso/edit_ajax.php:405 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "Tarjeta QSL" -#: application/views/awards/cq/index.php:110 +#: application/views/awards/cq/index.php:112 #: application/views/awards/dok/index.php:126 #: application/views/awards/dxcc/index.php:186 -#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/helvetia/index.php:111 #: application/views/awards/iota/index.php:129 -#: application/views/awards/itu/index.php:110 +#: application/views/awards/itu/index.php:112 #: application/views/awards/jcc/index.php:112 -#: application/views/awards/rac/index.php:101 -#: application/views/awards/waja/index.php:113 -#: application/views/awards/was/index.php:109 +#: application/views/awards/rac/index.php:103 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/waja/index.php:115 +#: application/views/awards/was/index.php:111 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:523 +#: application/views/logbookadvanced/index.php:551 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 msgid "Reset" -msgstr "Reinicializar" +msgstr "Restablecer" -#: application/views/awards/cq/index.php:113 +#: application/views/awards/cq/index.php:115 msgid "Show CQ Zone Map" msgstr "" -#: application/views/awards/cq/index.php:122 +#: application/views/awards/cq/index.php:124 #: application/views/awards/dxcc/index.php:199 -#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/helvetia/index.php:124 #: application/views/awards/iota/index.php:142 -#: application/views/awards/itu/index.php:122 -#: application/views/awards/rac/index.php:114 -#: application/views/awards/waja/index.php:126 -#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:124 +#: application/views/awards/rac/index.php:116 +#: application/views/awards/waja/index.php:128 +#: application/views/awards/was/index.php:124 msgid "Table" msgstr "Tabla" -#: application/views/awards/cq/index.php:125 +#: application/views/awards/cq/index.php:127 #: application/views/awards/dok/index.php:128 #: application/views/awards/dxcc/index.php:202 -#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/helvetia/index.php:127 #: application/views/awards/iota/index.php:145 -#: application/views/awards/itu/index.php:125 +#: application/views/awards/itu/index.php:127 #: application/views/awards/jcc/index.php:129 -#: application/views/awards/rac/index.php:117 +#: application/views/awards/rac/index.php:119 #: application/views/awards/wab/index.php:108 -#: application/views/awards/waja/index.php:129 -#: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:516 +#: application/views/awards/waja/index.php:131 +#: application/views/awards/was/index.php:127 +#: application/views/logbookadvanced/index.php:544 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "Mapa" -#: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 -#: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:235 -#: application/views/logbookadvanced/index.php:586 -#: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:90 -#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 -#: application/views/qso/index.php:390 -#: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:106 -#: application/views/station_profile/edit.php:126 -#: application/views/timeline/index.php:231 -#: application/views/timeplotter/index.php:44 -msgid "CQ Zone" -msgstr "Zona CQ" - -#: application/views/awards/cq/index.php:165 +#: application/views/awards/cq/index.php:167 #: application/views/awards/dok/index.php:165 #: application/views/awards/dxcc/index.php:248 -#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/helvetia/index.php:170 #: application/views/awards/iota/index.php:192 -#: application/views/awards/itu/index.php:165 +#: application/views/awards/itu/index.php:167 #: application/views/awards/jcc/index.php:168 -#: application/views/awards/rac/index.php:160 -#: application/views/awards/waja/index.php:168 -#: application/views/awards/was/index.php:168 +#: application/views/awards/rac/index.php:162 +#: application/views/awards/wac/index.php:168 +#: application/views/awards/waja/index.php:170 +#: application/views/awards/was/index.php:170 msgid "Summary" msgstr "" -#: application/views/awards/cq/index.php:178 +#: application/views/awards/cq/index.php:180 #: application/views/awards/dok/index.php:178 #: application/views/awards/dxcc/index.php:262 -#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:206 -#: application/views/awards/itu/index.php:178 +#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:195 -#: application/views/awards/rac/index.php:173 -#: application/views/awards/waja/index.php:182 -#: application/views/awards/was/index.php:181 +#: application/views/awards/rac/index.php:175 +#: application/views/awards/wac/index.php:181 +#: application/views/awards/waja/index.php:184 +#: application/views/awards/was/index.php:183 msgid "Total worked" msgstr "" -#: application/views/awards/cq/index.php:185 +#: application/views/awards/cq/index.php:187 #: application/views/awards/dok/index.php:185 #: application/views/awards/dxcc/index.php:269 -#: application/views/awards/helvetia/index.php:188 +#: application/views/awards/helvetia/index.php:190 #: application/views/awards/iota/index.php:213 -#: application/views/awards/itu/index.php:185 +#: application/views/awards/itu/index.php:187 #: application/views/awards/jcc/index.php:214 -#: application/views/awards/rac/index.php:180 -#: application/views/awards/waja/index.php:189 -#: application/views/awards/was/index.php:188 +#: application/views/awards/rac/index.php:182 +#: application/views/awards/wac/index.php:188 +#: application/views/awards/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "" @@ -3451,23 +4026,24 @@ msgstr "" #: application/views/awards/dok/index.php:37 #: application/views/awards/dxcc/index.php:39 -#: application/views/awards/helvetia/index.php:31 +#: application/views/awards/helvetia/index.php:33 #: application/views/awards/iota/index.php:39 #: application/views/awards/jcc/index.php:30 -#: application/views/awards/rac/index.php:23 -#: application/views/awards/waja/index.php:31 -#: application/views/awards/was/index.php:31 +#: application/views/awards/rac/index.php:25 +#: application/views/awards/waja/index.php:33 +#: application/views/awards/was/index.php:33 msgid "Worked / Confirmed" msgstr "" #: application/views/awards/dok/index.php:80 #: application/views/awards/dxcc/index.php:120 -#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/helvetia/index.php:76 #: application/views/awards/iota/index.php:94 #: application/views/awards/jcc/index.php:77 -#: application/views/awards/rac/index.php:66 -#: application/views/awards/waja/index.php:78 -#: application/views/awards/was/index.php:74 +#: application/views/awards/rac/index.php:68 +#: application/views/awards/wac/index.php:66 +#: application/views/awards/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "" @@ -3488,10 +4064,12 @@ msgid "" msgstr "" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 msgid "ARRL website" msgstr "" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 #, php-format msgid "You can find all information about the DXCC Award on the %s." msgstr "" @@ -3513,63 +4091,77 @@ msgstr "" #: application/views/awards/dxcc/index.php:87 #: application/views/awards/iota/index.php:61 #: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/logbookadvanced/edit.php:144 +#: application/views/logbookadvanced/index.php:309 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 -#: application/views/view_log/qso.php:250 +#: application/views/view_log/qso.php:253 msgid "Antarctica" msgstr "Antártida" #: application/views/awards/dxcc/index.php:91 #: application/views/awards/iota/index.php:65 #: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/logbookadvanced/edit.php:143 +#: application/views/logbookadvanced/index.php:308 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 -#: application/views/view_log/qso.php:247 +#: application/views/view_log/qso.php:250 msgid "Africa" msgstr "África" #: application/views/awards/dxcc/index.php:95 #: application/views/awards/iota/index.php:69 #: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/logbookadvanced/edit.php:146 +#: application/views/logbookadvanced/index.php:311 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 -#: application/views/view_log/qso.php:253 +#: application/views/view_log/qso.php:256 msgid "Asia" msgstr "" #: application/views/awards/dxcc/index.php:99 #: application/views/awards/iota/index.php:73 #: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/logbookadvanced/edit.php:147 +#: application/views/logbookadvanced/index.php:312 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 -#: application/views/view_log/qso.php:256 +#: application/views/view_log/qso.php:259 msgid "Europe" msgstr "Europa" #: application/views/awards/dxcc/index.php:103 #: application/views/awards/iota/index.php:77 #: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/logbookadvanced/edit.php:145 +#: application/views/logbookadvanced/index.php:310 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 -#: application/views/view_log/qso.php:259 +#: application/views/view_log/qso.php:262 msgid "North America" msgstr "América del Norte" #: application/views/awards/dxcc/index.php:107 #: application/views/awards/iota/index.php:81 #: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/logbookadvanced/edit.php:148 +#: application/views/logbookadvanced/index.php:313 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:265 +#: application/views/view_log/qso.php:268 msgid "South America" msgstr "América del Sur" #: application/views/awards/dxcc/index.php:111 #: application/views/awards/iota/index.php:85 #: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/logbookadvanced/edit.php:149 +#: application/views/logbookadvanced/index.php:314 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 -#: application/views/view_log/qso.php:262 +#: application/views/view_log/qso.php:265 msgid "Oceania" msgstr "Oceanía" @@ -3583,13 +4175,13 @@ msgstr "" #: application/views/awards/dxcc/index.php:226 #: application/views/awards/iota/index.php:170 -#: application/views/timeline/index.php:117 -#: application/views/timeline/index.php:204 +#: application/views/timeline/index.php:150 +#: application/views/timeline/index.php:237 msgid "Prefix" msgstr "Prefijo" #: application/views/awards/ffma/index.php:8 -#: application/views/interface_assets/header.php:236 +#: application/views/interface_assets/header.php:240 msgid "Fred Fish Memorial Award" msgstr "" @@ -3644,11 +4236,20 @@ msgstr "" msgid "This map shows only QSOs worked on SAT." msgstr "" -#: application/views/awards/helvetia/index.php:18 +#: application/views/awards/helvetia/index.php:3 +msgctxt "Switzerland Canton" +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:4 +msgid "Hover over a canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:20 msgid "HELVETIA 26 | SWITZERLAND AWARD" msgstr "" -#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:21 msgid "" "The USKA (Union of Swiss Shortwave Amateurs) sponsors two awards, the " "HELVETIA 26 (H26) Award and the SWITZERLAND Award, aimed at promoting " @@ -3656,33 +4257,33 @@ msgid "" "as possible on multiple bands." msgstr "" -#: application/views/awards/helvetia/index.php:20 +#: application/views/awards/helvetia/index.php:22 msgid "" "These awards come in two versions: one for HF bands and the other for VHF " "(including SHF and UHF) bands. Valid connections for these awards date back " "to January 1, 1980" msgstr "" -#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/helvetia/index.php:23 #: application/views/awards/jcc/index.php:19 #: application/views/awards/sota/index.php:10 #: application/views/awards/wab/index.php:15 -#: application/views/awards/waja/index.php:20 +#: application/views/awards/waja/index.php:22 #: application/views/awards/wwff/index.php:10 #, php-format msgid "For more information, please visit: %s." msgstr "" -#: application/views/awards/helvetia/index.php:112 +#: application/views/awards/helvetia/index.php:114 msgid "Show Helvetia Map" msgstr "" -#: application/views/awards/helvetia/index.php:149 +#: application/views/awards/helvetia/index.php:151 msgid "Canton" msgstr "" #: application/views/awards/index.php:9 application/views/bands/index.php:46 -#: application/views/interface_assets/header.php:162 +#: application/views/interface_assets/header.php:164 msgid "CQ" msgstr "" @@ -3730,11 +4331,11 @@ msgstr "" #: application/views/awards/iota/index.php:171 #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 -#: application/views/contesting/index.php:153 -#: application/views/contesting/index.php:171 +#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:214 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:559 +#: application/views/logbookadvanced/index.php:587 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3744,12 +4345,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:19 #: application/views/stationsetup/stationsetup.php:30 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:203 application/views/user/edit.php:241 +#: application/views/timeline/index.php:236 application/views/user/edit.php:241 #: application/views/user/edit.php:263 application/views/user/edit.php:285 #: application/views/user/edit.php:307 application/views/user/edit.php:330 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:191 -#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:194 +#: application/views/view_log/qso.php:514 msgid "Name" msgstr "Nombre" @@ -3757,7 +4358,19 @@ msgstr "Nombre" msgid "Deleted" msgstr "" -#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:3 +#: application/views/awards/itu/index.php:150 +#: application/views/logbookadvanced/edit.php:10 +#: application/views/logbookadvanced/index.php:257 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:400 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 +msgid "ITU Zone" +msgstr "Zona ITU" + +#: application/views/awards/itu/index.php:21 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -3765,30 +4378,20 @@ msgid "" "(ITU)." msgstr "" -#: application/views/awards/itu/index.php:20 +#: application/views/awards/itu/index.php:22 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "" -#: application/views/awards/itu/index.php:23 +#: application/views/awards/itu/index.php:25 msgid "Awards - ITU Zones" msgstr "" -#: application/views/awards/itu/index.php:113 +#: application/views/awards/itu/index.php:115 msgid "Show ITU Zone Map" msgstr "" -#: application/views/awards/itu/index.php:148 -#: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:246 -#: application/views/logbookadvanced/index.php:589 -#: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:120 -#: application/views/station_profile/edit.php:143 -msgid "ITU Zone" -msgstr "Zona ITU" - #: application/views/awards/jcc/index.php:16 msgid "JCC - Japan Century Cities Award" msgstr "" @@ -3814,7 +4417,7 @@ msgstr "" #: application/views/awards/jcc/index.php:116 #: application/views/cabrillo/index.php:180 application/views/cfd/index.php:25 #: application/views/csv/index.php:128 application/views/dxatlas/index.php:128 -#: application/views/kml/index.php:113 +#: application/views/kml/index.php:113 application/views/reg1test/index.php:145 msgid "Export" msgstr "Exportar" @@ -3825,18 +4428,19 @@ msgid "Results" msgstr "" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 +#: application/views/distancerecords/index.php:13 msgid "Number" msgstr "" #: application/views/awards/jcc/index.php:152 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:524 msgid "City" msgstr "Ciudad" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:368 #: application/views/distances/index.php:23 msgid "SAT" msgstr "" @@ -3868,15 +4472,24 @@ msgid "" msgstr "" #: application/views/awards/pota/index.php:31 -#: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:177 -#: application/views/station_profile/edit.php:245 -#: application/views/user/edit.php:595 application/views/view_log/qso.php:303 -#: application/views/view_log/qso.php:570 +#: application/views/qso/index.php:236 application/views/qso/index.php:492 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 +#: application/views/user/edit.php:595 application/views/view_log/qso.php:306 +#: application/views/view_log/qso.php:573 msgid "POTA Reference(s)" msgstr "Referencia POTA" -#: application/views/awards/rac/index.php:104 +#: application/views/awards/rac/index.php:3 +msgctxt "Canada Province" +msgid "Province" +msgstr "" + +#: application/views/awards/rac/index.php:4 +msgid "Hover over a province" +msgstr "" + +#: application/views/awards/rac/index.php:106 msgid "Show RAC Map" msgstr "" @@ -3926,7 +4539,7 @@ msgstr "" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:535 +#: application/views/logbookadvanced/index.php:563 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4022,17 +4635,48 @@ msgstr "" msgid "WAB Square" msgstr "" -#: application/views/awards/waja/index.php:17 +#: application/views/awards/wac/index.php:9 +msgid "" +"Sponsored by the International Amateur Radio Union (IARU), the Worked All " +"Continents award is issued for working and confirming all six continents. " +"These are North America, South America, Oceania, Asia, Europe and Africa." +msgstr "" + +#: application/views/awards/wac/index.php:13 +msgid "Awards - Worked All Continents (WAC)" +msgstr "" + +#: application/views/awards/wac/index.php:151 +#: application/views/continents/index.php:62 +#: application/views/logbookadvanced/edit.php:25 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 +#: application/views/view_log/qso.php:245 +msgid "Continent" +msgstr "Continente" + +#: application/views/awards/waja/index.php:3 +msgctxt "Japan Prefecture" +msgid "Prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:4 +msgid "Hover over a prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:19 msgid "WAJA - Worked All Japan prefectures Award" msgstr "" -#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:20 msgid "" "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " "radio operators to work all the prefectures in Japan." msgstr "" -#: application/views/awards/waja/index.php:19 +#: application/views/awards/waja/index.php:21 msgid "" "May be claimed for having contacted (heard) and received a QSL card from an " "amateur station located in each of the 47 prefectures of Japan. A list of " @@ -4040,20 +4684,29 @@ msgid "" "however names of prefectures may be omitted." msgstr "" -#: application/views/awards/waja/index.php:116 +#: application/views/awards/waja/index.php:118 msgid "Show WAJA Map" msgstr "" -#: application/views/awards/waja/index.php:152 -#: application/views/timeline/index.php:152 +#: application/views/awards/waja/index.php:154 +#: application/views/timeline/index.php:185 msgid "Prefecture" msgstr "" -#: application/views/awards/was/index.php:18 +#: application/views/awards/was/index.php:3 +msgctxt "USA State" +msgid "State" +msgstr "" + +#: application/views/awards/was/index.php:4 +msgid "Hover over a state" +msgstr "" + +#: application/views/awards/was/index.php:20 msgid "WAS Award" msgstr "" -#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:21 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -4061,7 +4714,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:20 +#: application/views/awards/was/index.php:22 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -4070,13 +4723,13 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:21 +#: application/views/awards/was/index.php:23 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:112 +#: application/views/awards/was/index.php:114 msgid "Show WAS Map" msgstr "" @@ -4099,11 +4752,11 @@ msgid "" msgstr "" #: application/views/awards/wwff/index.php:31 -#: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:171 -#: application/views/station_profile/edit.php:232 -#: application/views/user/edit.php:591 application/views/view_log/qso.php:296 -#: application/views/view_log/qso.php:563 +#: application/views/qso/index.php:224 application/views/qso/index.php:479 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 +#: application/views/user/edit.php:591 application/views/view_log/qso.php:299 +#: application/views/view_log/qso.php:566 msgid "WWFF Reference" msgstr "Referencia WWFF" @@ -4158,8 +4811,8 @@ msgstr "" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 #: application/views/contesting/index.php:15 -#: application/views/contesting/index.php:94 -#: application/views/contesting/index.php:169 +#: application/views/contesting/index.php:52 +#: application/views/contesting/index.php:145 #: application/views/qso/index.php:314 msgid "None" msgstr "Ninguno" @@ -4243,25 +4896,25 @@ msgstr "" "Las bandas activas se mostrarán en la lista desplegable de 'Bandas' en QSO, " "mientras que las bandas inactivas se ocultarán y no pueden ser seleccionadas." -#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:351 -#: application/views/qso/index.php:248 application/views/qso/index.php:494 -#: application/views/user/edit.php:599 application/views/view_log/qso.php:325 -#: application/views/view_log/qso.php:577 +#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 +#: application/views/qso/index.php:248 application/views/qso/index.php:504 +#: application/views/user/edit.php:599 application/views/view_log/qso.php:328 +#: application/views/view_log/qso.php:580 msgid "Sig" msgstr "Señal" -#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:312 -#: application/views/qso/index.php:433 +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:339 +#: application/views/qso/index.php:443 msgid "USA County" msgstr "Condado USA" #: application/views/bands/index.php:58 -#: application/views/interface_assets/header.php:208 +#: application/views/interface_assets/header.php:212 msgid "WAJA" msgstr "" #: application/views/bands/index.php:59 -#: application/views/interface_assets/header.php:232 +#: application/views/interface_assets/header.php:236 msgid "WAS" msgstr "" @@ -4291,9 +4944,8 @@ msgstr "Crear una Banda" #: application/views/bands/index.php:152 #: application/views/contesting/add.php:74 -#: application/views/interface_assets/footer.php:42 -#: application/views/qso/components/winkeysettings.php:91 -#: application/views/qso/components/winkeysettings_results.php:91 +#: application/views/contesting/index.php:83 +#: application/views/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4324,22 +4976,28 @@ msgstr "Desactivar Todo" #: application/views/cabrillo/index.php:2 #: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:59 +#: application/views/reg1test/index.php:2 +#: application/views/reg1test/index.php:36 msgid "Proceed" msgstr "Continuar" #: application/views/cabrillo/index.php:3 +#: application/views/reg1test/index.php:3 msgid "Select Year" msgstr "Seleccione año" #: application/views/cabrillo/index.php:4 +#: application/views/reg1test/index.php:4 msgid "Select Contest" msgstr "Seleccione concurso" #: application/views/cabrillo/index.php:5 +#: application/views/reg1test/index.php:5 msgid "Select Date Range" msgstr "Seleccione rango de fechas" #: application/views/cabrillo/index.php:6 +#: application/views/reg1test/index.php:7 msgid "No contests were found for this station location!" msgstr "¡No se encontraron concursos para esta localización de estación!" @@ -4352,10 +5010,12 @@ msgid "Select Station Location:" msgstr "Seleccione la localización de la estación:" #: application/views/cabrillo/index.php:44 +#: application/views/reg1test/index.php:53 msgid "Club" msgstr "" #: application/views/cabrillo/index.php:48 +#: application/views/reg1test/index.php:58 msgid "Category Operator" msgstr "Categoría - Operador" @@ -4396,10 +5056,12 @@ msgid "Category Overlay" msgstr "Categoría - Overlay" #: application/views/cabrillo/index.php:150 +#: application/views/reg1test/index.php:70 msgid "Operators" msgstr "Operadores" #: application/views/cabrillo/index.php:155 +#: application/views/reg1test/index.php:139 msgid "Soapbox" msgstr "" @@ -4424,6 +5086,7 @@ msgid "Address Country" msgstr "Dirección - País" #: application/views/cabrillo/index.php:186 +#: application/views/reg1test/index.php:150 msgid "No contests were found in your log." msgstr "No se encontraron concursos en tu registro." @@ -4457,13 +5120,13 @@ 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:158 +#: application/views/contesting/index.php:219 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:629 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 -#: application/views/view_log/qso.php:199 +#: application/views/view_log/qso.php:202 msgid "Comment" msgstr "Comentario" @@ -4495,9 +5158,9 @@ msgid "No Contests" msgstr "" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/edit.php:21 -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:635 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4525,10 +5188,11 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:38 -#: application/views/dashboard/index.php:262 -#: application/views/dashboard/index.php:289 -#: application/views/dashboard/index.php:310 -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:278 +#: application/views/dashboard/index.php:305 +#: application/views/dashboard/index.php:326 +#: application/views/dashboard/index.php:347 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "Hoy" @@ -4566,7 +5230,7 @@ msgstr "Nombre ADIF" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:466 +#: application/views/interface_assets/header.php:472 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:43 @@ -4621,15 +5285,15 @@ msgid "Name of Contest in ADIF-specification" msgstr "Nombre del Concurso en la especificación ADIF" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "Crear" #: application/views/contesting/edit.php:31 -#: application/views/contesting/index.php:24 -#: application/views/qso/edit_ajax.php:548 -#: application/views/view_log/qso.php:275 +#: application/views/contesting/index.php:25 +#: application/views/qso/edit_ajax.php:575 +#: application/views/view_log/qso.php:278 msgid "Contest Name" msgstr "Nombre del concurso" @@ -4665,90 +5329,138 @@ msgstr "En Serie + Intercambio" msgid "Serial + Gridsquare" msgstr "En Serie + Gridsquare" -#: application/views/contesting/index.php:34 +#: application/views/contesting/index.php:21 +msgid "Serial + Gridsquare + Exchange" +msgstr "" + +#: application/views/contesting/index.php:35 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:539 application/views/qso/index.php:352 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:352 msgid "Operator Callsign" msgstr "Indicativo del Operador" -#: application/views/contesting/index.php:116 -#: application/views/contesting/index.php:208 -#: application/views/qso/edit_ajax.php:571 -msgid "Serial (S)" -msgstr "Por No. de Serie (E)" - -#: application/views/contesting/index.php:121 -#: application/views/contesting/index.php:206 -msgid "Exch (S)" -msgstr "Intercambio (Env)" - -#: application/views/contesting/index.php:126 -msgid "Gridsquare (S)" -msgstr "Gridsquare (E)" - -#: application/views/contesting/index.php:136 -#: application/views/contesting/index.php:209 -#: application/views/qso/edit_ajax.php:566 -msgid "Serial (R)" -msgstr "Por No. de Serie (R)" - -#: application/views/contesting/index.php:141 -#: application/views/contesting/index.php:207 -msgid "Exch (R)" -msgstr "Intercambio (Recib)" - -#: application/views/contesting/index.php:146 -msgid "Gridsquare (R)" +#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:45 +msgid "More Settings" msgstr "" -#: application/views/contesting/index.php:163 -msgid "Reset QSO" -msgstr "Reinicializar QSO" - -#: application/views/contesting/index.php:164 -#: application/views/qso/index.php:607 -msgid "Save QSO" -msgstr "Guardar QSO" - -#: application/views/contesting/index.php:166 +#: application/views/contesting/index.php:49 msgid "Copy received exchange to" msgstr "¡Copiar intercambio recibido al campo" -#: application/views/contesting/index.php:168 +#: application/views/contesting/index.php:51 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "" -#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:55 msgid "Age" msgstr "" -#: application/views/contesting/index.php:174 +#: application/views/contesting/index.php:57 msgid "RX Power (W)" msgstr "" -#: application/views/contesting/index.php:175 +#: application/views/contesting/index.php:58 msgid "Locator" msgstr "Localizador" -#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:59 +#: application/views/qso/edit_ajax.php:177 +msgid "QTH" +msgstr "" + +#: application/views/contesting/index.php:64 +msgid "Sequence of Exchanges" +msgstr "" + +#: application/views/contesting/index.php:67 +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 "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Grid" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Serial" +msgstr "" + +#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:255 +#: application/views/qso/edit_ajax.php:598 +msgid "Serial (S)" +msgstr "Por No. de Serie (E)" + +#: application/views/contesting/index.php:177 +msgid "Gridsquare (S)" +msgstr "Gridsquare (E)" + +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:253 +msgid "Exch (S)" +msgstr "Intercambio (Env)" + +#: application/views/contesting/index.php:196 +#: application/views/contesting/index.php:256 +#: application/views/qso/edit_ajax.php:593 +msgid "Serial (R)" +msgstr "Por No. de Serie (R)" + +#: application/views/contesting/index.php:201 +msgid "Gridsquare (R)" +msgstr "" + +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:254 +msgid "Exch (R)" +msgstr "Intercambio (Recib)" + +#: application/views/contesting/index.php:224 +msgid "Reset QSO" +msgstr "Reinicializar QSO" + +#: application/views/contesting/index.php:225 +#: application/views/qso/index.php:629 +msgid "Save QSO" +msgstr "Guardar QSO" + +#: application/views/contesting/index.php:234 msgid "Callsign Suggestions" msgstr "Indicativos sugeridos" -#: application/views/contesting/index.php:194 +#: application/views/contesting/index.php:241 msgid "Contest Logbook" msgstr "Libro de guardia del concurso" -#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:258 #: application/views/qso/edit_ajax.php:164 msgid "VUCC Gridsquare" msgstr "" -#: application/views/continents/index.php:62 -#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 -#: application/views/view_log/qso.php:242 -msgid "Continent" -msgstr "Continente" - #: application/views/continents/index.php:63 #: application/views/statistics/index.php:19 #: application/views/statistics/index.php:113 @@ -4766,14 +5478,15 @@ msgstr "" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:261 -#: application/views/station_profile/edit.php:314 +#: application/views/options/appearance.php:109 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 msgid "Enabled" msgstr "Activado" -#: application/views/cron/edit.php:36 application/views/cron/index.php:53 +#: application/views/cron/edit.php:36 application/views/cron/index.php:55 msgid "Intervall" msgstr "" @@ -4823,6 +5536,7 @@ msgstr "" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "Cancelar" @@ -4836,79 +5550,84 @@ msgid "" "requiring CLI access." msgstr "" -#: application/views/cron/index.php:18 +#: application/views/cron/index.php:19 msgid "" "To execute cron jobs based on the data below, remove all old cron jobs and " "create a new one:" msgstr "" -#: application/views/cron/index.php:27 application/views/cron/index.php:31 -msgid "Status Master-Cron" +#: application/views/cron/index.php:29 application/views/cron/index.php:33 +msgid "Status Master-Cron:" msgstr "" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgctxt "PHP Version" msgid "Min. Version is" msgstr "" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgid "PHP Version not supported." msgstr "" -#: application/views/cron/index.php:41 +#: application/views/cron/index.php:43 msgid "Cron List" msgstr "" -#: application/views/cron/index.php:50 +#: application/views/cron/index.php:52 #: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "" -#: application/views/cron/index.php:54 +#: application/views/cron/index.php:56 msgid "Last Run" msgstr "" -#: application/views/cron/index.php:55 +#: application/views/cron/index.php:57 msgid "Next Run" msgstr "" -#: application/views/cron/index.php:68 +#: application/views/cron/index.php:70 msgid "healthy" msgstr "" -#: application/views/cron/index.php:70 +#: application/views/cron/index.php:72 msgid "failed" msgstr "" -#: application/views/cron/index.php:75 +#: application/views/cron/index.php:74 +msgid "pending" +msgstr "" + +#: application/views/cron/index.php:79 msgid "disabled" msgstr "" -#: application/views/cron/index.php:79 application/views/cron/index.php:81 -#: application/views/cron/index.php:83 application/views/debug/index.php:494 +#: application/views/cron/index.php:83 application/views/cron/index.php:85 +#: application/views/cron/index.php:87 application/views/debug/index.php:494 #: application/views/debug/index.php:500 application/views/debug/index.php:505 #: application/views/debug/index.php:510 application/views/debug/index.php:515 #: application/views/debug/index.php:520 application/views/debug/index.php:525 +#: application/views/user/index.php:138 msgid "never" msgstr "" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:102 msgid "Your Mastercron isn't running." msgstr "" -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:103 msgid "" "Copy the cron above to a external cron service or into your server's cron to " "use this cron manager." msgstr "" -#: application/views/cron/index.php:100 +#: application/views/cron/index.php:104 msgid "" "On a basic linux server with shell access use this command to edit your " "crons:" msgstr "" -#: application/views/cron/index.php:107 +#: application/views/cron/index.php:111 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -4926,154 +5645,10 @@ 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:42 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:411 msgid "Propagation Mode" msgstr "Modo de propagación" -#: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:214 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 -msgctxt "Propagation Mode" -msgid "Aircraft Scatter" -msgstr "" - -#: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:215 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 -msgctxt "Propagation Mode" -msgid "Aurora" -msgstr "" - -#: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:216 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 -msgctxt "Propagation Mode" -msgid "Aurora-E" -msgstr "" - -#: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:217 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 -msgctxt "Propagation Mode" -msgid "Back scatter" -msgstr "" - -#: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:218 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 -msgctxt "Propagation Mode" -msgid "EchoLink" -msgstr "" - -#: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:219 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 -msgctxt "Propagation Mode" -msgid "Earth-Moon-Earth" -msgstr "" - -#: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:220 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 -msgctxt "Propagation Mode" -msgid "Sporadic E" -msgstr "" - -#: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:221 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 -msgctxt "Propagation Mode" -msgid "Field Aligned Irregularities" -msgstr "" - -#: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:222 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 -msgctxt "Propagation Mode" -msgid "F2 Reflection" -msgstr "" - -#: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:223 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 -msgctxt "Propagation Mode" -msgid "Internet-assisted" -msgstr "" - -#: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:224 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 -msgctxt "Propagation Mode" -msgid "Ionoscatter" -msgstr "" - -#: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:225 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 -msgctxt "Propagation Mode" -msgid "IRLP" -msgstr "" - -#: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:226 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 -msgctxt "Propagation Mode" -msgid "Meteor scatter" -msgstr "" - -#: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:227 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 -msgctxt "Propagation Mode" -msgid "Terrestrial or atmospheric repeater or transponder" -msgstr "" - -#: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:228 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 -msgctxt "Propagation Mode" -msgid "Rain scatter" -msgstr "" - -#: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:229 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 -msgctxt "Propagation Mode" -msgid "Satellite" -msgstr "Satélite" - -#: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:230 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 -msgctxt "Propagation Mode" -msgid "Trans-equatorial" -msgstr "" - -#: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:231 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 -msgctxt "Propagation Mode" -msgid "Tropospheric ducting" -msgstr "" - #: application/views/dashboard/index.php:5 msgid "RSTS" msgstr "" @@ -5082,87 +5657,101 @@ msgstr "" msgid "RSTR" msgstr "" -#: application/views/dashboard/index.php:56 +#: application/views/dashboard/index.php:58 msgid "" "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" msgstr "" "Necesita actualizar su versión de PHP. La versión mínima es 7.4. Su versión " "es " -#: application/views/dashboard/index.php:63 +#: application/views/dashboard/index.php:65 #, php-format msgctxt "Dashboard Warning" -msgid "You need to update country files! Click %s to do it." +msgid "You need to update country files! Click %shere%s to do it." msgstr "" -#: application/views/dashboard/index.php:72 +#: application/views/dashboard/index.php:73 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station locations. Click %s to do it:" +msgid "You have no station locations. Click %shere%s to do it." msgstr "" #: application/views/dashboard/index.php:81 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station logbook. Click %s to do it:" +msgid "You have no station logbook. Click %shere%s to do it." msgstr "" -#: application/views/dashboard/index.php:91 +#: application/views/dashboard/index.php:89 +#, php-format +msgctxt "Dashboard Warning" +msgid "" +"Your active Station Location isn't linked to your Logbook. Click %shere%s to " +"do it." +msgstr "" + +#: application/views/dashboard/index.php:97 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station linked to your Logbook. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:106 #, php-format msgid "You have had %d QSO today" msgid_plural "You have had %d QSOs today" msgstr[0] "" msgstr[1] "" -#: application/views/dashboard/index.php:97 +#: application/views/dashboard/index.php:112 msgid "You have made no QSOs today; time to turn on the radio!" msgstr "No ha realizado ninguna QSO hoy...¡Hora de encender la radio!" -#: application/views/dashboard/index.php:104 +#: application/views/dashboard/index.php:119 msgid "Attention: you need to set an active station location." msgstr "Atención: Debe configurar un perfil de estación activo." -#: application/views/dashboard/index.php:110 +#: application/views/dashboard/index.php:125 msgid "" "You have themes without defined theme mode. Please ask the admin to edit the " "themes." msgstr "" -#: application/views/dashboard/index.php:118 +#: application/views/dashboard/index.php:133 msgid "At least one of your LoTW certificates is expired!" msgstr "¡Al menos uno de sus certificados de LoTW ya ha caducado!" -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:139 msgid "At least one of your LoTW certificates is about to expire!" msgstr "¡Al menos uno de sus certificados de LoTW caduca pronto!" -#: application/views/dashboard/index.php:213 +#: application/views/dashboard/index.php:229 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "Desglose de QSO" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:252 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "Desglose por Países" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:269 #: application/views/visitor/index.php:275 msgid "Needed" msgstr "Solicitadas" -#: application/views/dashboard/index.php:266 -#: application/views/dashboard/index.php:293 -#: application/views/dashboard/index.php:314 -#: application/views/dashboard/index.php:335 +#: application/views/dashboard/index.php:282 +#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:330 +#: application/views/dashboard/index.php:351 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:167 -#: application/views/qso/edit_ajax.php:390 -#: application/views/qso/edit_ajax.php:451 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:550 +#: application/views/qso/edit_ajax.php:417 +#: application/views/qso/edit_ajax.php:478 +#: application/views/qso/edit_ajax.php:518 application/views/qso/index.php:572 #: application/views/search/result_search.php:8 #: application/views/search/search_result_ajax.php:180 #: application/views/search/search_result_ajax.php:260 @@ -5170,91 +5759,91 @@ msgstr "Solicitadas" #: application/views/search/search_result_ajax.php:332 #: application/views/search/search_result_ajax.php:362 #: application/views/statistics/custom_result.php:89 -#: application/views/view_log/partial/log_ajax.php:140 -#: application/views/view_log/partial/log_ajax.php:217 -#: application/views/view_log/partial/log_ajax.php:237 -#: application/views/view_log/partial/log_ajax.php:287 -#: application/views/view_log/partial/log_ajax.php:295 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:289 +#: application/views/view_log/partial/log_ajax.php:297 #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 -#: src/QSLManager/QSO.php:371 src/QSLManager/QSO.php:423 -#: src/QSLManager/QSO.php:459 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:270 +#: src/QSLManager/QSO.php:373 src/QSLManager/QSO.php:425 +#: src/QSLManager/QSO.php:461 msgid "Sent" msgstr "Enviado" -#: application/views/dashboard/index.php:272 -#: application/views/dashboard/index.php:299 -#: application/views/dashboard/index.php:320 -#: application/views/dashboard/index.php:341 +#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:315 +#: application/views/dashboard/index.php:336 +#: application/views/dashboard/index.php:357 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 #: application/views/qslprint/qsolist.php:151 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:423 -#: application/views/qso/edit_ajax.php:464 -#: application/views/qso/edit_ajax.php:503 +#: application/views/qso/edit_ajax.php:450 +#: application/views/qso/edit_ajax.php:491 +#: application/views/qso/edit_ajax.php:530 #: application/views/search/search_result_ajax.php:222 #: application/views/search/search_result_ajax.php:273 #: application/views/search/search_result_ajax.php:313 #: application/views/search/search_result_ajax.php:345 #: application/views/search/search_result_ajax.php:375 -#: application/views/view_log/partial/log_ajax.php:178 -#: application/views/view_log/partial/log_ajax.php:218 -#: application/views/view_log/partial/log_ajax.php:263 -#: application/views/view_log/partial/log_ajax.php:288 -#: application/views/view_log/partial/log_ajax.php:296 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:265 +#: application/views/view_log/partial/log_ajax.php:290 +#: application/views/view_log/partial/log_ajax.php:298 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 -#: src/QSLManager/QSO.php:394 src/QSLManager/QSO.php:436 -#: src/QSLManager/QSO.php:472 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:315 +#: src/QSLManager/QSO.php:396 src/QSLManager/QSO.php:438 +#: src/QSLManager/QSO.php:474 msgid "Received" msgstr "Recibido" -#: application/views/dashboard/index.php:278 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:388 -#: application/views/logbookadvanced/index.php:399 +#: application/views/dashboard/index.php:294 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:415 +#: application/views/logbookadvanced/index.php:426 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 -#: application/views/qso/edit_ajax.php:395 -#: application/views/qso/edit_ajax.php:428 -#: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:469 +#: application/views/qso/edit_ajax.php:422 +#: application/views/qso/edit_ajax.php:455 +#: application/views/qso/edit_ajax.php:483 #: application/views/qso/edit_ajax.php:496 -#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:555 +#: application/views/qso/edit_ajax.php:523 +#: application/views/qso/edit_ajax.php:535 application/views/qso/index.php:577 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 -#: application/views/view_log/partial/log_ajax.php:146 -#: application/views/view_log/partial/log_ajax.php:184 -#: application/views/view_log/partial/log_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:273 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 -#: src/QSLManager/QSO.php:319 src/QSLManager/QSO.php:379 -#: src/QSLManager/QSO.php:402 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +#: application/views/view_log/partial/log_ajax.php:249 +#: application/views/view_log/partial/log_ajax.php:275 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:276 +#: src/QSLManager/QSO.php:321 src/QSLManager/QSO.php:381 +#: src/QSLManager/QSO.php:404 msgid "Requested" msgstr "Solicitadas" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:304 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:351 +#: application/views/dashboard/index.php:367 msgid "VUCC-Grids" msgstr "" #: application/views/dayswithqso/index.php:2 -#: application/views/interface_assets/header.php:146 +#: application/views/interface_assets/header.php:148 msgid "Days with QSOs" msgstr "Días con QSOs" @@ -5283,7 +5872,7 @@ msgstr "Fecha de inicio" #: application/views/dayswithqso/index.php:58 #: application/views/dayswithqso/index.php:86 #: application/views/dayswithqso/index.php:108 -#: application/views/timeline/index.php:120 +#: application/views/timeline/index.php:153 msgid "End Date" msgstr "Fecha de fin" @@ -5317,11 +5906,11 @@ msgstr "" #: application/views/debug/index.php:27 msgid "Version" -msgstr "" +msgstr "Versión" #: application/views/debug/index.php:31 msgid "Language" -msgstr "" +msgstr "Idioma" #: application/views/debug/index.php:35 msgid "Base URL" @@ -5350,9 +5939,7 @@ msgstr "" #: application/views/debug/index.php:47 #, php-format -msgid "" -"Check this wiki article here for " -"more information." +msgid "Check this wiki article %shere%s for more information." msgstr "" #: application/views/debug/index.php:48 @@ -5411,13 +5998,13 @@ msgstr "" #: application/views/debug/index.php:134 application/views/debug/index.php:145 #: application/views/debug/index.php:157 msgid "Success" -msgstr "" +msgstr "Éxito" #: application/views/debug/index.php:114 application/views/debug/index.php:125 #: application/views/debug/index.php:136 application/views/debug/index.php:147 #: application/views/debug/index.php:159 msgid "Failed" -msgstr "" +msgstr "Fallido" #: application/views/debug/index.php:169 msgid "Config Maintenance" @@ -5488,15 +6075,15 @@ msgstr "" #: application/views/debug/index.php:252 application/views/debug/index.php:263 #: application/views/debug/index.php:274 msgid "Installed" -msgstr "" +msgstr "Instalado" #: application/views/debug/index.php:232 application/views/debug/index.php:243 #: application/views/debug/index.php:254 application/views/debug/index.php:265 #: application/views/debug/index.php:276 msgid "Not Installed" -msgstr "" +msgstr "No instalado" -#: application/views/debug/index.php:283 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:671 msgid "Settings" msgstr "" @@ -5553,7 +6140,7 @@ msgstr "" #: application/views/debug/index.php:506 application/views/debug/index.php:511 #: application/views/debug/index.php:516 application/views/debug/index.php:521 #: application/views/debug/index.php:526 -#: application/views/station_profile/edit.php:22 +#: application/views/station_profile/edit.php:49 msgid "Update" msgstr "Actualizar" @@ -5595,9 +6182,8 @@ msgstr[1] "" #: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:57 -#: application/views/station_profile/edit.php:46 -#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" @@ -5625,67 +6211,91 @@ msgid "Everything ok" msgstr "" #: application/views/debug/index.php:629 -msgid "Bulgarian" -msgstr "" +msgid "Albanian" +msgstr "Albanés" #: application/views/debug/index.php:630 -msgid "Chinese (Simplified)" -msgstr "" +msgid "Bosnian" +msgstr "Bosnio" #: application/views/debug/index.php:631 -msgid "Czech" -msgstr "" +msgid "Bulgarian" +msgstr "Búlgaro" #: application/views/debug/index.php:632 -msgid "Dutch" -msgstr "" +msgid "Chinese (Simplified)" +msgstr "Chino (Simplificado)" #: application/views/debug/index.php:633 -msgid "English" -msgstr "" +msgid "Croatian" +msgstr "Croata" #: application/views/debug/index.php:634 -msgid "Finnish" -msgstr "" +msgid "Czech" +msgstr "Checo" #: application/views/debug/index.php:635 -msgid "French" -msgstr "" +msgid "Dutch" +msgstr "Holandés" #: application/views/debug/index.php:636 -msgid "German" -msgstr "" +msgid "English" +msgstr "Inglés" #: application/views/debug/index.php:637 -msgid "Greek" -msgstr "" +msgid "Finnish" +msgstr "Finlandés" #: application/views/debug/index.php:638 -msgid "Italian" -msgstr "" +msgid "French" +msgstr "Francés" #: application/views/debug/index.php:639 -msgid "Polish" -msgstr "" +msgid "German" +msgstr "Alemán" #: application/views/debug/index.php:640 -msgid "Portuguese" -msgstr "" +msgid "Greek" +msgstr "Griego" #: application/views/debug/index.php:641 -msgid "Russian" -msgstr "" +msgid "Italian" +msgstr "Italiano" #: application/views/debug/index.php:642 -msgid "Spanish" -msgstr "" +msgid "Montenegrin" +msgstr "Montenegrino" #: application/views/debug/index.php:643 -msgid "Swedish" -msgstr "" +msgid "Polish" +msgstr "Polaco" #: application/views/debug/index.php:644 +msgid "Portuguese" +msgstr "Portugués" + +#: application/views/debug/index.php:645 +msgid "Russian" +msgstr "Ruso" + +#: application/views/debug/index.php:646 +msgid "Serbian" +msgstr "Serbio" + +#: application/views/debug/index.php:647 +msgid "Spanish" +msgstr "Español" + +#: application/views/debug/index.php:648 +msgid "Swedish" +msgstr "Sueco" + +#: application/views/debug/index.php:649 msgid "Turkish" +msgstr "Turco" + +#: application/views/distancerecords/index.php:4 +msgid "This page lists distance records per satellite based on gridsquares." msgstr "" #: application/views/distances/index.php:7 @@ -5695,8 +6305,9 @@ msgid "QSO Data" msgstr "Datos QSO" #: application/views/distances/index.php:9 -msgid "contacts were plotted.
Your furthest contact was with" -msgstr "contactos fueron dibujados.
Su contacto más lejano fue con" +#, php-format +msgid "contacts were plotted.%s Your furthest contact was with" +msgstr "" #: application/views/distances/index.php:10 msgid "in gridsquare" @@ -5739,7 +6350,7 @@ msgid "Date to" msgstr "" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:366 +#: application/views/view_log/qso.php:369 msgid "QSL Info" msgstr "Información QSL" @@ -5765,7 +6376,7 @@ msgstr "" #: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 #: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 #: application/views/eqsl/tools.php:15 -#: application/views/interface_assets/header.php:243 +#: application/views/interface_assets/header.php:247 msgid "Tools" msgstr "" @@ -5905,27 +6516,15 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2324 -#: application/views/interface_assets/footer.php:2342 -#: application/views/interface_assets/footer.php:2363 -#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2338 +#: application/views/interface_assets/footer.php:2356 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 #: application/views/qslcard/index.php:66 -#: application/views/view_log/qso.php:614 +#: application/views/view_log/qso.php:617 msgid "View" msgstr "" -#: application/views/gridmap/index.php:38 -#: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:604 -#: application/views/logbookadvanced/useroptions.php:118 -msgid "Propagation" -msgstr "Propagación" - -#: application/views/gridmap/index.php:42 -msgid "None/Empty" -msgstr "" - #: application/views/gridmap/index.php:43 msgid "All except SAT" msgstr "" @@ -6021,8 +6620,8 @@ msgstr "" #: application/views/interface_assets/footer.php:31 #: application/views/search/search_result_ajax.php:404 #: application/views/view_log/partial/log.php:135 -#: application/views/view_log/partial/log_ajax.php:318 -#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log_ajax.php:320 +#: application/views/view_log/qso.php:437 msgid "Edit QSO" msgstr "Editar QSO" @@ -6030,174 +6629,195 @@ msgstr "Editar QSO" msgid "Attention" msgstr "Atención" -#: application/views/interface_assets/footer.php:36 -msgid "OK" -msgstr "" - -#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/footer.php:38 msgid "Warning! Are you sure you want delete QSO with " msgstr "¡Advertencia! ¿Está seguro que desea eliminar QSOs con " -#: application/views/interface_assets/footer.php:38 +#: application/views/interface_assets/footer.php:39 #: application/views/user/edit.php:493 msgid "Colors" msgstr "Colores" -#: application/views/interface_assets/footer.php:40 +#: application/views/interface_assets/footer.php:41 msgid "Worked not confirmed" msgstr "Trabajados no confirmados" -#: application/views/interface_assets/footer.php:41 +#: application/views/interface_assets/footer.php:42 msgid "Not worked" msgstr "No logrados" -#: application/views/interface_assets/footer.php:44 -#: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/interface_assets/footer.php:46 +#: application/views/qso/index.php:623 +#: application/views/visitor/layout/footer.php:246 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:47 #: application/views/qso/edit_ajax.php:211 -#: application/views/qso/edit_ajax.php:512 +#: application/views/qso/edit_ajax.php:539 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "" -#: application/views/interface_assets/footer.php:127 -#: application/views/interface_assets/header.php:434 +#: application/views/interface_assets/footer.php:48 +msgid "No states for this DXCC available" +msgstr "" + +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "" + +#: application/views/interface_assets/footer.php:132 +#: application/views/interface_assets/header.php:440 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "Información de Versión" -#: application/views/interface_assets/footer.php:392 +#: application/views/interface_assets/footer.php:398 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:395 +#: application/views/interface_assets/footer.php:401 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:411 +#: application/views/interface_assets/footer.php:417 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:413 +#: application/views/interface_assets/footer.php:419 #: application/views/search/filter.php:46 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:415 +#: application/views/interface_assets/footer.php:421 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:420 +#: application/views/interface_assets/footer.php:426 #: application/views/search/filter.php:60 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:432 -#: application/views/interface_assets/footer.php:561 -#: application/views/interface_assets/footer.php:625 +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:437 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:458 -#: application/views/interface_assets/footer.php:589 +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 #: application/views/search/filter.php:79 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:496 +#: application/views/interface_assets/footer.php:502 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:516 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:519 +#: application/views/interface_assets/footer.php:525 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:545 +#: application/views/interface_assets/footer.php:551 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:549 +#: application/views/interface_assets/footer.php:555 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:678 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -"Deténgase un momento. El DXCC escogido está desactualizado y ya no es " -"válido. Revise cuál DXCC es el correcto para su localización particular. Si " -"está totalmente seguro, ignore esta advertencia." +"Deténgase aquí un momento. Su DXCC elegido está obsoleto y ya no es válido. " +"Comprueba cuál es el DXCC correcto para esta localización en particular. Si " +"está seguro, ignore esta advertencia." -#: application/views/interface_assets/footer.php:1156 -#, php-format -msgid "You're not logged it. Please login" +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:533 +msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:1362 -#: application/views/interface_assets/footer.php:1366 -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1506 -#: application/views/interface_assets/footer.php:1510 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:731 +msgid "Count: " +msgstr "" + +#: application/views/interface_assets/footer.php:732 +msgid "Grids: " +msgstr "" + +#: application/views/interface_assets/footer.php:1167 +#, php-format +msgid "You're not logged in. Please %slogin%s" +msgstr "" + +#: application/views/interface_assets/footer.php:1375 +#: application/views/interface_assets/footer.php:1379 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1523 +#: application/views/interface_assets/footer.php:1526 msgid "grid square" msgstr "grid squares" -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1526 msgid "Total count" msgstr "Cuenta total" -#: application/views/interface_assets/footer.php:2100 +#: application/views/interface_assets/footer.php:2114 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2120 +#: application/views/interface_assets/footer.php:2134 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2160 +#: application/views/interface_assets/footer.php:2174 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "Tarjeta eQSL" -#: application/views/interface_assets/footer.php:2162 +#: application/views/interface_assets/footer.php:2176 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2335 -#: application/views/interface_assets/footer.php:2374 -#: application/views/view_log/qso.php:604 +#: application/views/interface_assets/footer.php:2349 +#: application/views/interface_assets/footer.php:2388 +#: application/views/view_log/qso.php:607 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2354 +#: application/views/interface_assets/footer.php:2368 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2392 +#: application/views/interface_assets/footer.php:2406 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2403 -#: application/views/interface_assets/footer.php:2428 +#: application/views/interface_assets/footer.php:2417 +#: application/views/interface_assets/footer.php:2442 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2439 +#: application/views/interface_assets/footer.php:2453 msgid "Something went wrong. Please try again!" msgstr "" @@ -6253,91 +6873,91 @@ msgstr "Analíticas" msgid "Activated Gridsquares" msgstr "Gridsquares Activadas" -#: application/views/interface_assets/header.php:160 +#: application/views/interface_assets/header.php:162 msgid "International" msgstr "" -#: application/views/interface_assets/header.php:166 +#: application/views/interface_assets/header.php:168 msgid "ITU" msgstr "" -#: application/views/interface_assets/header.php:186 +#: application/views/interface_assets/header.php:190 msgid "Canada" msgstr "" -#: application/views/interface_assets/header.php:192 +#: application/views/interface_assets/header.php:196 msgid "Germany" msgstr "" -#: application/views/interface_assets/header.php:196 +#: application/views/interface_assets/header.php:200 msgid "DL Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:200 +#: application/views/interface_assets/header.php:204 msgid "Great Britain" msgstr "" -#: application/views/interface_assets/header.php:202 +#: application/views/interface_assets/header.php:206 msgid "WAB" msgstr "" -#: application/views/interface_assets/header.php:206 +#: application/views/interface_assets/header.php:210 msgid "Japan" msgstr "" -#: application/views/interface_assets/header.php:212 +#: application/views/interface_assets/header.php:216 msgid "JA Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:216 +#: application/views/interface_assets/header.php:220 msgid "Luxemburg" msgstr "" -#: application/views/interface_assets/header.php:218 +#: application/views/interface_assets/header.php:222 msgid "LX Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:222 +#: application/views/interface_assets/header.php:226 msgid "Switzerland" msgstr "" -#: application/views/interface_assets/header.php:228 +#: application/views/interface_assets/header.php:232 msgid "USA" msgstr "" -#: application/views/interface_assets/header.php:234 +#: application/views/interface_assets/header.php:238 msgid "US Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:251 +#: application/views/interface_assets/header.php:255 msgid "Bandmap" msgstr "mapa de Bandas" -#: application/views/interface_assets/header.php:253 +#: application/views/interface_assets/header.php:257 msgid "SAT Timers" msgstr "" -#: application/views/interface_assets/header.php:256 +#: application/views/interface_assets/header.php:260 msgid "Satellite Flightpath" msgstr "" -#: application/views/interface_assets/header.php:258 +#: application/views/interface_assets/header.php:262 msgid "Satellite Pass" msgstr "" -#: application/views/interface_assets/header.php:265 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:269 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "Administrador" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:274 msgid "Global Options" msgstr "Opciones Globales" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:280 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:11 +#: application/views/satellite/pass.php:495 #: application/views/statistics/custom.php:20 #: application/views/statistics/custom_result.php:21 #: application/views/statistics/index.php:39 @@ -6345,79 +6965,83 @@ msgstr "Opciones Globales" msgid "Satellites" msgstr "" -#: application/views/interface_assets/header.php:282 +#: application/views/interface_assets/header.php:286 msgid "Update Country Files" msgstr "Actualizar Archivos de Países" -#: application/views/interface_assets/header.php:286 +#: application/views/interface_assets/header.php:290 msgid "Debug Information" msgstr "Información de Depuración" -#: application/views/interface_assets/header.php:333 +#: application/views/interface_assets/header.php:337 msgid "Add/Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:335 +#: application/views/interface_assets/header.php:339 msgid "Log" msgstr "" -#: application/views/interface_assets/header.php:342 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:346 +#: application/views/logbookadvanced/index.php:474 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "Guardar Indicativo" -#: application/views/interface_assets/header.php:371 +#: application/views/interface_assets/header.php:375 #: application/views/user/edit.php:49 msgid "Account" msgstr "Información de la Cuenta" -#: application/views/interface_assets/header.php:386 +#: application/views/interface_assets/header.php:390 msgid "Other Export Options" msgstr "" -#: application/views/interface_assets/header.php:394 +#: application/views/interface_assets/header.php:398 msgid "Cabrillo Export" msgstr "Exportación Cabrillo" -#: application/views/interface_assets/header.php:418 -msgid "QSL Queue" -msgstr "" - -#: application/views/interface_assets/header.php:419 -msgid "Labels" -msgstr "" - -#: application/views/interface_assets/header.php:421 -msgid "Third-Party Services" +#: application/views/interface_assets/header.php:400 +msgid "EDI Export" msgstr "" #: application/views/interface_assets/header.php:424 -msgid "eQSL Import / Export" +msgid "QSL Queue" msgstr "" #: application/views/interface_assets/header.php:425 +msgid "Labels" +msgstr "" + +#: application/views/interface_assets/header.php:427 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:430 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:431 msgid "HRDLog Logbook" msgstr "" -#: application/views/interface_assets/header.php:435 +#: application/views/interface_assets/header.php:441 msgid "Help" msgstr "" -#: application/views/interface_assets/header.php:436 +#: application/views/interface_assets/header.php:442 msgid "Forum" msgstr "" -#: application/views/interface_assets/header.php:438 +#: application/views/interface_assets/header.php:444 msgid "Logout" msgstr "" -#: application/views/interface_assets/header.php:446 +#: application/views/interface_assets/header.php:452 msgid "Select a Location" msgstr "" -#: application/views/interface_assets/header.php:525 +#: application/views/interface_assets/header.php:531 msgid "Extras" msgstr "" @@ -6689,86 +7313,122 @@ msgid "Start printing at?" msgstr "¿Iniciar impresión desde?" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:405 -#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" -#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/edit.php:23 msgid "LoTW Sent" msgstr "" -#: application/views/logbookadvanced/edit.php:23 +#: application/views/logbookadvanced/edit.php:24 msgid "LoTW Received" msgstr "" -#: application/views/logbookadvanced/edit.php:73 +#: application/views/logbookadvanced/edit.php:75 msgid "SAT Mode" msgstr "" -#: application/views/logbookadvanced/edit.php:87 +#: application/views/logbookadvanced/edit.php:89 msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:174 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:144 msgid "From" msgstr "Desde" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:148 msgid "To" msgstr "a" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:152 +#: application/views/logbookadvanced/index.php:569 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:148 +#: application/views/logbookadvanced/index.php:159 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:224 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:540 +msgid "Invalid" +msgstr "" + +#: application/views/logbookadvanced/index.php:324 msgid "QSL sent" msgstr "QSL enviadas" -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:375 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:397 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:439 #: application/views/lookup/lotwuser.php:12 -#: application/views/qso/edit_ajax.php:394 -#: application/views/qso/edit_ajax.php:427 -#: application/views/qso/edit_ajax.php:455 -#: application/views/qso/edit_ajax.php:468 +#: application/views/qso/edit_ajax.php:421 +#: application/views/qso/edit_ajax.php:454 +#: application/views/qso/edit_ajax.php:482 #: application/views/qso/edit_ajax.php:495 -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 +#: application/views/qso/edit_ajax.php:522 +#: application/views/qso/edit_ajax.php:534 application/views/qso/index.php:576 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:209 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:236 -#: application/views/station_profile/create.php:275 -#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 #: application/views/station_profile/create.php:293 -#: application/views/station_profile/edit.php:330 -#: application/views/station_profile/edit.php:338 -#: application/views/station_profile/edit.php:364 -#: application/views/station_profile/edit.php:385 -#: application/views/station_profile/edit.php:403 -#: application/views/station_profile/edit.php:410 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 +#: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 #: application/views/user/edit.php:347 application/views/user/edit.php:358 #: application/views/user/edit.php:369 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:399 @@ -6776,37 +7436,37 @@ msgstr "QSL enviadas" #: application/views/user/edit.php:540 application/views/user/edit.php:802 #: application/views/user/edit.php:834 application/views/user/edit.php:859 msgid "Yes" -msgstr "Si" +msgstr "Sí" -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 -#: application/views/logbookadvanced/index.php:376 -#: application/views/logbookadvanced/index.php:387 -#: application/views/logbookadvanced/index.php:398 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:440 #: application/views/lookup/lotwuser.php:14 -#: application/views/qso/edit_ajax.php:393 -#: application/views/qso/edit_ajax.php:426 -#: application/views/qso/edit_ajax.php:454 -#: application/views/qso/edit_ajax.php:467 +#: application/views/qso/edit_ajax.php:420 +#: application/views/qso/edit_ajax.php:453 +#: application/views/qso/edit_ajax.php:481 #: application/views/qso/edit_ajax.php:494 -#: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 +#: application/views/qso/edit_ajax.php:521 +#: application/views/qso/edit_ajax.php:533 application/views/qso/index.php:575 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:210 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:237 -#: application/views/station_profile/create.php:276 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/create.php:292 -#: application/views/station_profile/edit.php:331 -#: application/views/station_profile/edit.php:339 -#: application/views/station_profile/edit.php:365 -#: application/views/station_profile/edit.php:386 -#: application/views/station_profile/edit.php:404 -#: application/views/station_profile/edit.php:411 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 #: application/views/user/edit.php:348 application/views/user/edit.php:359 #: application/views/user/edit.php:370 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:400 @@ -6815,34 +7475,34 @@ msgstr "Si" #: application/views/user/edit.php:541 application/views/user/edit.php:803 #: application/views/user/edit.php:833 application/views/user/edit.php:858 msgid "No" -msgstr "" +msgstr "No" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 -#: application/views/logbookadvanced/index.php:389 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:416 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 -#: application/views/qso/edit_ajax.php:396 -#: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:497 application/views/qso/index.php:556 +#: application/views/qso/edit_ajax.php:423 +#: application/views/qso/edit_ajax.php:484 +#: application/views/qso/edit_ajax.php:524 application/views/qso/index.php:578 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:225 -#: application/views/view_log/partial/log_ajax.php:143 -#: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +#: src/QSLManager/QSO.php:273 src/QSLManager/QSO.php:318 msgid "Queued" msgstr "En Cola" -#: application/views/logbookadvanced/index.php:304 -#: application/views/logbookadvanced/index.php:314 -#: application/views/logbookadvanced/index.php:346 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:368 -#: application/views/logbookadvanced/index.php:378 -#: application/views/logbookadvanced/index.php:390 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:373 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:417 +#: application/views/logbookadvanced/index.php:427 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6850,42 +7510,42 @@ msgstr "En Cola" #: application/views/qslprint/qsolist.php:109 #: application/views/qslprint/qsolist.php:174 #: application/views/qslprint/qsolist.php:189 -#: application/views/qso/edit_ajax.php:397 -#: application/views/qso/edit_ajax.php:429 -#: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:470 -#: application/views/qso/edit_ajax.php:498 -#: application/views/qso/edit_ajax.php:509 application/views/qso/index.php:557 +#: application/views/qso/edit_ajax.php:424 +#: application/views/qso/edit_ajax.php:456 +#: application/views/qso/edit_ajax.php:485 +#: application/views/qso/edit_ajax.php:497 +#: application/views/qso/edit_ajax.php:525 +#: application/views/qso/edit_ajax.php:536 application/views/qso/index.php:579 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/search/search_result_ajax.php:305 #: application/views/search/search_result_ajax.php:320 -#: application/views/view_log/partial/log_ajax.php:149 -#: application/views/view_log/partial/log_ajax.php:187 -#: application/views/view_log/partial/log_ajax.php:242 -#: application/views/view_log/partial/log_ajax.php:268 -#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 -#: src/QSLManager/QSO.php:375 src/QSLManager/QSO.php:398 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +#: application/views/view_log/partial/log_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:270 +#: src/QSLManager/QSO.php:279 src/QSLManager/QSO.php:324 +#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:400 msgid "Invalid (Ignore)" msgstr "Inválidas (ignorar)" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:335 msgid "QSL received" msgstr "QSL recibidas" -#: application/views/logbookadvanced/index.php:315 -#: application/views/logbookadvanced/index.php:357 -#: application/views/logbookadvanced/index.php:379 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:428 msgid "Verified" msgstr "Verificado" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:346 msgid "QSL send. method" msgstr "Método de Envío de QSL" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:359 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6894,268 +7554,264 @@ msgstr "Método de Envío de QSL" #: application/views/qslprint/qsolist.php:77 #: application/views/qslprint/qsolist.php:119 #: application/views/qslprint/qsolist.php:210 -#: application/views/qso/edit_ajax.php:408 -#: application/views/qso/edit_ajax.php:441 application/views/qso/index.php:568 +#: application/views/qso/edit_ajax.php:435 +#: application/views/qso/edit_ajax.php:468 application/views/qso/index.php:590 #: application/views/search/search_result_ajax.php:199 #: application/views/search/search_result_ajax.php:241 -#: application/views/view_log/partial/log_ajax.php:162 -#: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +#: src/QSLManager/QSO.php:296 src/QSLManager/QSO.php:339 msgid "Bureau" msgstr "Buró" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:360 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 #: application/views/qslprint/qsolist.php:80 #: application/views/qslprint/qsolist.php:122 #: application/views/qslprint/qsolist.php:211 -#: application/views/qso/edit_ajax.php:407 -#: application/views/qso/edit_ajax.php:440 application/views/qso/index.php:567 +#: application/views/qso/edit_ajax.php:434 +#: application/views/qso/edit_ajax.php:467 application/views/qso/index.php:589 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 -#: application/views/view_log/partial/log_ajax.php:165 -#: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +#: src/QSLManager/QSO.php:299 src/QSLManager/QSO.php:342 msgid "Direct" msgstr "Directo" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 #: application/views/qslprint/qsolist.php:86 #: application/views/qslprint/qsolist.php:128 #: application/views/qslprint/qsolist.php:212 -#: application/views/qso/edit_ajax.php:409 -#: application/views/qso/edit_ajax.php:442 application/views/qso/index.php:569 +#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:591 #: application/views/search/search_result_ajax.php:208 #: application/views/search/search_result_ajax.php:250 -#: application/views/view_log/partial/log_ajax.php:171 -#: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +#: src/QSLManager/QSO.php:305 src/QSLManager/QSO.php:348 msgid "Electronic" msgstr "Electrónico" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:362 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 -#: application/views/qso/edit_ajax.php:410 -#: application/views/qso/edit_ajax.php:443 application/views/qso/index.php:570 +#: application/views/qso/edit_ajax.php:437 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:592 #: application/views/search/search_result_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:206 +#: application/views/view_log/partial/log_ajax.php:208 msgid "Manager" msgstr "" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:356 msgid "QSL recv. method" msgstr "Método de Recepción de QSL" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:366 msgid "LoTW sent" msgstr "Enviado por LoTW" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:377 msgid "LoTW received" msgstr "Recibido por LoTW" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:388 msgid "Clublog sent" msgstr "" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:399 msgid "Clublog received" msgstr "" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:410 msgid "eQSL sent" msgstr "Enviado por eQSL" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "eQSL received" msgstr "Recibido por eQSL" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:436 msgid "QSL Images" msgstr "Imágenes QSL" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:448 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "¡Advertencia! ¿Está seguro que desea eliminar las QSO marcadas?" -#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:451 msgid "With selected: " msgstr "Con los seleccionados: " -#: application/views/logbookadvanced/index.php:425 -#: application/views/qso/edit_ajax.php:595 +#: application/views/logbookadvanced/index.php:452 +#: application/views/qso/edit_ajax.php:622 msgid "Update from Callbook" msgstr "Actualizar de Callbook" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:453 msgid "Queue Bureau" msgstr "En Cola por Buró" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:454 msgid "Queue Direct" msgstr "En Cola por Directa" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Queue Electronic" msgstr "En Cola por Electrónico" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:456 msgid "Sent (Bureau)" msgstr "Enviado (Buró)" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:457 msgid "Sent (Direct)" msgstr "Enviado (Directa)" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Sent (Electronic)" msgstr "Enviado (Electrónico)" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:459 msgid "Not Sent" msgstr "No Enviado" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:460 msgid "QSL Not Required" msgstr "QSL no Requerida" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:462 msgid "Received (Bureau)" msgstr "Recibido (Buró)" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:463 msgid "Received (Direct)" msgstr "Recibido (Directa)" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Received (Electronic)" msgstr "Recibido (Electrónico)" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:465 msgid "Create ADIF" msgstr "Crear ADIF" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:466 msgid "Print Label" msgstr "Imprimir Etiqueta" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "QSL Slideshow" msgstr "Presentación QSL" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:472 msgid "Quicksearch with selected: " msgstr "Búsqueda rápida con seleccionados: " -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:477 msgid "Search DXCC" msgstr "Buscar DXCC" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:480 msgid "Search State" msgstr "Buscar Estado" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Search Gridsquare" msgstr "Buscar Gridsquare" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:486 msgid "Search CQ Zone" msgstr "Buscar Zona CQ" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:492 msgid "Search Mode" msgstr "Buscar Modo" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:495 msgid "Search Band" msgstr "Buscar Banda" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:498 msgid "Search IOTA" msgstr "Buscar IOTA" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:501 msgid "Search SOTA" msgstr "Buscar SOTA" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 msgid "Search POTA" msgstr "Buscar POTA" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:507 msgid "Search WWFF" msgstr "Buscar WWFF" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Search Operator" msgstr "Buscar Operador" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:516 msgid "Quickfilters" msgstr "Filtros rápidos" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "QSL Filters" msgstr "Filtros QSL" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:518 #: application/views/mode/index.php:68 msgid "Filters" msgstr "Filtros" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "No. Resultados" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:527 #: application/views/qso/index.php:272 -#: application/views/station_profile/edit.php:65 +#: application/views/station_profile/edit.php:92 msgid "Location" msgstr "Localización" -#: application/views/logbookadvanced/index.php:506 -msgid "Callsign: " -msgstr "" - -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:539 msgid "Dupes" msgstr "Duplicados" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:547 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:605 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "Mensaje QSL" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:650 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "Mis Refs" @@ -7183,41 +7839,15 @@ msgstr "Incluir Vía" msgid "Column" msgstr "Columna" -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/useroptions.php:152 msgctxt "Map Options" msgid "Layer" msgstr "" -#: application/views/logbookadvanced/useroptions.php:149 +#: application/views/logbookadvanced/useroptions.php:153 msgid "Default on" msgstr "" -#: application/views/logbookadvanced/useroptions.php:154 -#: application/views/stationsetup/exportmapoptions.php:23 -msgctxt "Map Options" -msgid "Path lines" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:158 -msgctxt "Map Options" -msgid "Gridsquares" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:162 -msgctxt "Map Options" -msgid "CQ Zones" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:166 -msgctxt "Map Options" -msgid "ITU Zones" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:170 -msgctxt "Map Options" -msgid "Night Shadow" -msgstr "" - #: application/views/lookup/index.php:8 msgid "US State" msgstr "" @@ -7321,59 +7951,63 @@ msgstr "Certificados disponibles" msgid "Upload Certificate" msgstr "Subir certificado" -#: application/views/lotw_views/index.php:41 +#: application/views/lotw_views/index.php:37 msgid "QSO Start Date" msgstr "Fecha de Inicio de QSO" -#: application/views/lotw_views/index.php:42 +#: application/views/lotw_views/index.php:38 msgid "QSO End Date" msgstr "Fecha Fin de QSO" -#: application/views/lotw_views/index.php:43 +#: application/views/lotw_views/index.php:39 msgid "Date Created" msgstr "Fecha de creación" -#: application/views/lotw_views/index.php:44 +#: application/views/lotw_views/index.php:40 msgid "Date Expires" msgstr "Fecha de caducidad" -#: application/views/lotw_views/index.php:46 -#: application/views/view_log/qso.php:404 +#: application/views/lotw_views/index.php:42 +#: application/views/view_log/qso.php:407 msgid "Last Upload" msgstr "Última subida" -#: application/views/lotw_views/index.php:91 +#: application/views/lotw_views/index.php:87 msgid "Expired" msgstr "Caducado" -#: application/views/lotw_views/index.php:93 +#: application/views/lotw_views/index.php:89 msgid "Expiring" msgstr "Caduca pronto" -#: application/views/lotw_views/index.php:105 +#: application/views/lotw_views/index.php:91 +msgid "Valid" +msgstr "Válido" + +#: application/views/lotw_views/index.php:101 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:108 +#: application/views/lotw_views/index.php:104 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:114 +#: application/views/lotw_views/index.php:110 msgid "Not Synced" msgstr "No sincronizado" -#: application/views/lotw_views/index.php:129 +#: application/views/lotw_views/index.php:125 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:144 +#: application/views/lotw_views/index.php:140 msgid "Information" msgstr "Información" -#: application/views/lotw_views/index.php:149 +#: application/views/lotw_views/index.php:145 msgid "Manual Sync" msgstr "Sincronización manual" @@ -7593,6 +8227,14 @@ msgstr "" msgid "This enables the button to Wavelog's Github page in the public view" msgstr "" +#: application/views/options/appearance.php:107 +msgid "Public Login Button" +msgstr "" + +#: application/views/options/appearance.php:112 +msgid "This enables the button to login to Wavelog in the public view" +msgstr "" + #: application/views/options/dxcluster.php:38 msgid "Provider of DXClusterCache" msgstr "Proveedor de DXClusterCache" @@ -7922,7 +8564,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:64 #: application/views/oqrs/showrequests.php:87 -#: application/views/user/main.php:48 application/views/user/profile.php:24 +#: application/views/user/index.php:48 application/views/user/profile.php:24 msgid "E-mail" msgstr "Email" @@ -7945,21 +8587,21 @@ msgstr "" #: application/views/search/search_result_ajax.php:127 #: application/views/user/edit.php:478 #: application/views/view_log/partial/log.php:22 -#: application/views/view_log/partial/log_ajax.php:86 -#: application/views/view_log/qso.php:503 -#: application/views/view_log/qso.php:507 -#: application/views/view_log/qso.php:511 -#: application/views/view_log/qso.php:515 -#: application/views/view_log/qso.php:521 -#: application/views/view_log/qso.php:528 -#: application/views/view_log/qso.php:535 -#: application/views/view_log/qso.php:542 -#: application/views/view_log/qso.php:549 -#: application/views/view_log/qso.php:556 -#: application/views/view_log/qso.php:563 -#: application/views/view_log/qso.php:570 -#: application/views/view_log/qso.php:577 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log_ajax.php:88 +#: application/views/view_log/qso.php:506 +#: application/views/view_log/qso.php:510 +#: application/views/view_log/qso.php:514 +#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:531 +#: application/views/view_log/qso.php:538 +#: application/views/view_log/qso.php:545 +#: application/views/view_log/qso.php:552 +#: application/views/view_log/qso.php:559 +#: application/views/view_log/qso.php:566 +#: application/views/view_log/qso.php:573 +#: application/views/view_log/qso.php:580 +#: application/views/view_log/qso.php:585 msgid "Station" msgstr "Estación" @@ -7967,10 +8609,10 @@ msgstr "Estación" #: application/views/qslprint/qslprint.php:28 #: application/views/qslprint/qsolist.php:14 #: application/views/qslprint/qsolist.php:83 -#: application/views/qso/index.php:576 +#: application/views/qso/index.php:598 #: application/views/search/search_result_ajax.php:205 -#: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:300 +#: application/views/view_log/partial/log_ajax.php:170 +#: src/QSLManager/QSO.php:302 msgid "Via" msgstr "Vía" @@ -8203,7 +8845,7 @@ msgid "Remove" msgstr "Remover" #: application/views/qslprint/qslprint.php:33 -#: application/views/simplefle/index.php:133 +#: application/views/simplefle/index.php:139 msgid "QSO List" msgstr "Lista de QSOs" @@ -8251,35 +8893,20 @@ msgstr "" "No se encontraron QSOs adicionales. Esto significa que probablemente ya " "están en la cola." -#: application/views/qso/components/winkeysettings.php:7 -#: application/views/qso/components/winkeysettings_results.php:7 -msgid "Winkey Macros" -msgstr "" - -#: application/views/qso/components/winkeysettings.php:12 -#: application/views/qso/components/winkeysettings.php:28 -#: application/views/qso/components/winkeysettings.php:44 -#: application/views/qso/components/winkeysettings.php:60 -#: application/views/qso/components/winkeysettings.php:76 -#: application/views/qso/components/winkeysettings_results.php:12 -#: application/views/qso/components/winkeysettings_results.php:28 -#: application/views/qso/components/winkeysettings_results.php:44 -#: application/views/qso/components/winkeysettings_results.php:60 -#: application/views/qso/components/winkeysettings_results.php:76 -#, php-format -msgid "Function %d - Name" -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:83 -#: application/views/qso/components/winkeysettings_results.php:19 -#: application/views/qso/components/winkeysettings_results.php:35 -#: application/views/qso/components/winkeysettings_results.php:51 -#: application/views/qso/components/winkeysettings_results.php:67 -#: application/views/qso/components/winkeysettings_results.php:83 +#, 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 #, php-format msgid "Function %d - Macro" msgstr "" @@ -8305,7 +8932,8 @@ msgid "RX Band" msgstr "" #: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:346 -#: application/views/view_log/qso.php:542 +#: application/views/reg1test/index.php:114 +#: application/views/view_log/qso.php:545 msgid "Transmit Power (W)" msgstr "Potencia de transmisión (W)" @@ -8317,10 +8945,6 @@ msgstr "Especifique el valor de potencia en Watios (W). Incluya solo números." msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:177 -msgid "QTH" -msgstr "" - #: application/views/qso/edit_ajax.php:258 msgid "Sat Name" msgstr "" @@ -8329,69 +8953,85 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:356 application/views/qso/index.php:255 -#: application/views/qso/index.php:500 application/views/user/edit.php:599 -#: application/views/view_log/qso.php:332 -#: application/views/view_log/qso.php:582 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:545 +msgid "Antenna Azimuth (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:547 +msgid "Antenna azimuth in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:274 application/views/qso/index.php:551 +msgid "Antenna Elevation (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:276 application/views/qso/index.php:553 +msgid "Antenna elevation in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:383 application/views/qso/index.php:255 +#: application/views/qso/index.php:510 application/views/user/edit.php:599 +#: application/views/view_log/qso.php:335 +#: application/views/view_log/qso.php:585 msgid "Sig Info" msgstr "Información de señal" -#: application/views/qso/edit_ajax.php:369 +#: application/views/qso/edit_ajax.php:396 msgid "Notes (for internal usage only)" msgstr "" -#: application/views/qso/edit_ajax.php:403 +#: application/views/qso/edit_ajax.php:430 msgid "Sent Method" msgstr "" -#: application/views/qso/edit_ajax.php:406 -#: application/views/qso/edit_ajax.php:439 application/views/qso/index.php:563 -#: application/views/qso/index.php:566 +#: application/views/qso/edit_ajax.php:433 +#: application/views/qso/edit_ajax.php:466 application/views/qso/index.php:585 +#: application/views/qso/index.php:588 msgid "Method" msgstr "Método" -#: application/views/qso/edit_ajax.php:416 +#: application/views/qso/edit_ajax.php:443 msgid "Sent Via" msgstr "" -#: application/views/qso/edit_ajax.php:430 -#: application/views/qso/edit_ajax.php:471 -#: application/views/qso/edit_ajax.php:510 +#: application/views/qso/edit_ajax.php:457 +#: application/views/qso/edit_ajax.php:498 +#: application/views/qso/edit_ajax.php:537 msgid "Verified (Match)" msgstr "" -#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:463 msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:477 application/views/qso/index.php:583 +#: application/views/qso/edit_ajax.php:504 application/views/qso/index.php:605 msgid "This note content is exported to QSL services like eqsl.cc." msgstr "El contenido de esta nota es exportado a servicios QSL como eqsl.cc." -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:586 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:608 msgid "Get the default message for eQSL, for this station." msgstr "Obtener el mensaje por defecto para eQSL, para esta estación." -#: application/views/qso/edit_ajax.php:530 +#: application/views/qso/edit_ajax.php:557 msgid "Change Station Profile" msgstr "" -#: application/views/qso/edit_ajax.php:576 +#: application/views/qso/edit_ajax.php:603 msgid "Exchange (R)" msgstr "" -#: application/views/qso/edit_ajax.php:581 +#: application/views/qso/edit_ajax.php:608 msgid "Exchange (S)" msgstr "" -#: application/views/qso/edit_ajax.php:593 +#: application/views/qso/edit_ajax.php:620 #: application/views/search/search_result_ajax.php:432 #: application/views/view_log/partial/log.php:156 -#: application/views/view_log/partial/log_ajax.php:346 +#: application/views/view_log/partial/log_ajax.php:348 msgid "Delete QSO" msgstr "Eliminar QSO" -#: application/views/qso/edit_ajax.php:596 +#: application/views/qso/edit_ajax.php:623 msgid "Save changes" msgstr "" @@ -8399,7 +9039,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "TimeOff es menor que TimeOn" -#: application/views/qso/index.php:5 application/views/qso/index.php:694 +#: application/views/qso/index.php:5 application/views/qso/index.php:718 msgid "Previous Contacts" msgstr "Contactos previos" @@ -8439,23 +9079,23 @@ msgstr "Hora fin" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:149 -#: application/views/station_profile/edit.php:191 -#: application/views/user/edit.php:583 application/views/view_log/qso.php:282 -#: application/views/view_log/qso.php:549 +#: application/views/qso/index.php:196 application/views/qso/index.php:449 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 +#: application/views/user/edit.php:583 application/views/view_log/qso.php:285 +#: application/views/view_log/qso.php:552 msgid "IOTA Reference" msgstr "Referencia IOTA" -#: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:165 -#: application/views/station_profile/edit.php:219 -#: application/views/user/edit.php:587 application/views/view_log/qso.php:289 -#: application/views/view_log/qso.php:556 +#: application/views/qso/index.php:212 application/views/qso/index.php:466 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 +#: application/views/user/edit.php:587 application/views/view_log/qso.php:292 +#: application/views/view_log/qso.php:559 msgid "SOTA Reference" msgstr "Referencia SOTA" -#: application/views/qso/index.php:322 application/views/view_log/qso.php:98 +#: application/views/qso/index.php:322 application/views/view_log/qso.php:100 msgid "Frequency (RX)" msgstr "Frecuencia (Recepción)" @@ -8463,39 +9103,39 @@ msgstr "Frecuencia (Recepción)" msgid "Band (RX)" msgstr "Banda (Recepción)" -#: application/views/qso/index.php:458 +#: application/views/qso/index.php:468 msgid "For example: GM/NS-001." msgstr "Por ejemplo: GM/NS-001." -#: application/views/qso/index.php:471 +#: application/views/qso/index.php:481 msgid "For example: DLFF-0069." msgstr "Por ejemplo: DLFF-0069." -#: application/views/qso/index.php:484 +#: application/views/qso/index.php:494 msgid "For example: PA-0150. Multiple values allowed." msgstr "Por ejemplo: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:496 +#: application/views/qso/index.php:506 msgid "For example: GMA" msgstr "Por ejemplo: GMA" -#: application/views/qso/index.php:502 +#: application/views/qso/index.php:512 msgid "For example: DA/NW-357" msgstr "Por ejemplo: DA/NW-357" -#: application/views/qso/index.php:510 +#: application/views/qso/index.php:520 msgid "For example: Q03" msgstr "Por ejemplo: Q03" -#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +#: application/views/qso/index.php:529 application/views/view_log/qso.php:210 msgid "Satellite Name" msgstr "Nombre del Satélite" -#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +#: application/views/qso/index.php:537 application/views/view_log/qso.php:217 msgid "Satellite Mode" msgstr "Modo del Satélite" -#: application/views/qso/index.php:538 +#: application/views/qso/index.php:560 msgid "" "Note content is used within Wavelog only and is not exported to other " "services." @@ -8503,27 +9143,47 @@ msgstr "" "El contenido es usado solo dentro de Wavelog y no es exportado a otros " "servicios." -#: application/views/qso/index.php:604 +#: application/views/qso/index.php:626 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:645 +#: application/views/qso/index.php:667 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:647 +#: application/views/qso/index.php:669 msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:678 +msgid "Stop" +msgstr "" + +#: application/views/qso/index.php:679 +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:680 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:686 +msgid "CW Speed" +msgstr "" + +#: application/views/qso/index.php:691 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:701 msgid "Suggestions" msgstr "Sugerencias" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:708 msgid "Profile Picture" msgstr "Imagen de Perfil" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:732 msgid "Max. 5 previous contacts are shown" msgstr "Se muestra máx. de 5 contactos previos" @@ -8552,6 +9212,137 @@ msgstr "" #: application/views/radio/index.php:27 msgid "Please wait..." +msgstr "Por favor espera..." + +#: application/views/reg1test/index.php:6 +msgid "Select Band" +msgstr "" + +#: application/views/reg1test/index.php:8 +msgid "" +"Bands below 50Mhz are not valid for the EDI REG1TEST format and will produce " +"invalid files." +msgstr "" + +#: application/views/reg1test/index.php:18 +msgid "Export a contest to a REG1TEST EDI log" +msgstr "" + +#: application/views/reg1test/index.php:48 +msgid "Sent Exchange" +msgstr "" + +#: application/views/reg1test/index.php:50 +msgid "" +"The exchange which was sent during the contest. Can be any type of " +"information, e.g. Province, DOK, County, State, Power, Name. Max. length: 6 " +"characters." +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:66 +msgid "Callsign of responsible operator" +msgstr "" + +#: application/views/reg1test/index.php:72 +msgid "" +"List of all operators. Seperated with a semicolon ';'. The responsible " +"operator is not needed here." +msgstr "" + +#: application/views/reg1test/index.php:75 +msgid "Contest Address 1" +msgstr "" + +#: application/views/reg1test/index.php:77 +msgid "Address of the QTH used during the contest." +msgstr "" + +#: application/views/reg1test/index.php:80 +msgid "Contest Address 2" +msgstr "" + +#: application/views/reg1test/index.php:84 +msgid "Operator Address 1" +msgstr "" + +#: application/views/reg1test/index.php:86 +msgid "Address of the responsible operator." +msgstr "" + +#: application/views/reg1test/index.php:89 +msgid "Operator Address 2" +msgstr "" + +#: application/views/reg1test/index.php:93 +msgid "Operator Address Postalcode" +msgstr "" + +#: application/views/reg1test/index.php:97 +msgid "Operator Address City" +msgstr "" + +#: application/views/reg1test/index.php:101 +msgid "Operator Address Country" +msgstr "" + +#: application/views/reg1test/index.php:105 +msgid "Operator Phone Number" +msgstr "" + +#: application/views/reg1test/index.php:109 +msgid "Transmit Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:111 +msgid "Short description of the used equipment." +msgstr "" + +#: application/views/reg1test/index.php:116 +msgid "TX Power during the contest in Watt." +msgstr "" + +#: application/views/reg1test/index.php:119 +msgid "Receive Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:121 +msgid "If you used another gear for RX, then describe it here." +msgstr "" + +#: application/views/reg1test/index.php:124 +msgid "Antenna Description" +msgstr "" + +#: application/views/reg1test/index.php:126 +msgid "What kind of antenna was used." +msgstr "" + +#: application/views/reg1test/index.php:129 +msgid "Antenna Height Above Ground (m)" +msgstr "" + +#: application/views/reg1test/index.php:131 +msgid "Height of the antenna above the ground." +msgstr "" + +#: application/views/reg1test/index.php:134 +msgid "Band multiplicator" +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:141 +msgid "Any other remarks." msgstr "" #: application/views/satellite/create.php:23 @@ -8643,10 +9434,71 @@ msgstr "" msgid "Satellite passes" msgstr "" -#: application/views/satellite/pass.php:548 +#: application/views/satellite/pass.php:8 +msgid "Min. Satellite Elevation" +msgstr "" + +#: application/views/satellite/pass.php:12 +msgid "Min. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:20 +msgid "Max. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:32 +msgid "Altitude (meters)" +msgstr "" + +#: application/views/satellite/pass.php:36 application/views/user/edit.php:179 +msgid "Timezone" +msgstr "Zona horaria" + +#: application/views/satellite/pass.php:479 +msgid "Min. time" +msgstr "" + +#: application/views/satellite/pass.php:487 +msgid "Max. time" +msgstr "" + +#: application/views/satellite/pass.php:504 msgid "Load predictions" msgstr "" +#: application/views/satellite/passtable.php:6 +msgid "AOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:7 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "" + +#: application/views/satellite/passtable.php:8 +msgid "AOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:9 +msgid "AOS El" +msgstr "" + +#: application/views/satellite/passtable.php:10 +msgid "Max El" +msgstr "" + +#: application/views/satellite/passtable.php:11 +msgid "LOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:12 +msgid "LOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:13 +msgid "LOS El" +msgstr "" + #: application/views/sattimers/index.php:15 #, php-format msgid "" @@ -8667,10 +9519,6 @@ msgstr "" msgid "Max Elevation" msgstr "" -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "" - #: application/views/search/cqzones.php:5 #: application/views/search/lotw_unconfirmed.php:5 #: application/views/search/main.php:5 @@ -8777,50 +9625,50 @@ msgstr "" #: application/views/search/search_result_ajax.php:409 #: application/views/view_log/partial/log.php:140 -#: application/views/view_log/partial/log_ajax.php:323 +#: application/views/view_log/partial/log_ajax.php:325 msgid "Mark QSL Sent (Bureau)" msgstr "Marcar QSL como Enviada (Buró)" #: application/views/search/search_result_ajax.php:410 #: application/views/view_log/partial/log.php:141 -#: application/views/view_log/partial/log_ajax.php:324 +#: application/views/view_log/partial/log_ajax.php:326 msgid "Mark QSL Sent (Direct)" msgstr "Marcar QSL como Enviada (Directa)" #: application/views/search/search_result_ajax.php:417 #: application/views/view_log/partial/log.php:148 -#: application/views/view_log/partial/log_ajax.php:333 -#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log_ajax.php:335 +#: application/views/view_log/qso.php:655 msgid "Mark QSL Received (Bureau)" msgstr "Marcar QSL como Recibida (Buró)" #: application/views/search/search_result_ajax.php:418 #: application/views/view_log/partial/log.php:149 -#: application/views/view_log/partial/log_ajax.php:334 -#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log_ajax.php:336 +#: application/views/view_log/qso.php:657 msgid "Mark QSL Received (Direct)" msgstr "Marcar QSL como Recibida (Directa)" #: application/views/search/search_result_ajax.php:419 #: application/views/view_log/partial/log.php:150 -#: application/views/view_log/partial/log_ajax.php:325 +#: application/views/view_log/partial/log_ajax.php:327 msgid "Mark QSL Card Requested" msgstr "Marcar QSL como Solicitada" #: application/views/search/search_result_ajax.php:420 #: application/views/view_log/partial/log.php:151 -#: application/views/view_log/partial/log_ajax.php:326 -#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log_ajax.php:328 +#: application/views/view_log/qso.php:669 msgid "Mark QSL Card Not Required" msgstr "Marcar QSL como no Requerida" #: application/views/search/search_result_ajax.php:426 -#: application/views/view_log/partial/log_ajax.php:340 +#: application/views/view_log/partial/log_ajax.php:342 msgid "Lookup on QRZ.com" msgstr "Buscar en QRZ.com" #: application/views/search/search_result_ajax.php:428 -#: application/views/view_log/partial/log_ajax.php:342 +#: application/views/view_log/partial/log_ajax.php:344 msgid "Lookup on HamQTH" msgstr "Buscar en HamQTH" @@ -8861,7 +9709,7 @@ msgid "" msgstr "" #: application/views/simplefle/index.php:17 -#: application/views/simplefle/index.php:170 +#: application/views/simplefle/index.php:176 msgid "Syntax Help" msgstr "Ayuda de Sintaxis" @@ -8963,8 +9811,8 @@ msgstr "Indicativo/Localización de la Estación" #: application/views/simplefle/index.php:107 #, php-format msgid "" -"If you did operate from a new location, first create a new Station Location" +"If you did operate from a new location, first create a new %sStation " +"Location%s" msgstr "" #: application/views/simplefle/index.php:112 @@ -8979,25 +9827,24 @@ msgstr "" msgid "Enter the Data" msgstr "Introduzca los Datos" -#: application/views/simplefle/index.php:148 +#: application/views/simplefle/index.php:154 msgid "Refs" msgstr "" -#: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +#: application/views/simplefle/index.php:166 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" msgstr "" -"Las Referencias deben ser SOTA, IOTA, POTA o WWFF" -#: application/views/simplefle/index.php:167 +#: application/views/simplefle/index.php:173 msgid "Reload QSO List" msgstr "Recargar Lista de QSO" -#: application/views/simplefle/index.php:168 +#: application/views/simplefle/index.php:174 msgid "Save in Wavelog" msgstr "Guardar en Wavelog" -#: application/views/simplefle/index.php:169 +#: application/views/simplefle/index.php:175 msgid "Clear Logging Session" msgstr "Limpiar Sesión de Registro" @@ -9073,124 +9920,123 @@ msgstr "" #: application/views/simplefle/syntax_help.php:28 #, php-format -msgctxt "uses 'this article'" msgid "" -"A full summary of all commands and the necessary syntax can be found in %s " -"of our Wiki." +"A full summary of all commands and the necessary syntax can be found in " +"%sthis article%s of our Wiki." msgstr "" -#: application/views/station_profile/create.php:51 -#: application/views/station_profile/edit.php:40 +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:52 -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:59 -#: application/views/station_profile/edit.php:48 +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 msgid "Station callsign. For example: 4W7EST/P" msgstr "Indicativo de llamada de la Estación. Ejemplo: 4W7EST/P" -#: application/views/station_profile/create.php:63 -#: application/views/station_profile/edit.php:52 +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 msgid "Station Power (W)" msgstr "Potencia de la Estación (W)" -#: application/views/station_profile/create.php:65 -#: application/views/station_profile/edit.php:54 +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" "Potencia de la estación por defecto en Vatios. Puede ser sobreescrito por " "CAT." -#: application/views/station_profile/create.php:68 -#: application/views/station_profile/edit.php:69 +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 msgid "Station DXCC" msgstr "DXCC de la Estación" -#: application/views/station_profile/create.php:71 -#: application/views/station_profile/edit.php:72 +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 msgctxt "DXCC selection" msgid "None" msgstr "Ninguno" -#: application/views/station_profile/create.php:78 -#: application/views/station_profile/edit.php:85 +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:83 -#: application/views/station_profile/edit.php:91 +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 msgid "Station City" msgstr "Ciudad de la Estación" -#: application/views/station_profile/create.php:85 -#: application/views/station_profile/edit.php:93 +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:94 -#: application/views/station_profile/edit.php:105 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 msgid "Station state. Applies to certain countries only." msgstr "" -#: application/views/station_profile/create.php:99 -#: application/views/station_profile/edit.php:110 +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 msgid "Station County" msgstr "Condado de la Estación" -#: application/views/station_profile/create.php:101 -#: application/views/station_profile/edit.php:112 +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "Condado de la Estación (Solo se usa en USA/Alaska/Hawaii)." -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/edit.php:138 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:138 -#: application/views/station_profile/edit.php:155 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 msgid "click here" msgstr "haga clic aquí" -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/edit.php:155 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:135 -#: application/views/station_profile/edit.php:167 -#: application/views/station_profile/edit.php:170 +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 msgid "Station Gridsquare" msgstr "Gridsquare de la Estación" -#: application/views/station_profile/create.php:140 -#: application/views/station_profile/edit.php:175 +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 msgid "Get Gridsquare" msgstr "Obtener Gridsquare" -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 #, php-format msgctxt "uses 'click here'" msgid "" @@ -9198,8 +10044,8 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:145 -#: application/views/station_profile/edit.php:180 +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." @@ -9207,95 +10053,95 @@ msgstr "" "Si está localizado justo en una línea de la malla, introduzca múltiples " "gridsquares separados con comas. por ejemplo: IO77,IO78,IO87,IO88." -#: application/views/station_profile/create.php:160 -#: application/views/station_profile/edit.php:205 +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 msgid "Station IOTA reference. For example: EU-005" msgstr "Referencia IOTA de la Estación. Ejemplo: EU-005" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 #, php-format msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:183 -#: application/views/station_profile/edit.php:260 +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 msgid "Signature Name" msgstr "Nombre de la Firma" -#: application/views/station_profile/create.php:185 -#: application/views/station_profile/edit.php:262 +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 msgid "Station Signature (e.g. GMA).." msgstr "Firma de la Estación (ej. GMA)." -#: application/views/station_profile/create.php:189 -#: application/views/station_profile/edit.php:266 +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 msgid "Signature Information" msgstr "Información de la Firma" -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/edit.php:268 +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "Información de la Firma de la Estación (ej. DA/NW-357)." -#: application/views/station_profile/create.php:195 -#: application/views/station_profile/edit.php:281 +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:197 -#: application/views/station_profile/edit.php:283 +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "El Apodo del QTH como está configurado en su perfil de eQSL" -#: application/views/station_profile/create.php:201 -#: application/views/station_profile/edit.php:286 +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 msgid "Default QSLMSG" msgstr "QSLMSG por Defecto" -#: application/views/station_profile/create.php:204 -#: application/views/station_profile/edit.php:289 +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." @@ -9303,217 +10149,153 @@ msgstr "" "Defina un mensaje por defecto que será añadido y enviado para cada QSO para " "esta localización de estación." -#: application/views/station_profile/create.php:207 -#: application/views/station_profile/edit.php:328 +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:212 -#: application/views/station_profile/edit.php:333 +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " "Clublog. If this is deactivated on it's own please check if the Call is " "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:215 -#: application/views/station_profile/edit.php:336 +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 msgid "ClubLog Realtime Upload" msgstr "Subida en Tiempo Real en ClubLog" -#: application/views/station_profile/create.php:224 -#: application/views/station_profile/edit.php:352 +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 msgid "HRDLog.net Username" msgstr "Nombre de Usuario de HRDLog.net" -#: application/views/station_profile/create.php:226 -#: application/views/station_profile/edit.php:354 +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" "El nombre de usuario con el que se registró en HRDlog.net (usualmente su " "indicativo)." -#: application/views/station_profile/create.php:229 -#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 msgid "HRDLog.net API Key" msgstr "Código API de HRDLog.net" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:234 -#: application/views/station_profile/edit.php:362 +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 msgid "HRDLog.net Logbook Realtime Upload" msgstr "Subida en Tiempo Real del Libro de Guardia a HRDLog.net" -#: application/views/station_profile/create.php:243 -#: application/views/station_profile/edit.php:297 +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 msgid "Subscription Required" msgstr "Requiere Suscripción" -#: application/views/station_profile/create.php:248 +#: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/edit.php:310 +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 msgid "QRZ.com Logbook Upload" msgstr "Subida del Libro de Guardia a QRZ.com" -#: application/views/station_profile/create.php:260 -#: application/views/station_profile/edit.php:313 +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:268 -#: application/views/station_profile/edit.php:378 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:273 -#: application/views/station_profile/edit.php:383 +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 msgid "QO-100 Dx Club Realtime Upload" msgstr "Subida en Tiempo Real del Libro de Guardia a QO-100 Dx Club" -#: application/views/station_profile/create.php:283 -#: application/views/station_profile/edit.php:401 +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 msgid "OQRS Enabled" msgstr "Activar OQRS" -#: application/views/station_profile/create.php:290 -#: application/views/station_profile/edit.php:408 +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 msgid "OQRS Email alert" msgstr "Alerta de Email de OQRS" -#: application/views/station_profile/create.php:295 -#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 msgid "Make sure email is set up under admin and global options." msgstr "" "Asegúrese que su correo está bien configurado en las opciones globales y de " "administrador." -#: application/views/station_profile/create.php:298 -#: application/views/station_profile/edit.php:416 +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 msgid "OQRS Text" msgstr "Texto OQRS" -#: application/views/station_profile/create.php:300 -#: application/views/station_profile/edit.php:418 +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 msgid "Some info you want to add regarding QSL'ing." msgstr "Algúna información que desee agregar acerca de su forma de hacer QSL." -#: application/views/station_profile/edit.php:122 +#: application/views/station_profile/edit.php:149 msgid "Zones" msgstr "Zonas" -#: application/views/station_profile/edit.php:257 +#: application/views/station_profile/edit.php:284 msgid "Signature" msgstr "Firma" -#: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:95 -msgid "" -"Station Locations define operating locations, such as your QTH, a friends " -"QTH, or a portable station." -msgstr "" -"Las localizaciones de Estación le permiten definir localizaciones de " -"operación, como su QTH, el QTH de un amigo o una estación portable." - -#: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:96 -msgid "Similar to logbooks, a station profile keeps a set of QSOs together." -msgstr "" -"De forma similar a los libros de guardia, un perfil de estación mantiene " -"asociado un conjunto de QSOs." - -#: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:97 -msgid "" -"Only one station may be active at a time. In the table below this is shown " -"with the -Active Station- badge." -msgstr "" -"Solo una estación puede estar activa en cualquier momento. En la tabla de " -"abajo esta se muestra con la etiqueta de -Estación Activa-." - -#: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:101 -msgid "Create a Station Location" -msgstr "Crear una Localización de Estación" - -#: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:105 -msgid "" -"Attention: You need to set an active station location. Go to Callsign-" -">Station Location to select one." -msgstr "" -"Atención: Debe configurar una Localización de Estación como activa. vaya a " -"Indicativo->Localización de Estación para seleccionar una." - -#: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:111 -msgid "" -"Due to recent changes within Wavelog you need to reassign QSOs to your " -"station profiles." -msgstr "" -"Debido a cambios recientes en Wavelog, debe reasignar sus QSO a sus perfiles " -"de estación." - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Maintenance" -msgstr "Mantenimiento" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Please reassign them at " -msgstr "Por favor, reasignelas en " - -#: application/views/station_profile/index.php:41 -#: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:122 -msgid "Profile Name" -msgstr "Nombre de Perfil" - #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "Nombre del Libro de Guardia de Estación" @@ -9561,6 +10343,11 @@ msgstr "Seleccionar Localizaciones de Estación Disponibles" msgid "Link Location" msgstr "Enlazar Localización" +#: application/views/stationsetup/linkedlocations.php:31 +#: application/views/stationsetup/stationsetup.php:122 +msgid "Profile Name" +msgstr "Nombre de Perfil" + #: application/views/stationsetup/linkedlocations.php:34 msgid "Unlink Station Location" msgstr "Desenlazar la Localización de la Estación" @@ -9590,12 +10377,62 @@ msgstr "" msgid "Station Locations" msgstr "" +#: application/views/stationsetup/stationsetup.php:95 +msgid "" +"Station Locations define operating locations, such as your QTH, a friends " +"QTH, or a portable station." +msgstr "" +"Las localizaciones de Estación le permiten definir localizaciones de " +"operación, como su QTH, el QTH de un amigo o una estación portable." + +#: application/views/stationsetup/stationsetup.php:96 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" +"De forma similar a los libros de guardia, un perfil de estación mantiene " +"asociado un conjunto de QSOs." + +#: application/views/stationsetup/stationsetup.php:97 +msgid "" +"Only one station may be active at a time. In the table below this is shown " +"with the -Active Station- badge." +msgstr "" +"Solo una estación puede estar activa en cualquier momento. En la tabla de " +"abajo esta se muestra con la etiqueta de -Estación Activa-." + #: application/views/stationsetup/stationsetup.php:98 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." msgstr "" +#: application/views/stationsetup/stationsetup.php:101 +msgid "Create a Station Location" +msgstr "Crear una Localización de Estación" + +#: application/views/stationsetup/stationsetup.php:105 +msgid "" +"Attention: You need to set an active station location. Go to Callsign-" +">Station Location to select one." +msgstr "" +"Atención: Debe configurar una Localización de Estación como activa. vaya a " +"Indicativo->Localización de Estación para seleccionar una." + +#: application/views/stationsetup/stationsetup.php:111 +msgid "" +"Due to recent changes within Wavelog you need to reassign QSOs to your " +"station profiles." +msgstr "" +"Debido a cambios recientes en Wavelog, debe reasignar sus QSO a sus perfiles " +"de estación." + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Maintenance" +msgstr "Mantenimiento" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Please reassign them at " +msgstr "Por favor, reasignelas en " + #: application/views/stationsetup/stationsetup.php:127 msgid "Linked" msgstr "" @@ -9815,9 +10652,10 @@ msgid "4. Step" msgstr "" #: application/views/themes/index.php:73 +#, php-format msgid "" "Click here on 'Add a Theme' and type in the necessary data. Type in the " -"filenames for the logos without the file extension '.png'" +"filenames for the logos %swithout%s the file extension '.png'" msgstr "" #: application/views/themes/index.php:83 @@ -9880,6 +10718,10 @@ msgstr "" msgid "Update DXCC Data" msgstr "" +#: application/views/update/index.php:30 +msgid "Status:" +msgstr "" + #: application/views/update/index.php:34 msgid "Apply DXCC Data to Logbook" msgstr "" @@ -9893,36 +10735,43 @@ msgid "" "\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." msgstr "" -#: application/views/update/index.php:40 +#: application/views/update/index.php:45 msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:54 application/views/update/index.php:95 msgid "Re-check all QSOs in logbook" msgstr "" -#: application/views/update/index.php:45 +#: application/views/update/index.php:59 msgid "Apply Continent Data to Logbook" msgstr "" -#: application/views/update/index.php:47 +#: application/views/update/index.php:61 msgid "" "This function can be used to update QSO continent information for all QSOs " "in Wavelog missing that information." msgstr "" -#: application/views/update/index.php:49 +#: application/views/update/index.php:68 msgid "Check QSOs missing continent data" msgstr "" -#: application/views/update/index.php:59 +#: application/views/update/index.php:80 msgid "Here you can update QSOs with missing distance information." msgstr "" -#: application/views/update/index.php:60 +#: application/views/update/index.php:86 msgid "Update distance data" msgstr "" +#: application/views/update/index.php:89 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" + #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "Eliminar Cuenta de Usuario" @@ -9952,13 +10801,13 @@ msgid "General Information" msgstr "Información General" #: application/views/user/edit.php:52 application/views/user/login.php:58 -#: application/views/user/login.php:67 application/views/user/login.php:68 +#: application/views/user/login.php:69 application/views/user/login.php:70 #: application/views/user/profile.php:14 msgid "Username" -msgstr "Nombre de Usuario" +msgstr "Nombre de usuario" #: application/views/user/edit.php:64 application/views/user/login.php:59 -#: application/views/user/login.php:71 application/views/user/login.php:72 +#: application/views/user/login.php:73 application/views/user/login.php:74 #: application/views/user/reset_password.php:21 #: application/views/user/reset_password.php:23 #: application/views/user/reset_password.php:30 @@ -10003,10 +10852,6 @@ msgstr "" "Seleccione el lenguaje de Wavelog a mostrar cuando inicie sesión en su " "cuenta." -#: application/views/user/edit.php:179 -msgid "Timezone" -msgstr "Zona Horaria" - #: application/views/user/edit.php:187 msgid "Date Format" msgstr "Formato de Fecha" @@ -10356,6 +11201,126 @@ msgstr "¿Olvidó su contraseña?" msgid "You can reset your password here." msgstr "Puede reinicializar su contraseña aquí." +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "" + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "Lista de Usuarios" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "Wavelog necesita al menos un usuario configurado para operar." + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" +"Los usuarios pueden tener roles que les entregan diferentes permisos, como " +"añadir QSOs al libro de guardia y acceder a las APIs de Wavelog." + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" +"El usuario actualmente en sesión se muestra en la parte superior derecha de " +"la página." + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "Crear usuario" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "Tipo" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "" @@ -10370,100 +11335,17 @@ msgstr "" #: application/views/user/login.php:60 #, php-format -msgid "" -"More Information about Wavelog on Github." +msgid "More Information about Wavelog on %sGithub%s." msgstr "" -#: application/views/user/login.php:77 +#: application/views/user/login.php:79 msgid "Forgot your password?" msgstr "¿Olvidó su contraseña?" -#: application/views/user/login.php:83 +#: application/views/user/login.php:85 msgid "Keep me logged in" msgstr "" -#: application/views/user/main.php:2 -msgid "Do you really want to send this user a password-reset link?" -msgstr "" - -#: application/views/user/main.php:6 -msgid "Please Wait ..." -msgstr "" - -#: application/views/user/main.php:9 -msgid "Password-reset e-mail sent to user:" -msgstr "" - -#: application/views/user/main.php:30 -msgid "User List" -msgstr "Lista de Usuarios" - -#: application/views/user/main.php:33 -msgid "Wavelog needs at least one user configured in order to operate." -msgstr "Wavelog necesita al menos un usuario configurado para operar." - -#: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" -"Los usuarios pueden tener roles que les entregan diferentes permisos, como " -"añadir QSOs al libro de guardia y acceder a las APIs de Wavelog." - -#: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "" -"El usuario actualmente en sesión se muestra en la parte superior derecha de " -"la página." - -#: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." -msgstr "" - -#: application/views/user/main.php:38 -msgid "Create user" -msgstr "Crear usuario" - -#: application/views/user/main.php:39 -msgid "Refresh List" -msgstr "" - -#: application/views/user/main.php:49 -msgid "Type" -msgstr "Tipo" - -#: application/views/user/main.php:50 -msgid "Last seen" -msgstr "" - -#: application/views/user/main.php:53 -msgid "Password Reset" -msgstr "" - -#: application/views/user/main.php:79 -msgid "Never" -msgstr "" - -#: application/views/user/main.php:83 -msgid "Locations" -msgstr "" - -#: application/views/user/main.php:85 -msgid "Logbooks" -msgstr "" - -#: application/views/user/main.php:87 -msgid "Last QSO:" -msgstr "" - -#: application/views/user/main.php:89 -msgid "No QSOs in Log" -msgstr "" - #: application/views/user/profile.php:19 msgid "Level" msgstr "" @@ -10513,118 +11395,118 @@ msgstr "Detalles de QSO" msgid "QSL Management" msgstr "Gestión de QSL" -#: application/views/view_log/qso.php:128 +#: application/views/view_log/qso.php:131 msgid "Total Distance" msgstr "Distancia total" -#: application/views/view_log/qso.php:221 +#: application/views/view_log/qso.php:224 msgid "Antenna Azimuth" msgstr "" -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:231 msgid "Antenna Elevation" msgstr "" -#: application/views/view_log/qso.php:370 +#: application/views/view_log/qso.php:373 msgid "QSL Card has been sent via the bureau" msgstr "La QSL se envió vía buró" -#: application/views/view_log/qso.php:372 +#: application/views/view_log/qso.php:375 msgid "QSL Card has been sent via direct" msgstr "La QSL se envió via directa" -#: application/views/view_log/qso.php:374 +#: application/views/view_log/qso.php:377 msgid "QSL Card has been sent electronically" msgstr "La QSL fue enviada electrónicamente" -#: application/views/view_log/qso.php:376 +#: application/views/view_log/qso.php:379 msgid "QSL Card has been sent via manager" msgstr "La QSL fue enviada vía manager" -#: application/views/view_log/qso.php:378 +#: application/views/view_log/qso.php:381 msgid "QSL Card has been sent" msgstr "La QSL se envió" -#: application/views/view_log/qso.php:387 +#: application/views/view_log/qso.php:390 msgid "QSL Card has been received via the bureau" msgstr "La QSL se recibió via buró" -#: application/views/view_log/qso.php:389 +#: application/views/view_log/qso.php:392 msgid "QSL Card has been received via direct" msgstr "La QSL se recibió vía directa" -#: application/views/view_log/qso.php:391 +#: application/views/view_log/qso.php:394 msgid "QSL Card has been received electronically" msgstr "La QSL fue recibida electrónicamente" -#: application/views/view_log/qso.php:393 +#: application/views/view_log/qso.php:396 msgid "QSL Card has been received via manager" msgstr "La QSL fue recibida vía manager" -#: application/views/view_log/qso.php:395 +#: application/views/view_log/qso.php:398 msgid "QSL Card has been received" msgstr "La QSL fue recibida" -#: application/views/view_log/qso.php:404 +#: application/views/view_log/qso.php:407 msgid "This station uses LoTW." msgstr "Esta estacion usa LoTW." -#: application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:414 -#: application/views/view_log/qso.php:419 -#: application/views/view_log/qso.php:424 +#: application/views/view_log/qso.php:412 +#: application/views/view_log/qso.php:417 +#: application/views/view_log/qso.php:422 +#: application/views/view_log/qso.php:427 msgid "This QSO was confirmed on" msgstr "Esta QSO fue confirmada en" -#: application/views/view_log/qso.php:435 +#: application/views/view_log/qso.php:438 msgid "More QSOs" msgstr "Más QSOs" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:506 msgid "Details" msgstr "Detalles" -#: application/views/view_log/qso.php:630 +#: application/views/view_log/qso.php:633 msgid "Uploaded QSL Card front image" msgstr "Imagen delantera de la QSL subida" -#: application/views/view_log/qso.php:635 +#: application/views/view_log/qso.php:638 msgid "Upload QSL Card image" msgstr "Subir QSL" -#: application/views/view_log/qso.php:640 +#: application/views/view_log/qso.php:643 msgid "Uploaded QSL Card back image" msgstr "Imagen trasera de la QSL subida" -#: application/views/view_log/qso.php:656 +#: application/views/view_log/qso.php:659 msgid "Mark QSL Received (Electronic)" msgstr "Marcar QSL como Recibida (Electrónico)" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:665 msgid "Mark QSL Card Requested (Bureau)" msgstr "Marcar QSL como Solicitada (Buró)" -#: application/views/view_log/qso.php:664 +#: application/views/view_log/qso.php:667 msgid "Mark QSL Card Requested (Direct)" msgstr "Marcar QSL como Solicitada (Directa)" -#: application/views/view_log/qso.php:679 +#: application/views/view_log/qso.php:682 msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:242 msgid "CSV" msgstr "" -#: application/views/visitor/layout/header.php:75 +#: application/views/visitor/layout/header.php:74 msgid "OQRS" msgstr "" -#: application/views/visitor/layout/header.php:83 +#: application/views/visitor/layout/header.php:82 msgid "Visit Wavelog on Github" msgstr "" -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Please enter a callsign!" msgstr "" @@ -10713,6 +11595,33 @@ msgstr "" msgid "Submit Request" msgstr "" +#~ msgid "Key Disabled" +#~ msgstr "Key desactivada" + +#~ msgid "No Key Found" +#~ msgstr "Key no encontrada" + +#~ msgid "Key Invalid - either not found or disabled" +#~ msgstr "Key Inválida - no se encontró o está desactivada" + +#~ msgid "" +#~ "If selected, Wavelog will try to import all QSO's of the ADIF, " +#~ "regardless if they match to the chosen station-location." +#~ msgstr "" +#~ "Si se selecciona, Wavelog intentará importar todos los QSOs del " +#~ "ADIF, sin importar si concuerdan con la estación/localización " +#~ "seleccionada." + +#~ msgid "contacts were plotted.
Your furthest contact was with" +#~ msgstr "contactos fueron dibujados.
Su contacto más lejano fue con" + +#~ msgid "" +#~ "The Refs can be either SOTA, IOTA, POTA or WWFF" +#~ msgstr "" +#~ "Las Referencias deben ser SOTA, IOTA, POTA o WWFF" + #~ msgid "API Key is required do not change this field" #~ msgstr "Se requiere la API Key no cambiar este campo" diff --git a/application/locale/fi_FI/LC_MESSAGES/messages.mo b/application/locale/fi_FI/LC_MESSAGES/messages.mo index c450d12c8..a3bf1dba8 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 cd7bbd87a..064d87c78 100644 --- a/application/locale/fi_FI/LC_MESSAGES/messages.po +++ b/application/locale/fi_FI/LC_MESSAGES/messages.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-09 07:24+0000\n" -"PO-Revision-Date: 2024-07-09 13:25+0000\n" +"POT-Creation-Date: 2024-09-07 07:18+0000\n" +"PO-Revision-Date: 2024-08-17 10:47+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Finnish \n" @@ -15,10 +15,104 @@ 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.6\n" +"X-Generator: Weblate 5.6.2\n" -#: application/controllers/Accumulated.php:21 -#: application/views/interface_assets/header.php:150 +#: application/controllers/Accumulated.php:12 +#: application/controllers/Activators.php:13 +#: application/controllers/Activatorsmap.php:13 +#: application/controllers/Adif.php:13 application/controllers/Awards.php:16 +#: application/controllers/Backup.php:13 application/controllers/Backup.php:26 +#: application/controllers/Backup.php:63 application/controllers/Band.php:15 +#: application/controllers/Bandmap.php:9 +#: application/controllers/Cabrillo.php:16 +#: application/controllers/Cabrillo.php:53 +#: application/controllers/Cabrillo.php:80 +#: application/controllers/Cabrillo.php:135 +#: application/controllers/Calltester.php:11 +#: application/controllers/Cfdexport.php:18 +#: application/controllers/Cfdexport.php:29 +#: application/controllers/Components.php:13 +#: application/controllers/Contestcalendar.php:15 +#: application/controllers/Contesting.php:14 +#: application/controllers/Cron.php:26 application/controllers/Cron.php:162 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: application/controllers/Distancerecords.php:11 +#: application/controllers/Distances.php:11 +#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29 +#: application/controllers/Dxatlas.php:51 +#: application/controllers/Dxatlas.php:108 +#: application/controllers/Dxcalendar.php:8 +#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23 +#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 +#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 +#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:353 +#: application/controllers/Eqsl.php:420 application/controllers/Eqsl.php:436 +#: application/controllers/Eqsl.php:497 application/controllers/Hamsat.php:13 +#: application/controllers/Kmlexport.php:18 +#: application/controllers/Kmlexport.php:33 +#: application/controllers/Labels.php:26 +#: application/controllers/Logbookadvanced.php:16 +#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 +#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 +#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 +#: application/controllers/Notes.php:10 application/controllers/Options.php:15 +#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 +#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 +#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 +#: application/controllers/Qso.php:9 application/controllers/Qso.php:19 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:600 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Reg1test.php:18 +#: application/controllers/Reg1test.php:63 +#: application/controllers/Reg1test.php:102 +#: application/controllers/Reg1test.php:130 +#: application/controllers/Reg1test.php:164 +#: application/controllers/Satellite.php:18 +#: application/controllers/Satellite.php:37 +#: application/controllers/Satellite.php:44 +#: application/controllers/Satellite.php:53 +#: application/controllers/Satellite.php:72 +#: application/controllers/Satellite.php:87 +#: application/controllers/Satellite.php:95 +#: application/controllers/Satellite.php:103 +#: application/controllers/Satellite.php:117 +#: application/controllers/Satellite.php:135 +#: application/controllers/Satellite.php:146 +#: application/controllers/Satellite.php:162 +#: application/controllers/Satellite.php:190 +#: application/controllers/Satellite.php:201 +#: application/controllers/Satellite.php:223 +#: application/controllers/Satellite.php:236 +#: application/controllers/Satellite.php:244 +#: application/controllers/Sattimers.php:9 +#: application/controllers/Search.php:13 +#: application/controllers/Simplefle.php:7 +#: application/controllers/Station.php:17 +#: application/controllers/Stationsetup.php:15 +#: application/controllers/Themes.php:17 +#: application/controllers/Timeline.php:10 +#: application/controllers/Timeplotter.php:11 +#: application/controllers/Update.php:24 application/controllers/Update.php:273 +#: application/controllers/Update.php:284 +#: application/controllers/Update.php:295 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 +#: application/controllers/User_options.php:9 +msgid "You're not allowed to do that!" +msgstr "" + +#: application/controllers/Accumulated.php:19 +#: application/views/interface_assets/header.php:152 msgid "Accumulated Statistics" msgstr "Kertyneet tilastot" @@ -28,24 +122,26 @@ msgid "Activated Gridsquare Map" msgstr "" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:910 -#: application/controllers/Awards.php:942 +#: application/controllers/Awards.php:919 +#: application/controllers/Awards.php:951 #: application/controllers/Gridmap.php:31 -#: application/controllers/Visitor.php:374 -#: application/views/activators/index.php:101 +#: application/controllers/Visitor.php:385 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: application/views/visitor/layout/footer.php:22 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "" #: application/controllers/Activated_gridmap.php:32 #: application/controllers/Gridmap.php:32 -#: application/controllers/Visitor.php:375 +#: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "" #: application/controllers/Activated_gridmap.php:33 #: application/controllers/Gridmap.php:33 -#: application/controllers/Visitor.php:376 +#: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "" @@ -54,12 +150,13 @@ msgid "Total gridsquares activated" msgstr "" #: application/controllers/Activators.php:20 -#: application/views/activators/index.php:2 +#: application/views/activators/index.php:5 #: application/views/interface_assets/header.php:142 msgid "Gridsquare Activators" msgstr "" #: application/controllers/Activatorsmap.php:17 +#: application/views/activators/index.php:2 msgid "Activators Map" msgstr "" @@ -76,7 +173,7 @@ msgid "ADIF Export" msgstr "" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:388 msgid "ADIF Import / Export" msgstr "ADIF Tuonti / Vienti" @@ -89,20 +186,25 @@ msgstr "" msgid "Unsupported Filetype" msgstr "" -#: application/controllers/Adif.php:245 +#: application/controllers/Adif.php:240 +#: application/views/adif/import_failed.php:12 +msgid "ADIF Import failed!" +msgstr "" + +#: application/controllers/Adif.php:254 msgid "Station Profile not valid for User" msgstr "" -#: application/controllers/Adif.php:252 +#: application/controllers/Adif.php:261 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "" -#: application/controllers/Adif.php:263 +#: application/controllers/Adif.php:272 msgid "DCL Import" msgstr "" -#: application/controllers/Adif.php:319 +#: application/controllers/Adif.php:328 msgid "DCL Data Imported" msgstr "" @@ -132,25 +234,8 @@ msgstr "" msgid "API Key %s has been deleted" msgstr "" -#: application/controllers/Api.php:118 -msgid "Key Disabled" -msgstr "" - -#: application/controllers/Api.php:118 -msgid "No Key Found" -msgstr "" - -#: application/controllers/Api.php:120 -msgid "Key Invalid - either not found or disabled" -msgstr "" - -#: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 -msgid "Valid" -msgstr "Voimassa" - #: application/controllers/Awards.php:22 -#: application/views/interface_assets/header.php:158 +#: application/views/interface_assets/header.php:160 #: application/views/qso/edit_ajax.php:35 msgid "Awards" msgstr "Awardit" @@ -165,12 +250,13 @@ msgstr "Awardit" #: application/controllers/Awards.php:652 #: application/controllers/Awards.php:714 #: application/controllers/Awards.php:776 -#: application/controllers/Awards.php:847 -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:930 -#: application/controllers/Awards.php:1125 -#: application/controllers/Awards.php:1615 -#: application/controllers/Awards.php:1755 +#: application/controllers/Awards.php:856 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:939 +#: application/controllers/Awards.php:1140 +#: application/controllers/Awards.php:1639 +#: application/controllers/Awards.php:1779 +#: application/controllers/Awards.php:1908 #, php-format msgid "Awards - %s" msgstr "" @@ -178,13 +264,13 @@ msgstr "" #: application/controllers/Awards.php:92 #: application/views/awards/dok/index.php:149 #: application/views/bands/index.php:47 -#: application/views/contesting/index.php:170 -#: application/views/interface_assets/header.php:194 -#: application/views/logbookadvanced/index.php:613 +#: application/views/contesting/index.php:53 +#: application/views/interface_assets/header.php:198 +#: application/views/logbookadvanced/index.php:641 #: application/views/logbookadvanced/useroptions.php:130 -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:264 -#: application/views/qso/index.php:508 application/views/user/edit.php:603 -#: application/views/view_log/qso.php:351 +#: application/views/qso/edit_ajax.php:388 application/views/qso/index.php:264 +#: application/views/qso/index.php:518 application/views/user/edit.php:603 +#: application/views/view_log/qso.php:354 msgid "DOK" msgstr "" @@ -192,15 +278,15 @@ msgstr "" #: application/views/bandmap/list.php:112 application/views/bands/index.php:48 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 -#: application/views/interface_assets/header.php:164 +#: application/views/interface_assets/header.php:166 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:145 -#: application/views/logbookadvanced/index.php:580 +#: application/views/logbookadvanced/index.php:156 +#: application/views/logbookadvanced/index.php:608 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 -#: application/views/lotw_views/index.php:40 +#: application/views/lotw_views/index.php:36 #: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 #: application/views/search/cqzones_result.php:15 #: application/views/search/result.php:27 @@ -215,12 +301,12 @@ msgid "Awards - WAJA" msgstr "" #: application/controllers/Awards.php:327 application/views/bands/index.php:51 -#: application/views/interface_assets/header.php:210 +#: application/views/interface_assets/header.php:214 msgid "JCC" msgstr "" #: application/controllers/Awards.php:375 application/views/bands/index.php:57 -#: application/views/interface_assets/header.php:170 +#: application/views/interface_assets/header.php:172 msgid "VUCC" msgstr "" @@ -229,15 +315,20 @@ msgid "Log View - VUCC" msgstr "" #: application/controllers/Awards.php:453 -#: application/controllers/Timeline.php:92 -#: application/controllers/Timeline.php:95 -#: application/controllers/Timeline.php:98 -#: application/controllers/Timeline.php:101 -#: application/controllers/Timeline.php:104 -#: application/controllers/Timeline.php:107 +#: application/controllers/Distancerecords.php:59 +#: application/controllers/Timeline.php:105 +#: application/controllers/Timeline.php:108 +#: application/controllers/Timeline.php:111 +#: application/controllers/Timeline.php:114 +#: application/controllers/Timeline.php:117 +#: application/controllers/Timeline.php:120 msgid "Log View" msgstr "" +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr "" + #: application/controllers/Awards.php:457 msgid " and sat " msgstr "" @@ -259,12 +350,12 @@ msgid " and " msgstr "" #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1289 #: application/views/awards/index.php:8 application/views/bands/index.php:55 #: application/views/dashboard/index.php:9 -#: application/views/interface_assets/header.php:178 -#: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:259 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -272,10 +363,10 @@ msgstr "" #: application/views/qslcard/searchresult.php:49 #: application/views/qslcard/searchresult.php:65 #: application/views/qslcard/searchresult.php:81 -#: application/views/qso/components/previous_contacts.php:83 -#: application/views/qso/edit_ajax.php:336 +#: application/views/qso/components/previous_contacts.php:82 +#: application/views/qso/edit_ajax.php:363 #: application/views/search/search_result_ajax.php:9 -#: application/views/station_profile/edit.php:216 +#: application/views/station_profile/edit.php:243 #: application/views/user/edit.php:234 application/views/user/edit.php:256 #: application/views/user/edit.php:278 application/views/user/edit.php:300 #: application/views/user/edit.php:323 @@ -285,18 +376,18 @@ msgid "SOTA" msgstr "" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1290 #: application/views/bands/index.php:60 #: application/views/dashboard/index.php:10 -#: application/views/interface_assets/header.php:172 -#: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:279 +#: application/views/interface_assets/header.php:176 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/index.php:290 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 -#: application/views/qso/components/previous_contacts.php:84 -#: application/views/qso/edit_ajax.php:341 +#: application/views/qso/components/previous_contacts.php:83 +#: application/views/qso/edit_ajax.php:368 #: application/views/search/search_result_ajax.php:10 -#: application/views/station_profile/edit.php:229 +#: application/views/station_profile/edit.php:256 #: application/views/user/edit.php:235 application/views/user/edit.php:257 #: application/views/user/edit.php:279 application/views/user/edit.php:301 #: application/views/user/edit.php:324 @@ -305,18 +396,18 @@ msgid "WWFF" msgstr "" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1291 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 -#: application/views/interface_assets/header.php:182 +#: application/views/interface_assets/header.php:186 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:274 +#: application/views/logbookadvanced/index.php:623 #: application/views/logbookadvanced/useroptions.php:106 -#: application/views/qso/components/previous_contacts.php:85 -#: application/views/qso/edit_ajax.php:346 +#: application/views/qso/components/previous_contacts.php:84 +#: application/views/qso/edit_ajax.php:373 #: application/views/search/search_result_ajax.php:11 -#: application/views/station_profile/edit.php:242 +#: application/views/station_profile/edit.php:269 #: application/views/user/edit.php:236 application/views/user/edit.php:258 #: application/views/user/edit.php:280 application/views/user/edit.php:302 #: application/views/user/edit.php:325 @@ -335,7 +426,7 @@ msgid "Worked All States (WAS)" msgstr "" #: application/controllers/Awards.php:714 application/views/bands/index.php:53 -#: application/views/interface_assets/header.php:188 +#: application/views/interface_assets/header.php:192 msgid "RAC" msgstr "" @@ -343,74 +434,80 @@ msgstr "" msgid "H26" msgstr "" -#: application/controllers/Awards.php:847 +#: application/controllers/Awards.php:856 msgid "IOTA (Island On The Air)" msgstr "" -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:872 -#: application/views/interface_assets/header.php:230 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 +#: application/views/interface_assets/header.php:234 msgid "US Counties" msgstr "" -#: application/controllers/Awards.php:887 +#: application/controllers/Awards.php:896 msgid "Log View - Counties" msgstr "" -#: application/controllers/Awards.php:894 +#: application/controllers/Awards.php:903 msgid "Awards - " msgstr "" -#: application/controllers/Awards.php:911 -#: application/controllers/Awards.php:943 +#: application/controllers/Awards.php:920 +#: application/controllers/Awards.php:952 msgid "Gridsquares worked" msgstr "" -#: application/controllers/Awards.php:912 -#: application/controllers/Awards.php:944 +#: application/controllers/Awards.php:921 +#: application/controllers/Awards.php:953 msgid "Gridsquares confirmed on LoTW" msgstr "" -#: application/controllers/Awards.php:913 -#: application/controllers/Awards.php:945 +#: application/controllers/Awards.php:922 +#: application/controllers/Awards.php:954 msgid "Gridsquares confirmed by paper QSL" msgstr "" -#: application/controllers/Awards.php:930 +#: application/controllers/Awards.php:939 msgid "Fred Fish Memorial Award (FFMA)" msgstr "" -#: application/controllers/Awards.php:1125 -#: application/views/interface_assets/header.php:168 +#: application/controllers/Awards.php:1140 +#: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "" -#: application/controllers/Awards.php:1143 +#: application/controllers/Awards.php:1158 msgid "Awards - SIG - " msgstr "" -#: application/controllers/Awards.php:1755 -#: application/views/awards/itu/index.php:18 +#: application/controllers/Awards.php:1779 +#: application/views/awards/itu/index.php:20 msgid "ITU Zones" msgstr "" +#: application/controllers/Awards.php:1908 +#: application/views/awards/wac/index.php:8 +#: application/views/interface_assets/header.php:174 +msgid "Worked All Continents (WAC)" +msgstr "" + #: application/controllers/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:284 msgid "Backup" msgstr "Varmuuskopiot" -#: application/controllers/Backup.php:48 +#: application/controllers/Backup.php:50 msgid "ADIF - Backup" msgstr "" -#: application/controllers/Backup.php:80 +#: application/controllers/Backup.php:84 msgid "Notes - Backup" msgstr "" #: application/controllers/Band.php:25 application/views/bands/index.php:28 #: application/views/bands/index.php:32 -#: application/views/interface_assets/header.php:379 +#: application/views/interface_assets/header.php:383 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -426,8 +523,8 @@ msgstr "" #: application/controllers/Bandmap.php:28 #: application/controllers/Bandmap.php:69 -#: application/controllers/Options.php:137 -#: application/controllers/Options.php:148 +#: application/controllers/Options.php:145 +#: application/controllers/Options.php:156 #: application/views/options/sidebar.php:10 msgid "DXCluster" msgstr "" @@ -437,7 +534,7 @@ msgid "Export Cabrillo" msgstr "" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:396 +#: application/views/interface_assets/header.php:402 msgid "CFD Export" msgstr "" @@ -454,7 +551,7 @@ msgid "No user has configured Clublog." msgstr "" #: application/controllers/Contestcalendar.php:19 -#: application/views/interface_assets/header.php:247 +#: application/views/interface_assets/header.php:251 msgid "Contest Calendar" msgstr "" @@ -463,38 +560,62 @@ msgstr "" msgid "Contest Logging" msgstr "Kilpailuloki" -#: application/controllers/Contesting.php:112 -#: application/views/interface_assets/header.php:274 +#: application/controllers/Contesting.php:113 +#: application/views/interface_assets/header.php:278 msgid "Contests" msgstr "Kontestit" -#: application/controllers/Contesting.php:126 +#: application/controllers/Contesting.php:127 msgid "Update Contest" msgstr "" #: application/controllers/Continents.php:25 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:57 -#: application/views/interface_assets/header.php:154 +#: application/views/interface_assets/header.php:156 msgid "Continents" msgstr "Mantereet" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:284 +#: application/views/interface_assets/header.php:288 msgid "Cron Manager" msgstr "" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:154 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "" +#: application/controllers/Cron.php:274 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:278 +#, php-format +msgid "" +"Last run occurred more than %s seconds ago.%sPlease check your master cron! " +"It should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:281 +#, php-format +msgid "" +"Last run occurred more than %s minutes ago.%sSeems like your Mastercron " +"isn't running!%sIt should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:286 application/views/cron/index.php:29 +msgctxt "Master Cron" +msgid "Not running" +msgstr "" + #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:392 +#: application/views/interface_assets/header.php:396 msgid "SOTA CSV Export" msgstr "" -#: application/controllers/Dashboard.php:108 -#: application/controllers/Visitor.php:132 +#: application/controllers/Dashboard.php:123 +#: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "" @@ -541,6 +662,12 @@ msgstr "" msgid "File Migration failed. Please check the Error Log." msgstr "" +#: application/controllers/Distancerecords.php:42 +#: application/controllers/Distancerecords.php:59 +#: application/views/interface_assets/header.php:146 +msgid "Satellite Distance Records" +msgstr "" + #: application/controllers/Distances.php:17 #: application/views/distances/index.php:5 #: application/views/distances/index.php:8 @@ -548,27 +675,31 @@ msgstr "" msgid "Distances Worked" msgstr "Workitut etäisyydet" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 #: application/views/distances/index.php:15 msgid "QSOs with" msgstr "" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 msgid "and band" msgstr "" +#: application/controllers/Distances.php:83 +msgid "and propagation" +msgstr "" + #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:394 msgid "DX Atlas Gridsquare Export" msgstr "DX Atlas Gridsquare Vienti" #: application/controllers/Dxcalendar.php:10 -#: application/views/interface_assets/header.php:245 +#: application/views/interface_assets/header.php:249 msgid "DX Calendar" msgstr "" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:325 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -586,19 +717,19 @@ msgstr "" msgid "eQSL QSO Upload" msgstr "" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:424 msgid "eQSL Tools" msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid " / Errors: " msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid "Successfully downloaded: " msgstr "" -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:481 msgid "eQSL Card Image Download" msgstr "" @@ -608,7 +739,7 @@ msgid "Gridsquare Map" msgstr "Gridsquare-kartta" #: application/controllers/Gridmap.php:34 -#: application/controllers/Visitor.php:377 +#: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "" @@ -628,7 +759,7 @@ msgid "No QSOs found to upload." msgstr "" #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:392 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "" @@ -641,59 +772,59 @@ msgstr "" msgid "Create Label Type" msgstr "" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:402 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:406 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:403 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:407 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 #: application/views/labels/index.php:76 msgid "Paper Type" msgstr "" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:404 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:408 #: application/views/labels/index.php:42 application/views/labels/index.php:77 msgid "Measurement" msgstr "" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:405 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:409 msgid "Top Margin" msgstr "" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:406 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:410 msgid "Left Margin" msgstr "" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:407 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:411 msgid "QSLs Horizontally" msgstr "" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:408 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:412 msgid "QSLs Vertically" msgstr "" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:409 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:413 msgid "Horizontal Space" msgstr "" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:410 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:414 msgid "Vertical Space" msgstr "" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:411 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:415 msgid "Label width" msgstr "" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:412 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:416 msgid "Label height" msgstr "" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:413 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:417 msgid "Size of Font" msgstr "" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:414 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:418 msgid "Number of QSOs on label" msgstr "" @@ -702,22 +833,22 @@ msgid "Create Paper Type" msgstr "" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:461 +#: application/controllers/Labels.php:465 msgid "Paper Name" msgstr "" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:462 +#: application/controllers/Labels.php:466 msgid "Paper Width" msgstr "" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:463 +#: application/controllers/Labels.php:467 msgid "Paper Height" msgstr "" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:471 +#: application/controllers/Labels.php:475 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -744,27 +875,27 @@ msgstr "" msgid "0 QSOs found for print!" msgstr "" -#: application/controllers/Labels.php:391 +#: application/controllers/Labels.php:395 msgid "Edit Label" msgstr "" -#: application/controllers/Labels.php:420 +#: application/controllers/Labels.php:424 msgid "Label was saved." msgstr "" -#: application/controllers/Labels.php:428 +#: application/controllers/Labels.php:432 msgid "Label was deleted." msgstr "" -#: application/controllers/Labels.php:450 +#: application/controllers/Labels.php:454 msgid "Edit Paper" msgstr "" -#: application/controllers/Labels.php:475 +#: application/controllers/Labels.php:479 msgid "Paper was saved." msgstr "" -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "Paper was deleted." msgstr "" @@ -786,20 +917,20 @@ msgstr "" msgid "Logbook" msgstr "Lokikirja" -#: application/controllers/Logbook.php:653 -#: application/controllers/Logbook.php:668 +#: application/controllers/Logbook.php:657 +#: application/controllers/Logbook.php:672 #: application/views/activated_gridmap/index.php:58 #: application/views/awards/dok/index.php:55 #: application/views/awards/dxcc/index.php:61 -#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/helvetia/index.php:55 #: application/views/awards/jcc/index.php:52 -#: application/views/awards/rac/index.php:45 +#: application/views/awards/rac/index.php:47 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:72 -#: application/views/awards/waja/index.php:53 -#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:55 +#: application/views/awards/was/index.php:55 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:568 +#: application/views/logbookadvanced/index.php:596 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -812,20 +943,21 @@ msgstr "Lokikirja" msgid "QSL" msgstr "" -#: application/controllers/Logbook.php:656 +#: application/controllers/Logbook.php:660 #: application/views/activated_gridmap/index.php:66 -#: application/views/awards/cq/index.php:58 +#: application/views/awards/cq/index.php:60 #: application/views/awards/dok/index.php:59 #: application/views/awards/dxcc/index.php:65 -#: application/views/awards/helvetia/index.php:57 -#: application/views/awards/itu/index.php:58 +#: application/views/awards/helvetia/index.php:59 +#: application/views/awards/itu/index.php:60 #: application/views/awards/jcc/index.php:56 -#: application/views/awards/rac/index.php:49 +#: application/views/awards/rac/index.php:51 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:80 -#: application/views/awards/waja/index.php:57 -#: application/views/awards/was/index.php:57 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -833,28 +965,29 @@ msgstr "" #: application/views/qslprint/qsolist.php:21 #: application/views/qslprint/qsolist.php:167 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:384 +#: application/views/qso/edit_ajax.php:411 #: application/views/search/result_search.php:22 #: application/views/search/search_result_ajax.php:298 #: application/views/search/search_result_ajax.php:313 #: application/views/timeline/index.php:60 application/views/user/edit.php:563 -#: application/views/user/edit.php:659 application/views/view_log/qso.php:408 +#: application/views/user/edit.php:659 application/views/view_log/qso.php:411 msgid "LoTW" msgstr "" -#: application/controllers/Logbook.php:659 +#: application/controllers/Logbook.php:663 #: application/views/activated_gridmap/index.php:74 -#: application/views/awards/cq/index.php:62 +#: application/views/awards/cq/index.php:64 #: application/views/awards/dok/index.php:63 #: application/views/awards/dxcc/index.php:69 -#: application/views/awards/helvetia/index.php:61 -#: application/views/awards/itu/index.php:62 +#: application/views/awards/helvetia/index.php:63 +#: application/views/awards/itu/index.php:64 #: application/views/awards/jcc/index.php:60 -#: application/views/awards/rac/index.php:53 +#: application/views/awards/rac/index.php:55 #: application/views/awards/wab/index.php:88 -#: application/views/awards/waja/index.php:61 -#: application/views/awards/was/index.php:61 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:52 +#: application/views/awards/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:117 #: application/views/logbookadvanced/useroptions.php:70 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 @@ -862,63 +995,67 @@ msgstr "" #: application/views/qslprint/qsolist.php:18 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:151 -#: application/views/qso/edit_ajax.php:381 +#: application/views/qso/edit_ajax.php:408 #: application/views/search/result_search.php:16 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:273 -#: application/views/station_profile/edit.php:278 +#: application/views/station_profile/edit.php:305 #: application/views/timeline/index.php:64 application/views/user/edit.php:564 #: application/views/user/edit.php:667 application/views/user/edit.php:731 msgid "eQSL" msgstr "" -#: application/controllers/Logbook.php:665 +#: application/controllers/Logbook.php:669 #: application/views/awards/dok/index.php:71 #: application/views/awards/dxcc/index.php:77 #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 -#: application/views/awards/waja/index.php:69 +#: application/views/awards/waja/index.php:71 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 -#: application/views/station_profile/edit.php:325 +#: application/views/station_profile/edit.php:352 +#: application/views/timeline/index.php:68 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 -#: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/partial/log_ajax.php:85 +#: application/views/view_log/qso.php:426 msgid "Clublog" msgstr "" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1284 #: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:39 #: application/views/adif/dcl_success.php:33 -#: application/views/awards/cq/index.php:86 +#: application/views/awards/cq/index.php:88 #: application/views/awards/dok/index.php:91 #: application/views/awards/dxcc/index.php:162 -#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/helvetia/index.php:87 #: application/views/awards/iota/index.php:105 -#: application/views/awards/itu/index.php:86 +#: application/views/awards/itu/index.php:88 #: application/views/awards/jcc/index.php:88 -#: application/views/awards/rac/index.php:77 +#: application/views/awards/rac/index.php:79 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:53 -#: application/views/awards/waja/index.php:89 -#: application/views/awards/was/index.php:85 +#: application/views/awards/wac/index.php:110 +#: application/views/awards/waja/index.php:91 +#: application/views/awards/was/index.php:87 #: application/views/components/hamsat/table.php:30 -#: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:203 +#: application/views/contesting/index.php:108 +#: application/views/contesting/index.php:250 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 +#: 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/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:170 -#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/index.php:181 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -935,14 +1072,14 @@ msgstr "" #: application/views/qslcard/searchresult.php:76 #: application/views/qslprint/qslprint.php:24 #: application/views/qslprint/qsolist.php:9 -#: application/views/qso/components/previous_contacts.php:78 +#: application/views/qso/components/previous_contacts.php:77 #: application/views/qso/edit_ajax.php:119 application/views/qso/index.php:136 #: application/views/satellite/index.php:24 #: application/views/search/cqzones_result.php:10 #: application/views/search/lotw_unconfirmed_result.php:8 #: application/views/search/result_search.php:7 #: application/views/search/search_result_ajax.php:4 -#: application/views/simplefle/index.php:144 +#: application/views/simplefle/index.php:150 #: application/views/statistics/custom.php:60 #: application/views/statistics/custom_result.php:62 #: application/views/statistics/custom_result.php:88 @@ -954,17 +1091,17 @@ msgstr "" #: application/views/user/edit.php:295 application/views/user/edit.php:318 #: application/views/view_log/partial/log.php:9 #: application/views/view_log/partial/log_ajax.php:4 -#: application/views/view_log/qso.php:104 application/views/visitor/index.php:6 +#: application/views/view_log/qso.php:107 application/views/visitor/index.php:6 #: application/views/widgets/qsos.php:29 msgid "Mode" msgstr "Lähetelaji" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1285 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:111 -#: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:547 +#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:251 +#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -973,25 +1110,25 @@ msgstr "Lähetelaji" #: application/views/qslcard/searchresult.php:77 #: application/views/qslprint/qslprint.php:26 #: application/views/qslprint/qsolist.php:11 -#: application/views/qso/components/previous_contacts.php:79 +#: application/views/qso/components/previous_contacts.php:78 #: application/views/qso/edit_ajax.php:142 application/views/qso/index.php:177 #: application/views/search/search_result_ajax.php:5 -#: application/views/simplefle/index.php:145 +#: application/views/simplefle/index.php:151 #: application/views/user/edit.php:230 application/views/user/edit.php:252 #: application/views/user/edit.php:274 application/views/user/edit.php:296 #: application/views/user/edit.php:319 #: application/views/view_log/partial/log.php:10 #: application/views/view_log/partial/log_ajax.php:5 -#: application/views/view_log/qso.php:109 application/views/visitor/index.php:9 +#: application/views/view_log/qso.php:112 application/views/visitor/index.php:9 msgid "RST (S)" msgstr "" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1286 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:550 +#: application/views/contesting/index.php:189 +#: application/views/contesting/index.php:252 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1000,51 +1137,50 @@ msgstr "" #: application/views/qslcard/searchresult.php:78 #: application/views/qslprint/qslprint.php:27 #: application/views/qslprint/qsolist.php:12 -#: application/views/qso/components/previous_contacts.php:80 +#: application/views/qso/components/previous_contacts.php:79 #: application/views/qso/edit_ajax.php:147 application/views/qso/index.php:182 #: application/views/search/search_result_ajax.php:6 -#: application/views/simplefle/index.php:146 +#: application/views/simplefle/index.php:152 #: application/views/user/edit.php:231 application/views/user/edit.php:253 #: application/views/user/edit.php:275 application/views/user/edit.php:297 #: application/views/user/edit.php:320 #: application/views/view_log/partial/log.php:11 #: application/views/view_log/partial/log_ajax.php:6 -#: application/views/view_log/qso.php:114 +#: application/views/view_log/qso.php:117 #: application/views/visitor/index.php:12 msgid "RST (R)" msgstr "" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1287 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 #: application/views/qslcard/searchresult.php:47 #: application/views/qslcard/searchresult.php:63 #: application/views/qslcard/searchresult.php:79 -#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/components/previous_contacts.php:80 #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 -#: application/views/station_profile/index.php:43 #: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 -#: application/views/timeline/index.php:118 application/views/user/edit.php:232 +#: application/views/timeline/index.php:151 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 #: application/views/user/edit.php:298 application/views/user/edit.php:321 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:235 -#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:238 +#: application/views/view_log/qso.php:531 #: application/views/visitor/index.php:15 msgid "Country" msgstr "Maa" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1288 #: application/views/awards/iota/index.php:169 #: application/views/bands/index.php:50 application/views/dashboard/index.php:8 -#: application/views/interface_assets/header.php:180 +#: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1053,11 +1189,11 @@ msgstr "Maa" #: application/views/qslcard/searchresult.php:48 #: application/views/qslcard/searchresult.php:64 #: application/views/qslcard/searchresult.php:80 -#: application/views/qso/components/previous_contacts.php:82 -#: application/views/qso/edit_ajax.php:318 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 -#: application/views/timeline/index.php:202 application/views/user/edit.php:233 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:235 application/views/user/edit.php:233 #: application/views/user/edit.php:255 application/views/user/edit.php:277 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/view_log/partial/log_ajax.php:8 @@ -1065,17 +1201,17 @@ msgstr "Maa" msgid "IOTA" msgstr "" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1292 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:20 -#: application/views/awards/rac/index.php:141 -#: application/views/awards/was/index.php:149 -#: application/views/contesting/index.php:173 +#: application/views/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 +#: application/views/contesting/index.php:56 #: application/views/dashboard/index.php:12 -#: application/views/logbookadvanced/edit.php:20 -#: application/views/logbookadvanced/edit.php:64 -#: application/views/logbookadvanced/index.php:162 -#: application/views/logbookadvanced/index.php:583 +#: application/views/logbookadvanced/edit.php:21 +#: application/views/logbookadvanced/edit.php:66 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:611 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1083,9 +1219,9 @@ msgstr "" #: application/views/qslcard/searchresult.php:50 #: application/views/qslcard/searchresult.php:66 #: application/views/qslcard/searchresult.php:82 -#: application/views/qso/components/previous_contacts.php:86 +#: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 -#: application/views/timeline/index.php:177 application/views/user/edit.php:237 +#: application/views/timeline/index.php:210 application/views/user/edit.php:237 #: application/views/user/edit.php:259 application/views/user/edit.php:281 #: application/views/user/edit.php:303 application/views/user/edit.php:326 #: application/views/view_log/partial/log_ajax.php:12 @@ -1093,20 +1229,21 @@ msgstr "" msgid "State" msgstr "osavaltio" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1293 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:17 -#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:13 +#: application/views/distancerecords/index.php:20 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:166 -#: application/views/logbookadvanced/index.php:556 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1115,38 +1252,39 @@ msgstr "osavaltio" #: application/views/qslcard/searchresult.php:51 #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 -#: application/views/qso/components/previous_contacts.php:87 +#: application/views/qso/components/previous_contacts.php:86 #: application/views/qso/edit_ajax.php:156 application/views/qso/index.php:279 +#: application/views/satellite/pass.php:28 #: application/views/search/cqzones_result.php:12 #: application/views/search/result.php:33 #: application/views/search/search_result_ajax.php:13 -#: application/views/simplefle/index.php:147 -#: application/views/station_profile/index.php:44 +#: application/views/simplefle/index.php:153 #: application/views/stationsetup/stationsetup.php:125 -#: application/views/timeline/index.php:257 application/views/user/edit.php:130 +#: application/views/timeline/index.php:290 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 #: application/views/user/edit.php:327 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:518 #: application/views/visitor/index.php:27 msgid "Gridsquare" msgstr "" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1294 #: application/views/activated_gridmap/index.php:108 #: application/views/awards/ffma/index.php:36 #: application/views/awards/gridmaster/index.php:35 #: 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/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/index.php:12 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 #: application/views/qslcard/searchresult.php:52 #: application/views/qslcard/searchresult.php:68 #: application/views/qslcard/searchresult.php:84 -#: application/views/qso/components/previous_contacts.php:88 +#: application/views/qso/components/previous_contacts.php:87 #: application/views/search/search_result_ajax.php:14 #: application/views/user/edit.php:239 application/views/user/edit.php:261 #: application/views/user/edit.php:283 application/views/user/edit.php:305 @@ -1156,32 +1294,33 @@ msgstr "" msgid "Distance" msgstr "Etäisyys" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1295 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:8 -#: application/views/activators/index.php:7 +#: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 -#: application/views/awards/cq/index.php:72 +#: application/views/awards/cq/index.php:74 #: application/views/awards/dok/index.php:77 #: application/views/awards/dxcc/index.php:117 -#: application/views/awards/helvetia/index.php:71 +#: application/views/awards/helvetia/index.php:73 #: application/views/awards/iota/index.php:91 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:74 #: application/views/awards/jcc/index.php:74 #: application/views/awards/pota/index.php:35 -#: application/views/awards/rac/index.php:63 +#: application/views/awards/rac/index.php:65 #: application/views/awards/sig/qso_list.php:13 #: application/views/awards/sota/index.php:26 #: application/views/awards/vucc/index.php:21 #: application/views/awards/wab/index.php:22 -#: application/views/awards/waja/index.php:75 -#: application/views/awards/was/index.php:71 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/waja/index.php:77 +#: application/views/awards/was/index.php:73 #: application/views/awards/wwff/index.php:35 #: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:45 -#: application/views/contesting/index.php:70 -#: application/views/contesting/index.php:202 +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:249 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:549 application/views/dxatlas/index.php:31 @@ -1189,8 +1328,8 @@ msgstr "Etäisyys" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1208,13 +1347,13 @@ msgstr "Etäisyys" #: application/views/qslmanagement/index.php:24 #: application/views/qslprint/qslprint.php:25 #: application/views/qslprint/qsolist.php:10 -#: application/views/qso/components/previous_contacts.php:89 +#: application/views/qso/components/previous_contacts.php:88 #: application/views/qso/edit_ajax.php:83 application/views/qso/index.php:151 #: application/views/search/cqzones_result.php:11 #: application/views/search/lotw_unconfirmed_result.php:9 #: application/views/search/result_search.php:10 #: application/views/search/search_result_ajax.php:15 -#: application/views/simplefle/index.php:143 +#: application/views/simplefle/index.php:149 #: application/views/stationsetup/exportmapoptions.php:31 #: application/views/statistics/custom.php:53 #: application/views/statistics/custom_result.php:55 @@ -1232,72 +1371,71 @@ msgstr "Etäisyys" msgid "Band" msgstr "Bandi" -#: application/controllers/Logbook.php:1285 +#: application/controllers/Logbook.php:1296 #: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 -#: application/views/contesting/index.php:87 +#: application/views/contesting/index.php:138 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 #: application/views/qslcard/searchresult.php:70 #: application/views/qslcard/searchresult.php:86 -#: application/views/qso/components/previous_contacts.php:90 +#: application/views/qso/components/previous_contacts.php:89 #: application/views/qso/edit_ajax.php:71 application/views/qso/index.php:169 #: application/views/search/search_result_ajax.php:16 #: application/views/user/edit.php:228 application/views/user/edit.php:250 #: application/views/user/edit.php:272 application/views/user/edit.php:294 #: application/views/user/edit.php:317 #: application/views/view_log/partial/log_ajax.php:16 -#: application/views/view_log/qso.php:93 application/views/visitor/index.php:36 +#: application/views/view_log/qso.php:94 application/views/visitor/index.php:36 msgid "Frequency" msgstr "Taajuus" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1297 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:283 -#: application/views/logbookadvanced/index.php:598 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:626 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 #: application/views/qslcard/searchresult.php:87 -#: application/views/qso/components/previous_contacts.php:91 +#: application/views/qso/components/previous_contacts.php:90 #: application/views/search/search_result_ajax.php:17 #: application/views/simplefle/index.php:112 #: application/views/user/edit.php:240 application/views/user/edit.php:262 #: application/views/user/edit.php:284 application/views/user/edit.php:306 #: application/views/user/edit.php:329 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:538 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1318 #: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:669 +#: application/views/interface_assets/footer.php:675 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:154 +#: application/views/logbookadvanced/index.php:165 #: application/views/lookup/index.php:31 -#: application/views/lotw_views/index.php:56 +#: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 #: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 -#: application/views/station_profile/create.php:73 -#: application/views/station_profile/edit.php:78 -#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 #: application/views/stationsetup/stationsetup.php:150 -#: application/views/timeline/index.php:134 +#: application/views/timeline/index.php:167 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 -#: application/views/view_log/qso.php:236 -#: application/views/view_log/qso.php:529 +#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:532 msgid "Deleted DXCC" msgstr "Poistettu DXCC" @@ -1311,7 +1449,7 @@ msgstr "" #: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83 #: application/controllers/Lotw.php:125 application/views/adif/import.php:27 -#: application/views/interface_assets/header.php:423 +#: application/views/interface_assets/header.php:429 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1319,28 +1457,55 @@ msgstr "" msgid "Logbook of the World" msgstr "" -#: application/controllers/Lotw.php:610 +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "" + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "" + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "" + +#: application/controllers/Lotw.php:413 +#, 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:617 msgid "LoTW ADIF Information" msgstr "" -#: application/controllers/Lotw.php:718 +#: application/controllers/Lotw.php:725 msgid "LoTW ADIF Import" msgstr "" -#: application/controllers/Lotw.php:830 +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "" + +#: application/controllers/Lotw.php:837 msgid "LoTW .TQ8 Upload" msgstr "" -#: application/controllers/Lotw.php:927 application/controllers/Lotw.php:932 +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "" + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 msgid "LoTW .TQ8 Sent" msgstr "" -#: application/controllers/Lotw.php:939 +#: application/controllers/Lotw.php:946 msgid "LoTW .TQ8 Not Sent" msgstr "" #: application/controllers/Mode.php:25 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:276 #: application/views/mode/index.php:15 msgid "Modes" msgstr "Modet" @@ -1349,28 +1514,28 @@ msgstr "Modet" msgid "Edit Mode" msgstr "" -#: application/controllers/Notes.php:19 +#: application/controllers/Notes.php:18 #: application/views/interface_assets/header.php:128 #: application/views/notes/add.php:9 application/views/notes/edit.php:10 #: application/views/notes/main.php:5 application/views/notes/main.php:8 #: application/views/notes/view.php:6 application/views/notes/view.php:9 #: application/views/qso/edit_ajax.php:36 -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:38 -#: application/views/qso/index.php:541 application/views/qso/index.php:586 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:590 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:38 +#: application/views/qso/index.php:563 application/views/qso/index.php:608 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:593 msgid "Notes" msgstr "Muistiinpanot" -#: application/controllers/Notes.php:38 +#: application/controllers/Notes.php:37 msgid "Add Notes" msgstr "" -#: application/controllers/Notes.php:58 +#: application/controllers/Notes.php:64 #: application/views/oqrs/showrequests.php:88 msgid "Note" msgstr "" -#: application/controllers/Notes.php:79 application/views/notes/edit.php:7 +#: application/controllers/Notes.php:92 application/views/notes/edit.php:7 #: application/views/notes/view.php:19 msgid "Edit Note" msgstr "Muokkaa muistiinpanoa" @@ -1378,16 +1543,16 @@ msgstr "Muokkaa muistiinpanoa" #: application/controllers/Options.php:31 #: application/controllers/Options.php:41 #: application/controllers/Options.php:56 -#: application/controllers/Options.php:136 -#: application/controllers/Options.php:147 -#: application/controllers/Options.php:184 -#: application/controllers/Options.php:195 -#: application/controllers/Options.php:228 -#: application/controllers/Options.php:239 -#: application/controllers/Options.php:309 -#: application/controllers/Options.php:319 -#: application/controllers/Options.php:387 -#: application/controllers/Options.php:397 +#: application/controllers/Options.php:144 +#: application/controllers/Options.php:155 +#: application/controllers/Options.php:192 +#: application/controllers/Options.php:203 +#: application/controllers/Options.php:236 +#: application/controllers/Options.php:247 +#: application/controllers/Options.php:317 +#: application/controllers/Options.php:327 +#: application/controllers/Options.php:395 +#: application/controllers/Options.php:405 msgid "Wavelog Options" msgstr "" @@ -1404,95 +1569,96 @@ msgstr "Ulkoasu" #: application/controllers/Options.php:110 #: application/controllers/Options.php:118 #: application/controllers/Options.php:126 +#: application/controllers/Options.php:134 msgid "Options saved" msgstr "" -#: application/controllers/Options.php:165 +#: application/controllers/Options.php:173 msgid "de continent changed to " msgstr "" -#: application/controllers/Options.php:170 +#: application/controllers/Options.php:178 msgid "Maximum age of spots changed to " msgstr "" -#: application/controllers/Options.php:175 +#: application/controllers/Options.php:183 msgid "DXCluster Cache URL changed to " msgstr "" -#: application/controllers/Options.php:185 -#: application/controllers/Options.php:196 +#: application/controllers/Options.php:193 +#: application/controllers/Options.php:204 msgid "Radio Settings" msgstr "Radion asetukset" -#: application/controllers/Options.php:217 +#: application/controllers/Options.php:225 msgid "Radio Timeout Warning changed to " msgstr "" -#: application/controllers/Options.php:229 -#: application/controllers/Options.php:240 +#: application/controllers/Options.php:237 +#: application/controllers/Options.php:248 #: application/views/options/sidebar.php:6 msgid "Email" msgstr "" -#: application/controllers/Options.php:297 +#: application/controllers/Options.php:305 msgid "The settings were saved successfully." msgstr "" -#: application/controllers/Options.php:299 +#: application/controllers/Options.php:307 msgid "Something went wrong with saving the settings. Try again." msgstr "" -#: application/controllers/Options.php:310 -#: application/controllers/Options.php:320 +#: application/controllers/Options.php:318 +#: application/controllers/Options.php:328 #: application/views/options/sidebar.php:8 msgid "OQRS Options" msgstr "" -#: application/controllers/Options.php:333 +#: application/controllers/Options.php:341 msgid "OQRS options have been saved." msgstr "" -#: application/controllers/Options.php:373 -#: application/controllers/Options.php:378 +#: application/controllers/Options.php:381 +#: application/controllers/Options.php:386 msgid "Testmail failed. Something went wrong." msgstr "" -#: application/controllers/Options.php:375 +#: application/controllers/Options.php:383 msgid "Testmail sent. Email settings seem to be correct." msgstr "" -#: application/controllers/Options.php:388 -#: application/controllers/Options.php:398 +#: application/controllers/Options.php:396 +#: application/controllers/Options.php:406 msgid "Version Info Settings" msgstr "" -#: application/controllers/Options.php:404 +#: application/controllers/Options.php:412 msgid "Version Info Header changed to" msgstr "" -#: application/controllers/Options.php:408 +#: application/controllers/Options.php:416 msgid "Version Info Mode changed to" msgstr "" -#: application/controllers/Options.php:413 +#: application/controllers/Options.php:421 msgid "Version Info Custom Text saved!" msgstr "" -#: application/controllers/Options.php:424 +#: application/controllers/Options.php:432 msgid "Version Info will be shown to all users again" msgstr "" -#: application/controllers/Options.php:432 +#: application/controllers/Options.php:440 msgid "Version Info will not be shown to any user" msgstr "" -#: application/controllers/Oqrs.php:22 application/controllers/Oqrs.php:61 -#: application/controllers/Oqrs.php:73 +#: application/controllers/Oqrs.php:46 application/controllers/Oqrs.php:85 +#: application/controllers/Oqrs.php:97 msgid "Log Search & OQRS" msgstr "" -#: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:413 +#: application/controllers/Oqrs.php:127 +#: application/views/interface_assets/header.php:419 msgid "OQRS Requests" msgstr "OQRS Pyynnöt" @@ -1500,8 +1666,46 @@ msgstr "OQRS Pyynnöt" msgid "QRB Calculator" msgstr "" +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "" + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" + #: application/controllers/Qrz.php:173 -#: application/views/interface_assets/header.php:426 +#: application/views/interface_assets/header.php:432 msgid "QRZ Logbook" msgstr "QRZ Logi" @@ -1513,8 +1717,8 @@ msgstr "" msgid "QRZ ADIF Information" msgstr "" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:261 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:277 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1537,13 +1741,13 @@ msgid "Add QSO" msgstr "" #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Hardware Interfaces" msgstr "" #: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 +#: application/views/contesting/index.php:143 #: application/views/qso/index.php:312 msgid "Radio" msgstr "" @@ -1553,10 +1757,10 @@ msgid "Timestamp" msgstr "" #: application/controllers/Radio.php:52 -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 +#: application/views/logbookadvanced/index.php:550 +#: application/views/lotw_views/index.php:43 #: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 +#: application/views/simplefle/index.php:177 #: application/views/stationsetup/exportmapoptions.php:5 #: application/views/statistics/custom.php:31 #: application/views/statistics/custom_result.php:33 @@ -1564,7 +1768,7 @@ msgid "Options" msgstr "Valinnat" #: application/controllers/Radio.php:90 -#: application/views/contesting/index.php:96 +#: application/views/contesting/index.php:147 #: application/views/qso/index.php:316 msgid "last updated" msgstr "" @@ -1580,26 +1784,24 @@ msgstr "" #: application/controllers/Radio.php:105 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2323 -#: application/views/interface_assets/footer.php:2341 -#: application/views/interface_assets/footer.php:2362 -#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2337 +#: application/views/interface_assets/footer.php:2355 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 #: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:514 -#: application/views/lotw_views/index.php:118 +#: application/views/logbookadvanced/index.php:542 +#: application/views/lotw_views/index.php:114 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 #: application/views/qslcard/index.php:65 #: application/views/satellite/edit.php:40 #: application/views/satellite/index.php:26 #: application/views/search/stored_queries.php:22 -#: application/views/station_profile/index.php:55 -#: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 #: application/views/stationsetup/stationsetup.php:137 #: application/views/stationsetup/stationsetup.php:192 -#: application/views/themes/index.php:107 application/views/user/main.php:54 -#: application/views/view_log/qso.php:613 +#: application/views/themes/index.php:107 application/views/user/index.php:57 +#: application/views/view_log/qso.php:616 msgid "Delete" msgstr "Poista" @@ -1607,11 +1809,15 @@ msgstr "Poista" msgid "No CAT interfaced radios found." msgstr "" -#: application/controllers/Satellite.php:37 +#: application/controllers/Reg1test.php:25 +msgid "Export EDI" +msgstr "" + +#: application/controllers/Satellite.php:39 msgid "Create Satellite" msgstr "" -#: application/controllers/Satellite.php:60 +#: application/controllers/Satellite.php:66 msgid "Edit Satellite" msgstr "" @@ -1624,10 +1830,7 @@ msgstr "" #: application/views/awards/counties/index.php:8 #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:19 -#: application/views/awards/was/index.php:21 -#: application/views/dashboard/index.php:64 -#: application/views/dashboard/index.php:73 -#: application/views/dashboard/index.php:82 +#: application/views/awards/was/index.php:23 #: application/views/simplefle/index.php:16 msgid "here" msgstr "" @@ -1639,9 +1842,10 @@ msgstr "" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:336 -#: application/views/interface_assets/header.php:343 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:340 +#: application/views/interface_assets/header.php:347 +#: application/views/logbookadvanced/index.php:538 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1655,8 +1859,8 @@ msgstr "" #: application/views/search/lotw_unconfirmed.php:37 #: application/views/search/main.php:4 application/views/search/main.php:12 #: application/views/search/main.php:33 -#: application/views/visitor/layout/header.php:99 -#: application/views/visitor/layout/header.php:100 +#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:98 msgid "Search" msgstr "" @@ -1674,15 +1878,23 @@ msgid "" "date" msgstr "" -#: application/controllers/Station.php:35 -#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/controllers/Station.php:36 +#: application/controllers/Stationsetup.php:226 +msgid "Create Station Location" +msgstr "" + +#: application/controllers/Station.php:51 +msgid "Edit Station Location: " +msgstr "" + +#: application/controllers/Station.php:59 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 -#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/edit.php:19 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:427 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 @@ -1690,22 +1902,13 @@ msgstr "" msgid "Station Location" msgstr "Asemaprofiili" -#: application/controllers/Station.php:55 -#: application/controllers/Stationsetup.php:226 -msgid "Create Station Location" -msgstr "" - -#: application/controllers/Station.php:70 -msgid "Edit Station Location: " -msgstr "" - -#: application/controllers/Station.php:92 +#: application/controllers/Station.php:73 msgid "Duplicate Station Location:" msgstr "" #: application/controllers/Stationsetup.php:35 -#: application/views/interface_assets/header.php:377 -#: application/views/interface_assets/header.php:488 +#: application/views/interface_assets/header.php:381 +#: application/views/interface_assets/header.php:494 msgid "Station Setup" msgstr "" @@ -1723,7 +1926,7 @@ msgstr "" #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 #: application/controllers/Stationsetup.php:436 -#: application/views/qso/index.php:608 +#: application/views/qso/index.php:630 msgid "Error" msgstr "" @@ -1755,9 +1958,10 @@ msgstr "" #: application/views/options/appearance.php:83 #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 +#: application/views/options/appearance.php:110 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:259 -#: application/views/station_profile/edit.php:312 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 msgid "Disabled" @@ -1769,7 +1973,7 @@ msgid "Set as Active Logbook" msgstr "" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:486 +#: application/views/interface_assets/header.php:492 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1792,20 +1996,17 @@ msgid "Are you sure you want to delete the public slug?" msgstr "" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "" "Are you sure you want to make the following station the active station: " msgstr "" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "" #: application/controllers/Stationsetup.php:351 -#: application/views/station_profile/index.php:71 #: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "" @@ -1814,54 +2015,45 @@ msgstr "" #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:28 -#: application/views/station_profile/index.php:76 #: application/views/stationsetup/stationsetup.php:161 -#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/user/index.php:90 application/views/user/index.php:92 msgid "QSO" msgstr "" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 -#: application/views/cron/index.php:56 -#: application/views/interface_assets/footer.php:535 -#: application/views/interface_assets/footer.php:544 +#: application/views/cron/index.php:58 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 #: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:541 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 -#: application/views/station_profile/index.php:46 -#: application/views/station_profile/index.php:79 #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 -#: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/views/themes/index.php:104 application/views/user/index.php:52 msgid "Edit" msgstr "Muokkaa" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:99 #: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:54 -#: application/views/station_profile/index.php:101 #: application/views/stationsetup/stationsetup.php:136 #: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "" #: application/controllers/Stationsetup.php:367 -#: application/views/station_profile/index.php:47 -#: application/views/station_profile/index.php:82 #: application/views/stationsetup/stationsetup.php:129 #: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "" #: application/controllers/Stationsetup.php:372 -#: application/views/station_profile/index.php:105 #: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "" @@ -1894,7 +2086,7 @@ msgid "QSL Statistics" msgstr "" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:282 msgid "Themes" msgstr "Teemat" @@ -1906,14 +2098,14 @@ msgstr "" msgid "Edit Theme" msgstr "" -#: application/controllers/Timeline.php:17 -#: application/views/interface_assets/header.php:148 +#: application/controllers/Timeline.php:15 +#: application/views/interface_assets/header.php:150 #: application/views/timeline/index.php:2 msgid "Timeline" msgstr "Aikajana" #: application/controllers/Timeplotter.php:17 -#: application/views/interface_assets/header.php:152 +#: application/views/interface_assets/header.php:154 #: application/views/timeplotter/index.php:9 msgid "Timeplotter" msgstr "Aikajana" @@ -1954,130 +2146,154 @@ msgstr "" msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:268 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:272 msgid "User Accounts" msgstr "" -#: application/controllers/User.php:52 +#: application/controllers/User.php:76 msgid "Add User" msgstr "" -#: application/controllers/User.php:166 +#: application/controllers/User.php:190 msgid "Users" msgstr "" -#: application/controllers/User.php:240 application/controllers/User.php:673 +#: application/controllers/User.php:264 application/controllers/User.php:697 msgid "Edit User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 -#: application/views/user/main.php:3 application/views/user/main.php:46 +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 msgid "User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 +#: application/controllers/User.php:689 application/controllers/User.php:692 msgid "edited" msgstr "" -#: application/controllers/User.php:722 +#: application/controllers/User.php:746 msgid "Profile" msgstr "" -#: application/controllers/User.php:779 +#: application/controllers/User.php:803 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "" -#: application/controllers/User.php:843 application/controllers/User.php:853 +#: application/controllers/User.php:867 application/controllers/User.php:877 msgid "Login failed. Try again." msgstr "" -#: application/controllers/User.php:860 -#: application/views/interface_assets/header.php:356 -#: application/views/user/login.php:89 -#: application/views/visitor/layout/header.php:88 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:360 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "Kirjaudu" -#: application/controllers/User.php:868 -msgid "User logged in" -msgstr "" - -#: application/controllers/User.php:899 +#: application/controllers/User.php:922 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " "Only administrators are currently allowed to log in." msgstr "" -#: application/controllers/User.php:902 +#: application/controllers/User.php:925 msgid "Incorrect username or password!" msgstr "" -#: application/controllers/User.php:919 +#: application/controllers/User.php:942 #, php-format msgid "User %s logged out." msgstr "" -#: application/controllers/User.php:933 +#: application/controllers/User.php:956 msgid "Password Reset is disabled on the Demo!" msgstr "" -#: application/controllers/User.php:946 +#: application/controllers/User.php:969 msgid "Forgot Password" msgstr "" -#: application/controllers/User.php:996 application/views/user/main.php:8 +#: application/controllers/User.php:1019 application/views/user/index.php:8 msgid "Email settings are incorrect." msgstr "" -#: application/controllers/User.php:1000 application/controllers/User.php:1005 +#: application/controllers/User.php:1023 application/controllers/User.php:1028 msgid "Password Reset Processed." msgstr "" -#: application/controllers/User.php:1107 +#: application/controllers/User.php:1129 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "Resetoi salasana" +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "" + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "" + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "" + #: application/controllers/Visitor.php:50 -#: application/controllers/Visitor.php:79 -#: application/controllers/Visitor.php:142 -#: application/controllers/Visitor.php:169 -#: application/controllers/Visitor.php:199 -#: application/controllers/Visitor.php:478 +#: application/controllers/Visitor.php:81 +#: application/controllers/Visitor.php:148 +#: application/controllers/Visitor.php:175 +#: application/controllers/Visitor.php:210 +#: application/controllers/Visitor.php:472 #: application/controllers/Widgets.php:40 msgid "Unknown Public Page." msgstr "" -#: application/controllers/Visitor.php:74 -#: application/controllers/Visitor.php:165 -#: application/controllers/Visitor.php:195 -#: application/controllers/Visitor.php:474 +#: application/controllers/Visitor.php:76 +#: application/controllers/Visitor.php:171 +#: application/controllers/Visitor.php:206 +#: application/controllers/Visitor.php:468 #: application/controllers/Widgets.php:36 msgid "Empty Logbook" msgstr "" -#: application/controllers/Visitor.php:205 +#: application/controllers/Visitor.php:216 msgid "Satellite Gridsquare Map" msgstr "" -#: application/controllers/Visitor.php:411 +#: application/controllers/Visitor.php:405 #: application/views/stationsetup/stationsetup.php:35 msgid "Public Search" msgstr "" -#: application/controllers/Visitor.php:444 +#: application/controllers/Visitor.php:438 msgid "Export Map" msgstr "" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:427 +#: application/views/interface_assets/header.php:433 msgid "QO-100 Dx Club Upload" msgstr "QO-100 Dx Club Lähetys" @@ -2089,6 +2305,84 @@ msgstr "" msgid "No stations found that are using Wavelog OQRS." msgstr "" +#: application/libraries/Subdivisions.php:31 +msgctxt "Division Name (States in various countries)." +msgid "Province" +msgstr "" + +#: application/libraries/Subdivisions.php:39 +msgctxt "Division Name (States in various countries)." +msgid "Oblast" +msgstr "" + +#: application/libraries/Subdivisions.php:41 +#: application/libraries/Subdivisions.php:47 +msgctxt "Division Name (States in various countries)." +msgid "Region" +msgstr "" + +#: application/libraries/Subdivisions.php:45 +msgctxt "Division Name (States in various countries)." +msgid "Department" +msgstr "" + +#: application/libraries/Subdivisions.php:49 +msgctxt "Division Name (States in various countries)." +msgid "Municipality" +msgstr "" + +#: application/libraries/Subdivisions.php:51 +msgctxt "Division Name (States in various countries)." +msgid "Federal State" +msgstr "" + +#: application/libraries/Subdivisions.php:56 +#: application/libraries/Subdivisions.php:94 +msgctxt "Division Name (States in various countries)." +msgid "County" +msgstr "" + +#: application/libraries/Subdivisions.php:60 +#: application/libraries/Subdivisions.php:85 +msgctxt "Division Name (States in various countries)." +msgid "District" +msgstr "" + +#: application/libraries/Subdivisions.php:62 +msgctxt "Division Name (States in various countries)." +msgid "Canton" +msgstr "" + +#: application/libraries/Subdivisions.php:64 +msgctxt "Division Name (States in various countries)." +msgid "US State" +msgstr "" + +#: application/libraries/Subdivisions.php:67 +msgctxt "Division Name (States in various countries)." +msgid "Prefecture" +msgstr "" + +#: application/libraries/Subdivisions.php:69 +msgctxt "Division Name (States in various countries)." +msgid "State" +msgstr "" + +#: application/libraries/Subdivisions.php:78 +msgctxt "Division Name (States in various countries)." +msgid "US County" +msgstr "" + +#: application/libraries/Subdivisions.php:90 +msgctxt "Division Name (States in various countries)." +msgid "DME" +msgstr "" + +#: application/libraries/Subdivisions.php:92 +msgctxt "Division Name (States in various countries)." +msgid "City / Ku / Gun" +msgstr "" + #: application/models/Eqslmethods_model.php:281 msgid "Your eQSL username and/or password is incorrect." msgstr "" @@ -2125,31 +2419,31 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4255 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4261 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4266 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4269 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4272 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4275 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4278 msgid "unknown" msgstr "" @@ -2178,7 +2472,7 @@ msgid "Accumulated number of WAJA worked" msgstr "" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:222 +#: application/views/dashboard/index.php:238 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2191,7 +2485,7 @@ msgid "Yearly" msgstr "" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:243 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Kuukausi" @@ -2207,29 +2501,33 @@ msgstr "" #: application/views/accumulate/index.php:24 #: application/views/accumulate/index.php:34 +#: application/views/accumulate/index.php:83 #: application/views/activated_gridmap/index.php:10 #: application/views/activated_gridmap/index.php:22 #: application/views/activated_gridmap/index.php:32 #: application/views/activated_gridmap/index.php:41 -#: application/views/activators/index.php:10 -#: application/views/awards/cq/index.php:75 -#: application/views/awards/cq/index.php:89 +#: application/views/activators/index.php:13 +#: application/views/awards/cq/index.php:77 +#: application/views/awards/cq/index.php:91 #: application/views/awards/dok/index.php:94 #: application/views/awards/dxcc/index.php:134 #: application/views/awards/dxcc/index.php:150 #: application/views/awards/dxcc/index.php:165 -#: application/views/awards/helvetia/index.php:88 +#: application/views/awards/helvetia/index.php:90 #: application/views/awards/iota/index.php:108 -#: application/views/awards/itu/index.php:75 -#: application/views/awards/itu/index.php:89 +#: application/views/awards/itu/index.php:77 +#: application/views/awards/itu/index.php:91 #: application/views/awards/jcc/index.php:91 -#: application/views/awards/rac/index.php:80 +#: application/views/awards/rac/index.php:82 #: application/views/awards/wab/index.php:24 #: application/views/awards/wab/index.php:36 #: application/views/awards/wab/index.php:46 #: application/views/awards/wab/index.php:55 -#: application/views/awards/waja/index.php:92 -#: application/views/awards/was/index.php:88 +#: application/views/awards/wac/index.php:81 +#: application/views/awards/wac/index.php:97 +#: application/views/awards/wac/index.php:113 +#: application/views/awards/waja/index.php:94 +#: application/views/awards/was/index.php:90 #: application/views/bandmap/list.php:71 application/views/bandmap/list.php:78 #: application/views/bandmap/list.php:90 application/views/bands/index.php:117 #: application/views/cabrillo/index.php:65 @@ -2240,6 +2538,7 @@ msgstr "" #: application/views/csv/index.php:94 application/views/distances/index.php:21 #: application/views/distances/index.php:36 #: application/views/distances/index.php:46 +#: application/views/distances/index.php:56 #: application/views/dxatlas/index.php:21 #: application/views/dxatlas/index.php:33 #: application/views/dxatlas/index.php:44 @@ -2251,28 +2550,29 @@ msgstr "" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1435 -#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1448 +#: application/views/interface_assets/footer.php:1587 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:172 #: application/views/logbookadvanced/index.php:183 #: application/views/logbookadvanced/index.php:194 -#: application/views/logbookadvanced/index.php:203 -#: application/views/logbookadvanced/index.php:212 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:205 +#: application/views/logbookadvanced/index.php:214 +#: application/views/logbookadvanced/index.php:223 #: application/views/logbookadvanced/index.php:248 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:321 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:374 -#: application/views/logbookadvanced/index.php:385 -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:259 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:423 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2283,11 +2583,12 @@ msgstr "" #: application/views/stationsetup/exportmapoptions.php:33 #: application/views/timeline/index.php:10 #: application/views/timeline/index.php:22 +#: application/views/timeline/index.php:77 #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 #: application/views/user/edit.php:633 -#: application/views/visitor/layout/footer.php:169 +#: application/views/visitor/layout/footer.php:171 msgid "All" msgstr "" @@ -2325,29 +2626,254 @@ msgstr "" msgid "Period" msgstr "" -#: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: application/views/accumulate/index.php:80 +#: application/views/distances/index.php:53 +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/timeline/index.php:74 +msgid "Propagation" +msgstr "" + +#: application/views/accumulate/index.php:84 +#: application/views/distances/index.php:57 +#: application/views/timeline/index.php:78 +msgid "All but SAT" +msgstr "" + +#: application/views/accumulate/index.php:85 +#: application/views/distances/index.php:58 +#: application/views/gridmap/index.php:42 +#: application/views/logbookadvanced/edit.php:142 +#: application/views/logbookadvanced/index.php:307 +#: application/views/timeline/index.php:79 +msgid "None/Empty" +msgstr "" + +#: application/views/accumulate/index.php:86 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/logbookadvanced/index.php:225 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:414 +#: application/views/timeline/index.php:80 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/accumulate/index.php:87 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/logbookadvanced/index.php:226 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:415 +#: application/views/timeline/index.php:81 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/accumulate/index.php:88 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/logbookadvanced/index.php:227 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:416 +#: application/views/timeline/index.php:82 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/accumulate/index.php:89 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/logbookadvanced/index.php:228 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:417 +#: application/views/timeline/index.php:83 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/accumulate/index.php:90 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/logbookadvanced/index.php:229 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:418 +#: application/views/timeline/index.php:84 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/accumulate/index.php:91 +#: 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/logbookadvanced/index.php:230 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:419 +#: application/views/timeline/index.php:85 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/accumulate/index.php:92 +#: 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/logbookadvanced/index.php:231 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:420 +#: application/views/timeline/index.php:86 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/accumulate/index.php:93 +#: 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/logbookadvanced/index.php:232 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:421 +#: application/views/timeline/index.php:87 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/accumulate/index.php:94 +#: 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/logbookadvanced/index.php:233 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:422 +#: application/views/timeline/index.php:88 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/accumulate/index.php:95 +#: 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/logbookadvanced/index.php:234 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:423 +#: application/views/timeline/index.php:89 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/accumulate/index.php:96 +#: 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/logbookadvanced/index.php:235 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:424 +#: application/views/timeline/index.php:90 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/accumulate/index.php:97 +#: 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/logbookadvanced/index.php:236 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:425 +#: application/views/timeline/index.php:91 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/accumulate/index.php:98 +#: 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/logbookadvanced/index.php:237 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:426 +#: application/views/timeline/index.php:92 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/accumulate/index.php:99 +#: 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/logbookadvanced/index.php:238 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:427 +#: application/views/timeline/index.php:93 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/accumulate/index.php:100 +#: 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/logbookadvanced/index.php:239 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:428 +#: application/views/timeline/index.php:94 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/accumulate/index.php:101 +#: 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/logbookadvanced/index.php:240 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:429 +#: application/views/timeline/index.php:95 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Satelliitti" + +#: application/views/accumulate/index.php:102 +#: 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/logbookadvanced/index.php:241 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:430 +#: application/views/timeline/index.php:96 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/accumulate/index.php:103 +#: 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/logbookadvanced/index.php:242 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:431 +#: application/views/timeline/index.php:97 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/accumulate/index.php:112 +#: application/views/activators/index.php:53 +#: application/views/awards/cq/index.php:113 #: application/views/awards/dok/index.php:127 #: application/views/awards/dxcc/index.php:187 -#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/helvetia/index.php:112 #: application/views/awards/iota/index.php:130 -#: application/views/awards/itu/index.php:111 +#: application/views/awards/itu/index.php:113 #: application/views/awards/jcc/index.php:113 -#: application/views/awards/rac/index.php:102 -#: application/views/awards/waja/index.php:114 -#: application/views/awards/was/index.php:110 -#: application/views/distances/index.php:53 +#: application/views/awards/rac/index.php:104 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:79 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 #: application/views/stationsetup/exportmapoptions.php:6 -#: application/views/timeline/index.php:72 -#: application/views/timeline/index.php:137 -#: application/views/timeline/index.php:164 -#: application/views/timeline/index.php:189 -#: application/views/timeline/index.php:218 -#: application/views/timeline/index.php:243 -#: application/views/timeline/index.php:270 +#: application/views/timeline/index.php:105 +#: application/views/timeline/index.php:170 +#: application/views/timeline/index.php:197 +#: application/views/timeline/index.php:222 +#: application/views/timeline/index.php:251 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:303 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "" @@ -2355,12 +2881,15 @@ msgstr "" #: application/views/activated_gridmap/index.php:20 #: application/views/awards/dxcc/index.php:131 #: application/views/awards/wab/index.php:34 +#: application/views/awards/wac/index.php:78 #: 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/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/edit.php:17 +#: application/views/logbookadvanced/index.php:203 #: application/views/satellite/flightpath.php:34 +#: application/views/satellite/passtable.php:5 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2369,9 +2898,10 @@ msgstr "Satelliitti" #: application/views/activated_gridmap/index.php:30 #: application/views/awards/dxcc/index.php:147 #: application/views/awards/wab/index.php:44 +#: application/views/awards/wac/index.php:94 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:212 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2386,16 +2916,17 @@ msgid "Confirmation" msgstr "" #: application/views/activated_gridmap/index.php:82 -#: application/views/awards/cq/index.php:66 +#: application/views/awards/cq/index.php:68 #: application/views/awards/dok/index.php:67 #: application/views/awards/dxcc/index.php:73 -#: application/views/awards/helvetia/index.php:65 -#: application/views/awards/itu/index.php:66 +#: application/views/awards/helvetia/index.php:67 +#: application/views/awards/itu/index.php:68 #: application/views/awards/jcc/index.php:64 -#: application/views/awards/rac/index.php:57 +#: application/views/awards/rac/index.php:59 #: application/views/awards/wab/index.php:96 -#: application/views/awards/waja/index.php:65 -#: application/views/awards/was/index.php:65 +#: application/views/awards/wac/index.php:56 +#: application/views/awards/waja/index.php:67 +#: application/views/awards/was/index.php:67 #: application/views/gridmap/index.php:125 application/views/user/edit.php:675 msgid "QRZ.com" msgstr "" @@ -2431,59 +2962,62 @@ msgstr "" #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:37 #: application/views/gridmap/index.php:156 -#: application/views/logbookadvanced/index.php:12 +#: application/views/logbookadvanced/index.php:13 msgid "Bearing" msgstr "" -#: application/views/activators/index.php:23 +#: application/views/activators/index.php:26 msgctxt "Orbiter LEO or GEO" msgid "Both" msgstr "" -#: application/views/activators/index.php:30 +#: application/views/activators/index.php:33 msgid "Minimum Count" msgstr "" -#: application/views/activators/index.php:77 +#: application/views/activators/index.php:76 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:46 -#: application/views/awards/cq/index.php:196 +#: application/views/awards/cq/index.php:198 #: application/views/awards/dok/index.php:196 #: application/views/awards/dxcc/index.php:280 -#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/helvetia/index.php:200 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:196 +#: application/views/awards/itu/index.php:198 #: application/views/awards/jcc/index.php:236 #: application/views/awards/pota/index.php:67 -#: application/views/awards/rac/index.php:190 +#: application/views/awards/rac/index.php:192 #: application/views/awards/sig/index.php:45 #: application/views/awards/sota/index.php:53 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:39 -#: application/views/awards/waja/index.php:200 -#: application/views/awards/was/index.php:198 +#: application/views/awards/wac/index.php:199 +#: application/views/awards/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 +#: application/views/distancerecords/index.php:50 #: application/views/public_search/empty.php:3 -#: application/views/qrz/export.php:64 application/views/timeline/index.php:102 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:135 msgid "Nothing found!" msgstr "" -#: application/views/activators/index.php:99 -#: application/views/adif/import.php:66 application/views/adif/import.php:172 -#: application/views/adif/import.php:217 +#: application/views/activators/index.php:98 +#: application/views/adif/import.php:66 application/views/adif/import.php:182 +#: application/views/adif/import.php:227 #: application/views/awards/pota/index.php:34 #: application/views/awards/sig/qso_list.php:11 #: application/views/awards/sota/index.php:25 #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:104 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:152 +#: application/views/contesting/index.php:156 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:168 +#: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 -#: application/views/lotw_views/index.php:39 +#: application/views/lotw_views/index.php:35 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 #: application/views/qslcard/index.php:28 @@ -2492,35 +3026,36 @@ msgstr "" #: application/views/qslprint/qslprint.php:21 #: application/views/qslprint/qsolist.php:6 #: application/views/qso/edit_ajax.php:62 application/views/qso/index.php:124 +#: application/views/reg1test/index.php:33 #: application/views/search/cqzones.php:32 #: application/views/search/cqzones_result.php:9 #: application/views/search/lotw_unconfirmed.php:33 #: application/views/search/lotw_unconfirmed_result.php:6 #: application/views/search/result.php:11 -#: application/views/simplefle/index.php:142 -#: application/views/station_profile/edit.php:36 +#: application/views/simplefle/index.php:148 +#: application/views/station_profile/edit.php:63 #: application/views/stationsetup/linkedlocations.php:17 -#: application/views/user/edit.php:123 application/views/user/main.php:4 -#: application/views/user/main.php:47 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:507 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 +#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:510 msgid "Callsign" msgstr "Radioamatöörikutsu" -#: application/views/activators/index.php:100 +#: application/views/activators/index.php:99 msgid "Count" msgstr "" -#: application/views/activators/index.php:102 -#: application/views/timeline/index.php:121 -#: application/views/timeline/index.php:153 -#: application/views/timeline/index.php:178 -#: application/views/timeline/index.php:205 -#: application/views/timeline/index.php:232 -#: application/views/timeline/index.php:258 +#: application/views/activators/index.php:101 +#: application/views/timeline/index.php:154 +#: application/views/timeline/index.php:186 +#: application/views/timeline/index.php:211 +#: application/views/timeline/index.php:238 +#: application/views/timeline/index.php:265 +#: application/views/timeline/index.php:291 msgid "Show QSO's" msgstr "" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "" @@ -2561,10 +3096,12 @@ msgstr "" #: application/views/awards/wwff/index.php:32 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:25 -#: application/views/contesting/index.php:42 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36 +#: application/views/contesting/index.php:93 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:163 +#: application/views/debug/index.php:545 +#: application/views/distancerecords/index.php:16 +#: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2577,22 +3114,22 @@ msgstr "" #: application/views/qslcard/searchresult.php:4 #: application/views/qslprint/qslprint.php:22 #: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:64 -#: application/views/qso/index.php:100 +#: application/views/qso/index.php:100 application/views/satellite/pass.php:473 #: application/views/search/cqzones_result.php:7 #: application/views/search/result_search.php:4 #: application/views/search/search_result_ajax.php:89 -#: application/views/simplefle/index.php:140 +#: application/views/simplefle/index.php:146 #: application/views/statistics/custom.php:38 #: application/views/statistics/custom_result.php:40 #: application/views/statistics/custom_result.php:85 -#: application/views/timeline/index.php:116 -#: application/views/timeline/index.php:151 -#: application/views/timeline/index.php:176 -#: application/views/timeline/index.php:201 -#: application/views/timeline/index.php:230 -#: application/views/timeline/index.php:255 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:184 +#: application/views/timeline/index.php:209 +#: application/views/timeline/index.php:234 +#: application/views/timeline/index.php:263 +#: application/views/timeline/index.php:288 #: application/views/view_log/partial/log.php:4 -#: application/views/view_log/partial/log_ajax.php:57 +#: application/views/view_log/partial/log_ajax.php:59 #: application/views/visitor/index.php:147 #: application/views/widgets/qsos.php:24 msgid "Date" @@ -2603,10 +3140,12 @@ msgstr "Päivä" #: application/views/awards/wwff/index.php:33 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:26 -#: application/views/contesting/index.php:47 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37 +#: application/views/contesting/index.php:98 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:166 +#: application/views/debug/index.php:546 +#: application/views/distancerecords/index.php:17 +#: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2617,12 +3156,12 @@ msgstr "Päivä" #: application/views/search/cqzones_result.php:8 #: application/views/search/result_search.php:5 #: application/views/search/search_result_ajax.php:91 -#: application/views/simplefle/index.php:141 +#: application/views/simplefle/index.php:147 #: application/views/statistics/custom_result.php:86 -#: application/views/timeline/index.php:256 +#: application/views/timeline/index.php:289 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 -#: application/views/view_log/partial/log_ajax.php:59 +#: application/views/view_log/partial/log_ajax.php:61 #: application/views/visitor/index.php:150 #: application/views/widgets/qsos.php:26 msgid "Time" @@ -2631,7 +3170,7 @@ msgstr "Aika" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 -#: application/views/contesting/index.php:201 +#: application/views/contesting/index.php:248 #: application/views/debug/index.php:547 application/views/debug/index.php:582 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -2643,7 +3182,7 @@ msgstr "Aika" #: application/views/search/search_result_ajax.php:93 #: application/views/statistics/custom_result.php:87 #: application/views/view_log/partial/log.php:8 -#: application/views/view_log/partial/log_ajax.php:61 +#: application/views/view_log/partial/log_ajax.php:63 #: application/views/visitor/index.php:152 #: application/views/widgets/qsos.php:28 msgid "Call" @@ -2661,14 +3200,14 @@ msgstr "" msgid "DCL QSL Status" msgstr "" -#: application/views/adif/import.php:36 application/views/adif/import.php:242 +#: application/views/adif/import.php:36 application/views/adif/import.php:252 msgid "DARC DCL" msgstr "" #: application/views/adif/import.php:55 -#: application/views/dashboard/index.php:97 -#: application/views/dashboard/index.php:118 -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:112 +#: application/views/dashboard/index.php:133 +#: application/views/dashboard/index.php:139 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2678,29 +3217,29 @@ msgstr "Tärkeää" msgid "Log Files must have the file type *.adi" msgstr "" -#: application/views/adif/import.php:56 application/views/view_log/qso.php:622 +#: application/views/adif/import.php:56 application/views/view_log/qso.php:625 msgid "Maximum file upload size is " msgstr "" -#: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:175 +#: application/views/adif/import.php:56 application/views/adif/import.php:230 +#: application/views/adif/import.php:268 application/views/debug/index.php:175 #: application/views/debug/index.php:192 application/views/debug/index.php:537 #: application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:34 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 -#: application/views/station_profile/index.php:31 #: application/views/stationsetup/stationsetup.php:111 -#: application/views/view_log/qso.php:622 +#: application/views/view_log/qso.php:625 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" msgstr "" #: application/views/adif/import.php:60 application/views/adif/import.php:62 -#: application/views/adif/import.php:168 application/views/adif/import.php:215 +#: application/views/adif/import.php:178 application/views/adif/import.php:225 #: application/views/eqsl/import.php:36 application/views/hrdlog/export.php:69 -#: application/views/qrz/export.php:89 application/views/webadif/export.php:89 +#: application/views/qrz/export.php:89 application/views/reg1test/index.php:30 +#: application/views/webadif/export.php:89 msgid "Select Station Location" msgstr "" @@ -2727,69 +3266,75 @@ msgstr "" #: application/views/adif/import.php:95 application/views/adif/import.php:105 #: application/views/adif/import.php:115 application/views/adif/import.php:125 +#: application/views/adif/import.php:135 msgid "Select if ADIF being imported does not contain this information." msgstr "" #: application/views/adif/import.php:103 -msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" +msgid "Mark imported QSOs as uploaded to eQSL Logbook" msgstr "" #: application/views/adif/import.php:113 -msgid "Mark imported QSOs as uploaded to QRZ Logbook" +msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" msgstr "" #: application/views/adif/import.php:123 -msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgid "Mark imported QSOs as uploaded to QRZ Logbook" msgstr "" #: application/views/adif/import.php:133 +msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgstr "" + +#: application/views/adif/import.php:143 msgid "Use DXCC information from ADIF" msgstr "" -#: application/views/adif/import.php:135 +#: application/views/adif/import.php:145 msgid "" "If not selected, Wavelog will attempt to determine DXCC information " "automatically." msgstr "" -#: application/views/adif/import.php:143 +#: application/views/adif/import.php:153 msgid "Always use login-callsign as operator-name on import" msgstr "" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:32 -#: application/views/interface_assets/footer.php:495 -#: application/views/interface_assets/footer.php:2119 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2133 msgid "DANGER" msgstr "" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 msgid "Ignore Stationcallsign on import" msgstr "" -#: application/views/adif/import.php:154 +#: application/views/adif/import.php:164 +#, php-format msgid "" -"If selected, Wavelog will try to import all QSO's of the ADIF, " +"If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " "regardless if they match to the chosen station-location." msgstr "" -#: application/views/adif/import.php:158 application/views/adif/import.php:273 +#: application/views/adif/import.php:168 application/views/adif/import.php:283 #: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 #: application/views/webadif/export.php:55 msgid "Upload" msgstr "" -#: application/views/adif/import.php:165 +#: application/views/adif/import.php:175 msgid "Take your logbook file anywhere!" msgstr "" -#: application/views/adif/import.php:166 +#: application/views/adif/import.php:176 msgid "" "Exporting ADIFs allows you to import contacts into third party applications " "like LoTW, Awards or just for keeping a backup." msgstr "" -#: application/views/adif/import.php:176 application/views/adif/import.php:222 +#: application/views/adif/import.php:186 application/views/adif/import.php:232 #: application/views/cfd/index.php:15 application/views/csv/index.php:118 #: application/views/dxatlas/index.php:118 #: application/views/hrdlog/export.php:77 application/views/kml/index.php:103 @@ -2798,7 +3343,7 @@ msgstr "" msgid "From date" msgstr "päivämäärästä" -#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/adif/import.php:189 application/views/adif/import.php:235 #: application/views/cfd/index.php:20 application/views/csv/index.php:123 #: application/views/dxatlas/index.php:123 #: application/views/hrdlog/export.php:82 application/views/kml/index.php:108 @@ -2807,40 +3352,40 @@ msgstr "päivämäärästä" msgid "To date" msgstr "" -#: application/views/adif/import.php:187 +#: application/views/adif/import.php:197 msgid "Mark exported QSOs as uploaded to LoTW" msgstr "" -#: application/views/adif/import.php:195 +#: application/views/adif/import.php:205 msgid "Export QSOs not uploaded to LoTW" msgstr "" -#: application/views/adif/import.php:200 +#: application/views/adif/import.php:210 msgid "Export QSO's" msgstr "" -#: application/views/adif/import.php:205 +#: application/views/adif/import.php:215 msgid "Export Satellite-Only QSOs" msgstr "" -#: application/views/adif/import.php:206 +#: application/views/adif/import.php:216 msgid "Export All Satellite QSOs" msgstr "" -#: application/views/adif/import.php:208 +#: application/views/adif/import.php:218 msgid "Export All Satellite QSOs Confirmed on LoTW" msgstr "" -#: application/views/adif/import.php:220 application/views/hrdlog/export.php:74 +#: application/views/adif/import.php:230 application/views/hrdlog/export.php:74 #: application/views/qrz/export.php:94 application/views/webadif/export.php:94 msgid "If a date range is not selected then all QSOs will be marked!" msgstr "" -#: application/views/adif/import.php:228 +#: application/views/adif/import.php:238 msgid "Mark QSOs as exported to LoTW" msgstr "" -#: application/views/adif/import.php:242 +#: application/views/adif/import.php:252 #, php-format msgid "" "Go to %s and export your logbook with confirmed DOKs. To speed up the " @@ -2849,36 +3394,47 @@ msgid "" "with DOK info." msgstr "" -#: application/views/adif/import.php:249 +#: application/views/adif/import.php:259 msgid "Only import DOK data from QSOs confirmed on DCL." msgstr "" -#: application/views/adif/import.php:251 +#: application/views/adif/import.php:261 msgid "" "Uncheck if you also want to update DOK with data from unconfirmed QSOs in " "DCL." msgstr "" -#: application/views/adif/import.php:258 +#: application/views/adif/import.php:268 msgid "Overwrites exisiting DOK in log by DCL (if different)." msgstr "" -#: application/views/adif/import.php:260 +#: application/views/adif/import.php:270 msgid "" "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " "log." msgstr "" -#: application/views/adif/import.php:267 +#: application/views/adif/import.php:277 msgid "Ignore QSOs that cannot be matched." msgstr "Ignore QSOs that cannot be matched" -#: application/views/adif/import.php:269 +#: application/views/adif/import.php:279 msgid "" "If unchecked, information about QSOs which could not be found in Wavelog " "will be displayed." msgstr "" +#: application/views/adif/import_failed.php:15 +msgid "The ADIF file could not be parsed correctly." +msgstr "" + +#: application/views/adif/import_failed.php:16 +msgid "" +"At least one of the ADIF fields could not be parsed and/or inserted into the " +"database. Please check the imported ADIF file. You can use an online ADIF " +"file checker. For example:" +msgstr "" + #: application/views/adif/import_success.php:15 msgid "Yay, its imported!" msgstr "" @@ -2931,24 +3487,22 @@ msgstr "" #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 -#: application/views/interface_assets/footer.php:43 -#: application/views/interface_assets/footer.php:530 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 -#: application/views/options/appearance.php:107 +#: application/views/options/appearance.php:116 #: application/views/options/dxcluster.php:67 #: application/views/options/email.php:112 #: application/views/options/oqrs.php:63 #: application/views/options/radios.php:45 #: application/views/options/version_dialog.php:78 -#: application/views/qso/components/winkeysettings.php:90 -#: application/views/qso/components/winkeysettings_results.php:90 #: application/views/satellite/create.php:70 #: application/views/simplefle/index.php:22 msgid "Save" msgstr "" #: application/views/api/help.php:14 -#: application/views/interface_assets/header.php:431 +#: application/views/interface_assets/header.php:437 msgid "API Keys" msgstr "" @@ -2972,7 +3526,7 @@ msgid "API URL" msgstr "" #: application/views/api/help.php:19 application/views/api/help.php:38 -#: application/views/cron/index.php:21 application/views/debug/index.php:36 +#: application/views/cron/index.php:22 application/views/debug/index.php:36 msgid "Copy to clipboard" msgstr "Kopioi leikepöydälle" @@ -2981,14 +3535,15 @@ msgid "The API URL for this Wavelog instance is" msgstr "" #: application/views/api/help.php:20 application/views/dxcalendar/index.php:15 -#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:477 -#: application/views/qso/index.php:538 application/views/qso/index.php:583 +#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:504 +#: application/views/qso/index.php:560 application/views/qso/index.php:605 #: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 #: application/views/sattimers/index.php:73 #: application/views/sattimers/index.php:75 +#: application/views/sattimers/index.php:77 #: application/views/search/filter.php:69 msgid "Info" msgstr "" @@ -3004,7 +3559,7 @@ msgid "API Key" msgstr "" #: application/views/api/help.php:28 application/views/cron/edit.php:30 -#: application/views/cron/index.php:51 +#: application/views/cron/index.php:53 #: application/views/search/stored_queries.php:8 msgid "Description" msgstr "" @@ -3017,19 +3572,18 @@ msgstr "" msgid "Permissions" msgstr "" -#: application/views/api/help.php:31 application/views/cron/index.php:52 -#: application/views/lotw_views/index.php:45 +#: application/views/api/help.php:31 application/views/cron/index.php:54 +#: application/views/lotw_views/index.php:41 #: application/views/mode/index.php:31 #: application/views/oqrs/showrequests.php:91 #: application/views/sattimers/index.php:39 #: application/views/stationsetup/stationsetup.php:31 -#: application/views/timeline/index.php:119 -#: application/views/update/index.php:30 +#: application/views/timeline/index.php:152 msgid "Status" msgstr "" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:519 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3065,6 +3619,7 @@ msgstr "" #: application/views/awards/counties/details.php:4 #: application/views/awards/details.php:1 #: application/views/awards/vucc/band.php:4 +#: application/views/distancerecords/details.php:1 #: application/views/timeline/details.php:2 msgid "Filtering on" msgstr "" @@ -3075,8 +3630,8 @@ msgstr "" #: application/views/awards/counties/index.php:6 #: application/views/awards/counties/index.php:13 -#: application/views/awards/cq/index.php:17 -#: application/views/awards/cq/index.php:24 +#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:26 #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:13 #: application/views/awards/dxcc/index.php:13 @@ -3085,12 +3640,12 @@ msgstr "" #: application/views/awards/ffma/index.php:14 #: application/views/awards/gridmaster/index.php:6 #: application/views/awards/gridmaster/index.php:13 -#: application/views/awards/helvetia/index.php:17 -#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:26 #: application/views/awards/iota/index.php:15 #: application/views/awards/iota/index.php:22 -#: application/views/awards/itu/index.php:17 -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:26 #: application/views/awards/jcc/index.php:15 #: application/views/awards/jcc/index.php:22 #: application/views/awards/pota/index.php:6 @@ -3103,10 +3658,12 @@ msgstr "" #: application/views/awards/vucc/index.php:13 #: application/views/awards/wab/index.php:11 #: application/views/awards/wab/index.php:18 -#: application/views/awards/waja/index.php:16 -#: application/views/awards/waja/index.php:23 -#: application/views/awards/was/index.php:17 -#: application/views/awards/was/index.php:24 +#: application/views/awards/wac/index.php:7 +#: application/views/awards/wac/index.php:14 +#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:25 +#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:26 #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:13 msgid "Award Info" @@ -3144,17 +3701,18 @@ msgid "Counties Confirmed" msgstr "" #: application/views/awards/counties/index.php:39 -#: application/views/awards/cq/index.php:174 +#: application/views/awards/cq/index.php:176 #: application/views/awards/dok/index.php:174 #: application/views/awards/dxcc/index.php:257 -#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/helvetia/index.php:179 #: application/views/awards/iota/index.php:201 -#: application/views/awards/itu/index.php:174 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:185 -#: application/views/awards/rac/index.php:169 -#: application/views/awards/waja/index.php:177 -#: application/views/awards/was/index.php:177 -#: application/views/dashboard/index.php:217 +#: application/views/awards/rac/index.php:171 +#: application/views/awards/wac/index.php:177 +#: application/views/awards/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:233 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3170,213 +3728,230 @@ msgstr "" msgid "Total" msgstr "" -#: application/views/awards/cq/index.php:18 +#: application/views/awards/cq/index.php:3 +#: application/views/awards/cq/index.php:150 application/views/csv/index.php:80 +#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/logbookadvanced/edit.php:6 +#: application/views/logbookadvanced/index.php:246 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:284 +#: application/views/qso/index.php:390 +#: application/views/search/cqzones_result.php:13 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:264 +#: application/views/timeplotter/index.php:44 +msgid "CQ Zone" +msgstr "" + +#: application/views/awards/cq/index.php:4 +#: application/views/awards/itu/index.php:4 +msgid "Hover over a zone" +msgstr "" + +#: application/views/awards/cq/index.php:20 msgid "CQ Magazine WAZ Award" msgstr "" -#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:21 msgid "" "The CQ Magazine is located in the US and one of the most popular amateur " "radio magazines in the world. The magazine first appeared in January 1945 " "and focuses on awards and the practical aspects of amateur radio." msgstr "" -#: application/views/awards/cq/index.php:20 +#: application/views/awards/cq/index.php:22 msgid "" "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to " "all 40 CQ Zones along with the corresponding confirmation." msgstr "" -#: application/views/awards/cq/index.php:21 +#: application/views/awards/cq/index.php:23 #, php-format msgctxt "uses 'CQ Magazine'" msgid "You can find all the information and rules on the Website of the %s." msgstr "" -#: application/views/awards/cq/index.php:23 +#: application/views/awards/cq/index.php:25 msgid "Awards - CQ Magazine WAZ" msgstr "" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 #: application/views/awards/wab/list.php:6 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:73 -#: application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:362 -#: application/views/interface_assets/footer.php:39 +#: application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:378 +#: application/views/interface_assets/footer.php:40 #: application/views/visitor/index.php:266 msgid "Confirmed" msgstr "Kuitattu" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:256 +#: application/views/dashboard/index.php:372 #: application/views/visitor/index.php:262 msgid "Worked" msgstr "Workittu" -#: application/views/awards/cq/index.php:36 +#: application/views/awards/cq/index.php:38 #: application/views/awards/dok/index.php:41 #: application/views/awards/dxcc/index.php:43 -#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:43 -#: application/views/awards/itu/index.php:36 +#: application/views/awards/itu/index.php:38 #: application/views/awards/jcc/index.php:34 -#: application/views/awards/rac/index.php:27 -#: application/views/awards/waja/index.php:35 -#: application/views/awards/was/index.php:35 +#: application/views/awards/rac/index.php:29 +#: application/views/awards/wac/index.php:26 +#: application/views/awards/waja/index.php:37 +#: application/views/awards/was/index.php:37 msgid "Show worked" msgstr "" -#: application/views/awards/cq/index.php:40 +#: application/views/awards/cq/index.php:42 #: application/views/awards/dok/index.php:45 #: application/views/awards/dxcc/index.php:47 -#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:47 -#: application/views/awards/itu/index.php:40 +#: application/views/awards/itu/index.php:42 #: application/views/awards/jcc/index.php:38 -#: application/views/awards/rac/index.php:31 -#: application/views/awards/waja/index.php:39 -#: application/views/awards/was/index.php:39 +#: application/views/awards/rac/index.php:33 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/waja/index.php:41 +#: application/views/awards/was/index.php:41 msgid "Show confirmed" msgstr "" -#: application/views/awards/cq/index.php:44 +#: application/views/awards/cq/index.php:46 #: application/views/awards/dxcc/index.php:51 -#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:51 -#: application/views/awards/itu/index.php:44 +#: application/views/awards/itu/index.php:46 #: application/views/awards/jcc/index.php:42 -#: application/views/awards/rac/index.php:35 -#: application/views/awards/waja/index.php:43 -#: application/views/awards/was/index.php:43 +#: application/views/awards/rac/index.php:37 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/waja/index.php:45 +#: application/views/awards/was/index.php:45 msgid "Show not worked" msgstr "" -#: application/views/awards/cq/index.php:50 +#: application/views/awards/cq/index.php:52 #: application/views/awards/dok/index.php:51 #: application/views/awards/dxcc/index.php:57 -#: application/views/awards/helvetia/index.php:49 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/helvetia/index.php:51 +#: application/views/awards/itu/index.php:52 #: application/views/awards/jcc/index.php:48 -#: application/views/awards/rac/index.php:41 -#: application/views/awards/waja/index.php:49 -#: application/views/awards/was/index.php:49 +#: application/views/awards/rac/index.php:43 +#: application/views/awards/wac/index.php:40 +#: application/views/awards/waja/index.php:51 +#: application/views/awards/was/index.php:51 msgid "Show QSO with QSL Type" msgstr "" -#: application/views/awards/cq/index.php:54 -#: application/views/awards/itu/index.php:54 -#: application/views/interface_assets/footer.php:2098 -#: application/views/qso/edit_ajax.php:378 +#: application/views/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/awards/wac/index.php:44 +#: application/views/interface_assets/footer.php:2112 +#: application/views/qso/edit_ajax.php:405 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "QSL-kortti" -#: application/views/awards/cq/index.php:110 +#: application/views/awards/cq/index.php:112 #: application/views/awards/dok/index.php:126 #: application/views/awards/dxcc/index.php:186 -#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/helvetia/index.php:111 #: application/views/awards/iota/index.php:129 -#: application/views/awards/itu/index.php:110 +#: application/views/awards/itu/index.php:112 #: application/views/awards/jcc/index.php:112 -#: application/views/awards/rac/index.php:101 -#: application/views/awards/waja/index.php:113 -#: application/views/awards/was/index.php:109 +#: application/views/awards/rac/index.php:103 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/waja/index.php:115 +#: application/views/awards/was/index.php:111 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:523 +#: application/views/logbookadvanced/index.php:551 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 msgid "Reset" msgstr "" -#: application/views/awards/cq/index.php:113 +#: application/views/awards/cq/index.php:115 msgid "Show CQ Zone Map" msgstr "" -#: application/views/awards/cq/index.php:122 +#: application/views/awards/cq/index.php:124 #: application/views/awards/dxcc/index.php:199 -#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/helvetia/index.php:124 #: application/views/awards/iota/index.php:142 -#: application/views/awards/itu/index.php:122 -#: application/views/awards/rac/index.php:114 -#: application/views/awards/waja/index.php:126 -#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:124 +#: application/views/awards/rac/index.php:116 +#: application/views/awards/waja/index.php:128 +#: application/views/awards/was/index.php:124 msgid "Table" msgstr "" -#: application/views/awards/cq/index.php:125 +#: application/views/awards/cq/index.php:127 #: application/views/awards/dok/index.php:128 #: application/views/awards/dxcc/index.php:202 -#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/helvetia/index.php:127 #: application/views/awards/iota/index.php:145 -#: application/views/awards/itu/index.php:125 +#: application/views/awards/itu/index.php:127 #: application/views/awards/jcc/index.php:129 -#: application/views/awards/rac/index.php:117 +#: application/views/awards/rac/index.php:119 #: application/views/awards/wab/index.php:108 -#: application/views/awards/waja/index.php:129 -#: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:516 +#: application/views/awards/waja/index.php:131 +#: application/views/awards/was/index.php:127 +#: application/views/logbookadvanced/index.php:544 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "" -#: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 -#: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:235 -#: application/views/logbookadvanced/index.php:586 -#: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:90 -#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 -#: application/views/qso/index.php:390 -#: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:106 -#: application/views/station_profile/edit.php:126 -#: application/views/timeline/index.php:231 -#: application/views/timeplotter/index.php:44 -msgid "CQ Zone" -msgstr "" - -#: application/views/awards/cq/index.php:165 +#: application/views/awards/cq/index.php:167 #: application/views/awards/dok/index.php:165 #: application/views/awards/dxcc/index.php:248 -#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/helvetia/index.php:170 #: application/views/awards/iota/index.php:192 -#: application/views/awards/itu/index.php:165 +#: application/views/awards/itu/index.php:167 #: application/views/awards/jcc/index.php:168 -#: application/views/awards/rac/index.php:160 -#: application/views/awards/waja/index.php:168 -#: application/views/awards/was/index.php:168 +#: application/views/awards/rac/index.php:162 +#: application/views/awards/wac/index.php:168 +#: application/views/awards/waja/index.php:170 +#: application/views/awards/was/index.php:170 msgid "Summary" msgstr "" -#: application/views/awards/cq/index.php:178 +#: application/views/awards/cq/index.php:180 #: application/views/awards/dok/index.php:178 #: application/views/awards/dxcc/index.php:262 -#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:206 -#: application/views/awards/itu/index.php:178 +#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:195 -#: application/views/awards/rac/index.php:173 -#: application/views/awards/waja/index.php:182 -#: application/views/awards/was/index.php:181 +#: application/views/awards/rac/index.php:175 +#: application/views/awards/wac/index.php:181 +#: application/views/awards/waja/index.php:184 +#: application/views/awards/was/index.php:183 msgid "Total worked" msgstr "" -#: application/views/awards/cq/index.php:185 +#: application/views/awards/cq/index.php:187 #: application/views/awards/dok/index.php:185 #: application/views/awards/dxcc/index.php:269 -#: application/views/awards/helvetia/index.php:188 +#: application/views/awards/helvetia/index.php:190 #: application/views/awards/iota/index.php:213 -#: application/views/awards/itu/index.php:185 +#: application/views/awards/itu/index.php:187 #: application/views/awards/jcc/index.php:214 -#: application/views/awards/rac/index.php:180 -#: application/views/awards/waja/index.php:189 -#: application/views/awards/was/index.php:188 +#: application/views/awards/rac/index.php:182 +#: application/views/awards/wac/index.php:188 +#: application/views/awards/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "" @@ -3424,23 +3999,24 @@ msgstr "" #: application/views/awards/dok/index.php:37 #: application/views/awards/dxcc/index.php:39 -#: application/views/awards/helvetia/index.php:31 +#: application/views/awards/helvetia/index.php:33 #: application/views/awards/iota/index.php:39 #: application/views/awards/jcc/index.php:30 -#: application/views/awards/rac/index.php:23 -#: application/views/awards/waja/index.php:31 -#: application/views/awards/was/index.php:31 +#: application/views/awards/rac/index.php:25 +#: application/views/awards/waja/index.php:33 +#: application/views/awards/was/index.php:33 msgid "Worked / Confirmed" msgstr "" #: application/views/awards/dok/index.php:80 #: application/views/awards/dxcc/index.php:120 -#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/helvetia/index.php:76 #: application/views/awards/iota/index.php:94 #: application/views/awards/jcc/index.php:77 -#: application/views/awards/rac/index.php:66 -#: application/views/awards/waja/index.php:78 -#: application/views/awards/was/index.php:74 +#: application/views/awards/rac/index.php:68 +#: application/views/awards/wac/index.php:66 +#: application/views/awards/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "" @@ -3461,10 +4037,12 @@ msgid "" msgstr "" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 msgid "ARRL website" msgstr "" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 #, php-format msgid "You can find all information about the DXCC Award on the %s." msgstr "" @@ -3486,63 +4064,77 @@ msgstr "" #: application/views/awards/dxcc/index.php:87 #: application/views/awards/iota/index.php:61 #: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/logbookadvanced/edit.php:144 +#: application/views/logbookadvanced/index.php:309 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 -#: application/views/view_log/qso.php:250 +#: application/views/view_log/qso.php:253 msgid "Antarctica" msgstr "Antarktis" #: application/views/awards/dxcc/index.php:91 #: application/views/awards/iota/index.php:65 #: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/logbookadvanced/edit.php:143 +#: application/views/logbookadvanced/index.php:308 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 -#: application/views/view_log/qso.php:247 +#: application/views/view_log/qso.php:250 msgid "Africa" msgstr "Afrikka" #: application/views/awards/dxcc/index.php:95 #: application/views/awards/iota/index.php:69 #: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/logbookadvanced/edit.php:146 +#: application/views/logbookadvanced/index.php:311 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 -#: application/views/view_log/qso.php:253 +#: application/views/view_log/qso.php:256 msgid "Asia" msgstr "Aasia" #: application/views/awards/dxcc/index.php:99 #: application/views/awards/iota/index.php:73 #: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/logbookadvanced/edit.php:147 +#: application/views/logbookadvanced/index.php:312 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 -#: application/views/view_log/qso.php:256 +#: application/views/view_log/qso.php:259 msgid "Europe" msgstr "Eurooppa" #: application/views/awards/dxcc/index.php:103 #: application/views/awards/iota/index.php:77 #: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/logbookadvanced/edit.php:145 +#: application/views/logbookadvanced/index.php:310 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 -#: application/views/view_log/qso.php:259 +#: application/views/view_log/qso.php:262 msgid "North America" msgstr "Pohjois-Amerikka" #: application/views/awards/dxcc/index.php:107 #: application/views/awards/iota/index.php:81 #: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/logbookadvanced/edit.php:148 +#: application/views/logbookadvanced/index.php:313 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:265 +#: application/views/view_log/qso.php:268 msgid "South America" msgstr "Etelä-Amerikka" #: application/views/awards/dxcc/index.php:111 #: application/views/awards/iota/index.php:85 #: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/logbookadvanced/edit.php:149 +#: application/views/logbookadvanced/index.php:314 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 -#: application/views/view_log/qso.php:262 +#: application/views/view_log/qso.php:265 msgid "Oceania" msgstr "Oseania" @@ -3556,13 +4148,13 @@ msgstr "" #: application/views/awards/dxcc/index.php:226 #: application/views/awards/iota/index.php:170 -#: application/views/timeline/index.php:117 -#: application/views/timeline/index.php:204 +#: application/views/timeline/index.php:150 +#: application/views/timeline/index.php:237 msgid "Prefix" msgstr "" #: application/views/awards/ffma/index.php:8 -#: application/views/interface_assets/header.php:236 +#: application/views/interface_assets/header.php:240 msgid "Fred Fish Memorial Award" msgstr "" @@ -3617,11 +4209,20 @@ msgstr "" msgid "This map shows only QSOs worked on SAT." msgstr "" -#: application/views/awards/helvetia/index.php:18 +#: application/views/awards/helvetia/index.php:3 +msgctxt "Switzerland Canton" +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:4 +msgid "Hover over a canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:20 msgid "HELVETIA 26 | SWITZERLAND AWARD" msgstr "" -#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:21 msgid "" "The USKA (Union of Swiss Shortwave Amateurs) sponsors two awards, the " "HELVETIA 26 (H26) Award and the SWITZERLAND Award, aimed at promoting " @@ -3629,33 +4230,33 @@ msgid "" "as possible on multiple bands." msgstr "" -#: application/views/awards/helvetia/index.php:20 +#: application/views/awards/helvetia/index.php:22 msgid "" "These awards come in two versions: one for HF bands and the other for VHF " "(including SHF and UHF) bands. Valid connections for these awards date back " "to January 1, 1980" msgstr "" -#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/helvetia/index.php:23 #: application/views/awards/jcc/index.php:19 #: application/views/awards/sota/index.php:10 #: application/views/awards/wab/index.php:15 -#: application/views/awards/waja/index.php:20 +#: application/views/awards/waja/index.php:22 #: application/views/awards/wwff/index.php:10 #, php-format msgid "For more information, please visit: %s." msgstr "" -#: application/views/awards/helvetia/index.php:112 +#: application/views/awards/helvetia/index.php:114 msgid "Show Helvetia Map" msgstr "" -#: application/views/awards/helvetia/index.php:149 +#: application/views/awards/helvetia/index.php:151 msgid "Canton" msgstr "" #: application/views/awards/index.php:9 application/views/bands/index.php:46 -#: application/views/interface_assets/header.php:162 +#: application/views/interface_assets/header.php:164 msgid "CQ" msgstr "" @@ -3703,11 +4304,11 @@ msgstr "" #: application/views/awards/iota/index.php:171 #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 -#: application/views/contesting/index.php:153 -#: application/views/contesting/index.php:171 +#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:214 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:559 +#: application/views/logbookadvanced/index.php:587 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3717,12 +4318,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:19 #: application/views/stationsetup/stationsetup.php:30 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:203 application/views/user/edit.php:241 +#: application/views/timeline/index.php:236 application/views/user/edit.php:241 #: application/views/user/edit.php:263 application/views/user/edit.php:285 #: application/views/user/edit.php:307 application/views/user/edit.php:330 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:191 -#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:194 +#: application/views/view_log/qso.php:514 msgid "Name" msgstr "" @@ -3730,7 +4331,19 @@ msgstr "" msgid "Deleted" msgstr "" -#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:3 +#: application/views/awards/itu/index.php:150 +#: application/views/logbookadvanced/edit.php:10 +#: application/views/logbookadvanced/index.php:257 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:400 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 +msgid "ITU Zone" +msgstr "" + +#: application/views/awards/itu/index.php:21 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -3738,30 +4351,20 @@ msgid "" "(ITU)." msgstr "" -#: application/views/awards/itu/index.php:20 +#: application/views/awards/itu/index.php:22 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "" -#: application/views/awards/itu/index.php:23 +#: application/views/awards/itu/index.php:25 msgid "Awards - ITU Zones" msgstr "" -#: application/views/awards/itu/index.php:113 +#: application/views/awards/itu/index.php:115 msgid "Show ITU Zone Map" msgstr "" -#: application/views/awards/itu/index.php:148 -#: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:246 -#: application/views/logbookadvanced/index.php:589 -#: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:120 -#: application/views/station_profile/edit.php:143 -msgid "ITU Zone" -msgstr "" - #: application/views/awards/jcc/index.php:16 msgid "JCC - Japan Century Cities Award" msgstr "" @@ -3787,7 +4390,7 @@ msgstr "" #: application/views/awards/jcc/index.php:116 #: application/views/cabrillo/index.php:180 application/views/cfd/index.php:25 #: application/views/csv/index.php:128 application/views/dxatlas/index.php:128 -#: application/views/kml/index.php:113 +#: application/views/kml/index.php:113 application/views/reg1test/index.php:145 msgid "Export" msgstr "" @@ -3798,18 +4401,19 @@ msgid "Results" msgstr "" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 +#: application/views/distancerecords/index.php:13 msgid "Number" msgstr "" #: application/views/awards/jcc/index.php:152 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:524 msgid "City" msgstr "" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:368 #: application/views/distances/index.php:23 msgid "SAT" msgstr "" @@ -3841,15 +4445,24 @@ msgid "" msgstr "" #: application/views/awards/pota/index.php:31 -#: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:177 -#: application/views/station_profile/edit.php:245 -#: application/views/user/edit.php:595 application/views/view_log/qso.php:303 -#: application/views/view_log/qso.php:570 +#: application/views/qso/index.php:236 application/views/qso/index.php:492 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 +#: application/views/user/edit.php:595 application/views/view_log/qso.php:306 +#: application/views/view_log/qso.php:573 msgid "POTA Reference(s)" msgstr "POTA ref.nro" -#: application/views/awards/rac/index.php:104 +#: application/views/awards/rac/index.php:3 +msgctxt "Canada Province" +msgid "Province" +msgstr "" + +#: application/views/awards/rac/index.php:4 +msgid "Hover over a province" +msgstr "" + +#: application/views/awards/rac/index.php:106 msgid "Show RAC Map" msgstr "" @@ -3899,7 +4512,7 @@ msgstr "" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:535 +#: application/views/logbookadvanced/index.php:563 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -3995,17 +4608,48 @@ msgstr "" msgid "WAB Square" msgstr "" -#: application/views/awards/waja/index.php:17 +#: application/views/awards/wac/index.php:9 +msgid "" +"Sponsored by the International Amateur Radio Union (IARU), the Worked All " +"Continents award is issued for working and confirming all six continents. " +"These are North America, South America, Oceania, Asia, Europe and Africa." +msgstr "" + +#: application/views/awards/wac/index.php:13 +msgid "Awards - Worked All Continents (WAC)" +msgstr "" + +#: application/views/awards/wac/index.php:151 +#: application/views/continents/index.php:62 +#: application/views/logbookadvanced/edit.php:25 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 +#: application/views/view_log/qso.php:245 +msgid "Continent" +msgstr "" + +#: application/views/awards/waja/index.php:3 +msgctxt "Japan Prefecture" +msgid "Prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:4 +msgid "Hover over a prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:19 msgid "WAJA - Worked All Japan prefectures Award" msgstr "" -#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:20 msgid "" "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " "radio operators to work all the prefectures in Japan." msgstr "" -#: application/views/awards/waja/index.php:19 +#: application/views/awards/waja/index.php:21 msgid "" "May be claimed for having contacted (heard) and received a QSL card from an " "amateur station located in each of the 47 prefectures of Japan. A list of " @@ -4013,20 +4657,29 @@ msgid "" "however names of prefectures may be omitted." msgstr "" -#: application/views/awards/waja/index.php:116 +#: application/views/awards/waja/index.php:118 msgid "Show WAJA Map" msgstr "" -#: application/views/awards/waja/index.php:152 -#: application/views/timeline/index.php:152 +#: application/views/awards/waja/index.php:154 +#: application/views/timeline/index.php:185 msgid "Prefecture" msgstr "" -#: application/views/awards/was/index.php:18 +#: application/views/awards/was/index.php:3 +msgctxt "USA State" +msgid "State" +msgstr "" + +#: application/views/awards/was/index.php:4 +msgid "Hover over a state" +msgstr "" + +#: application/views/awards/was/index.php:20 msgid "WAS Award" msgstr "" -#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:21 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -4034,7 +4687,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:20 +#: application/views/awards/was/index.php:22 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -4043,13 +4696,13 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:21 +#: application/views/awards/was/index.php:23 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:112 +#: application/views/awards/was/index.php:114 msgid "Show WAS Map" msgstr "" @@ -4072,11 +4725,11 @@ msgid "" msgstr "" #: application/views/awards/wwff/index.php:31 -#: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:171 -#: application/views/station_profile/edit.php:232 -#: application/views/user/edit.php:591 application/views/view_log/qso.php:296 -#: application/views/view_log/qso.php:563 +#: application/views/qso/index.php:224 application/views/qso/index.php:479 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 +#: application/views/user/edit.php:591 application/views/view_log/qso.php:299 +#: application/views/view_log/qso.php:566 msgid "WWFF Reference" msgstr "WWFF ref.nro" @@ -4131,8 +4784,8 @@ msgstr "" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 #: application/views/contesting/index.php:15 -#: application/views/contesting/index.php:94 -#: application/views/contesting/index.php:169 +#: application/views/contesting/index.php:52 +#: application/views/contesting/index.php:145 #: application/views/qso/index.php:314 msgid "None" msgstr "" @@ -4212,25 +4865,25 @@ msgid "" "will be hidden and cannot be selected." msgstr "" -#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:351 -#: application/views/qso/index.php:248 application/views/qso/index.php:494 -#: application/views/user/edit.php:599 application/views/view_log/qso.php:325 -#: application/views/view_log/qso.php:577 +#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 +#: application/views/qso/index.php:248 application/views/qso/index.php:504 +#: application/views/user/edit.php:599 application/views/view_log/qso.php:328 +#: application/views/view_log/qso.php:580 msgid "Sig" msgstr "" -#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:312 -#: application/views/qso/index.php:433 +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:339 +#: application/views/qso/index.php:443 msgid "USA County" msgstr "USA lääni" #: application/views/bands/index.php:58 -#: application/views/interface_assets/header.php:208 +#: application/views/interface_assets/header.php:212 msgid "WAJA" msgstr "" #: application/views/bands/index.php:59 -#: application/views/interface_assets/header.php:232 +#: application/views/interface_assets/header.php:236 msgid "WAS" msgstr "" @@ -4260,9 +4913,8 @@ msgstr "" #: application/views/bands/index.php:152 #: application/views/contesting/add.php:74 -#: application/views/interface_assets/footer.php:42 -#: application/views/qso/components/winkeysettings.php:91 -#: application/views/qso/components/winkeysettings_results.php:91 +#: application/views/contesting/index.php:83 +#: application/views/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4292,22 +4944,28 @@ msgstr "" #: application/views/cabrillo/index.php:2 #: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:59 +#: application/views/reg1test/index.php:2 +#: application/views/reg1test/index.php:36 msgid "Proceed" msgstr "" #: application/views/cabrillo/index.php:3 +#: application/views/reg1test/index.php:3 msgid "Select Year" msgstr "" #: application/views/cabrillo/index.php:4 +#: application/views/reg1test/index.php:4 msgid "Select Contest" msgstr "" #: application/views/cabrillo/index.php:5 +#: application/views/reg1test/index.php:5 msgid "Select Date Range" msgstr "" #: application/views/cabrillo/index.php:6 +#: application/views/reg1test/index.php:7 msgid "No contests were found for this station location!" msgstr "" @@ -4320,10 +4978,12 @@ msgid "Select Station Location:" msgstr "" #: application/views/cabrillo/index.php:44 +#: application/views/reg1test/index.php:53 msgid "Club" msgstr "" #: application/views/cabrillo/index.php:48 +#: application/views/reg1test/index.php:58 msgid "Category Operator" msgstr "" @@ -4364,10 +5024,12 @@ msgid "Category Overlay" msgstr "" #: application/views/cabrillo/index.php:150 +#: application/views/reg1test/index.php:70 msgid "Operators" msgstr "" #: application/views/cabrillo/index.php:155 +#: application/views/reg1test/index.php:139 msgid "Soapbox" msgstr "" @@ -4392,6 +5054,7 @@ msgid "Address Country" msgstr "" #: application/views/cabrillo/index.php:186 +#: application/views/reg1test/index.php:150 msgid "No contests were found in your log." msgstr "" @@ -4425,13 +5088,13 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:158 +#: application/views/contesting/index.php:219 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:629 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 -#: application/views/view_log/qso.php:199 +#: application/views/view_log/qso.php:202 msgid "Comment" msgstr "Kommentti" @@ -4463,9 +5126,9 @@ msgid "No Contests" msgstr "" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/edit.php:21 -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:635 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4493,10 +5156,11 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:38 -#: application/views/dashboard/index.php:262 -#: application/views/dashboard/index.php:289 -#: application/views/dashboard/index.php:310 -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:278 +#: application/views/dashboard/index.php:305 +#: application/views/dashboard/index.php:326 +#: application/views/dashboard/index.php:347 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "" @@ -4530,7 +5194,7 @@ msgstr "" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:466 +#: application/views/interface_assets/header.php:472 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:43 @@ -4585,15 +5249,15 @@ msgid "Name of Contest in ADIF-specification" msgstr "" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "" #: application/views/contesting/edit.php:31 -#: application/views/contesting/index.php:24 -#: application/views/qso/edit_ajax.php:548 -#: application/views/view_log/qso.php:275 +#: application/views/contesting/index.php:25 +#: application/views/qso/edit_ajax.php:575 +#: application/views/view_log/qso.php:278 msgid "Contest Name" msgstr "Kilpailun nimi" @@ -4629,90 +5293,138 @@ msgstr "" msgid "Serial + Gridsquare" msgstr "" -#: application/views/contesting/index.php:34 +#: application/views/contesting/index.php:21 +msgid "Serial + Gridsquare + Exchange" +msgstr "" + +#: application/views/contesting/index.php:35 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:539 application/views/qso/index.php:352 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:352 msgid "Operator Callsign" msgstr "" -#: application/views/contesting/index.php:116 -#: application/views/contesting/index.php:208 -#: application/views/qso/edit_ajax.php:571 -msgid "Serial (S)" +#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:45 +msgid "More Settings" msgstr "" -#: application/views/contesting/index.php:121 -#: application/views/contesting/index.php:206 -msgid "Exch (S)" -msgstr "" - -#: application/views/contesting/index.php:126 -msgid "Gridsquare (S)" -msgstr "" - -#: application/views/contesting/index.php:136 -#: application/views/contesting/index.php:209 -#: application/views/qso/edit_ajax.php:566 -msgid "Serial (R)" -msgstr "" - -#: application/views/contesting/index.php:141 -#: application/views/contesting/index.php:207 -msgid "Exch (R)" -msgstr "" - -#: application/views/contesting/index.php:146 -msgid "Gridsquare (R)" -msgstr "" - -#: application/views/contesting/index.php:163 -msgid "Reset QSO" -msgstr "Nollaa QSO" - -#: application/views/contesting/index.php:164 -#: application/views/qso/index.php:607 -msgid "Save QSO" -msgstr "TALLENNA QSO" - -#: application/views/contesting/index.php:166 +#: application/views/contesting/index.php:49 msgid "Copy received exchange to" msgstr "" -#: application/views/contesting/index.php:168 +#: application/views/contesting/index.php:51 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "" -#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:55 msgid "Age" msgstr "" -#: application/views/contesting/index.php:174 +#: application/views/contesting/index.php:57 msgid "RX Power (W)" msgstr "" -#: application/views/contesting/index.php:175 +#: application/views/contesting/index.php:58 msgid "Locator" msgstr "Lokaattori" -#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:59 +#: application/views/qso/edit_ajax.php:177 +msgid "QTH" +msgstr "" + +#: application/views/contesting/index.php:64 +msgid "Sequence of Exchanges" +msgstr "" + +#: application/views/contesting/index.php:67 +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 "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Grid" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Serial" +msgstr "" + +#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:255 +#: application/views/qso/edit_ajax.php:598 +msgid "Serial (S)" +msgstr "" + +#: application/views/contesting/index.php:177 +msgid "Gridsquare (S)" +msgstr "" + +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:253 +msgid "Exch (S)" +msgstr "" + +#: application/views/contesting/index.php:196 +#: application/views/contesting/index.php:256 +#: application/views/qso/edit_ajax.php:593 +msgid "Serial (R)" +msgstr "" + +#: application/views/contesting/index.php:201 +msgid "Gridsquare (R)" +msgstr "" + +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:254 +msgid "Exch (R)" +msgstr "" + +#: application/views/contesting/index.php:224 +msgid "Reset QSO" +msgstr "Nollaa QSO" + +#: application/views/contesting/index.php:225 +#: application/views/qso/index.php:629 +msgid "Save QSO" +msgstr "TALLENNA QSO" + +#: application/views/contesting/index.php:234 msgid "Callsign Suggestions" msgstr "Ehdotettu kutsu" -#: application/views/contesting/index.php:194 +#: application/views/contesting/index.php:241 msgid "Contest Logbook" msgstr "Kilpailussa pidetyt yhteydet" -#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:258 #: application/views/qso/edit_ajax.php:164 msgid "VUCC Gridsquare" msgstr "" -#: application/views/continents/index.php:62 -#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 -#: application/views/view_log/qso.php:242 -msgid "Continent" -msgstr "" - #: application/views/continents/index.php:63 #: application/views/statistics/index.php:19 #: application/views/statistics/index.php:113 @@ -4730,14 +5442,15 @@ msgstr "" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:261 -#: application/views/station_profile/edit.php:314 +#: application/views/options/appearance.php:109 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 msgid "Enabled" msgstr "" -#: application/views/cron/edit.php:36 application/views/cron/index.php:53 +#: application/views/cron/edit.php:36 application/views/cron/index.php:55 msgid "Intervall" msgstr "" @@ -4787,6 +5500,7 @@ msgstr "" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "" @@ -4800,79 +5514,84 @@ msgid "" "requiring CLI access." msgstr "" -#: application/views/cron/index.php:18 +#: application/views/cron/index.php:19 msgid "" "To execute cron jobs based on the data below, remove all old cron jobs and " "create a new one:" msgstr "" -#: application/views/cron/index.php:27 application/views/cron/index.php:31 -msgid "Status Master-Cron" +#: application/views/cron/index.php:29 application/views/cron/index.php:33 +msgid "Status Master-Cron:" msgstr "" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgctxt "PHP Version" msgid "Min. Version is" msgstr "" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgid "PHP Version not supported." msgstr "" -#: application/views/cron/index.php:41 +#: application/views/cron/index.php:43 msgid "Cron List" msgstr "" -#: application/views/cron/index.php:50 +#: application/views/cron/index.php:52 #: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "" -#: application/views/cron/index.php:54 +#: application/views/cron/index.php:56 msgid "Last Run" msgstr "" -#: application/views/cron/index.php:55 +#: application/views/cron/index.php:57 msgid "Next Run" msgstr "" -#: application/views/cron/index.php:68 +#: application/views/cron/index.php:70 msgid "healthy" msgstr "" -#: application/views/cron/index.php:70 +#: application/views/cron/index.php:72 msgid "failed" msgstr "" -#: application/views/cron/index.php:75 +#: application/views/cron/index.php:74 +msgid "pending" +msgstr "" + +#: application/views/cron/index.php:79 msgid "disabled" msgstr "" -#: application/views/cron/index.php:79 application/views/cron/index.php:81 -#: application/views/cron/index.php:83 application/views/debug/index.php:494 +#: application/views/cron/index.php:83 application/views/cron/index.php:85 +#: application/views/cron/index.php:87 application/views/debug/index.php:494 #: application/views/debug/index.php:500 application/views/debug/index.php:505 #: application/views/debug/index.php:510 application/views/debug/index.php:515 #: application/views/debug/index.php:520 application/views/debug/index.php:525 +#: application/views/user/index.php:138 msgid "never" msgstr "" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:102 msgid "Your Mastercron isn't running." msgstr "" -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:103 msgid "" "Copy the cron above to a external cron service or into your server's cron to " "use this cron manager." msgstr "" -#: application/views/cron/index.php:100 +#: application/views/cron/index.php:104 msgid "" "On a basic linux server with shell access use this command to edit your " "crons:" msgstr "" -#: application/views/cron/index.php:107 +#: application/views/cron/index.php:111 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -4890,154 +5609,10 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:411 msgid "Propagation Mode" msgstr "Propagaatiomuoto" -#: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:214 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 -msgctxt "Propagation Mode" -msgid "Aircraft Scatter" -msgstr "" - -#: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:215 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 -msgctxt "Propagation Mode" -msgid "Aurora" -msgstr "" - -#: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:216 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 -msgctxt "Propagation Mode" -msgid "Aurora-E" -msgstr "" - -#: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:217 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 -msgctxt "Propagation Mode" -msgid "Back scatter" -msgstr "" - -#: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:218 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 -msgctxt "Propagation Mode" -msgid "EchoLink" -msgstr "" - -#: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:219 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 -msgctxt "Propagation Mode" -msgid "Earth-Moon-Earth" -msgstr "" - -#: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:220 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 -msgctxt "Propagation Mode" -msgid "Sporadic E" -msgstr "" - -#: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:221 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 -msgctxt "Propagation Mode" -msgid "Field Aligned Irregularities" -msgstr "" - -#: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:222 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 -msgctxt "Propagation Mode" -msgid "F2 Reflection" -msgstr "" - -#: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:223 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 -msgctxt "Propagation Mode" -msgid "Internet-assisted" -msgstr "" - -#: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:224 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 -msgctxt "Propagation Mode" -msgid "Ionoscatter" -msgstr "" - -#: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:225 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 -msgctxt "Propagation Mode" -msgid "IRLP" -msgstr "" - -#: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:226 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 -msgctxt "Propagation Mode" -msgid "Meteor scatter" -msgstr "" - -#: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:227 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 -msgctxt "Propagation Mode" -msgid "Terrestrial or atmospheric repeater or transponder" -msgstr "" - -#: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:228 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 -msgctxt "Propagation Mode" -msgid "Rain scatter" -msgstr "" - -#: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:229 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 -msgctxt "Propagation Mode" -msgid "Satellite" -msgstr "Satelliitti" - -#: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:230 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 -msgctxt "Propagation Mode" -msgid "Trans-equatorial" -msgstr "" - -#: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:231 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 -msgctxt "Propagation Mode" -msgid "Tropospheric ducting" -msgstr "" - #: application/views/dashboard/index.php:5 msgid "RSTS" msgstr "" @@ -5046,85 +5621,99 @@ msgstr "" msgid "RSTR" msgstr "" -#: application/views/dashboard/index.php:56 +#: application/views/dashboard/index.php:58 msgid "" "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" msgstr "" -#: application/views/dashboard/index.php:63 +#: application/views/dashboard/index.php:65 #, php-format msgctxt "Dashboard Warning" -msgid "You need to update country files! Click %s to do it." +msgid "You need to update country files! Click %shere%s to do it." msgstr "" -#: application/views/dashboard/index.php:72 +#: application/views/dashboard/index.php:73 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station locations. Click %s to do it:" +msgid "You have no station locations. Click %shere%s to do it." msgstr "" #: application/views/dashboard/index.php:81 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station logbook. Click %s to do it:" +msgid "You have no station logbook. Click %shere%s to do it." msgstr "" -#: application/views/dashboard/index.php:91 +#: application/views/dashboard/index.php:89 +#, php-format +msgctxt "Dashboard Warning" +msgid "" +"Your active Station Location isn't linked to your Logbook. Click %shere%s to " +"do it." +msgstr "" + +#: application/views/dashboard/index.php:97 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station linked to your Logbook. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:106 #, php-format msgid "You have had %d QSO today" msgid_plural "You have had %d QSOs today" msgstr[0] "" msgstr[1] "" -#: application/views/dashboard/index.php:97 +#: application/views/dashboard/index.php:112 msgid "You have made no QSOs today; time to turn on the radio!" msgstr "Ei kusoja tänään - siis radio päälle ja bandeille!" -#: application/views/dashboard/index.php:104 +#: application/views/dashboard/index.php:119 msgid "Attention: you need to set an active station location." msgstr "Varoitus: sinun täytyy valita aktiivinen asemaprofiili." -#: application/views/dashboard/index.php:110 +#: application/views/dashboard/index.php:125 msgid "" "You have themes without defined theme mode. Please ask the admin to edit the " "themes." msgstr "" -#: application/views/dashboard/index.php:118 +#: application/views/dashboard/index.php:133 msgid "At least one of your LoTW certificates is expired!" msgstr "Vähintään yksi LoTW:n kutsumerkin varmenteesi on vanhentunut!!" -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:139 msgid "At least one of your LoTW certificates is about to expire!" msgstr "Vähintään yksi LoTW:n kutsumerkin varmenteesi on vanhentumassa!" -#: application/views/dashboard/index.php:213 +#: application/views/dashboard/index.php:229 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "Yhteystilasto" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:252 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "Maatilasto" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:269 #: application/views/visitor/index.php:275 msgid "Needed" msgstr "Tarvittu" -#: application/views/dashboard/index.php:266 -#: application/views/dashboard/index.php:293 -#: application/views/dashboard/index.php:314 -#: application/views/dashboard/index.php:335 +#: application/views/dashboard/index.php:282 +#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:330 +#: application/views/dashboard/index.php:351 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:167 -#: application/views/qso/edit_ajax.php:390 -#: application/views/qso/edit_ajax.php:451 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:550 +#: application/views/qso/edit_ajax.php:417 +#: application/views/qso/edit_ajax.php:478 +#: application/views/qso/edit_ajax.php:518 application/views/qso/index.php:572 #: application/views/search/result_search.php:8 #: application/views/search/search_result_ajax.php:180 #: application/views/search/search_result_ajax.php:260 @@ -5132,91 +5721,91 @@ msgstr "Tarvittu" #: application/views/search/search_result_ajax.php:332 #: application/views/search/search_result_ajax.php:362 #: application/views/statistics/custom_result.php:89 -#: application/views/view_log/partial/log_ajax.php:140 -#: application/views/view_log/partial/log_ajax.php:217 -#: application/views/view_log/partial/log_ajax.php:237 -#: application/views/view_log/partial/log_ajax.php:287 -#: application/views/view_log/partial/log_ajax.php:295 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:289 +#: application/views/view_log/partial/log_ajax.php:297 #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 -#: src/QSLManager/QSO.php:371 src/QSLManager/QSO.php:423 -#: src/QSLManager/QSO.php:459 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:270 +#: src/QSLManager/QSO.php:373 src/QSLManager/QSO.php:425 +#: src/QSLManager/QSO.php:461 msgid "Sent" msgstr "Lähetetyt" -#: application/views/dashboard/index.php:272 -#: application/views/dashboard/index.php:299 -#: application/views/dashboard/index.php:320 -#: application/views/dashboard/index.php:341 +#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:315 +#: application/views/dashboard/index.php:336 +#: application/views/dashboard/index.php:357 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 #: application/views/qslprint/qsolist.php:151 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:423 -#: application/views/qso/edit_ajax.php:464 -#: application/views/qso/edit_ajax.php:503 +#: application/views/qso/edit_ajax.php:450 +#: application/views/qso/edit_ajax.php:491 +#: application/views/qso/edit_ajax.php:530 #: application/views/search/search_result_ajax.php:222 #: application/views/search/search_result_ajax.php:273 #: application/views/search/search_result_ajax.php:313 #: application/views/search/search_result_ajax.php:345 #: application/views/search/search_result_ajax.php:375 -#: application/views/view_log/partial/log_ajax.php:178 -#: application/views/view_log/partial/log_ajax.php:218 -#: application/views/view_log/partial/log_ajax.php:263 -#: application/views/view_log/partial/log_ajax.php:288 -#: application/views/view_log/partial/log_ajax.php:296 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:265 +#: application/views/view_log/partial/log_ajax.php:290 +#: application/views/view_log/partial/log_ajax.php:298 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 -#: src/QSLManager/QSO.php:394 src/QSLManager/QSO.php:436 -#: src/QSLManager/QSO.php:472 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:315 +#: src/QSLManager/QSO.php:396 src/QSLManager/QSO.php:438 +#: src/QSLManager/QSO.php:474 msgid "Received" msgstr "Vastaanotetut" -#: application/views/dashboard/index.php:278 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:388 -#: application/views/logbookadvanced/index.php:399 +#: application/views/dashboard/index.php:294 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:415 +#: application/views/logbookadvanced/index.php:426 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 -#: application/views/qso/edit_ajax.php:395 -#: application/views/qso/edit_ajax.php:428 -#: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:469 +#: application/views/qso/edit_ajax.php:422 +#: application/views/qso/edit_ajax.php:455 +#: application/views/qso/edit_ajax.php:483 #: application/views/qso/edit_ajax.php:496 -#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:555 +#: application/views/qso/edit_ajax.php:523 +#: application/views/qso/edit_ajax.php:535 application/views/qso/index.php:577 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 -#: application/views/view_log/partial/log_ajax.php:146 -#: application/views/view_log/partial/log_ajax.php:184 -#: application/views/view_log/partial/log_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:273 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 -#: src/QSLManager/QSO.php:319 src/QSLManager/QSO.php:379 -#: src/QSLManager/QSO.php:402 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +#: application/views/view_log/partial/log_ajax.php:249 +#: application/views/view_log/partial/log_ajax.php:275 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:276 +#: src/QSLManager/QSO.php:321 src/QSLManager/QSO.php:381 +#: src/QSLManager/QSO.php:404 msgid "Requested" msgstr "Pyydetyt" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:304 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:351 +#: application/views/dashboard/index.php:367 msgid "VUCC-Grids" msgstr "" #: application/views/dayswithqso/index.php:2 -#: application/views/interface_assets/header.php:146 +#: application/views/interface_assets/header.php:148 msgid "Days with QSOs" msgstr "QSO:llsia päiviä" @@ -5245,7 +5834,7 @@ msgstr "" #: application/views/dayswithqso/index.php:58 #: application/views/dayswithqso/index.php:86 #: application/views/dayswithqso/index.php:108 -#: application/views/timeline/index.php:120 +#: application/views/timeline/index.php:153 msgid "End Date" msgstr "" @@ -5312,9 +5901,7 @@ msgstr "" #: application/views/debug/index.php:47 #, php-format -msgid "" -"Check this wiki article here for " -"more information." +msgid "Check this wiki article %shere%s for more information." msgstr "" #: application/views/debug/index.php:48 @@ -5458,7 +6045,7 @@ msgstr "" msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:283 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:671 msgid "Settings" msgstr "" @@ -5515,7 +6102,7 @@ msgstr "" #: application/views/debug/index.php:506 application/views/debug/index.php:511 #: application/views/debug/index.php:516 application/views/debug/index.php:521 #: application/views/debug/index.php:526 -#: application/views/station_profile/edit.php:22 +#: application/views/station_profile/edit.php:49 msgid "Update" msgstr "" @@ -5557,9 +6144,8 @@ msgstr[1] "" #: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:57 -#: application/views/station_profile/edit.php:46 -#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" @@ -5587,69 +6173,93 @@ msgid "Everything ok" msgstr "" #: application/views/debug/index.php:629 -msgid "Bulgarian" +msgid "Albanian" msgstr "" #: application/views/debug/index.php:630 -msgid "Chinese (Simplified)" +msgid "Bosnian" msgstr "" #: application/views/debug/index.php:631 -msgid "Czech" +msgid "Bulgarian" msgstr "" #: application/views/debug/index.php:632 -msgid "Dutch" +msgid "Chinese (Simplified)" msgstr "" #: application/views/debug/index.php:633 -msgid "English" +msgid "Croatian" msgstr "" #: application/views/debug/index.php:634 -msgid "Finnish" +msgid "Czech" msgstr "" #: application/views/debug/index.php:635 -msgid "French" +msgid "Dutch" msgstr "" #: application/views/debug/index.php:636 -msgid "German" +msgid "English" msgstr "" #: application/views/debug/index.php:637 -msgid "Greek" +msgid "Finnish" msgstr "" #: application/views/debug/index.php:638 -msgid "Italian" +msgid "French" msgstr "" #: application/views/debug/index.php:639 -msgid "Polish" +msgid "German" msgstr "" #: application/views/debug/index.php:640 -msgid "Portuguese" +msgid "Greek" msgstr "" #: application/views/debug/index.php:641 -msgid "Russian" +msgid "Italian" msgstr "" #: application/views/debug/index.php:642 -msgid "Spanish" +msgid "Montenegrin" msgstr "" #: application/views/debug/index.php:643 -msgid "Swedish" +msgid "Polish" msgstr "" #: application/views/debug/index.php:644 +msgid "Portuguese" +msgstr "" + +#: application/views/debug/index.php:645 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:646 +msgid "Serbian" +msgstr "" + +#: application/views/debug/index.php:647 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:648 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:649 msgid "Turkish" msgstr "" +#: application/views/distancerecords/index.php:4 +msgid "This page lists distance records per satellite based on gridsquares." +msgstr "" + #: application/views/distances/index.php:7 #: application/views/interface_assets/footer.php:30 #: application/views/simplefle/index.php:68 @@ -5657,7 +6267,8 @@ msgid "QSO Data" msgstr "" #: application/views/distances/index.php:9 -msgid "contacts were plotted.
Your furthest contact was with" +#, php-format +msgid "contacts were plotted.%s Your furthest contact was with" msgstr "" #: application/views/distances/index.php:10 @@ -5699,7 +6310,7 @@ msgid "Date to" msgstr "" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:366 +#: application/views/view_log/qso.php:369 msgid "QSL Info" msgstr "" @@ -5725,7 +6336,7 @@ msgstr "" #: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 #: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 #: application/views/eqsl/tools.php:15 -#: application/views/interface_assets/header.php:243 +#: application/views/interface_assets/header.php:247 msgid "Tools" msgstr "" @@ -5865,27 +6476,15 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2324 -#: application/views/interface_assets/footer.php:2342 -#: application/views/interface_assets/footer.php:2363 -#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2338 +#: application/views/interface_assets/footer.php:2356 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 #: application/views/qslcard/index.php:66 -#: application/views/view_log/qso.php:614 +#: application/views/view_log/qso.php:617 msgid "View" msgstr "" -#: application/views/gridmap/index.php:38 -#: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:604 -#: application/views/logbookadvanced/useroptions.php:118 -msgid "Propagation" -msgstr "" - -#: application/views/gridmap/index.php:42 -msgid "None/Empty" -msgstr "" - #: application/views/gridmap/index.php:43 msgid "All except SAT" msgstr "" @@ -5981,8 +6580,8 @@ msgstr "" #: application/views/interface_assets/footer.php:31 #: application/views/search/search_result_ajax.php:404 #: application/views/view_log/partial/log.php:135 -#: application/views/view_log/partial/log_ajax.php:318 -#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log_ajax.php:320 +#: application/views/view_log/qso.php:437 msgid "Edit QSO" msgstr "Muokkaa QSO:a" @@ -5990,171 +6589,192 @@ msgstr "Muokkaa QSO:a" msgid "Attention" msgstr "" -#: application/views/interface_assets/footer.php:36 -msgid "OK" -msgstr "" - -#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/footer.php:38 msgid "Warning! Are you sure you want delete QSO with " msgstr "" -#: application/views/interface_assets/footer.php:38 +#: application/views/interface_assets/footer.php:39 #: application/views/user/edit.php:493 msgid "Colors" msgstr "" -#: application/views/interface_assets/footer.php:40 +#: application/views/interface_assets/footer.php:41 msgid "Worked not confirmed" msgstr "" -#: application/views/interface_assets/footer.php:41 +#: application/views/interface_assets/footer.php:42 msgid "Not worked" msgstr "" -#: application/views/interface_assets/footer.php:44 -#: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/interface_assets/footer.php:46 +#: application/views/qso/index.php:623 +#: application/views/visitor/layout/footer.php:246 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:47 #: application/views/qso/edit_ajax.php:211 -#: application/views/qso/edit_ajax.php:512 +#: application/views/qso/edit_ajax.php:539 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "" -#: application/views/interface_assets/footer.php:127 -#: application/views/interface_assets/header.php:434 +#: application/views/interface_assets/footer.php:48 +msgid "No states for this DXCC available" +msgstr "" + +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "" + +#: application/views/interface_assets/footer.php:132 +#: application/views/interface_assets/header.php:440 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:392 +#: application/views/interface_assets/footer.php:398 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:395 +#: application/views/interface_assets/footer.php:401 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:411 +#: application/views/interface_assets/footer.php:417 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:413 +#: application/views/interface_assets/footer.php:419 #: application/views/search/filter.php:46 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:415 +#: application/views/interface_assets/footer.php:421 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:420 +#: application/views/interface_assets/footer.php:426 #: application/views/search/filter.php:60 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:432 -#: application/views/interface_assets/footer.php:561 -#: application/views/interface_assets/footer.php:625 +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:437 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:458 -#: application/views/interface_assets/footer.php:589 +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 #: application/views/search/filter.php:79 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:496 +#: application/views/interface_assets/footer.php:502 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:516 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:519 +#: application/views/interface_assets/footer.php:525 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:545 +#: application/views/interface_assets/footer.php:551 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:549 +#: application/views/interface_assets/footer.php:555 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:678 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1156 -#, php-format -msgid "You're not logged it. Please login" +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:533 +msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:1362 -#: application/views/interface_assets/footer.php:1366 -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1506 -#: application/views/interface_assets/footer.php:1510 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:731 +msgid "Count: " +msgstr "" + +#: application/views/interface_assets/footer.php:732 +msgid "Grids: " +msgstr "" + +#: application/views/interface_assets/footer.php:1167 +#, php-format +msgid "You're not logged in. Please %slogin%s" +msgstr "" + +#: application/views/interface_assets/footer.php:1375 +#: application/views/interface_assets/footer.php:1379 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1523 +#: application/views/interface_assets/footer.php:1526 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1526 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2100 +#: application/views/interface_assets/footer.php:2114 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2120 +#: application/views/interface_assets/footer.php:2134 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2160 +#: application/views/interface_assets/footer.php:2174 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2162 +#: application/views/interface_assets/footer.php:2176 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2335 -#: application/views/interface_assets/footer.php:2374 -#: application/views/view_log/qso.php:604 +#: application/views/interface_assets/footer.php:2349 +#: application/views/interface_assets/footer.php:2388 +#: application/views/view_log/qso.php:607 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2354 +#: application/views/interface_assets/footer.php:2368 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2392 +#: application/views/interface_assets/footer.php:2406 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2403 -#: application/views/interface_assets/footer.php:2428 +#: application/views/interface_assets/footer.php:2417 +#: application/views/interface_assets/footer.php:2442 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2439 +#: application/views/interface_assets/footer.php:2453 msgid "Something went wrong. Please try again!" msgstr "" @@ -6210,91 +6830,91 @@ msgstr "Analyysit" msgid "Activated Gridsquares" msgstr "Aktivoidut ruudut" -#: application/views/interface_assets/header.php:160 +#: application/views/interface_assets/header.php:162 msgid "International" msgstr "" -#: application/views/interface_assets/header.php:166 +#: application/views/interface_assets/header.php:168 msgid "ITU" msgstr "" -#: application/views/interface_assets/header.php:186 +#: application/views/interface_assets/header.php:190 msgid "Canada" msgstr "" -#: application/views/interface_assets/header.php:192 +#: application/views/interface_assets/header.php:196 msgid "Germany" msgstr "" -#: application/views/interface_assets/header.php:196 +#: application/views/interface_assets/header.php:200 msgid "DL Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:200 +#: application/views/interface_assets/header.php:204 msgid "Great Britain" msgstr "" -#: application/views/interface_assets/header.php:202 +#: application/views/interface_assets/header.php:206 msgid "WAB" msgstr "" -#: application/views/interface_assets/header.php:206 +#: application/views/interface_assets/header.php:210 msgid "Japan" msgstr "" -#: application/views/interface_assets/header.php:212 +#: application/views/interface_assets/header.php:216 msgid "JA Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:216 +#: application/views/interface_assets/header.php:220 msgid "Luxemburg" msgstr "" -#: application/views/interface_assets/header.php:218 +#: application/views/interface_assets/header.php:222 msgid "LX Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:222 +#: application/views/interface_assets/header.php:226 msgid "Switzerland" msgstr "" -#: application/views/interface_assets/header.php:228 +#: application/views/interface_assets/header.php:232 msgid "USA" msgstr "" -#: application/views/interface_assets/header.php:234 +#: application/views/interface_assets/header.php:238 msgid "US Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:251 +#: application/views/interface_assets/header.php:255 msgid "Bandmap" msgstr "Bandikartta" -#: application/views/interface_assets/header.php:253 +#: application/views/interface_assets/header.php:257 msgid "SAT Timers" msgstr "" -#: application/views/interface_assets/header.php:256 +#: application/views/interface_assets/header.php:260 msgid "Satellite Flightpath" msgstr "" -#: application/views/interface_assets/header.php:258 +#: application/views/interface_assets/header.php:262 msgid "Satellite Pass" msgstr "" -#: application/views/interface_assets/header.php:265 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:269 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:274 msgid "Global Options" msgstr "Yleiset asetukset" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:280 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:11 +#: application/views/satellite/pass.php:495 #: application/views/statistics/custom.php:20 #: application/views/statistics/custom_result.php:21 #: application/views/statistics/index.php:39 @@ -6302,79 +6922,83 @@ msgstr "Yleiset asetukset" msgid "Satellites" msgstr "" -#: application/views/interface_assets/header.php:282 +#: application/views/interface_assets/header.php:286 msgid "Update Country Files" msgstr "Päivitä Country Files" -#: application/views/interface_assets/header.php:286 +#: application/views/interface_assets/header.php:290 msgid "Debug Information" msgstr "" -#: application/views/interface_assets/header.php:333 +#: application/views/interface_assets/header.php:337 msgid "Add/Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:335 +#: application/views/interface_assets/header.php:339 msgid "Log" msgstr "" -#: application/views/interface_assets/header.php:342 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:346 +#: application/views/logbookadvanced/index.php:474 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:371 +#: application/views/interface_assets/header.php:375 #: application/views/user/edit.php:49 msgid "Account" msgstr "" -#: application/views/interface_assets/header.php:386 +#: application/views/interface_assets/header.php:390 msgid "Other Export Options" msgstr "" -#: application/views/interface_assets/header.php:394 +#: application/views/interface_assets/header.php:398 msgid "Cabrillo Export" msgstr "" -#: application/views/interface_assets/header.php:418 -msgid "QSL Queue" -msgstr "" - -#: application/views/interface_assets/header.php:419 -msgid "Labels" -msgstr "Tarrat" - -#: application/views/interface_assets/header.php:421 -msgid "Third-Party Services" +#: application/views/interface_assets/header.php:400 +msgid "EDI Export" msgstr "" #: application/views/interface_assets/header.php:424 +msgid "QSL Queue" +msgstr "" + +#: application/views/interface_assets/header.php:425 +msgid "Labels" +msgstr "Tarrat" + +#: application/views/interface_assets/header.php:427 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:430 msgid "eQSL Import / Export" msgstr "eQSL Tuonti / Vienti" -#: application/views/interface_assets/header.php:425 +#: application/views/interface_assets/header.php:431 msgid "HRDLog Logbook" msgstr "HRDLog Logi" -#: application/views/interface_assets/header.php:435 +#: application/views/interface_assets/header.php:441 msgid "Help" msgstr "" -#: application/views/interface_assets/header.php:436 +#: application/views/interface_assets/header.php:442 msgid "Forum" msgstr "Foorumi" -#: application/views/interface_assets/header.php:438 +#: application/views/interface_assets/header.php:444 msgid "Logout" msgstr "Kirjaudu ulos" -#: application/views/interface_assets/header.php:446 +#: application/views/interface_assets/header.php:452 msgid "Select a Location" msgstr "" -#: application/views/interface_assets/header.php:525 +#: application/views/interface_assets/header.php:531 msgid "Extras" msgstr "" @@ -6645,86 +7269,122 @@ msgid "Start printing at?" msgstr "" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:405 -#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" -#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/edit.php:23 msgid "LoTW Sent" msgstr "" -#: application/views/logbookadvanced/edit.php:23 +#: application/views/logbookadvanced/edit.php:24 msgid "LoTW Received" msgstr "" -#: application/views/logbookadvanced/edit.php:73 +#: application/views/logbookadvanced/edit.php:75 msgid "SAT Mode" msgstr "" -#: application/views/logbookadvanced/edit.php:87 +#: application/views/logbookadvanced/edit.php:89 msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:174 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:144 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:148 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:152 +#: application/views/logbookadvanced/index.php:569 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:148 +#: application/views/logbookadvanced/index.php:159 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:224 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:540 +msgid "Invalid" +msgstr "" + +#: application/views/logbookadvanced/index.php:324 msgid "QSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:375 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:397 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:439 #: application/views/lookup/lotwuser.php:12 -#: application/views/qso/edit_ajax.php:394 -#: application/views/qso/edit_ajax.php:427 -#: application/views/qso/edit_ajax.php:455 -#: application/views/qso/edit_ajax.php:468 +#: application/views/qso/edit_ajax.php:421 +#: application/views/qso/edit_ajax.php:454 +#: application/views/qso/edit_ajax.php:482 #: application/views/qso/edit_ajax.php:495 -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 +#: application/views/qso/edit_ajax.php:522 +#: application/views/qso/edit_ajax.php:534 application/views/qso/index.php:576 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:209 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:236 -#: application/views/station_profile/create.php:275 -#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 #: application/views/station_profile/create.php:293 -#: application/views/station_profile/edit.php:330 -#: application/views/station_profile/edit.php:338 -#: application/views/station_profile/edit.php:364 -#: application/views/station_profile/edit.php:385 -#: application/views/station_profile/edit.php:403 -#: application/views/station_profile/edit.php:410 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 +#: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 #: application/views/user/edit.php:347 application/views/user/edit.php:358 #: application/views/user/edit.php:369 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:399 @@ -6734,35 +7394,35 @@ msgstr "" msgid "Yes" msgstr "Kyllä" -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 -#: application/views/logbookadvanced/index.php:376 -#: application/views/logbookadvanced/index.php:387 -#: application/views/logbookadvanced/index.php:398 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:440 #: application/views/lookup/lotwuser.php:14 -#: application/views/qso/edit_ajax.php:393 -#: application/views/qso/edit_ajax.php:426 -#: application/views/qso/edit_ajax.php:454 -#: application/views/qso/edit_ajax.php:467 +#: application/views/qso/edit_ajax.php:420 +#: application/views/qso/edit_ajax.php:453 +#: application/views/qso/edit_ajax.php:481 #: application/views/qso/edit_ajax.php:494 -#: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 +#: application/views/qso/edit_ajax.php:521 +#: application/views/qso/edit_ajax.php:533 application/views/qso/index.php:575 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:210 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:237 -#: application/views/station_profile/create.php:276 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/create.php:292 -#: application/views/station_profile/edit.php:331 -#: application/views/station_profile/edit.php:339 -#: application/views/station_profile/edit.php:365 -#: application/views/station_profile/edit.php:386 -#: application/views/station_profile/edit.php:404 -#: application/views/station_profile/edit.php:411 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 #: application/views/user/edit.php:348 application/views/user/edit.php:359 #: application/views/user/edit.php:370 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:400 @@ -6773,32 +7433,32 @@ msgstr "Kyllä" msgid "No" msgstr "Ei" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 -#: application/views/logbookadvanced/index.php:389 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:416 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 -#: application/views/qso/edit_ajax.php:396 -#: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:497 application/views/qso/index.php:556 +#: application/views/qso/edit_ajax.php:423 +#: application/views/qso/edit_ajax.php:484 +#: application/views/qso/edit_ajax.php:524 application/views/qso/index.php:578 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:225 -#: application/views/view_log/partial/log_ajax.php:143 -#: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +#: src/QSLManager/QSO.php:273 src/QSLManager/QSO.php:318 msgid "Queued" msgstr "" -#: application/views/logbookadvanced/index.php:304 -#: application/views/logbookadvanced/index.php:314 -#: application/views/logbookadvanced/index.php:346 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:368 -#: application/views/logbookadvanced/index.php:378 -#: application/views/logbookadvanced/index.php:390 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:373 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:417 +#: application/views/logbookadvanced/index.php:427 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6806,42 +7466,42 @@ msgstr "" #: application/views/qslprint/qsolist.php:109 #: application/views/qslprint/qsolist.php:174 #: application/views/qslprint/qsolist.php:189 -#: application/views/qso/edit_ajax.php:397 -#: application/views/qso/edit_ajax.php:429 -#: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:470 -#: application/views/qso/edit_ajax.php:498 -#: application/views/qso/edit_ajax.php:509 application/views/qso/index.php:557 +#: application/views/qso/edit_ajax.php:424 +#: application/views/qso/edit_ajax.php:456 +#: application/views/qso/edit_ajax.php:485 +#: application/views/qso/edit_ajax.php:497 +#: application/views/qso/edit_ajax.php:525 +#: application/views/qso/edit_ajax.php:536 application/views/qso/index.php:579 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/search/search_result_ajax.php:305 #: application/views/search/search_result_ajax.php:320 -#: application/views/view_log/partial/log_ajax.php:149 -#: application/views/view_log/partial/log_ajax.php:187 -#: application/views/view_log/partial/log_ajax.php:242 -#: application/views/view_log/partial/log_ajax.php:268 -#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 -#: src/QSLManager/QSO.php:375 src/QSLManager/QSO.php:398 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +#: application/views/view_log/partial/log_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:270 +#: src/QSLManager/QSO.php:279 src/QSLManager/QSO.php:324 +#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:400 msgid "Invalid (Ignore)" msgstr "Virheellinen (Ohita)" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:335 msgid "QSL received" msgstr "" -#: application/views/logbookadvanced/index.php:315 -#: application/views/logbookadvanced/index.php:357 -#: application/views/logbookadvanced/index.php:379 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:428 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:346 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:359 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6850,268 +7510,264 @@ msgstr "" #: application/views/qslprint/qsolist.php:77 #: application/views/qslprint/qsolist.php:119 #: application/views/qslprint/qsolist.php:210 -#: application/views/qso/edit_ajax.php:408 -#: application/views/qso/edit_ajax.php:441 application/views/qso/index.php:568 +#: application/views/qso/edit_ajax.php:435 +#: application/views/qso/edit_ajax.php:468 application/views/qso/index.php:590 #: application/views/search/search_result_ajax.php:199 #: application/views/search/search_result_ajax.php:241 -#: application/views/view_log/partial/log_ajax.php:162 -#: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +#: src/QSLManager/QSO.php:296 src/QSLManager/QSO.php:339 msgid "Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:360 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 #: application/views/qslprint/qsolist.php:80 #: application/views/qslprint/qsolist.php:122 #: application/views/qslprint/qsolist.php:211 -#: application/views/qso/edit_ajax.php:407 -#: application/views/qso/edit_ajax.php:440 application/views/qso/index.php:567 +#: application/views/qso/edit_ajax.php:434 +#: application/views/qso/edit_ajax.php:467 application/views/qso/index.php:589 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 -#: application/views/view_log/partial/log_ajax.php:165 -#: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +#: src/QSLManager/QSO.php:299 src/QSLManager/QSO.php:342 msgid "Direct" msgstr "" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 #: application/views/qslprint/qsolist.php:86 #: application/views/qslprint/qsolist.php:128 #: application/views/qslprint/qsolist.php:212 -#: application/views/qso/edit_ajax.php:409 -#: application/views/qso/edit_ajax.php:442 application/views/qso/index.php:569 +#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:591 #: application/views/search/search_result_ajax.php:208 #: application/views/search/search_result_ajax.php:250 -#: application/views/view_log/partial/log_ajax.php:171 -#: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +#: src/QSLManager/QSO.php:305 src/QSLManager/QSO.php:348 msgid "Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:362 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 -#: application/views/qso/edit_ajax.php:410 -#: application/views/qso/edit_ajax.php:443 application/views/qso/index.php:570 +#: application/views/qso/edit_ajax.php:437 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:592 #: application/views/search/search_result_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:206 +#: application/views/view_log/partial/log_ajax.php:208 msgid "Manager" msgstr "Manageri" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:356 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:366 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:377 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:388 msgid "Clublog sent" msgstr "" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:399 msgid "Clublog received" msgstr "" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:410 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:436 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:448 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" -#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:451 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:425 -#: application/views/qso/edit_ajax.php:595 +#: application/views/logbookadvanced/index.php:452 +#: application/views/qso/edit_ajax.php:622 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:453 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:454 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:456 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:457 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:459 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:460 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:462 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:463 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:465 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:466 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:472 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:477 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:480 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:486 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:492 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:495 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:498 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:501 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:507 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:516 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:518 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:527 #: application/views/qso/index.php:272 -#: application/views/station_profile/edit.php:65 +#: application/views/station_profile/edit.php:92 msgid "Location" msgstr "Sijainti" -#: application/views/logbookadvanced/index.php:506 -msgid "Callsign: " -msgstr "" - -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:539 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:547 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:605 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:650 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -7139,41 +7795,15 @@ msgstr "" msgid "Column" msgstr "" -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/useroptions.php:152 msgctxt "Map Options" msgid "Layer" msgstr "" -#: application/views/logbookadvanced/useroptions.php:149 +#: application/views/logbookadvanced/useroptions.php:153 msgid "Default on" msgstr "" -#: application/views/logbookadvanced/useroptions.php:154 -#: application/views/stationsetup/exportmapoptions.php:23 -msgctxt "Map Options" -msgid "Path lines" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:158 -msgctxt "Map Options" -msgid "Gridsquares" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:162 -msgctxt "Map Options" -msgid "CQ Zones" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:166 -msgctxt "Map Options" -msgid "ITU Zones" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:170 -msgctxt "Map Options" -msgid "Night Shadow" -msgstr "" - #: application/views/lookup/index.php:8 msgid "US State" msgstr "" @@ -7277,60 +7907,64 @@ msgstr "Kutsumerkin varmenteet" msgid "Upload Certificate" msgstr "Lataa ja tuo kutsumerkin varmenne" -#: application/views/lotw_views/index.php:41 +#: application/views/lotw_views/index.php:37 msgid "QSO Start Date" msgstr "QSO aloituspäivä" -#: application/views/lotw_views/index.php:42 +#: application/views/lotw_views/index.php:38 msgid "QSO End Date" msgstr "QSO lopetuspäivä" -#: application/views/lotw_views/index.php:43 +#: application/views/lotw_views/index.php:39 msgid "Date Created" msgstr "Päivä jolloin luotu" -#: application/views/lotw_views/index.php:44 +#: application/views/lotw_views/index.php:40 msgid "Date Expires" msgstr "Päivä joloin vanhenee" -#: application/views/lotw_views/index.php:46 -#: application/views/view_log/qso.php:404 +#: application/views/lotw_views/index.php:42 +#: application/views/view_log/qso.php:407 msgid "Last Upload" msgstr "Last upload" -#: application/views/lotw_views/index.php:91 +#: application/views/lotw_views/index.php:87 msgid "Expired" msgstr "Vanhentunut" -#: application/views/lotw_views/index.php:93 +#: application/views/lotw_views/index.php:89 msgid "Expiring" msgstr "Vanhenee" -#: application/views/lotw_views/index.php:105 +#: application/views/lotw_views/index.php:91 +msgid "Valid" +msgstr "Voimassa" + +#: application/views/lotw_views/index.php:101 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:108 +#: application/views/lotw_views/index.php:104 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:114 +#: application/views/lotw_views/index.php:110 msgid "Not Synced" msgstr "Ei synkronoitu" -#: application/views/lotw_views/index.php:129 +#: application/views/lotw_views/index.php:125 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:144 +#: application/views/lotw_views/index.php:140 msgid "Information" msgstr "Info" -#: application/views/lotw_views/index.php:149 +#: application/views/lotw_views/index.php:145 msgid "Manual Sync" msgstr "Synkronoi yhteydet manuaalisesti" @@ -7548,6 +8182,14 @@ msgstr "" msgid "This enables the button to Wavelog's Github page in the public view" msgstr "" +#: application/views/options/appearance.php:107 +msgid "Public Login Button" +msgstr "" + +#: application/views/options/appearance.php:112 +msgid "This enables the button to login to Wavelog in the public view" +msgstr "" + #: application/views/options/dxcluster.php:38 msgid "Provider of DXClusterCache" msgstr "" @@ -7845,7 +8487,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:64 #: application/views/oqrs/showrequests.php:87 -#: application/views/user/main.php:48 application/views/user/profile.php:24 +#: application/views/user/index.php:48 application/views/user/profile.php:24 msgid "E-mail" msgstr "" @@ -7868,21 +8510,21 @@ msgstr "" #: application/views/search/search_result_ajax.php:127 #: application/views/user/edit.php:478 #: application/views/view_log/partial/log.php:22 -#: application/views/view_log/partial/log_ajax.php:86 -#: application/views/view_log/qso.php:503 -#: application/views/view_log/qso.php:507 -#: application/views/view_log/qso.php:511 -#: application/views/view_log/qso.php:515 -#: application/views/view_log/qso.php:521 -#: application/views/view_log/qso.php:528 -#: application/views/view_log/qso.php:535 -#: application/views/view_log/qso.php:542 -#: application/views/view_log/qso.php:549 -#: application/views/view_log/qso.php:556 -#: application/views/view_log/qso.php:563 -#: application/views/view_log/qso.php:570 -#: application/views/view_log/qso.php:577 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log_ajax.php:88 +#: application/views/view_log/qso.php:506 +#: application/views/view_log/qso.php:510 +#: application/views/view_log/qso.php:514 +#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:531 +#: application/views/view_log/qso.php:538 +#: application/views/view_log/qso.php:545 +#: application/views/view_log/qso.php:552 +#: application/views/view_log/qso.php:559 +#: application/views/view_log/qso.php:566 +#: application/views/view_log/qso.php:573 +#: application/views/view_log/qso.php:580 +#: application/views/view_log/qso.php:585 msgid "Station" msgstr "Asema" @@ -7890,10 +8532,10 @@ msgstr "Asema" #: application/views/qslprint/qslprint.php:28 #: application/views/qslprint/qsolist.php:14 #: application/views/qslprint/qsolist.php:83 -#: application/views/qso/index.php:576 +#: application/views/qso/index.php:598 #: application/views/search/search_result_ajax.php:205 -#: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:300 +#: application/views/view_log/partial/log_ajax.php:170 +#: src/QSLManager/QSO.php:302 msgid "Via" msgstr "" @@ -8122,7 +8764,7 @@ msgid "Remove" msgstr "" #: application/views/qslprint/qslprint.php:33 -#: application/views/simplefle/index.php:133 +#: application/views/simplefle/index.php:139 msgid "QSO List" msgstr "" @@ -8168,35 +8810,20 @@ msgid "" "queue." msgstr "" -#: application/views/qso/components/winkeysettings.php:7 -#: application/views/qso/components/winkeysettings_results.php:7 -msgid "Winkey Macros" -msgstr "" - -#: application/views/qso/components/winkeysettings.php:12 -#: application/views/qso/components/winkeysettings.php:28 -#: application/views/qso/components/winkeysettings.php:44 -#: application/views/qso/components/winkeysettings.php:60 -#: application/views/qso/components/winkeysettings.php:76 -#: application/views/qso/components/winkeysettings_results.php:12 -#: application/views/qso/components/winkeysettings_results.php:28 -#: application/views/qso/components/winkeysettings_results.php:44 -#: application/views/qso/components/winkeysettings_results.php:60 -#: application/views/qso/components/winkeysettings_results.php:76 -#, php-format -msgid "Function %d - Name" -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:83 -#: application/views/qso/components/winkeysettings_results.php:19 -#: application/views/qso/components/winkeysettings_results.php:35 -#: application/views/qso/components/winkeysettings_results.php:51 -#: application/views/qso/components/winkeysettings_results.php:67 -#: application/views/qso/components/winkeysettings_results.php:83 +#, 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 #, php-format msgid "Function %d - Macro" msgstr "" @@ -8222,7 +8849,8 @@ msgid "RX Band" msgstr "" #: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:346 -#: application/views/view_log/qso.php:542 +#: application/views/reg1test/index.php:114 +#: application/views/view_log/qso.php:545 msgid "Transmit Power (W)" msgstr "Lähetysteho (W)" @@ -8234,10 +8862,6 @@ msgstr "Anna teholukema Watteina käyttäen vain numeroita." msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:177 -msgid "QTH" -msgstr "" - #: application/views/qso/edit_ajax.php:258 msgid "Sat Name" msgstr "" @@ -8246,69 +8870,85 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:356 application/views/qso/index.php:255 -#: application/views/qso/index.php:500 application/views/user/edit.php:599 -#: application/views/view_log/qso.php:332 -#: application/views/view_log/qso.php:582 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:545 +msgid "Antenna Azimuth (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:547 +msgid "Antenna azimuth in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:274 application/views/qso/index.php:551 +msgid "Antenna Elevation (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:276 application/views/qso/index.php:553 +msgid "Antenna elevation in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:383 application/views/qso/index.php:255 +#: application/views/qso/index.php:510 application/views/user/edit.php:599 +#: application/views/view_log/qso.php:335 +#: application/views/view_log/qso.php:585 msgid "Sig Info" msgstr "" -#: application/views/qso/edit_ajax.php:369 +#: application/views/qso/edit_ajax.php:396 msgid "Notes (for internal usage only)" msgstr "" -#: application/views/qso/edit_ajax.php:403 +#: application/views/qso/edit_ajax.php:430 msgid "Sent Method" msgstr "" -#: application/views/qso/edit_ajax.php:406 -#: application/views/qso/edit_ajax.php:439 application/views/qso/index.php:563 -#: application/views/qso/index.php:566 +#: application/views/qso/edit_ajax.php:433 +#: application/views/qso/edit_ajax.php:466 application/views/qso/index.php:585 +#: application/views/qso/index.php:588 msgid "Method" msgstr "Method / tapa" -#: application/views/qso/edit_ajax.php:416 +#: application/views/qso/edit_ajax.php:443 msgid "Sent Via" msgstr "" -#: application/views/qso/edit_ajax.php:430 -#: application/views/qso/edit_ajax.php:471 -#: application/views/qso/edit_ajax.php:510 +#: application/views/qso/edit_ajax.php:457 +#: application/views/qso/edit_ajax.php:498 +#: application/views/qso/edit_ajax.php:537 msgid "Verified (Match)" msgstr "" -#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:463 msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:477 application/views/qso/index.php:583 +#: application/views/qso/edit_ajax.php:504 application/views/qso/index.php:605 msgid "This note content is exported to QSL services like eqsl.cc." msgstr "Tämä viestisi siirtyy myös QSL-palveluihin, kuten eqsl.cc." -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:586 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:608 msgid "Get the default message for eQSL, for this station." msgstr "" -#: application/views/qso/edit_ajax.php:530 +#: application/views/qso/edit_ajax.php:557 msgid "Change Station Profile" msgstr "" -#: application/views/qso/edit_ajax.php:576 +#: application/views/qso/edit_ajax.php:603 msgid "Exchange (R)" msgstr "" -#: application/views/qso/edit_ajax.php:581 +#: application/views/qso/edit_ajax.php:608 msgid "Exchange (S)" msgstr "" -#: application/views/qso/edit_ajax.php:593 +#: application/views/qso/edit_ajax.php:620 #: application/views/search/search_result_ajax.php:432 #: application/views/view_log/partial/log.php:156 -#: application/views/view_log/partial/log_ajax.php:346 +#: application/views/view_log/partial/log_ajax.php:348 msgid "Delete QSO" msgstr "Poista QSO" -#: application/views/qso/edit_ajax.php:596 +#: application/views/qso/edit_ajax.php:623 msgid "Save changes" msgstr "" @@ -8316,7 +8956,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:5 application/views/qso/index.php:694 +#: application/views/qso/index.php:5 application/views/qso/index.php:718 msgid "Previous Contacts" msgstr "Edelliset yhteydet" @@ -8356,23 +8996,23 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:149 -#: application/views/station_profile/edit.php:191 -#: application/views/user/edit.php:583 application/views/view_log/qso.php:282 -#: application/views/view_log/qso.php:549 +#: application/views/qso/index.php:196 application/views/qso/index.php:449 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 +#: application/views/user/edit.php:583 application/views/view_log/qso.php:285 +#: application/views/view_log/qso.php:552 msgid "IOTA Reference" msgstr "IOTA ref.nro" -#: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:165 -#: application/views/station_profile/edit.php:219 -#: application/views/user/edit.php:587 application/views/view_log/qso.php:289 -#: application/views/view_log/qso.php:556 +#: application/views/qso/index.php:212 application/views/qso/index.php:466 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 +#: application/views/user/edit.php:587 application/views/view_log/qso.php:292 +#: application/views/view_log/qso.php:559 msgid "SOTA Reference" msgstr "SOTA ref.nro" -#: application/views/qso/index.php:322 application/views/view_log/qso.php:98 +#: application/views/qso/index.php:322 application/views/view_log/qso.php:100 msgid "Frequency (RX)" msgstr "Taajuus (RX)" @@ -8380,39 +9020,39 @@ msgstr "Taajuus (RX)" msgid "Band (RX)" msgstr "Bandi (RX)" -#: application/views/qso/index.php:458 +#: application/views/qso/index.php:468 msgid "For example: GM/NS-001." msgstr "Esimerkiksi: OH/JS-004." -#: application/views/qso/index.php:471 +#: application/views/qso/index.php:481 msgid "For example: DLFF-0069." msgstr "Esimerkiksi: OHFF-1234." -#: application/views/qso/index.php:484 +#: application/views/qso/index.php:494 msgid "For example: PA-0150. Multiple values allowed." msgstr "Esimerkiksi: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:496 +#: application/views/qso/index.php:506 msgid "For example: GMA" msgstr "Esimerkiksi: GMA" -#: application/views/qso/index.php:502 +#: application/views/qso/index.php:512 msgid "For example: DA/NW-357" msgstr "Esimerkiksi: DA/NW-357" -#: application/views/qso/index.php:510 +#: application/views/qso/index.php:520 msgid "For example: Q03" msgstr "Esimerkiksi: Q03" -#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +#: application/views/qso/index.php:529 application/views/view_log/qso.php:210 msgid "Satellite Name" msgstr "Satelliitti" -#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +#: application/views/qso/index.php:537 application/views/view_log/qso.php:217 msgid "Satellite Mode" msgstr "Satelliitin Mode" -#: application/views/qso/index.php:538 +#: application/views/qso/index.php:560 msgid "" "Note content is used within Wavelog only and is not exported to other " "services." @@ -8420,27 +9060,47 @@ msgstr "" "Muistio tallentuu vain logiin, tähän yhteydeen, eikä siirry eteenpäin muihin " "palveluihin." -#: application/views/qso/index.php:604 +#: application/views/qso/index.php:626 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:645 +#: application/views/qso/index.php:667 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:647 +#: application/views/qso/index.php:669 msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:678 +msgid "Stop" +msgstr "" + +#: application/views/qso/index.php:679 +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:680 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:686 +msgid "CW Speed" +msgstr "" + +#: application/views/qso/index.php:691 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:701 msgid "Suggestions" msgstr "Kutsumerkkiehdotukset" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:708 msgid "Profile Picture" msgstr "Profiilikuva" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:732 msgid "Max. 5 previous contacts are shown" msgstr "" @@ -8471,6 +9131,137 @@ msgstr "" msgid "Please wait..." msgstr "" +#: application/views/reg1test/index.php:6 +msgid "Select Band" +msgstr "" + +#: application/views/reg1test/index.php:8 +msgid "" +"Bands below 50Mhz are not valid for the EDI REG1TEST format and will produce " +"invalid files." +msgstr "" + +#: application/views/reg1test/index.php:18 +msgid "Export a contest to a REG1TEST EDI log" +msgstr "" + +#: application/views/reg1test/index.php:48 +msgid "Sent Exchange" +msgstr "" + +#: application/views/reg1test/index.php:50 +msgid "" +"The exchange which was sent during the contest. Can be any type of " +"information, e.g. Province, DOK, County, State, Power, Name. Max. length: 6 " +"characters." +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:66 +msgid "Callsign of responsible operator" +msgstr "" + +#: application/views/reg1test/index.php:72 +msgid "" +"List of all operators. Seperated with a semicolon ';'. The responsible " +"operator is not needed here." +msgstr "" + +#: application/views/reg1test/index.php:75 +msgid "Contest Address 1" +msgstr "" + +#: application/views/reg1test/index.php:77 +msgid "Address of the QTH used during the contest." +msgstr "" + +#: application/views/reg1test/index.php:80 +msgid "Contest Address 2" +msgstr "" + +#: application/views/reg1test/index.php:84 +msgid "Operator Address 1" +msgstr "" + +#: application/views/reg1test/index.php:86 +msgid "Address of the responsible operator." +msgstr "" + +#: application/views/reg1test/index.php:89 +msgid "Operator Address 2" +msgstr "" + +#: application/views/reg1test/index.php:93 +msgid "Operator Address Postalcode" +msgstr "" + +#: application/views/reg1test/index.php:97 +msgid "Operator Address City" +msgstr "" + +#: application/views/reg1test/index.php:101 +msgid "Operator Address Country" +msgstr "" + +#: application/views/reg1test/index.php:105 +msgid "Operator Phone Number" +msgstr "" + +#: application/views/reg1test/index.php:109 +msgid "Transmit Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:111 +msgid "Short description of the used equipment." +msgstr "" + +#: application/views/reg1test/index.php:116 +msgid "TX Power during the contest in Watt." +msgstr "" + +#: application/views/reg1test/index.php:119 +msgid "Receive Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:121 +msgid "If you used another gear for RX, then describe it here." +msgstr "" + +#: application/views/reg1test/index.php:124 +msgid "Antenna Description" +msgstr "" + +#: application/views/reg1test/index.php:126 +msgid "What kind of antenna was used." +msgstr "" + +#: application/views/reg1test/index.php:129 +msgid "Antenna Height Above Ground (m)" +msgstr "" + +#: application/views/reg1test/index.php:131 +msgid "Height of the antenna above the ground." +msgstr "" + +#: application/views/reg1test/index.php:134 +msgid "Band multiplicator" +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:141 +msgid "Any other remarks." +msgstr "" + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8560,10 +9351,71 @@ msgstr "" msgid "Satellite passes" msgstr "" -#: application/views/satellite/pass.php:548 +#: application/views/satellite/pass.php:8 +msgid "Min. Satellite Elevation" +msgstr "" + +#: application/views/satellite/pass.php:12 +msgid "Min. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:20 +msgid "Max. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:32 +msgid "Altitude (meters)" +msgstr "" + +#: application/views/satellite/pass.php:36 application/views/user/edit.php:179 +msgid "Timezone" +msgstr "Aikavyöhyke" + +#: application/views/satellite/pass.php:479 +msgid "Min. time" +msgstr "" + +#: application/views/satellite/pass.php:487 +msgid "Max. time" +msgstr "" + +#: application/views/satellite/pass.php:504 msgid "Load predictions" msgstr "" +#: application/views/satellite/passtable.php:6 +msgid "AOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:7 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "" + +#: application/views/satellite/passtable.php:8 +msgid "AOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:9 +msgid "AOS El" +msgstr "" + +#: application/views/satellite/passtable.php:10 +msgid "Max El" +msgstr "" + +#: application/views/satellite/passtable.php:11 +msgid "LOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:12 +msgid "LOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:13 +msgid "LOS El" +msgstr "" + #: application/views/sattimers/index.php:15 #, php-format msgid "" @@ -8584,10 +9436,6 @@ msgstr "" msgid "Max Elevation" msgstr "" -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "" - #: application/views/search/cqzones.php:5 #: application/views/search/lotw_unconfirmed.php:5 #: application/views/search/main.php:5 @@ -8694,50 +9542,50 @@ msgstr "" #: application/views/search/search_result_ajax.php:409 #: application/views/view_log/partial/log.php:140 -#: application/views/view_log/partial/log_ajax.php:323 +#: application/views/view_log/partial/log_ajax.php:325 msgid "Mark QSL Sent (Bureau)" msgstr "Merkitse QSL lähetetyksi (Bureau)" #: application/views/search/search_result_ajax.php:410 #: application/views/view_log/partial/log.php:141 -#: application/views/view_log/partial/log_ajax.php:324 +#: application/views/view_log/partial/log_ajax.php:326 msgid "Mark QSL Sent (Direct)" msgstr "Merkitse QSL lähetetyksi (Direct)" #: application/views/search/search_result_ajax.php:417 #: application/views/view_log/partial/log.php:148 -#: application/views/view_log/partial/log_ajax.php:333 -#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log_ajax.php:335 +#: application/views/view_log/qso.php:655 msgid "Mark QSL Received (Bureau)" msgstr "Merkitse QSL vastaanotetuksi (Bureau)" #: application/views/search/search_result_ajax.php:418 #: application/views/view_log/partial/log.php:149 -#: application/views/view_log/partial/log_ajax.php:334 -#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log_ajax.php:336 +#: application/views/view_log/qso.php:657 msgid "Mark QSL Received (Direct)" msgstr "Merkitse QSL vastaanotetuksi (Direct)" #: application/views/search/search_result_ajax.php:419 #: application/views/view_log/partial/log.php:150 -#: application/views/view_log/partial/log_ajax.php:325 +#: application/views/view_log/partial/log_ajax.php:327 msgid "Mark QSL Card Requested" msgstr "Merkitse QSL-kortti pyydetyksi" #: application/views/search/search_result_ajax.php:420 #: application/views/view_log/partial/log.php:151 -#: application/views/view_log/partial/log_ajax.php:326 -#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log_ajax.php:328 +#: application/views/view_log/qso.php:669 msgid "Mark QSL Card Not Required" msgstr "Merkitse QSL-kortti tarpeettomaksi" #: application/views/search/search_result_ajax.php:426 -#: application/views/view_log/partial/log_ajax.php:340 +#: application/views/view_log/partial/log_ajax.php:342 msgid "Lookup on QRZ.com" msgstr "" #: application/views/search/search_result_ajax.php:428 -#: application/views/view_log/partial/log_ajax.php:342 +#: application/views/view_log/partial/log_ajax.php:344 msgid "Lookup on HamQTH" msgstr "" @@ -8772,7 +9620,7 @@ msgid "" msgstr "" #: application/views/simplefle/index.php:17 -#: application/views/simplefle/index.php:170 +#: application/views/simplefle/index.php:176 msgid "Syntax Help" msgstr "" @@ -8866,8 +9714,8 @@ msgstr "" #: application/views/simplefle/index.php:107 #, php-format msgid "" -"If you did operate from a new location, first create a new Station Location" +"If you did operate from a new location, first create a new %sStation " +"Location%s" msgstr "" #: application/views/simplefle/index.php:112 @@ -8882,24 +9730,24 @@ msgstr "" msgid "Enter the Data" msgstr "" -#: application/views/simplefle/index.php:148 +#: application/views/simplefle/index.php:154 msgid "Refs" msgstr "" -#: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +#: application/views/simplefle/index.php:166 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" msgstr "" -#: application/views/simplefle/index.php:167 +#: application/views/simplefle/index.php:173 msgid "Reload QSO List" msgstr "" -#: application/views/simplefle/index.php:168 +#: application/views/simplefle/index.php:174 msgid "Save in Wavelog" msgstr "" -#: application/views/simplefle/index.php:169 +#: application/views/simplefle/index.php:175 msgid "Clear Logging Session" msgstr "" @@ -8956,122 +9804,121 @@ msgstr "" #: application/views/simplefle/syntax_help.php:28 #, php-format -msgctxt "uses 'this article'" msgid "" -"A full summary of all commands and the necessary syntax can be found in %s " -"of our Wiki." +"A full summary of all commands and the necessary syntax can be found in " +"%sthis article%s of our Wiki." msgstr "" -#: application/views/station_profile/create.php:51 -#: application/views/station_profile/edit.php:40 +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:52 -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:59 -#: application/views/station_profile/edit.php:48 +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 msgid "Station callsign. For example: 4W7EST/P" msgstr "" -#: application/views/station_profile/create.php:63 -#: application/views/station_profile/edit.php:52 +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 msgid "Station Power (W)" msgstr "" -#: application/views/station_profile/create.php:65 -#: application/views/station_profile/edit.php:54 +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" -#: application/views/station_profile/create.php:68 -#: application/views/station_profile/edit.php:69 +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 msgid "Station DXCC" msgstr "" -#: application/views/station_profile/create.php:71 -#: application/views/station_profile/edit.php:72 +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 msgctxt "DXCC selection" msgid "None" msgstr "" -#: application/views/station_profile/create.php:78 -#: application/views/station_profile/edit.php:85 +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:83 -#: application/views/station_profile/edit.php:91 +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 msgid "Station City" msgstr "" -#: application/views/station_profile/create.php:85 -#: application/views/station_profile/edit.php:93 +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:94 -#: application/views/station_profile/edit.php:105 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 msgid "Station state. Applies to certain countries only." msgstr "" -#: application/views/station_profile/create.php:99 -#: application/views/station_profile/edit.php:110 +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 msgid "Station County" msgstr "" -#: application/views/station_profile/create.php:101 -#: application/views/station_profile/edit.php:112 +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/edit.php:138 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:138 -#: application/views/station_profile/edit.php:155 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 msgid "click here" msgstr "" -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/edit.php:155 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:135 -#: application/views/station_profile/edit.php:167 -#: application/views/station_profile/edit.php:170 +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 msgid "Station Gridsquare" msgstr "" -#: application/views/station_profile/create.php:140 -#: application/views/station_profile/edit.php:175 +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 msgid "Get Gridsquare" msgstr "" -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 #, php-format msgctxt "uses 'click here'" msgid "" @@ -9079,304 +9926,250 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:145 -#: application/views/station_profile/edit.php:180 +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" -#: application/views/station_profile/create.php:160 -#: application/views/station_profile/edit.php:205 +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 msgid "Station IOTA reference. For example: EU-005" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 #, php-format msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:183 -#: application/views/station_profile/edit.php:260 +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 msgid "Signature Name" msgstr "" -#: application/views/station_profile/create.php:185 -#: application/views/station_profile/edit.php:262 +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 msgid "Station Signature (e.g. GMA).." msgstr "" -#: application/views/station_profile/create.php:189 -#: application/views/station_profile/edit.php:266 +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 msgid "Signature Information" msgstr "" -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/edit.php:268 +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "" -#: application/views/station_profile/create.php:195 -#: application/views/station_profile/edit.php:281 +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:197 -#: application/views/station_profile/edit.php:283 +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "" -#: application/views/station_profile/create.php:201 -#: application/views/station_profile/edit.php:286 +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 msgid "Default QSLMSG" msgstr "" -#: application/views/station_profile/create.php:204 -#: application/views/station_profile/edit.php:289 +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "" -#: application/views/station_profile/create.php:207 -#: application/views/station_profile/edit.php:328 +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:212 -#: application/views/station_profile/edit.php:333 +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " "Clublog. If this is deactivated on it's own please check if the Call is " "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:215 -#: application/views/station_profile/edit.php:336 +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 msgid "ClubLog Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:224 -#: application/views/station_profile/edit.php:352 +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 msgid "HRDLog.net Username" msgstr "" -#: application/views/station_profile/create.php:226 -#: application/views/station_profile/edit.php:354 +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" -#: application/views/station_profile/create.php:229 -#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 msgid "HRDLog.net API Key" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:234 -#: application/views/station_profile/edit.php:362 +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 msgid "HRDLog.net Logbook Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:243 -#: application/views/station_profile/edit.php:297 +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 msgid "Subscription Required" msgstr "" -#: application/views/station_profile/create.php:248 +#: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/edit.php:310 +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 msgid "QRZ.com Logbook Upload" msgstr "" -#: application/views/station_profile/create.php:260 -#: application/views/station_profile/edit.php:313 +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:268 -#: application/views/station_profile/edit.php:378 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:273 -#: application/views/station_profile/edit.php:383 +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 msgid "QO-100 Dx Club Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:283 -#: application/views/station_profile/edit.php:401 +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 msgid "OQRS Enabled" msgstr "" -#: application/views/station_profile/create.php:290 -#: application/views/station_profile/edit.php:408 +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 msgid "OQRS Email alert" msgstr "" -#: application/views/station_profile/create.php:295 -#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 msgid "Make sure email is set up under admin and global options." msgstr "" -#: application/views/station_profile/create.php:298 -#: application/views/station_profile/edit.php:416 +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 msgid "OQRS Text" msgstr "" -#: application/views/station_profile/create.php:300 -#: application/views/station_profile/edit.php:418 +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 msgid "Some info you want to add regarding QSL'ing." msgstr "" -#: application/views/station_profile/edit.php:122 +#: application/views/station_profile/edit.php:149 msgid "Zones" msgstr "" -#: application/views/station_profile/edit.php:257 +#: application/views/station_profile/edit.php:284 msgid "Signature" msgstr "" -#: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:95 -msgid "" -"Station Locations define operating locations, such as your QTH, a friends " -"QTH, or a portable station." -msgstr "" - -#: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:96 -msgid "Similar to logbooks, a station profile keeps a set of QSOs together." -msgstr "" - -#: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:97 -msgid "" -"Only one station may be active at a time. In the table below this is shown " -"with the -Active Station- badge." -msgstr "" - -#: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:101 -msgid "Create a Station Location" -msgstr "" - -#: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:105 -msgid "" -"Attention: You need to set an active station location. Go to Callsign-" -">Station Location to select one." -msgstr "" - -#: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:111 -msgid "" -"Due to recent changes within Wavelog you need to reassign QSOs to your " -"station profiles." -msgstr "" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Maintenance" -msgstr "" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Please reassign them at " -msgstr "" - -#: application/views/station_profile/index.php:41 -#: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:122 -msgid "Profile Name" -msgstr "" - #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "" @@ -9424,6 +10217,11 @@ msgstr "" msgid "Link Location" msgstr "" +#: application/views/stationsetup/linkedlocations.php:31 +#: application/views/stationsetup/stationsetup.php:122 +msgid "Profile Name" +msgstr "" + #: application/views/stationsetup/linkedlocations.php:34 msgid "Unlink Station Location" msgstr "" @@ -9448,12 +10246,52 @@ msgstr "" msgid "Station Locations" msgstr "" +#: application/views/stationsetup/stationsetup.php:95 +msgid "" +"Station Locations define operating locations, such as your QTH, a friends " +"QTH, or a portable station." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:96 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:97 +msgid "" +"Only one station may be active at a time. In the table below this is shown " +"with the -Active Station- badge." +msgstr "" + #: application/views/stationsetup/stationsetup.php:98 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." msgstr "" +#: application/views/stationsetup/stationsetup.php:101 +msgid "Create a Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:105 +msgid "" +"Attention: You need to set an active station location. Go to Callsign-" +">Station Location to select one." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:111 +msgid "" +"Due to recent changes within Wavelog you need to reassign QSOs to your " +"station profiles." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Maintenance" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Please reassign them at " +msgstr "" + #: application/views/stationsetup/stationsetup.php:127 msgid "Linked" msgstr "" @@ -9670,9 +10508,10 @@ msgid "4. Step" msgstr "" #: application/views/themes/index.php:73 +#, php-format msgid "" "Click here on 'Add a Theme' and type in the necessary data. Type in the " -"filenames for the logos without the file extension '.png'" +"filenames for the logos %swithout%s the file extension '.png'" msgstr "" #: application/views/themes/index.php:83 @@ -9735,6 +10574,10 @@ msgstr "" msgid "Update DXCC Data" msgstr "" +#: application/views/update/index.php:30 +msgid "Status:" +msgstr "" + #: application/views/update/index.php:34 msgid "Apply DXCC Data to Logbook" msgstr "" @@ -9748,36 +10591,43 @@ msgid "" "\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." msgstr "" -#: application/views/update/index.php:40 +#: application/views/update/index.php:45 msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:54 application/views/update/index.php:95 msgid "Re-check all QSOs in logbook" msgstr "" -#: application/views/update/index.php:45 +#: application/views/update/index.php:59 msgid "Apply Continent Data to Logbook" msgstr "" -#: application/views/update/index.php:47 +#: application/views/update/index.php:61 msgid "" "This function can be used to update QSO continent information for all QSOs " "in Wavelog missing that information." msgstr "" -#: application/views/update/index.php:49 +#: application/views/update/index.php:68 msgid "Check QSOs missing continent data" msgstr "" -#: application/views/update/index.php:59 +#: application/views/update/index.php:80 msgid "Here you can update QSOs with missing distance information." msgstr "" -#: application/views/update/index.php:60 +#: application/views/update/index.php:86 msgid "Update distance data" msgstr "" +#: application/views/update/index.php:89 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" + #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "Poista käyttäjätili" @@ -9807,13 +10657,13 @@ msgid "General Information" msgstr "" #: application/views/user/edit.php:52 application/views/user/login.php:58 -#: application/views/user/login.php:67 application/views/user/login.php:68 +#: application/views/user/login.php:69 application/views/user/login.php:70 #: application/views/user/profile.php:14 msgid "Username" msgstr "käyttäjänimi" #: application/views/user/edit.php:64 application/views/user/login.php:59 -#: application/views/user/login.php:71 application/views/user/login.php:72 +#: application/views/user/login.php:73 application/views/user/login.php:74 #: application/views/user/reset_password.php:21 #: application/views/user/reset_password.php:23 #: application/views/user/reset_password.php:30 @@ -9856,10 +10706,6 @@ msgstr "" msgid "Choose Wavelog language." msgstr "" -#: application/views/user/edit.php:179 -msgid "Timezone" -msgstr "Aikavyöhyke" - #: application/views/user/edit.php:187 msgid "Date Format" msgstr "Päivämäärämuoto" @@ -10196,6 +11042,127 @@ msgstr "Salasana unohtunut?" msgid "You can reset your password here." msgstr "Voit resetoida salasanasi tästä" +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "" + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "Käyttäjälista" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "Wavelog tarvitsee toimiakseen vähintään yhden luodun käyttäjän." + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" +"Käyttäjille voidaan määrittää rooleja, jotka antavat heille erilaisia " +"käyttöoikeuksia, kuten QSO:n lisääminen lokikirjaan ja pääsy Wavelog-" +"sovellusliittymiin (API)." + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" +"Tällä hetkellä kirjautunut käyttäjä näkyy jokaisen sivun oikeassa " +"yläkulmassa." + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "Luo käyttäjä" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "Rooli" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "" @@ -10210,101 +11177,17 @@ msgstr "" #: application/views/user/login.php:60 #, php-format -msgid "" -"More Information about Wavelog on Github." +msgid "More Information about Wavelog on %sGithub%s." msgstr "" -#: application/views/user/login.php:77 +#: application/views/user/login.php:79 msgid "Forgot your password?" msgstr "Salasana unohtunut?" -#: application/views/user/login.php:83 +#: application/views/user/login.php:85 msgid "Keep me logged in" msgstr "" -#: application/views/user/main.php:2 -msgid "Do you really want to send this user a password-reset link?" -msgstr "" - -#: application/views/user/main.php:6 -msgid "Please Wait ..." -msgstr "" - -#: application/views/user/main.php:9 -msgid "Password-reset e-mail sent to user:" -msgstr "" - -#: application/views/user/main.php:30 -msgid "User List" -msgstr "Käyttäjälista" - -#: application/views/user/main.php:33 -msgid "Wavelog needs at least one user configured in order to operate." -msgstr "Wavelog tarvitsee toimiakseen vähintään yhden luodun käyttäjän." - -#: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" -"Käyttäjille voidaan määrittää rooleja, jotka antavat heille erilaisia " -"käyttöoikeuksia, kuten QSO:n lisääminen lokikirjaan ja pääsy Wavelog-" -"sovellusliittymiin (API)." - -#: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "" -"Tällä hetkellä kirjautunut käyttäjä näkyy jokaisen sivun oikeassa " -"yläkulmassa." - -#: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." -msgstr "" - -#: application/views/user/main.php:38 -msgid "Create user" -msgstr "Luo käyttäjä" - -#: application/views/user/main.php:39 -msgid "Refresh List" -msgstr "" - -#: application/views/user/main.php:49 -msgid "Type" -msgstr "Rooli" - -#: application/views/user/main.php:50 -msgid "Last seen" -msgstr "" - -#: application/views/user/main.php:53 -msgid "Password Reset" -msgstr "" - -#: application/views/user/main.php:79 -msgid "Never" -msgstr "" - -#: application/views/user/main.php:83 -msgid "Locations" -msgstr "" - -#: application/views/user/main.php:85 -msgid "Logbooks" -msgstr "" - -#: application/views/user/main.php:87 -msgid "Last QSO:" -msgstr "" - -#: application/views/user/main.php:89 -msgid "No QSOs in Log" -msgstr "" - #: application/views/user/profile.php:19 msgid "Level" msgstr "" @@ -10354,118 +11237,118 @@ msgstr "QSO:n tiedot" msgid "QSL Management" msgstr "QSL-manageri" -#: application/views/view_log/qso.php:128 +#: application/views/view_log/qso.php:131 msgid "Total Distance" msgstr "Kokonaismatka" -#: application/views/view_log/qso.php:221 +#: application/views/view_log/qso.php:224 msgid "Antenna Azimuth" msgstr "" -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:231 msgid "Antenna Elevation" msgstr "" -#: application/views/view_log/qso.php:370 +#: application/views/view_log/qso.php:373 msgid "QSL Card has been sent via the bureau" msgstr "QSL-kortti on lähetty buron kautta" -#: application/views/view_log/qso.php:372 +#: application/views/view_log/qso.php:375 msgid "QSL Card has been sent via direct" msgstr "QSL-kortti on lähetetty direktinä" -#: application/views/view_log/qso.php:374 +#: application/views/view_log/qso.php:377 msgid "QSL Card has been sent electronically" msgstr "QSL-kortti on lähetetty sähköisesti" -#: application/views/view_log/qso.php:376 +#: application/views/view_log/qso.php:379 msgid "QSL Card has been sent via manager" msgstr "QSL-kortti on lähetetty managerin kautta" -#: application/views/view_log/qso.php:378 +#: application/views/view_log/qso.php:381 msgid "QSL Card has been sent" msgstr "" -#: application/views/view_log/qso.php:387 +#: application/views/view_log/qso.php:390 msgid "QSL Card has been received via the bureau" msgstr "QSL-kortti on vastaanotettu buron kautta" -#: application/views/view_log/qso.php:389 +#: application/views/view_log/qso.php:392 msgid "QSL Card has been received via direct" msgstr "QSL-kortti on vastaanotettu direktinä" -#: application/views/view_log/qso.php:391 +#: application/views/view_log/qso.php:394 msgid "QSL Card has been received electronically" msgstr "QSL-kortti on vastaanotettu sähköisesti" -#: application/views/view_log/qso.php:393 +#: application/views/view_log/qso.php:396 msgid "QSL Card has been received via manager" msgstr "QSL-kortti on vastaanotettu managerin kautta" -#: application/views/view_log/qso.php:395 +#: application/views/view_log/qso.php:398 msgid "QSL Card has been received" msgstr "QSL-kortti on vastaanotettu" -#: application/views/view_log/qso.php:404 +#: application/views/view_log/qso.php:407 msgid "This station uses LoTW." msgstr "Tämä asmea käyttää LoTW-palvelua. Viimeinen yhteyksien lähetys oli" -#: application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:414 -#: application/views/view_log/qso.php:419 -#: application/views/view_log/qso.php:424 +#: application/views/view_log/qso.php:412 +#: application/views/view_log/qso.php:417 +#: application/views/view_log/qso.php:422 +#: application/views/view_log/qso.php:427 msgid "This QSO was confirmed on" msgstr "Tämä QSO vahvistettiin" -#: application/views/view_log/qso.php:435 +#: application/views/view_log/qso.php:438 msgid "More QSOs" msgstr "" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:506 msgid "Details" msgstr "" -#: application/views/view_log/qso.php:630 +#: application/views/view_log/qso.php:633 msgid "Uploaded QSL Card front image" msgstr "QSL-kortin ladattu etukuva" -#: application/views/view_log/qso.php:635 +#: application/views/view_log/qso.php:638 msgid "Upload QSL Card image" msgstr "Lähetä QSL-kortin kuva" -#: application/views/view_log/qso.php:640 +#: application/views/view_log/qso.php:643 msgid "Uploaded QSL Card back image" msgstr "QSL-kortin ladattu takakuva" -#: application/views/view_log/qso.php:656 +#: application/views/view_log/qso.php:659 msgid "Mark QSL Received (Electronic)" msgstr "Merkitse QSL vastaanotetuksi (Electronic)" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:665 msgid "Mark QSL Card Requested (Bureau)" msgstr "Merkitse QSL-kortti pyydetyksi (Bureau)" -#: application/views/view_log/qso.php:664 +#: application/views/view_log/qso.php:667 msgid "Mark QSL Card Requested (Direct)" msgstr "Merkitse QSL-kortti pyydetyksi (Direct)" -#: application/views/view_log/qso.php:679 +#: application/views/view_log/qso.php:682 msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:242 msgid "CSV" msgstr "" -#: application/views/visitor/layout/header.php:75 +#: application/views/visitor/layout/header.php:74 msgid "OQRS" msgstr "" -#: application/views/visitor/layout/header.php:83 +#: application/views/visitor/layout/header.php:82 msgid "Visit Wavelog on Github" msgstr "" -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Please enter a callsign!" msgstr "" diff --git a/application/locale/fr_FR/LC_MESSAGES/messages.mo b/application/locale/fr_FR/LC_MESSAGES/messages.mo index f317fa2cb..7f65a2a39 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 881ce3d21..110c84c91 100644 --- a/application/locale/fr_FR/LC_MESSAGES/messages.po +++ b/application/locale/fr_FR/LC_MESSAGES/messages.po @@ -6,12 +6,13 @@ # Byt3 , 2024. # "Francisco (F4VSE)" , 2024. # "Francisco (F4VSE)" , 2024. +# F4JSU , 2024. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-09 07:24+0000\n" -"PO-Revision-Date: 2024-07-29 12:05+0000\n" -"Last-Translator: \"Francisco (F4VSE)\" \n" +"POT-Creation-Date: 2024-09-07 07:18+0000\n" +"PO-Revision-Date: 2024-08-30 05:57+0000\n" +"Last-Translator: F4JSU \n" "Language-Team: French \n" "Language: fr_FR\n" @@ -19,10 +20,104 @@ 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.6.2\n" +"X-Generator: Weblate 5.7\n" -#: application/controllers/Accumulated.php:21 -#: application/views/interface_assets/header.php:150 +#: application/controllers/Accumulated.php:12 +#: application/controllers/Activators.php:13 +#: application/controllers/Activatorsmap.php:13 +#: application/controllers/Adif.php:13 application/controllers/Awards.php:16 +#: application/controllers/Backup.php:13 application/controllers/Backup.php:26 +#: application/controllers/Backup.php:63 application/controllers/Band.php:15 +#: application/controllers/Bandmap.php:9 +#: application/controllers/Cabrillo.php:16 +#: application/controllers/Cabrillo.php:53 +#: application/controllers/Cabrillo.php:80 +#: application/controllers/Cabrillo.php:135 +#: application/controllers/Calltester.php:11 +#: application/controllers/Cfdexport.php:18 +#: application/controllers/Cfdexport.php:29 +#: application/controllers/Components.php:13 +#: application/controllers/Contestcalendar.php:15 +#: application/controllers/Contesting.php:14 +#: application/controllers/Cron.php:26 application/controllers/Cron.php:162 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: application/controllers/Distancerecords.php:11 +#: application/controllers/Distances.php:11 +#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29 +#: application/controllers/Dxatlas.php:51 +#: application/controllers/Dxatlas.php:108 +#: application/controllers/Dxcalendar.php:8 +#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23 +#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 +#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 +#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:353 +#: application/controllers/Eqsl.php:420 application/controllers/Eqsl.php:436 +#: application/controllers/Eqsl.php:497 application/controllers/Hamsat.php:13 +#: application/controllers/Kmlexport.php:18 +#: application/controllers/Kmlexport.php:33 +#: application/controllers/Labels.php:26 +#: application/controllers/Logbookadvanced.php:16 +#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 +#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 +#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 +#: application/controllers/Notes.php:10 application/controllers/Options.php:15 +#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 +#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 +#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 +#: application/controllers/Qso.php:9 application/controllers/Qso.php:19 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:600 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Reg1test.php:18 +#: application/controllers/Reg1test.php:63 +#: application/controllers/Reg1test.php:102 +#: application/controllers/Reg1test.php:130 +#: application/controllers/Reg1test.php:164 +#: application/controllers/Satellite.php:18 +#: application/controllers/Satellite.php:37 +#: application/controllers/Satellite.php:44 +#: application/controllers/Satellite.php:53 +#: application/controllers/Satellite.php:72 +#: application/controllers/Satellite.php:87 +#: application/controllers/Satellite.php:95 +#: application/controllers/Satellite.php:103 +#: application/controllers/Satellite.php:117 +#: application/controllers/Satellite.php:135 +#: application/controllers/Satellite.php:146 +#: application/controllers/Satellite.php:162 +#: application/controllers/Satellite.php:190 +#: application/controllers/Satellite.php:201 +#: application/controllers/Satellite.php:223 +#: application/controllers/Satellite.php:236 +#: application/controllers/Satellite.php:244 +#: application/controllers/Sattimers.php:9 +#: application/controllers/Search.php:13 +#: application/controllers/Simplefle.php:7 +#: application/controllers/Station.php:17 +#: application/controllers/Stationsetup.php:15 +#: application/controllers/Themes.php:17 +#: application/controllers/Timeline.php:10 +#: application/controllers/Timeplotter.php:11 +#: application/controllers/Update.php:24 application/controllers/Update.php:273 +#: application/controllers/Update.php:284 +#: application/controllers/Update.php:295 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 +#: application/controllers/User_options.php:9 +msgid "You're not allowed to do that!" +msgstr "Vous n'as pas le droit de faire ça !" + +#: application/controllers/Accumulated.php:19 +#: application/views/interface_assets/header.php:152 msgid "Accumulated Statistics" msgstr "Statistiques accumulées" @@ -32,24 +127,26 @@ msgid "Activated Gridsquare Map" msgstr "Carte des Locator activés" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:910 -#: application/controllers/Awards.php:942 +#: application/controllers/Awards.php:919 +#: application/controllers/Awards.php:951 #: application/controllers/Gridmap.php:31 -#: application/controllers/Visitor.php:374 -#: application/views/activators/index.php:101 +#: application/controllers/Visitor.php:385 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: application/views/visitor/layout/footer.php:22 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "Locator" #: application/controllers/Activated_gridmap.php:32 #: application/controllers/Gridmap.php:32 -#: application/controllers/Visitor.php:375 +#: 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/Visitor.php:376 +#: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "Locator non confirmés" @@ -58,12 +155,13 @@ msgid "Total gridsquares activated" msgstr "Total des Locator activés" #: application/controllers/Activators.php:20 -#: application/views/activators/index.php:2 +#: application/views/activators/index.php:5 #: application/views/interface_assets/header.php:142 msgid "Gridsquare Activators" msgstr "Activateurs de Locator" #: application/controllers/Activatorsmap.php:17 +#: application/views/activators/index.php:2 msgid "Activators Map" msgstr "Carte des Activateurs" @@ -80,7 +178,7 @@ msgid "ADIF Export" msgstr "Exporter ADIF" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:388 msgid "ADIF Import / Export" msgstr "Importer / Exporter ADIF" @@ -93,20 +191,25 @@ msgstr "Importer ADIF" msgid "Unsupported Filetype" msgstr "Type de fichier non pris en charge" -#: application/controllers/Adif.php:245 +#: application/controllers/Adif.php:240 +#: application/views/adif/import_failed.php:12 +msgid "ADIF Import failed!" +msgstr "Échec de l'import ADIF !" + +#: application/controllers/Adif.php:254 msgid "Station Profile not valid for User" msgstr "Profil de station non valide pour l'utilisateur" -#: application/controllers/Adif.php:252 +#: application/controllers/Adif.php:261 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "ADIF importé" -#: application/controllers/Adif.php:263 +#: application/controllers/Adif.php:272 msgid "DCL Import" msgstr "Import DCL" -#: application/controllers/Adif.php:319 +#: application/controllers/Adif.php:328 msgid "DCL Data Imported" msgstr "Données DCL importées" @@ -136,25 +239,8 @@ msgstr "Les informations sur la clé API %s a été mise à jour." msgid "API Key %s has been deleted" msgstr "La clé API %s a été supprimée" -#: application/controllers/Api.php:118 -msgid "Key Disabled" -msgstr "Clé désactivée" - -#: application/controllers/Api.php:118 -msgid "No Key Found" -msgstr "Aucune clé trouvée" - -#: application/controllers/Api.php:120 -msgid "Key Invalid - either not found or disabled" -msgstr "Clé invalide - soit non trouvée ou désactivée" - -#: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 -msgid "Valid" -msgstr "Valide" - #: application/controllers/Awards.php:22 -#: application/views/interface_assets/header.php:158 +#: application/views/interface_assets/header.php:160 #: application/views/qso/edit_ajax.php:35 msgid "Awards" msgstr "Trophées" @@ -169,12 +255,13 @@ msgstr "Trophées" #: application/controllers/Awards.php:652 #: application/controllers/Awards.php:714 #: application/controllers/Awards.php:776 -#: application/controllers/Awards.php:847 -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:930 -#: application/controllers/Awards.php:1125 -#: application/controllers/Awards.php:1615 -#: application/controllers/Awards.php:1755 +#: application/controllers/Awards.php:856 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:939 +#: application/controllers/Awards.php:1140 +#: application/controllers/Awards.php:1639 +#: application/controllers/Awards.php:1779 +#: application/controllers/Awards.php:1908 #, php-format msgid "Awards - %s" msgstr "Trophées - %s" @@ -182,13 +269,13 @@ msgstr "Trophées - %s" #: application/controllers/Awards.php:92 #: application/views/awards/dok/index.php:149 #: application/views/bands/index.php:47 -#: application/views/contesting/index.php:170 -#: application/views/interface_assets/header.php:194 -#: application/views/logbookadvanced/index.php:613 +#: application/views/contesting/index.php:53 +#: application/views/interface_assets/header.php:198 +#: application/views/logbookadvanced/index.php:641 #: application/views/logbookadvanced/useroptions.php:130 -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:264 -#: application/views/qso/index.php:508 application/views/user/edit.php:603 -#: application/views/view_log/qso.php:351 +#: application/views/qso/edit_ajax.php:388 application/views/qso/index.php:264 +#: application/views/qso/index.php:518 application/views/user/edit.php:603 +#: application/views/view_log/qso.php:354 msgid "DOK" msgstr "DOK" @@ -196,15 +283,15 @@ msgstr "DOK" #: application/views/bandmap/list.php:112 application/views/bands/index.php:48 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 -#: application/views/interface_assets/header.php:164 +#: application/views/interface_assets/header.php:166 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:145 -#: application/views/logbookadvanced/index.php:580 +#: application/views/logbookadvanced/index.php:156 +#: application/views/logbookadvanced/index.php:608 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 -#: application/views/lotw_views/index.php:40 +#: application/views/lotw_views/index.php:36 #: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 #: application/views/search/cqzones_result.php:15 #: application/views/search/result.php:27 @@ -219,12 +306,12 @@ msgid "Awards - WAJA" msgstr "Trophées - WAJA" #: application/controllers/Awards.php:327 application/views/bands/index.php:51 -#: application/views/interface_assets/header.php:210 +#: application/views/interface_assets/header.php:214 msgid "JCC" msgstr "JCC" #: application/controllers/Awards.php:375 application/views/bands/index.php:57 -#: application/views/interface_assets/header.php:170 +#: application/views/interface_assets/header.php:172 msgid "VUCC" msgstr "VUCC" @@ -233,15 +320,20 @@ msgid "Log View - VUCC" msgstr "Vue du journal - VUCC" #: application/controllers/Awards.php:453 -#: application/controllers/Timeline.php:92 -#: application/controllers/Timeline.php:95 -#: application/controllers/Timeline.php:98 -#: application/controllers/Timeline.php:101 -#: application/controllers/Timeline.php:104 -#: application/controllers/Timeline.php:107 +#: application/controllers/Distancerecords.php:59 +#: application/controllers/Timeline.php:105 +#: application/controllers/Timeline.php:108 +#: application/controllers/Timeline.php:111 +#: application/controllers/Timeline.php:114 +#: application/controllers/Timeline.php:117 +#: application/controllers/Timeline.php:120 msgid "Log View" msgstr "Vue du journal" +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr " et bande " + #: application/controllers/Awards.php:457 msgid " and sat " msgstr " et satellite " @@ -263,12 +355,12 @@ msgid " and " msgstr " et " #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1289 #: application/views/awards/index.php:8 application/views/bands/index.php:55 #: application/views/dashboard/index.php:9 -#: application/views/interface_assets/header.php:178 -#: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:259 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -276,10 +368,10 @@ msgstr " et " #: application/views/qslcard/searchresult.php:49 #: application/views/qslcard/searchresult.php:65 #: application/views/qslcard/searchresult.php:81 -#: application/views/qso/components/previous_contacts.php:83 -#: application/views/qso/edit_ajax.php:336 +#: application/views/qso/components/previous_contacts.php:82 +#: application/views/qso/edit_ajax.php:363 #: application/views/search/search_result_ajax.php:9 -#: application/views/station_profile/edit.php:216 +#: application/views/station_profile/edit.php:243 #: application/views/user/edit.php:234 application/views/user/edit.php:256 #: application/views/user/edit.php:278 application/views/user/edit.php:300 #: application/views/user/edit.php:323 @@ -289,18 +381,18 @@ msgid "SOTA" msgstr "SOTA" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1290 #: application/views/bands/index.php:60 #: application/views/dashboard/index.php:10 -#: application/views/interface_assets/header.php:172 -#: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:279 +#: application/views/interface_assets/header.php:176 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/index.php:290 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 -#: application/views/qso/components/previous_contacts.php:84 -#: application/views/qso/edit_ajax.php:341 +#: application/views/qso/components/previous_contacts.php:83 +#: application/views/qso/edit_ajax.php:368 #: application/views/search/search_result_ajax.php:10 -#: application/views/station_profile/edit.php:229 +#: application/views/station_profile/edit.php:256 #: application/views/user/edit.php:235 application/views/user/edit.php:257 #: application/views/user/edit.php:279 application/views/user/edit.php:301 #: application/views/user/edit.php:324 @@ -309,18 +401,18 @@ msgid "WWFF" msgstr "WWFF" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1291 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 -#: application/views/interface_assets/header.php:182 +#: application/views/interface_assets/header.php:186 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:274 +#: application/views/logbookadvanced/index.php:623 #: application/views/logbookadvanced/useroptions.php:106 -#: application/views/qso/components/previous_contacts.php:85 -#: application/views/qso/edit_ajax.php:346 +#: application/views/qso/components/previous_contacts.php:84 +#: application/views/qso/edit_ajax.php:373 #: application/views/search/search_result_ajax.php:11 -#: application/views/station_profile/edit.php:242 +#: application/views/station_profile/edit.php:269 #: application/views/user/edit.php:236 application/views/user/edit.php:258 #: application/views/user/edit.php:280 application/views/user/edit.php:302 #: application/views/user/edit.php:325 @@ -339,7 +431,7 @@ msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" #: application/controllers/Awards.php:714 application/views/bands/index.php:53 -#: application/views/interface_assets/header.php:188 +#: application/views/interface_assets/header.php:192 msgid "RAC" msgstr "RAC" @@ -347,74 +439,80 @@ msgstr "RAC" msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:847 +#: application/controllers/Awards.php:856 msgid "IOTA (Island On The Air)" msgstr "IOTA (Island On The Air)" -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:872 -#: application/views/interface_assets/header.php:230 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 +#: application/views/interface_assets/header.php:234 msgid "US Counties" msgstr "Comtés US" -#: application/controllers/Awards.php:887 +#: application/controllers/Awards.php:896 msgid "Log View - Counties" msgstr "Vue du journal - Comtés" -#: application/controllers/Awards.php:894 +#: application/controllers/Awards.php:903 msgid "Awards - " msgstr "Trophées - " -#: application/controllers/Awards.php:911 -#: application/controllers/Awards.php:943 +#: application/controllers/Awards.php:920 +#: application/controllers/Awards.php:952 msgid "Gridsquares worked" msgstr "Locator réalisés" -#: application/controllers/Awards.php:912 -#: application/controllers/Awards.php:944 +#: application/controllers/Awards.php:921 +#: application/controllers/Awards.php:953 msgid "Gridsquares confirmed on LoTW" msgstr "Locator confirmés par LoTW" -#: application/controllers/Awards.php:913 -#: application/controllers/Awards.php:945 +#: application/controllers/Awards.php:922 +#: application/controllers/Awards.php:954 msgid "Gridsquares confirmed by paper QSL" msgstr "Locator confirmés par Carte QSL" -#: application/controllers/Awards.php:930 +#: application/controllers/Awards.php:939 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial Award (FFMA)" -#: application/controllers/Awards.php:1125 -#: application/views/interface_assets/header.php:168 +#: application/controllers/Awards.php:1140 +#: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1143 +#: application/controllers/Awards.php:1158 msgid "Awards - SIG - " msgstr "Trophées - SIG - " -#: application/controllers/Awards.php:1755 -#: application/views/awards/itu/index.php:18 +#: application/controllers/Awards.php:1779 +#: application/views/awards/itu/index.php:20 msgid "ITU Zones" msgstr "Zones ITU" +#: application/controllers/Awards.php:1908 +#: application/views/awards/wac/index.php:8 +#: application/views/interface_assets/header.php:174 +msgid "Worked All Continents (WAC)" +msgstr "" + #: application/controllers/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:284 msgid "Backup" msgstr "Sauvegarde" -#: application/controllers/Backup.php:48 +#: application/controllers/Backup.php:50 msgid "ADIF - Backup" msgstr "ADIF - Sauvegarde" -#: application/controllers/Backup.php:80 +#: application/controllers/Backup.php:84 msgid "Notes - Backup" msgstr "Notes - Sauvegarde" #: application/controllers/Band.php:25 application/views/bands/index.php:28 #: application/views/bands/index.php:32 -#: application/views/interface_assets/header.php:379 +#: application/views/interface_assets/header.php:383 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -430,8 +528,8 @@ msgstr "Modifier la bande" #: application/controllers/Bandmap.php:28 #: application/controllers/Bandmap.php:69 -#: application/controllers/Options.php:137 -#: application/controllers/Options.php:148 +#: application/controllers/Options.php:145 +#: application/controllers/Options.php:156 #: application/views/options/sidebar.php:10 msgid "DXCluster" msgstr "DXCluster" @@ -441,7 +539,7 @@ msgid "Export Cabrillo" msgstr "Exporter Cabrillo" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:396 +#: application/views/interface_assets/header.php:402 msgid "CFD Export" msgstr "Exporter en CFD" @@ -458,7 +556,7 @@ msgid "No user has configured Clublog." msgstr "Aucun utilisateur n'a configuré Clublog." #: application/controllers/Contestcalendar.php:19 -#: application/views/interface_assets/header.php:247 +#: application/views/interface_assets/header.php:251 msgid "Contest Calendar" msgstr "Calendrier des concours" @@ -467,38 +565,67 @@ msgstr "Calendrier des concours" msgid "Contest Logging" msgstr "Concours - enregistrement des QSO" -#: application/controllers/Contesting.php:112 -#: application/views/interface_assets/header.php:274 +#: application/controllers/Contesting.php:113 +#: application/views/interface_assets/header.php:278 msgid "Contests" msgstr "Concours" -#: application/controllers/Contesting.php:126 +#: application/controllers/Contesting.php:127 msgid "Update Contest" msgstr "Mettre à jour" #: application/controllers/Continents.php:25 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:57 -#: application/views/interface_assets/header.php:154 +#: application/views/interface_assets/header.php:156 msgid "Continents" msgstr "Continents" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:284 +#: application/views/interface_assets/header.php:288 msgid "Cron Manager" msgstr "Gestion des Cron" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:154 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "Modifier les traitements Cron" +#: application/controllers/Cron.php:274 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "OK" + +#: application/controllers/Cron.php:278 +#, php-format +msgid "" +"Last run occurred more than %s seconds ago.%sPlease check your master cron! " +"It should run every minute (* * * * *)." +msgstr "" +"La dernière exécution a eu lieu il y a plus de %s secondes.%sVeuillez " +"vérifier votre cron maître ! Il devrait s'exécuter chaque minute (* * * * *)." + +#: application/controllers/Cron.php:281 +#, php-format +msgid "" +"Last run occurred more than %s minutes ago.%sSeems like your Mastercron " +"isn't running!%sIt should run every minute (* * * * *)." +msgstr "" +"La dernière exécution a eu lieu il y a plus de %s minutes.%sOn dirait que " +"votre Mastercron ne fonctionne pas !%sIl devrait s'exécuter chaque minute (* " +"* * * *)." + +#: application/controllers/Cron.php:286 application/views/cron/index.php:29 +msgctxt "Master Cron" +msgid "Not running" +msgstr "Ne fonctionne pas" + #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:392 +#: application/views/interface_assets/header.php:396 msgid "SOTA CSV Export" msgstr "SOTA - Export CSV" -#: application/controllers/Dashboard.php:108 -#: application/controllers/Visitor.php:132 +#: application/controllers/Dashboard.php:123 +#: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "Tableau de bord" @@ -528,11 +655,11 @@ msgstr "Aucune migration possible" #: application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" -msgstr "" +msgstr "Wavelog a été mis à jour avec succès !" #: application/controllers/Debug.php:231 msgid "Selfupdate() not available. Check the Error Log." -msgstr "" +msgstr "Selfupdate() non disponible. Vérifiez le journal des erreurs." #: application/controllers/Debug.php:275 msgid "" @@ -549,6 +676,12 @@ msgid "File Migration failed. Please check the Error Log." msgstr "" "La migration des fichiers a échoué. Veuillez vérifier le journal des erreurs." +#: application/controllers/Distancerecords.php:42 +#: application/controllers/Distancerecords.php:59 +#: application/views/interface_assets/header.php:146 +msgid "Satellite Distance Records" +msgstr "" + #: application/controllers/Distances.php:17 #: application/views/distances/index.php:5 #: application/views/distances/index.php:8 @@ -556,27 +689,31 @@ msgstr "" msgid "Distances Worked" msgstr "Distances réalisées" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 #: application/views/distances/index.php:15 msgid "QSOs with" msgstr "QSOs avec" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 msgid "and band" msgstr "et bandes" +#: application/controllers/Distances.php:83 +msgid "and propagation" +msgstr "" + #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:394 msgid "DX Atlas Gridsquare Export" msgstr "Export Locator pour DX Atlas" #: application/controllers/Dxcalendar.php:10 -#: application/views/interface_assets/header.php:245 +#: application/views/interface_assets/header.php:249 msgid "DX Calendar" msgstr "Calendrier des DX" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:325 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -594,19 +731,19 @@ msgstr "eQSL : résultat de l'import" msgid "eQSL QSO Upload" msgstr "eQSL : envoi des QSO" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:424 msgid "eQSL Tools" msgstr "eQSL : Outils" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid " / Errors: " msgstr " / Erreurs : " -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid "Successfully downloaded: " msgstr "Téléchargé avec succès : " -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:481 msgid "eQSL Card Image Download" msgstr "eQSL : Téléchargement des cartes/images" @@ -616,7 +753,7 @@ msgid "Gridsquare Map" msgstr "Carte des Locator" #: application/controllers/Gridmap.php:34 -#: application/controllers/Visitor.php:377 +#: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "Total des Locator réalisés" @@ -636,7 +773,7 @@ msgid "No QSOs found to upload." msgstr "Aucun QSO trouvé à télécharger." #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:392 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "KML - Export" @@ -649,59 +786,59 @@ msgstr "Etiquette pour carte QSL" msgid "Create Label Type" msgstr "Créer un type d'étiquette" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:402 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:406 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "Nom de l'étiquette" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:403 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:407 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 #: application/views/labels/index.php:76 msgid "Paper Type" msgstr "Type de papier" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:404 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:408 #: application/views/labels/index.php:42 application/views/labels/index.php:77 msgid "Measurement" msgstr "Mesure" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:405 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:409 msgid "Top Margin" msgstr "Marge supérieure" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:406 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:410 msgid "Left Margin" msgstr "Marge de gauche" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:407 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:411 msgid "QSLs Horizontally" msgstr "QSLs horizontalement" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:408 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:412 msgid "QSLs Vertically" msgstr "QSLs verticalement" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:409 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:413 msgid "Horizontal Space" msgstr "Espace horizontal" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:410 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:414 msgid "Vertical Space" msgstr "Espace vertical" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:411 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:415 msgid "Label width" msgstr "Largeur de l'étiquette" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:412 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:416 msgid "Label height" msgstr "Hauteur de l'étiquette" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:413 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:417 msgid "Size of Font" msgstr "Taille de la police" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:414 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:418 msgid "Number of QSOs on label" msgstr "Nombre de QSO sur l'étiquette" @@ -710,22 +847,22 @@ msgid "Create Paper Type" msgstr "Créer un type de papier" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:461 +#: application/controllers/Labels.php:465 msgid "Paper Name" msgstr "Nom du papier" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:462 +#: application/controllers/Labels.php:466 msgid "Paper Width" msgstr "Largeur du papier" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:463 +#: application/controllers/Labels.php:467 msgid "Paper Height" msgstr "Hauteur du papier" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:471 +#: application/controllers/Labels.php:475 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -758,27 +895,27 @@ msgstr "" msgid "0 QSOs found for print!" msgstr "0 QSO trouvés à imprimer !" -#: application/controllers/Labels.php:391 +#: application/controllers/Labels.php:395 msgid "Edit Label" msgstr "Modifier l'étiquette" -#: application/controllers/Labels.php:420 +#: application/controllers/Labels.php:424 msgid "Label was saved." msgstr "L'étiquette a été enregistrée." -#: application/controllers/Labels.php:428 +#: application/controllers/Labels.php:432 msgid "Label was deleted." msgstr "L'étiquette a été supprimée." -#: application/controllers/Labels.php:450 +#: application/controllers/Labels.php:454 msgid "Edit Paper" msgstr "Modifier le papier" -#: application/controllers/Labels.php:475 +#: application/controllers/Labels.php:479 msgid "Paper was saved." msgstr "Le papier a été enregistrée." -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "Paper was deleted." msgstr "Le papier a été supprimée." @@ -802,20 +939,20 @@ msgstr "Journaux des stations" msgid "Logbook" msgstr "Journal de trafic" -#: application/controllers/Logbook.php:653 -#: application/controllers/Logbook.php:668 +#: application/controllers/Logbook.php:657 +#: application/controllers/Logbook.php:672 #: application/views/activated_gridmap/index.php:58 #: application/views/awards/dok/index.php:55 #: application/views/awards/dxcc/index.php:61 -#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/helvetia/index.php:55 #: application/views/awards/jcc/index.php:52 -#: application/views/awards/rac/index.php:45 +#: application/views/awards/rac/index.php:47 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:72 -#: application/views/awards/waja/index.php:53 -#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:55 +#: application/views/awards/was/index.php:55 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:568 +#: application/views/logbookadvanced/index.php:596 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -828,20 +965,21 @@ msgstr "Journal de trafic" msgid "QSL" msgstr "QSL" -#: application/controllers/Logbook.php:656 +#: application/controllers/Logbook.php:660 #: application/views/activated_gridmap/index.php:66 -#: application/views/awards/cq/index.php:58 +#: application/views/awards/cq/index.php:60 #: application/views/awards/dok/index.php:59 #: application/views/awards/dxcc/index.php:65 -#: application/views/awards/helvetia/index.php:57 -#: application/views/awards/itu/index.php:58 +#: application/views/awards/helvetia/index.php:59 +#: application/views/awards/itu/index.php:60 #: application/views/awards/jcc/index.php:56 -#: application/views/awards/rac/index.php:49 +#: application/views/awards/rac/index.php:51 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:80 -#: application/views/awards/waja/index.php:57 -#: application/views/awards/was/index.php:57 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -849,28 +987,29 @@ msgstr "QSL" #: application/views/qslprint/qsolist.php:21 #: application/views/qslprint/qsolist.php:167 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:384 +#: application/views/qso/edit_ajax.php:411 #: application/views/search/result_search.php:22 #: application/views/search/search_result_ajax.php:298 #: application/views/search/search_result_ajax.php:313 #: application/views/timeline/index.php:60 application/views/user/edit.php:563 -#: application/views/user/edit.php:659 application/views/view_log/qso.php:408 +#: application/views/user/edit.php:659 application/views/view_log/qso.php:411 msgid "LoTW" msgstr "LoTW" -#: application/controllers/Logbook.php:659 +#: application/controllers/Logbook.php:663 #: application/views/activated_gridmap/index.php:74 -#: application/views/awards/cq/index.php:62 +#: application/views/awards/cq/index.php:64 #: application/views/awards/dok/index.php:63 #: application/views/awards/dxcc/index.php:69 -#: application/views/awards/helvetia/index.php:61 -#: application/views/awards/itu/index.php:62 +#: application/views/awards/helvetia/index.php:63 +#: application/views/awards/itu/index.php:64 #: application/views/awards/jcc/index.php:60 -#: application/views/awards/rac/index.php:53 +#: application/views/awards/rac/index.php:55 #: application/views/awards/wab/index.php:88 -#: application/views/awards/waja/index.php:61 -#: application/views/awards/was/index.php:61 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:52 +#: application/views/awards/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:117 #: application/views/logbookadvanced/useroptions.php:70 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 @@ -878,63 +1017,67 @@ msgstr "LoTW" #: application/views/qslprint/qsolist.php:18 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:151 -#: application/views/qso/edit_ajax.php:381 +#: application/views/qso/edit_ajax.php:408 #: application/views/search/result_search.php:16 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:273 -#: application/views/station_profile/edit.php:278 +#: application/views/station_profile/edit.php:305 #: application/views/timeline/index.php:64 application/views/user/edit.php:564 #: application/views/user/edit.php:667 application/views/user/edit.php:731 msgid "eQSL" msgstr "eQSL" -#: application/controllers/Logbook.php:665 +#: application/controllers/Logbook.php:669 #: application/views/awards/dok/index.php:71 #: application/views/awards/dxcc/index.php:77 #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 -#: application/views/awards/waja/index.php:69 +#: application/views/awards/waja/index.php:71 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 -#: application/views/station_profile/edit.php:325 +#: application/views/station_profile/edit.php:352 +#: application/views/timeline/index.php:68 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 -#: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/partial/log_ajax.php:85 +#: application/views/view_log/qso.php:426 msgid "Clublog" msgstr "Clublog" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1284 #: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:39 #: application/views/adif/dcl_success.php:33 -#: application/views/awards/cq/index.php:86 +#: application/views/awards/cq/index.php:88 #: application/views/awards/dok/index.php:91 #: application/views/awards/dxcc/index.php:162 -#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/helvetia/index.php:87 #: application/views/awards/iota/index.php:105 -#: application/views/awards/itu/index.php:86 +#: application/views/awards/itu/index.php:88 #: application/views/awards/jcc/index.php:88 -#: application/views/awards/rac/index.php:77 +#: application/views/awards/rac/index.php:79 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:53 -#: application/views/awards/waja/index.php:89 -#: application/views/awards/was/index.php:85 +#: application/views/awards/wac/index.php:110 +#: application/views/awards/waja/index.php:91 +#: application/views/awards/was/index.php:87 #: application/views/components/hamsat/table.php:30 -#: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:203 +#: application/views/contesting/index.php:108 +#: application/views/contesting/index.php:250 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 +#: 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/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:170 -#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/index.php:181 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -951,14 +1094,14 @@ msgstr "Clublog" #: application/views/qslcard/searchresult.php:76 #: application/views/qslprint/qslprint.php:24 #: application/views/qslprint/qsolist.php:9 -#: application/views/qso/components/previous_contacts.php:78 +#: application/views/qso/components/previous_contacts.php:77 #: application/views/qso/edit_ajax.php:119 application/views/qso/index.php:136 #: application/views/satellite/index.php:24 #: application/views/search/cqzones_result.php:10 #: application/views/search/lotw_unconfirmed_result.php:8 #: application/views/search/result_search.php:7 #: application/views/search/search_result_ajax.php:4 -#: application/views/simplefle/index.php:144 +#: application/views/simplefle/index.php:150 #: application/views/statistics/custom.php:60 #: application/views/statistics/custom_result.php:62 #: application/views/statistics/custom_result.php:88 @@ -970,17 +1113,17 @@ msgstr "Clublog" #: application/views/user/edit.php:295 application/views/user/edit.php:318 #: application/views/view_log/partial/log.php:9 #: application/views/view_log/partial/log_ajax.php:4 -#: application/views/view_log/qso.php:104 application/views/visitor/index.php:6 +#: application/views/view_log/qso.php:107 application/views/visitor/index.php:6 #: application/views/widgets/qsos.php:29 msgid "Mode" msgstr "Mode" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1285 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:111 -#: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:547 +#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:251 +#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -989,25 +1132,25 @@ msgstr "Mode" #: application/views/qslcard/searchresult.php:77 #: application/views/qslprint/qslprint.php:26 #: application/views/qslprint/qsolist.php:11 -#: application/views/qso/components/previous_contacts.php:79 +#: application/views/qso/components/previous_contacts.php:78 #: application/views/qso/edit_ajax.php:142 application/views/qso/index.php:177 #: application/views/search/search_result_ajax.php:5 -#: application/views/simplefle/index.php:145 +#: application/views/simplefle/index.php:151 #: application/views/user/edit.php:230 application/views/user/edit.php:252 #: application/views/user/edit.php:274 application/views/user/edit.php:296 #: application/views/user/edit.php:319 #: application/views/view_log/partial/log.php:10 #: application/views/view_log/partial/log_ajax.php:5 -#: application/views/view_log/qso.php:109 application/views/visitor/index.php:9 +#: application/views/view_log/qso.php:112 application/views/visitor/index.php:9 msgid "RST (S)" msgstr "RST (E)" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1286 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:550 +#: application/views/contesting/index.php:189 +#: application/views/contesting/index.php:252 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1016,51 +1159,50 @@ msgstr "RST (E)" #: application/views/qslcard/searchresult.php:78 #: application/views/qslprint/qslprint.php:27 #: application/views/qslprint/qsolist.php:12 -#: application/views/qso/components/previous_contacts.php:80 +#: application/views/qso/components/previous_contacts.php:79 #: application/views/qso/edit_ajax.php:147 application/views/qso/index.php:182 #: application/views/search/search_result_ajax.php:6 -#: application/views/simplefle/index.php:146 +#: application/views/simplefle/index.php:152 #: application/views/user/edit.php:231 application/views/user/edit.php:253 #: application/views/user/edit.php:275 application/views/user/edit.php:297 #: application/views/user/edit.php:320 #: application/views/view_log/partial/log.php:11 #: application/views/view_log/partial/log_ajax.php:6 -#: application/views/view_log/qso.php:114 +#: application/views/view_log/qso.php:117 #: application/views/visitor/index.php:12 msgid "RST (R)" msgstr "RST (R)" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1287 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 #: application/views/qslcard/searchresult.php:47 #: application/views/qslcard/searchresult.php:63 #: application/views/qslcard/searchresult.php:79 -#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/components/previous_contacts.php:80 #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 -#: application/views/station_profile/index.php:43 #: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 -#: application/views/timeline/index.php:118 application/views/user/edit.php:232 +#: application/views/timeline/index.php:151 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 #: application/views/user/edit.php:298 application/views/user/edit.php:321 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:235 -#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:238 +#: application/views/view_log/qso.php:531 #: application/views/visitor/index.php:15 msgid "Country" msgstr "Pays" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1288 #: application/views/awards/iota/index.php:169 #: application/views/bands/index.php:50 application/views/dashboard/index.php:8 -#: application/views/interface_assets/header.php:180 +#: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1069,11 +1211,11 @@ msgstr "Pays" #: application/views/qslcard/searchresult.php:48 #: application/views/qslcard/searchresult.php:64 #: application/views/qslcard/searchresult.php:80 -#: application/views/qso/components/previous_contacts.php:82 -#: application/views/qso/edit_ajax.php:318 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 -#: application/views/timeline/index.php:202 application/views/user/edit.php:233 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:235 application/views/user/edit.php:233 #: application/views/user/edit.php:255 application/views/user/edit.php:277 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/view_log/partial/log_ajax.php:8 @@ -1081,17 +1223,17 @@ msgstr "Pays" msgid "IOTA" msgstr "IOTA" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1292 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:20 -#: application/views/awards/rac/index.php:141 -#: application/views/awards/was/index.php:149 -#: application/views/contesting/index.php:173 +#: application/views/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 +#: application/views/contesting/index.php:56 #: application/views/dashboard/index.php:12 -#: application/views/logbookadvanced/edit.php:20 -#: application/views/logbookadvanced/edit.php:64 -#: application/views/logbookadvanced/index.php:162 -#: application/views/logbookadvanced/index.php:583 +#: application/views/logbookadvanced/edit.php:21 +#: application/views/logbookadvanced/edit.php:66 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:611 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1099,9 +1241,9 @@ msgstr "IOTA" #: application/views/qslcard/searchresult.php:50 #: application/views/qslcard/searchresult.php:66 #: application/views/qslcard/searchresult.php:82 -#: application/views/qso/components/previous_contacts.php:86 +#: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 -#: application/views/timeline/index.php:177 application/views/user/edit.php:237 +#: application/views/timeline/index.php:210 application/views/user/edit.php:237 #: application/views/user/edit.php:259 application/views/user/edit.php:281 #: application/views/user/edit.php:303 application/views/user/edit.php:326 #: application/views/view_log/partial/log_ajax.php:12 @@ -1109,20 +1251,21 @@ msgstr "IOTA" msgid "State" msgstr "Etat" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1293 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:17 -#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:13 +#: application/views/distancerecords/index.php:20 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:166 -#: application/views/logbookadvanced/index.php:556 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1131,38 +1274,39 @@ msgstr "Etat" #: application/views/qslcard/searchresult.php:51 #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 -#: application/views/qso/components/previous_contacts.php:87 +#: application/views/qso/components/previous_contacts.php:86 #: application/views/qso/edit_ajax.php:156 application/views/qso/index.php:279 +#: application/views/satellite/pass.php:28 #: application/views/search/cqzones_result.php:12 #: application/views/search/result.php:33 #: application/views/search/search_result_ajax.php:13 -#: application/views/simplefle/index.php:147 -#: application/views/station_profile/index.php:44 +#: application/views/simplefle/index.php:153 #: application/views/stationsetup/stationsetup.php:125 -#: application/views/timeline/index.php:257 application/views/user/edit.php:130 +#: application/views/timeline/index.php:290 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 #: application/views/user/edit.php:327 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:518 #: application/views/visitor/index.php:27 msgid "Gridsquare" msgstr "Locator" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1294 #: application/views/activated_gridmap/index.php:108 #: application/views/awards/ffma/index.php:36 #: application/views/awards/gridmaster/index.php:35 #: 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/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/index.php:12 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 #: application/views/qslcard/searchresult.php:52 #: application/views/qslcard/searchresult.php:68 #: application/views/qslcard/searchresult.php:84 -#: application/views/qso/components/previous_contacts.php:88 +#: application/views/qso/components/previous_contacts.php:87 #: application/views/search/search_result_ajax.php:14 #: application/views/user/edit.php:239 application/views/user/edit.php:261 #: application/views/user/edit.php:283 application/views/user/edit.php:305 @@ -1172,32 +1316,33 @@ msgstr "Locator" msgid "Distance" msgstr "Distance" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1295 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:8 -#: application/views/activators/index.php:7 +#: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 -#: application/views/awards/cq/index.php:72 +#: application/views/awards/cq/index.php:74 #: application/views/awards/dok/index.php:77 #: application/views/awards/dxcc/index.php:117 -#: application/views/awards/helvetia/index.php:71 +#: application/views/awards/helvetia/index.php:73 #: application/views/awards/iota/index.php:91 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:74 #: application/views/awards/jcc/index.php:74 #: application/views/awards/pota/index.php:35 -#: application/views/awards/rac/index.php:63 +#: application/views/awards/rac/index.php:65 #: application/views/awards/sig/qso_list.php:13 #: application/views/awards/sota/index.php:26 #: application/views/awards/vucc/index.php:21 #: application/views/awards/wab/index.php:22 -#: application/views/awards/waja/index.php:75 -#: application/views/awards/was/index.php:71 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/waja/index.php:77 +#: application/views/awards/was/index.php:73 #: application/views/awards/wwff/index.php:35 #: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:45 -#: application/views/contesting/index.php:70 -#: application/views/contesting/index.php:202 +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:249 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:549 application/views/dxatlas/index.php:31 @@ -1205,8 +1350,8 @@ msgstr "Distance" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1224,13 +1369,13 @@ msgstr "Distance" #: application/views/qslmanagement/index.php:24 #: application/views/qslprint/qslprint.php:25 #: application/views/qslprint/qsolist.php:10 -#: application/views/qso/components/previous_contacts.php:89 +#: application/views/qso/components/previous_contacts.php:88 #: application/views/qso/edit_ajax.php:83 application/views/qso/index.php:151 #: application/views/search/cqzones_result.php:11 #: application/views/search/lotw_unconfirmed_result.php:9 #: application/views/search/result_search.php:10 #: application/views/search/search_result_ajax.php:15 -#: application/views/simplefle/index.php:143 +#: application/views/simplefle/index.php:149 #: application/views/stationsetup/exportmapoptions.php:31 #: application/views/statistics/custom.php:53 #: application/views/statistics/custom_result.php:55 @@ -1248,72 +1393,71 @@ msgstr "Distance" msgid "Band" msgstr "Bande" -#: application/controllers/Logbook.php:1285 +#: application/controllers/Logbook.php:1296 #: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 -#: application/views/contesting/index.php:87 +#: application/views/contesting/index.php:138 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 #: application/views/qslcard/searchresult.php:70 #: application/views/qslcard/searchresult.php:86 -#: application/views/qso/components/previous_contacts.php:90 +#: application/views/qso/components/previous_contacts.php:89 #: application/views/qso/edit_ajax.php:71 application/views/qso/index.php:169 #: application/views/search/search_result_ajax.php:16 #: application/views/user/edit.php:228 application/views/user/edit.php:250 #: application/views/user/edit.php:272 application/views/user/edit.php:294 #: application/views/user/edit.php:317 #: application/views/view_log/partial/log_ajax.php:16 -#: application/views/view_log/qso.php:93 application/views/visitor/index.php:36 +#: application/views/view_log/qso.php:94 application/views/visitor/index.php:36 msgid "Frequency" msgstr "Frequence" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1297 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:283 -#: application/views/logbookadvanced/index.php:598 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:626 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 #: application/views/qslcard/searchresult.php:87 -#: application/views/qso/components/previous_contacts.php:91 +#: application/views/qso/components/previous_contacts.php:90 #: application/views/search/search_result_ajax.php:17 #: application/views/simplefle/index.php:112 #: application/views/user/edit.php:240 application/views/user/edit.php:262 #: application/views/user/edit.php:284 application/views/user/edit.php:306 #: application/views/user/edit.php:329 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:538 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "Opérateur" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1318 #: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:669 +#: application/views/interface_assets/footer.php:675 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:154 +#: application/views/logbookadvanced/index.php:165 #: application/views/lookup/index.php:31 -#: application/views/lotw_views/index.php:56 +#: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 #: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 -#: application/views/station_profile/create.php:73 -#: application/views/station_profile/edit.php:78 -#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 #: application/views/stationsetup/stationsetup.php:150 -#: application/views/timeline/index.php:134 +#: application/views/timeline/index.php:167 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 -#: application/views/view_log/qso.php:236 -#: application/views/view_log/qso.php:529 +#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:532 msgid "Deleted DXCC" msgstr "DXCC Supprimé" @@ -1327,7 +1471,7 @@ msgstr "Recherche rapide" #: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83 #: application/controllers/Lotw.php:125 application/views/adif/import.php:27 -#: application/views/interface_assets/header.php:423 +#: application/views/interface_assets/header.php:429 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1335,28 +1479,58 @@ msgstr "Recherche rapide" msgid "Logbook of the World" msgstr "Logbook of the World" -#: application/controllers/Lotw.php:610 +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "Certificat importé." + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "Certificat mis à jour." + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "Certificat supprimé." + +#: application/controllers/Lotw.php:413 +#, 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 "" +"Aucun certificat trouvé dans le fichier %s. Si le nom de fichier contient " +"'key-only', il s'agit généralement d'une demande de certificat qui n'a pas " +"encore été traitée par LoTW." + +#: application/controllers/Lotw.php:617 msgid "LoTW ADIF Information" msgstr "Information ADIF LoTW" -#: application/controllers/Lotw.php:718 +#: application/controllers/Lotw.php:725 msgid "LoTW ADIF Import" msgstr "Importation ADIF LoTW" -#: application/controllers/Lotw.php:830 +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "Vous n'avez pas défini vos identifiants ARRL LoTW !" + +#: application/controllers/Lotw.php:837 msgid "LoTW .TQ8 Upload" msgstr "Télécharger .TQ8 LoTW" -#: application/controllers/Lotw.php:927 application/controllers/Lotw.php:932 +#: application/controllers/Lotw.php:915 +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:934 application/controllers/Lotw.php:939 msgid "LoTW .TQ8 Sent" msgstr ".TQ8 LoTW Envoyé" -#: application/controllers/Lotw.php:939 +#: application/controllers/Lotw.php:946 msgid "LoTW .TQ8 Not Sent" msgstr ".TQ8 LoTW Pas Envoyé" #: application/controllers/Mode.php:25 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:276 #: application/views/mode/index.php:15 msgid "Modes" msgstr "Modes" @@ -1365,28 +1539,28 @@ msgstr "Modes" msgid "Edit Mode" msgstr "Modifier le mode" -#: application/controllers/Notes.php:19 +#: application/controllers/Notes.php:18 #: application/views/interface_assets/header.php:128 #: application/views/notes/add.php:9 application/views/notes/edit.php:10 #: application/views/notes/main.php:5 application/views/notes/main.php:8 #: application/views/notes/view.php:6 application/views/notes/view.php:9 #: application/views/qso/edit_ajax.php:36 -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:38 -#: application/views/qso/index.php:541 application/views/qso/index.php:586 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:590 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:38 +#: application/views/qso/index.php:563 application/views/qso/index.php:608 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:593 msgid "Notes" msgstr "Notes" -#: application/controllers/Notes.php:38 +#: application/controllers/Notes.php:37 msgid "Add Notes" msgstr "Ajouter des notes" -#: application/controllers/Notes.php:58 +#: application/controllers/Notes.php:64 #: application/views/oqrs/showrequests.php:88 msgid "Note" msgstr "Note" -#: application/controllers/Notes.php:79 application/views/notes/edit.php:7 +#: application/controllers/Notes.php:92 application/views/notes/edit.php:7 #: application/views/notes/view.php:19 msgid "Edit Note" msgstr "Edition d'une Note" @@ -1394,16 +1568,16 @@ msgstr "Edition d'une Note" #: application/controllers/Options.php:31 #: application/controllers/Options.php:41 #: application/controllers/Options.php:56 -#: application/controllers/Options.php:136 -#: application/controllers/Options.php:147 -#: application/controllers/Options.php:184 -#: application/controllers/Options.php:195 -#: application/controllers/Options.php:228 -#: application/controllers/Options.php:239 -#: application/controllers/Options.php:309 -#: application/controllers/Options.php:319 -#: application/controllers/Options.php:387 -#: application/controllers/Options.php:397 +#: application/controllers/Options.php:144 +#: application/controllers/Options.php:155 +#: application/controllers/Options.php:192 +#: application/controllers/Options.php:203 +#: application/controllers/Options.php:236 +#: application/controllers/Options.php:247 +#: application/controllers/Options.php:317 +#: application/controllers/Options.php:327 +#: application/controllers/Options.php:395 +#: application/controllers/Options.php:405 msgid "Wavelog Options" msgstr "Paramètres Wavelog" @@ -1420,97 +1594,98 @@ msgstr "Apparence" #: application/controllers/Options.php:110 #: application/controllers/Options.php:118 #: application/controllers/Options.php:126 +#: application/controllers/Options.php:134 msgid "Options saved" msgstr "Paramètres enregistrées" -#: application/controllers/Options.php:165 +#: application/controllers/Options.php:173 msgid "de continent changed to " msgstr "de continent a changé en " -#: application/controllers/Options.php:170 +#: application/controllers/Options.php:178 msgid "Maximum age of spots changed to " -msgstr "" +msgstr "L'âge maximum des spots changé à " -#: application/controllers/Options.php:175 +#: application/controllers/Options.php:183 msgid "DXCluster Cache URL changed to " -msgstr "" +msgstr "L'URL du cache DXCluster a changé en " -#: application/controllers/Options.php:185 -#: application/controllers/Options.php:196 +#: application/controllers/Options.php:193 +#: application/controllers/Options.php:204 msgid "Radio Settings" msgstr "Paramètres radio" -#: application/controllers/Options.php:217 +#: application/controllers/Options.php:225 msgid "Radio Timeout Warning changed to " -msgstr "" +msgstr "Avertissement de dépassement de temps radio changé en " -#: application/controllers/Options.php:229 -#: application/controllers/Options.php:240 +#: application/controllers/Options.php:237 +#: application/controllers/Options.php:248 #: application/views/options/sidebar.php:6 msgid "Email" msgstr "Email" -#: application/controllers/Options.php:297 +#: application/controllers/Options.php:305 msgid "The settings were saved successfully." msgstr "Les paramètres ont été sauvegardés avec succès." -#: application/controllers/Options.php:299 +#: application/controllers/Options.php:307 msgid "Something went wrong with saving the settings. Try again." msgstr "" "Problème rencontré lors de l'enregistrement des paramètres. Merci de " "réessayer." -#: application/controllers/Options.php:310 -#: application/controllers/Options.php:320 +#: application/controllers/Options.php:318 +#: application/controllers/Options.php:328 #: application/views/options/sidebar.php:8 msgid "OQRS Options" msgstr "Options OQRS" -#: application/controllers/Options.php:333 +#: application/controllers/Options.php:341 msgid "OQRS options have been saved." msgstr "Les options OQRS ont été enregistrées." -#: application/controllers/Options.php:373 -#: application/controllers/Options.php:378 +#: application/controllers/Options.php:381 +#: application/controllers/Options.php:386 msgid "Testmail failed. Something went wrong." msgstr "Test d'envoi de mail : dysfonctionnement rencontré." -#: application/controllers/Options.php:375 +#: application/controllers/Options.php:383 msgid "Testmail sent. Email settings seem to be correct." msgstr "Test d'envoi de mail : les paramètres sont corrects." -#: application/controllers/Options.php:388 -#: application/controllers/Options.php:398 +#: application/controllers/Options.php:396 +#: application/controllers/Options.php:406 msgid "Version Info Settings" msgstr "Infos Version : paramètres" -#: application/controllers/Options.php:404 +#: application/controllers/Options.php:412 msgid "Version Info Header changed to" msgstr "Infos Version : En-tête changée en" -#: application/controllers/Options.php:408 +#: application/controllers/Options.php:416 msgid "Version Info Mode changed to" msgstr "Infos Version : Mode changé en" -#: application/controllers/Options.php:413 +#: application/controllers/Options.php:421 msgid "Version Info Custom Text saved!" msgstr "Infos Version : texte personnalisé enregistré !" -#: application/controllers/Options.php:424 +#: application/controllers/Options.php:432 msgid "Version Info will be shown to all users again" msgstr "Version Info sera montré à tous les utilisateurs à nouveau" -#: application/controllers/Options.php:432 +#: application/controllers/Options.php:440 msgid "Version Info will not be shown to any user" msgstr "Version Info ne sera pas montré à aucun utilisateur" -#: application/controllers/Oqrs.php:22 application/controllers/Oqrs.php:61 -#: application/controllers/Oqrs.php:73 +#: application/controllers/Oqrs.php:46 application/controllers/Oqrs.php:85 +#: application/controllers/Oqrs.php:97 msgid "Log Search & OQRS" msgstr "Recherche de journaux et OQRS" -#: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:413 +#: application/controllers/Oqrs.php:127 +#: application/views/interface_assets/header.php:419 msgid "OQRS Requests" msgstr "OQRS Demandes" @@ -1518,8 +1693,48 @@ msgstr "OQRS Demandes" msgid "QRB Calculator" msgstr "Calculateur QRB" +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "Latitude : %s, Longitude : %s" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "La distance entre %s et %s est de %s mile." +msgstr[1] "La distance entre %s et %s est de %s miles." + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "La distance entre %s et %s est de %s mille nautique." +msgstr[1] "La distance entre %s et %s est de %s milles nautiques." + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "a distance entre %s et %s est de %s kilomètre." +msgstr[1] "La distance entre %s et %s est de %s kilomètres." + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "L'orientation est de %s." + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" +"Les latitudes négatives sont au sud de l'équateur, les longitudes négatives " +"sont à l'ouest de Greenwich." + #: application/controllers/Qrz.php:173 -#: application/views/interface_assets/header.php:426 +#: application/views/interface_assets/header.php:432 msgid "QRZ Logbook" msgstr "Journal QRZ" @@ -1531,8 +1746,8 @@ msgstr "Importation QSL QRZ" msgid "QRZ ADIF Information" msgstr "Informations ADIF QRZ" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:261 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:277 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1555,97 +1770,96 @@ msgid "Add QSO" msgstr "Ajouter QSO" #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Hardware Interfaces" msgstr "Interfaces matérielles" #: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 +#: application/views/contesting/index.php:143 #: application/views/qso/index.php:312 msgid "Radio" -msgstr "" +msgstr "Radio" #: application/controllers/Radio.php:50 msgid "Timestamp" -msgstr "" +msgstr "Horodatage" #: application/controllers/Radio.php:52 -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 +#: application/views/logbookadvanced/index.php:550 +#: application/views/lotw_views/index.php:43 #: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 +#: application/views/simplefle/index.php:177 #: application/views/stationsetup/exportmapoptions.php:5 #: application/views/statistics/custom.php:31 #: application/views/statistics/custom_result.php:33 msgid "Options" -msgstr "" +msgstr "Options" #: application/controllers/Radio.php:90 -#: application/views/contesting/index.php:96 +#: application/views/contesting/index.php:147 #: application/views/qso/index.php:316 msgid "last updated" -msgstr "" +msgstr "dernière mise à jour" #: application/controllers/Radio.php:97 application/controllers/Radio.php:100 msgid "Set as default radio" -msgstr "" +msgstr "Définir comme radio par défaut" #: application/controllers/Radio.php:102 msgid "Default (click to release)" -msgstr "" +msgstr "Par défaut (cliquez pour libérer)" #: application/controllers/Radio.php:105 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2323 -#: application/views/interface_assets/footer.php:2341 -#: application/views/interface_assets/footer.php:2362 -#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2337 +#: application/views/interface_assets/footer.php:2355 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 #: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:514 -#: application/views/lotw_views/index.php:118 +#: application/views/logbookadvanced/index.php:542 +#: application/views/lotw_views/index.php:114 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 #: application/views/qslcard/index.php:65 #: application/views/satellite/edit.php:40 #: application/views/satellite/index.php:26 #: application/views/search/stored_queries.php:22 -#: application/views/station_profile/index.php:55 -#: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 #: application/views/stationsetup/stationsetup.php:137 #: application/views/stationsetup/stationsetup.php:192 -#: application/views/themes/index.php:107 application/views/user/main.php:54 -#: application/views/view_log/qso.php:613 +#: application/views/themes/index.php:107 application/views/user/index.php:57 +#: application/views/view_log/qso.php:616 msgid "Delete" msgstr "Supprimer" #: application/controllers/Radio.php:111 msgid "No CAT interfaced radios found." -msgstr "" +msgstr "Aucune radio avec interface CAT trouvée." -#: application/controllers/Satellite.php:37 +#: application/controllers/Reg1test.php:25 +msgid "Export EDI" +msgstr "Export EDI" + +#: application/controllers/Satellite.php:39 msgid "Create Satellite" msgstr "Créer un satellite" -#: application/controllers/Satellite.php:60 +#: application/controllers/Satellite.php:66 msgid "Edit Satellite" msgstr "Modifier le satellite" #: application/controllers/Sattimers.php:41 #, php-format msgid "You have no station locations. Go %s to create it!" -msgstr "" +msgstr "Vous n'avez pas d'emplacements de station. Allez %s pour le créer !" #: application/controllers/Sattimers.php:41 #: application/views/awards/counties/index.php:8 #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:19 -#: application/views/awards/was/index.php:21 -#: application/views/dashboard/index.php:64 -#: application/views/dashboard/index.php:73 -#: application/views/dashboard/index.php:82 +#: application/views/awards/was/index.php:23 #: application/views/simplefle/index.php:16 msgid "here" msgstr "ici" @@ -1653,13 +1867,14 @@ msgstr "ici" #: application/controllers/Sattimers.php:44 #: application/views/sattimers/index.php:13 msgid "Satellite Timers" -msgstr "" +msgstr "Minuteries de satellite" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:336 -#: application/views/interface_assets/header.php:343 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:340 +#: application/views/interface_assets/header.php:347 +#: application/views/logbookadvanced/index.php:538 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1673,14 +1888,14 @@ msgstr "" #: application/views/search/lotw_unconfirmed.php:37 #: application/views/search/main.php:4 application/views/search/main.php:12 #: application/views/search/main.php:33 -#: application/views/visitor/layout/header.php:99 -#: application/views/visitor/layout/header.php:100 +#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:98 msgid "Search" msgstr "Rechercher" #: application/controllers/Search.php:28 msgid "Search & Filter Logbook" -msgstr "" +msgstr "Rechercher et filtrer le journal de bord" #: application/controllers/Search.php:58 msgid "Incorrectly logged CQ zones" @@ -1694,15 +1909,23 @@ msgstr "" "QSOs non confirmés sur LoTW, mais l'indicatif a été téléchargé sur LoTW " "après la date du QSO" -#: application/controllers/Station.php:35 -#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/controllers/Station.php:36 +#: application/controllers/Stationsetup.php:226 +msgid "Create Station Location" +msgstr "Créer un emplacement de station" + +#: application/controllers/Station.php:51 +msgid "Edit Station Location: " +msgstr "Modifier l'emplacement de la station : " + +#: application/controllers/Station.php:59 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 -#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/edit.php:19 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:427 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 @@ -1710,22 +1933,13 @@ msgstr "" msgid "Station Location" msgstr "Profil de la Station" -#: application/controllers/Station.php:55 -#: application/controllers/Stationsetup.php:226 -msgid "Create Station Location" -msgstr "Créer un emplacement de station" - -#: application/controllers/Station.php:70 -msgid "Edit Station Location: " -msgstr "" - -#: application/controllers/Station.php:92 +#: application/controllers/Station.php:73 msgid "Duplicate Station Location:" -msgstr "" +msgstr "Emplacement de la station en double :" #: application/controllers/Stationsetup.php:35 -#: application/views/interface_assets/header.php:377 -#: application/views/interface_assets/header.php:488 +#: application/views/interface_assets/header.php:381 +#: application/views/interface_assets/header.php:494 msgid "Station Setup" msgstr "Configuration de la station" @@ -1743,7 +1957,7 @@ msgstr "Interdit" #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 #: application/controllers/Stationsetup.php:436 -#: application/views/qso/index.php:608 +#: application/views/qso/index.php:630 msgid "Error" msgstr "Erreur" @@ -1775,9 +1989,10 @@ msgstr "Erreur. Le lien est déjà utilisé !" #: application/views/options/appearance.php:83 #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 +#: application/views/options/appearance.php:110 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:259 -#: application/views/station_profile/edit.php:312 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 msgid "Disabled" @@ -1789,7 +2004,7 @@ msgid "Set as Active Logbook" msgstr "Activer ce journal" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:486 +#: application/views/interface_assets/header.php:492 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1801,31 +2016,30 @@ msgid "" "Are you sure you want to delete the following station logbook? You must re-" "link any locations linked here to another logbook.: " msgstr "" +"Êtes-vous sûr de vouloir supprimer le carnet de bord de la station suivant ? " +"Vous devez relier tous les emplacements liés ici à un autre carnet de bord.: " #: application/controllers/Stationsetup.php:280 #: application/views/stationsetup/stationsetup.php:65 msgid "View Public Page for Logbook: " -msgstr "" +msgstr "Voir la page publique pour le journal de bord : " #: application/controllers/Stationsetup.php:281 msgid "Are you sure you want to delete the public slug?" msgstr "Êtes-vous sûr de vouloir supprimer le slug public ?" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "" "Are you sure you want to make the following station the active station: " -msgstr "" +msgstr "Êtes-vous sûr de vouloir rendre la station suivante active : " #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "Définir actif" #: application/controllers/Stationsetup.php:351 -#: application/views/station_profile/index.php:71 #: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "Station active" @@ -1834,54 +2048,45 @@ msgstr "Station active" #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:28 -#: application/views/station_profile/index.php:76 #: application/views/stationsetup/stationsetup.php:161 -#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/user/index.php:90 application/views/user/index.php:92 msgid "QSO" msgstr "QSO" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 -#: application/views/cron/index.php:56 -#: application/views/interface_assets/footer.php:535 -#: application/views/interface_assets/footer.php:544 +#: application/views/cron/index.php:58 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 #: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:541 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 -#: application/views/station_profile/index.php:46 -#: application/views/station_profile/index.php:79 #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 -#: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/views/themes/index.php:104 application/views/user/index.php:52 msgid "Edit" msgstr "Editer" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:99 #: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "Etes-vous certain de supprimer tous les QSO de cette station ?" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:54 -#: application/views/station_profile/index.php:101 #: application/views/stationsetup/stationsetup.php:136 #: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "Journal vide" #: application/controllers/Stationsetup.php:367 -#: application/views/station_profile/index.php:47 -#: application/views/station_profile/index.php:82 #: application/views/stationsetup/stationsetup.php:129 #: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "Copier" #: application/controllers/Stationsetup.php:372 -#: application/views/station_profile/index.php:105 #: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "" @@ -1913,10 +2118,10 @@ msgstr "Statistiques personnalisées" #: application/views/interface_assets/header.php:136 #: application/views/statistics/qsltable.php:5 msgid "QSL Statistics" -msgstr "" +msgstr "Statistiques QSL" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:282 msgid "Themes" msgstr "Thèmes" @@ -1928,14 +2133,14 @@ msgstr "Créer un thème" msgid "Edit Theme" msgstr "Modifier le thème" -#: application/controllers/Timeline.php:17 -#: application/views/interface_assets/header.php:148 +#: application/controllers/Timeline.php:15 +#: application/views/interface_assets/header.php:150 #: application/views/timeline/index.php:2 msgid "Timeline" msgstr "Chronologie" #: application/controllers/Timeplotter.php:17 -#: application/views/interface_assets/header.php:152 +#: application/views/interface_assets/header.php:154 #: application/views/timeplotter/index.php:9 msgid "Timeplotter" msgstr "" @@ -1946,15 +2151,15 @@ msgstr "Mises à jour" #: application/controllers/Update.php:78 msgid "Preparing DXCC-Entries: " -msgstr "" +msgstr "Préparation des entrées DXCC : " #: application/controllers/Update.php:122 msgid "Preparing DXCC Exceptions: " -msgstr "" +msgstr "Préparation des exceptions DXCC : " #: application/controllers/Update.php:166 msgid "Preparing DXCC Prefixes: " -msgstr "" +msgstr "Préparation des préfixes DXCC : " #: application/controllers/Update.php:230 msgid "DONE" @@ -1962,72 +2167,70 @@ msgstr "FAIT" #: application/controllers/Update.php:244 msgid "Updating..." -msgstr "" +msgstr "Mise à jour..." #: application/controllers/Update.php:247 msgid "Dxcc Entities:" -msgstr "" +msgstr "Entités DXCC :" #: application/controllers/Update.php:248 msgid "Dxcc Exceptions:" -msgstr "" +msgstr "Exceptions DXCC :" #: application/controllers/Update.php:249 msgid "Dxcc Prefixes:" -msgstr "" +msgstr "Préfixes DXCC :" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:268 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:272 msgid "User Accounts" msgstr "Compte des utilisateurs" -#: application/controllers/User.php:52 +#: application/controllers/User.php:76 msgid "Add User" msgstr "Ajouter un utilisateur" -#: application/controllers/User.php:166 +#: application/controllers/User.php:190 msgid "Users" msgstr "Utilisateurs" -#: application/controllers/User.php:240 application/controllers/User.php:673 +#: application/controllers/User.php:264 application/controllers/User.php:697 msgid "Edit User" msgstr "Modifier l'utilisateur" -#: application/controllers/User.php:665 application/controllers/User.php:668 -#: application/views/user/main.php:3 application/views/user/main.php:46 +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 msgid "User" msgstr "Compte" -#: application/controllers/User.php:665 application/controllers/User.php:668 +#: application/controllers/User.php:689 application/controllers/User.php:692 msgid "edited" msgstr "mis à jour" -#: application/controllers/User.php:722 +#: application/controllers/User.php:746 msgid "Profile" msgstr "Profile" -#: application/controllers/User.php:779 +#: application/controllers/User.php:803 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "" +"Félicitations ! Wavelog a été installé avec succès. Vous pouvez maintenant " +"vous connecter pour la première fois." -#: application/controllers/User.php:843 application/controllers/User.php:853 +#: application/controllers/User.php:867 application/controllers/User.php:877 msgid "Login failed. Try again." msgstr "La connexion a échoué. Essayer à nouveau." -#: application/controllers/User.php:860 -#: application/views/interface_assets/header.php:356 -#: application/views/user/login.php:89 -#: application/views/visitor/layout/header.php:88 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:360 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "Se connecter" -#: application/controllers/User.php:868 -msgid "User logged in" -msgstr "Utilisateur connecté" - -#: application/controllers/User.php:899 +#: application/controllers/User.php:922 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " @@ -2038,82 +2241,194 @@ msgstr "" "un administrateur. Seuls les administrateurs sont actuellement autorisés à " "se connecter." -#: application/controllers/User.php:902 +#: application/controllers/User.php:925 msgid "Incorrect username or password!" msgstr "Identifiant ou mot de passe incorrect!" -#: application/controllers/User.php:919 +#: application/controllers/User.php:942 #, php-format msgid "User %s logged out." msgstr "L'utilisateur %s s'est déconnecté." -#: application/controllers/User.php:933 +#: application/controllers/User.php:956 msgid "Password Reset is disabled on the Demo!" msgstr "La réinitialisation du mot de passe est désactivée sur la démo !" -#: application/controllers/User.php:946 +#: application/controllers/User.php:969 msgid "Forgot Password" msgstr "Mot de passe oublié" -#: application/controllers/User.php:996 application/views/user/main.php:8 +#: application/controllers/User.php:1019 application/views/user/index.php:8 msgid "Email settings are incorrect." msgstr "Les paramètres de messagerie sont incorrects." -#: application/controllers/User.php:1000 application/controllers/User.php:1005 +#: application/controllers/User.php:1023 application/controllers/User.php:1028 msgid "Password Reset Processed." msgstr "Réinitialisation du mot de passe traitée." -#: application/controllers/User.php:1107 +#: application/controllers/User.php:1129 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "Mot de passe réinitialisé" +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" +"Vous ne pouvez actuellement pas usurper l'identité d'un autre utilisateur. " +"Veuillez d'abord changer la clé de chiffrement dans votre fichier config." +"php !" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "Hachage invalide" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "Le hachage d'usurpation est trop ancien. Veuillez réessayer." + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" +"Vous ne pouvez pas vous faire passer pour un autre utilisateur tant que vous " +"n'êtes pas connecté en tant qu'utilisateur source" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "Il y a eu un problème avec votre session. Veuillez réessayer." + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "L'utilisateur demandé à imiter n'existe pas" + #: application/controllers/Visitor.php:50 -#: application/controllers/Visitor.php:79 -#: application/controllers/Visitor.php:142 -#: application/controllers/Visitor.php:169 -#: application/controllers/Visitor.php:199 -#: application/controllers/Visitor.php:478 +#: application/controllers/Visitor.php:81 +#: application/controllers/Visitor.php:148 +#: application/controllers/Visitor.php:175 +#: application/controllers/Visitor.php:210 +#: application/controllers/Visitor.php:472 #: application/controllers/Widgets.php:40 msgid "Unknown Public Page." msgstr "Page publique inconnue." -#: application/controllers/Visitor.php:74 -#: application/controllers/Visitor.php:165 -#: application/controllers/Visitor.php:195 -#: application/controllers/Visitor.php:474 +#: application/controllers/Visitor.php:76 +#: application/controllers/Visitor.php:171 +#: application/controllers/Visitor.php:206 +#: application/controllers/Visitor.php:468 #: application/controllers/Widgets.php:36 msgid "Empty Logbook" msgstr "Carnet vide" -#: application/controllers/Visitor.php:205 +#: application/controllers/Visitor.php:216 msgid "Satellite Gridsquare Map" -msgstr "" +msgstr "Carte des carrés de grille satellite" -#: application/controllers/Visitor.php:411 +#: application/controllers/Visitor.php:405 #: application/views/stationsetup/stationsetup.php:35 msgid "Public Search" msgstr "Recherche publique" -#: application/controllers/Visitor.php:444 +#: application/controllers/Visitor.php:438 msgid "Export Map" msgstr "Exporter la carte" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:427 +#: application/views/interface_assets/header.php:433 msgid "QO-100 Dx Club Upload" msgstr "Télécharger QO-100 Dx Club" #: application/controllers/Widgets.php:21 msgid "Unknown Public Page, please make sure the public slug is correct." msgstr "" +"Page publique inconnue, veuillez vous assurer que le slug public est correct." #: application/controllers/Widgets.php:54 application/views/oqrs/index.php:69 msgid "No stations found that are using Wavelog OQRS." -msgstr "" +msgstr "Aucune station trouvée utilisant le OQRS de Wavelog." + +#: application/libraries/Subdivisions.php:31 +msgctxt "Division Name (States in various countries)." +msgid "Province" +msgstr "Province" + +#: application/libraries/Subdivisions.php:39 +msgctxt "Division Name (States in various countries)." +msgid "Oblast" +msgstr "Oblast" + +#: application/libraries/Subdivisions.php:41 +#: application/libraries/Subdivisions.php:47 +msgctxt "Division Name (States in various countries)." +msgid "Region" +msgstr "Région" + +#: application/libraries/Subdivisions.php:45 +msgctxt "Division Name (States in various countries)." +msgid "Department" +msgstr "Département" + +#: application/libraries/Subdivisions.php:49 +msgctxt "Division Name (States in various countries)." +msgid "Municipality" +msgstr "Municipalité" + +#: application/libraries/Subdivisions.php:51 +msgctxt "Division Name (States in various countries)." +msgid "Federal State" +msgstr "État fédéral" + +#: application/libraries/Subdivisions.php:56 +#: application/libraries/Subdivisions.php:94 +msgctxt "Division Name (States in various countries)." +msgid "County" +msgstr "Comté" + +#: application/libraries/Subdivisions.php:60 +#: application/libraries/Subdivisions.php:85 +msgctxt "Division Name (States in various countries)." +msgid "District" +msgstr "District" + +#: application/libraries/Subdivisions.php:62 +msgctxt "Division Name (States in various countries)." +msgid "Canton" +msgstr "Canton" + +#: application/libraries/Subdivisions.php:64 +msgctxt "Division Name (States in various countries)." +msgid "US State" +msgstr "État américain" + +#: application/libraries/Subdivisions.php:67 +msgctxt "Division Name (States in various countries)." +msgid "Prefecture" +msgstr "Préfecture" + +#: application/libraries/Subdivisions.php:69 +msgctxt "Division Name (States in various countries)." +msgid "State" +msgstr "État" + +#: application/libraries/Subdivisions.php:78 +msgctxt "Division Name (States in various countries)." +msgid "US County" +msgstr "Comté des États-Unis" + +#: application/libraries/Subdivisions.php:90 +msgctxt "Division Name (States in various countries)." +msgid "DME" +msgstr "DME" + +#: application/libraries/Subdivisions.php:92 +msgctxt "Division Name (States in various countries)." +msgid "City / Ku / Gun" +msgstr "Ville / Arrondissement / Préfecture" #: application/models/Eqslmethods_model.php:281 msgid "Your eQSL username and/or password is incorrect." @@ -2148,69 +2463,72 @@ msgstr "" msgid "" "HRDlog: QSOs have been uploaded to hrdlog.net for the station callsign: " msgstr "" +"HRDlog : Les QSOs ont été téléchargés sur hrdlog.net pour l'indicatif de la " +"station : " #: application/models/Hrdlog_model.php:25 msgid "HRDlog: No QSOs found to upload for the station callsign: " msgstr "" +"HRDlog : Aucun QSO trouvé à télécharger pour l'indicatif de la station : " #: application/models/Hrdlog_model.php:31 msgid "HRDlog: No station profiles with HRDlog Credentials found." -msgstr "" +msgstr "HRDlog : Aucun profil de station avec les identifiants HRDlog trouvé." -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4255 msgid "QSO could not be matched" msgstr "pas de correspondance pour le QSO" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4261 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "confirmé par LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4266 msgid "confirmed by award manager" msgstr "confirmé par le manager de l'Award" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4269 msgid "confirmed by cross-check of DCL data" msgstr "confirmé par recoupement des données DCL" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4272 msgid "confirmation pending" msgstr "confirmation en attente" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4275 msgid "unconfirmed" msgstr "non confirmé" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4278 msgid "unknown" msgstr "inconnu" #: application/views/accumulate/index.php:2 msgid "Accumulated number of DXCCs worked" -msgstr "" +msgstr "Nombre total de DXCC travaillés" #: application/views/accumulate/index.php:3 msgid "Accumulated number of States worked" -msgstr "" +msgstr "Nombre total d'États contactés" #: application/views/accumulate/index.php:4 msgid "Accumulated number of IOTAs worked" -msgstr "" +msgstr "Nombre total d'IOTAs contactés" #: application/views/accumulate/index.php:5 msgid "Accumulated number of CQ Zones worked" -msgstr "" +msgstr "Nombre total de zones CQ travaillées" #: application/views/accumulate/index.php:6 msgid "Accumulated number of VUCC Grids worked" -msgstr "" +msgstr "Nombre total de grilles VUCC travaillées" #: application/views/accumulate/index.php:7 msgid "Accumulated number of WAJA worked" -msgstr "" +msgstr "Nombre total de WAJA contactés" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:222 +#: application/views/dashboard/index.php:238 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2220,10 +2538,10 @@ msgstr "Année" #: application/views/accumulate/index.php:9 #: application/views/accumulate/index.php:67 msgid "Yearly" -msgstr "" +msgstr "Annuel" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:243 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Mois" @@ -2231,37 +2549,41 @@ msgstr "Mois" #: application/views/accumulate/index.php:11 #: application/views/accumulate/index.php:73 msgid "Monthly" -msgstr "" +msgstr "Mensuel" #: application/views/accumulate/index.php:12 msgid "Difference" -msgstr "" +msgstr "Différence" #: application/views/accumulate/index.php:24 #: application/views/accumulate/index.php:34 +#: application/views/accumulate/index.php:83 #: application/views/activated_gridmap/index.php:10 #: application/views/activated_gridmap/index.php:22 #: application/views/activated_gridmap/index.php:32 #: application/views/activated_gridmap/index.php:41 -#: application/views/activators/index.php:10 -#: application/views/awards/cq/index.php:75 -#: application/views/awards/cq/index.php:89 +#: application/views/activators/index.php:13 +#: application/views/awards/cq/index.php:77 +#: application/views/awards/cq/index.php:91 #: application/views/awards/dok/index.php:94 #: application/views/awards/dxcc/index.php:134 #: application/views/awards/dxcc/index.php:150 #: application/views/awards/dxcc/index.php:165 -#: application/views/awards/helvetia/index.php:88 +#: application/views/awards/helvetia/index.php:90 #: application/views/awards/iota/index.php:108 -#: application/views/awards/itu/index.php:75 -#: application/views/awards/itu/index.php:89 +#: application/views/awards/itu/index.php:77 +#: application/views/awards/itu/index.php:91 #: application/views/awards/jcc/index.php:91 -#: application/views/awards/rac/index.php:80 +#: application/views/awards/rac/index.php:82 #: application/views/awards/wab/index.php:24 #: application/views/awards/wab/index.php:36 #: application/views/awards/wab/index.php:46 #: application/views/awards/wab/index.php:55 -#: application/views/awards/waja/index.php:92 -#: application/views/awards/was/index.php:88 +#: application/views/awards/wac/index.php:81 +#: application/views/awards/wac/index.php:97 +#: application/views/awards/wac/index.php:113 +#: application/views/awards/waja/index.php:94 +#: application/views/awards/was/index.php:90 #: application/views/bandmap/list.php:71 application/views/bandmap/list.php:78 #: application/views/bandmap/list.php:90 application/views/bands/index.php:117 #: application/views/cabrillo/index.php:65 @@ -2272,6 +2594,7 @@ msgstr "" #: application/views/csv/index.php:94 application/views/distances/index.php:21 #: application/views/distances/index.php:36 #: application/views/distances/index.php:46 +#: application/views/distances/index.php:56 #: application/views/dxatlas/index.php:21 #: application/views/dxatlas/index.php:33 #: application/views/dxatlas/index.php:44 @@ -2283,28 +2606,29 @@ msgstr "" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1435 -#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1448 +#: application/views/interface_assets/footer.php:1587 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:172 #: application/views/logbookadvanced/index.php:183 #: application/views/logbookadvanced/index.php:194 -#: application/views/logbookadvanced/index.php:203 -#: application/views/logbookadvanced/index.php:212 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:205 +#: application/views/logbookadvanced/index.php:214 +#: application/views/logbookadvanced/index.php:223 #: application/views/logbookadvanced/index.php:248 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:321 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:374 -#: application/views/logbookadvanced/index.php:385 -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:259 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:423 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2315,18 +2639,19 @@ msgstr "" #: application/views/stationsetup/exportmapoptions.php:33 #: application/views/timeline/index.php:10 #: application/views/timeline/index.php:22 +#: application/views/timeline/index.php:77 #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 #: application/views/user/edit.php:633 -#: application/views/visitor/layout/footer.php:169 +#: application/views/visitor/layout/footer.php:171 msgid "All" msgstr "Tout" #: application/views/accumulate/index.php:50 #: application/views/timeline/index.php:41 msgid "Award" -msgstr "" +msgstr "Diplome" #: application/views/accumulate/index.php:53 #: application/views/timeline/index.php:44 @@ -2346,40 +2671,265 @@ msgstr "Worked All Zones (WAZ)" #: application/views/accumulate/index.php:57 #: application/views/timeline/index.php:48 msgid "VHF / UHF Century Club (VUCC)" -msgstr "" +msgstr "VHF / UHF Century Club (VUCC)" #: application/views/accumulate/index.php:58 #: application/views/timeline/index.php:49 msgid "Worked All Japan (WAJA)" -msgstr "" +msgstr "Worked All Japan (WAJA)" #: application/views/accumulate/index.php:62 msgid "Period" +msgstr "Période" + +#: application/views/accumulate/index.php:80 +#: application/views/distances/index.php:53 +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/timeline/index.php:74 +msgid "Propagation" msgstr "" -#: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: application/views/accumulate/index.php:84 +#: application/views/distances/index.php:57 +#: application/views/timeline/index.php:78 +msgid "All but SAT" +msgstr "" + +#: application/views/accumulate/index.php:85 +#: application/views/distances/index.php:58 +#: application/views/gridmap/index.php:42 +#: application/views/logbookadvanced/edit.php:142 +#: application/views/logbookadvanced/index.php:307 +#: application/views/timeline/index.php:79 +msgid "None/Empty" +msgstr "Rien/Vide" + +#: application/views/accumulate/index.php:86 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/logbookadvanced/index.php:225 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:414 +#: application/views/timeline/index.php:80 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/accumulate/index.php:87 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/logbookadvanced/index.php:226 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:415 +#: application/views/timeline/index.php:81 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/accumulate/index.php:88 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/logbookadvanced/index.php:227 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:416 +#: application/views/timeline/index.php:82 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/accumulate/index.php:89 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/logbookadvanced/index.php:228 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:417 +#: application/views/timeline/index.php:83 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/accumulate/index.php:90 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/logbookadvanced/index.php:229 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:418 +#: application/views/timeline/index.php:84 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "EchoLink" + +#: application/views/accumulate/index.php:91 +#: 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/logbookadvanced/index.php:230 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:419 +#: application/views/timeline/index.php:85 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "Terre-Lune-Terre" + +#: application/views/accumulate/index.php:92 +#: 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/logbookadvanced/index.php:231 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:420 +#: application/views/timeline/index.php:86 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "Sporadique E" + +#: application/views/accumulate/index.php:93 +#: 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/logbookadvanced/index.php:232 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:421 +#: application/views/timeline/index.php:87 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/accumulate/index.php:94 +#: 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/logbookadvanced/index.php:233 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:422 +#: application/views/timeline/index.php:88 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "F2 Réflexion" + +#: application/views/accumulate/index.php:95 +#: 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/logbookadvanced/index.php:234 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:423 +#: application/views/timeline/index.php:89 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/accumulate/index.php:96 +#: 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/logbookadvanced/index.php:235 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:424 +#: application/views/timeline/index.php:90 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "Réflexion Ionosphérique" + +#: application/views/accumulate/index.php:97 +#: 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/logbookadvanced/index.php:236 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:425 +#: application/views/timeline/index.php:91 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/accumulate/index.php:98 +#: 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/logbookadvanced/index.php:237 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:426 +#: application/views/timeline/index.php:92 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "Réflexions météorites" + +#: application/views/accumulate/index.php:99 +#: 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/logbookadvanced/index.php:238 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:427 +#: application/views/timeline/index.php:93 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/accumulate/index.php:100 +#: 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/logbookadvanced/index.php:239 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:428 +#: application/views/timeline/index.php:94 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/accumulate/index.php:101 +#: 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/logbookadvanced/index.php:240 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:429 +#: application/views/timeline/index.php:95 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Satellite" + +#: application/views/accumulate/index.php:102 +#: 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/logbookadvanced/index.php:241 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:430 +#: application/views/timeline/index.php:96 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "Transéquatoriale" + +#: application/views/accumulate/index.php:103 +#: 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/logbookadvanced/index.php:242 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:431 +#: application/views/timeline/index.php:97 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/accumulate/index.php:112 +#: application/views/activators/index.php:53 +#: application/views/awards/cq/index.php:113 #: application/views/awards/dok/index.php:127 #: application/views/awards/dxcc/index.php:187 -#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/helvetia/index.php:112 #: application/views/awards/iota/index.php:130 -#: application/views/awards/itu/index.php:111 +#: application/views/awards/itu/index.php:113 #: application/views/awards/jcc/index.php:113 -#: application/views/awards/rac/index.php:102 -#: application/views/awards/waja/index.php:114 -#: application/views/awards/was/index.php:110 -#: application/views/distances/index.php:53 +#: application/views/awards/rac/index.php:104 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:79 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 #: application/views/stationsetup/exportmapoptions.php:6 -#: application/views/timeline/index.php:72 -#: application/views/timeline/index.php:137 -#: application/views/timeline/index.php:164 -#: application/views/timeline/index.php:189 -#: application/views/timeline/index.php:218 -#: application/views/timeline/index.php:243 -#: application/views/timeline/index.php:270 +#: application/views/timeline/index.php:105 +#: application/views/timeline/index.php:170 +#: application/views/timeline/index.php:197 +#: application/views/timeline/index.php:222 +#: application/views/timeline/index.php:251 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:303 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "Afficher" @@ -2387,50 +2937,55 @@ msgstr "Afficher" #: application/views/activated_gridmap/index.php:20 #: application/views/awards/dxcc/index.php:131 #: application/views/awards/wab/index.php:34 +#: application/views/awards/wac/index.php:78 #: 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/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/edit.php:17 +#: application/views/logbookadvanced/index.php:203 #: application/views/satellite/flightpath.php:34 +#: application/views/satellite/passtable.php:5 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" -msgstr "" +msgstr "Satellite" #: application/views/activated_gridmap/index.php:30 #: application/views/awards/dxcc/index.php:147 #: application/views/awards/wab/index.php:44 +#: application/views/awards/wac/index.php:94 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:212 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 msgid "Orbit" -msgstr "" +msgstr "Orbite" #: application/views/activated_gridmap/index.php:50 #: application/views/awards/wab/index.php:64 #: application/views/gridmap/index.php:92 #: application/views/timeline/index.php:52 msgid "Confirmation" -msgstr "" +msgstr "Confirmation" #: application/views/activated_gridmap/index.php:82 -#: application/views/awards/cq/index.php:66 +#: application/views/awards/cq/index.php:68 #: application/views/awards/dok/index.php:67 #: application/views/awards/dxcc/index.php:73 -#: application/views/awards/helvetia/index.php:65 -#: application/views/awards/itu/index.php:66 +#: application/views/awards/helvetia/index.php:67 +#: application/views/awards/itu/index.php:68 #: application/views/awards/jcc/index.php:64 -#: application/views/awards/rac/index.php:57 +#: application/views/awards/rac/index.php:59 #: application/views/awards/wab/index.php:96 -#: application/views/awards/waja/index.php:65 -#: application/views/awards/was/index.php:65 +#: application/views/awards/wac/index.php:56 +#: application/views/awards/waja/index.php:67 +#: application/views/awards/was/index.php:67 #: application/views/gridmap/index.php:125 application/views/user/edit.php:675 msgid "QRZ.com" -msgstr "" +msgstr "QRZ.com" #: application/views/activated_gridmap/index.php:86 #: application/views/gridmap/index.php:130 @@ -2449,7 +3004,7 @@ msgstr "Effacer marqueurs" #: application/views/gridmap/index.php:148 #: application/views/logbookadvanced/index.php:8 msgid "Latitude" -msgstr "" +msgstr "Latitude" #: application/views/activated_gridmap/index.php:104 #: application/views/awards/ffma/index.php:32 @@ -2457,65 +3012,68 @@ msgstr "" #: application/views/gridmap/index.php:150 #: application/views/logbookadvanced/index.php:9 msgid "Longitude" -msgstr "" +msgstr "Longitude" #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:37 #: application/views/gridmap/index.php:156 -#: application/views/logbookadvanced/index.php:12 +#: application/views/logbookadvanced/index.php:13 msgid "Bearing" msgstr "Azimut" -#: application/views/activators/index.php:23 +#: application/views/activators/index.php:26 msgctxt "Orbiter LEO or GEO" msgid "Both" -msgstr "" +msgstr "Les deux" -#: application/views/activators/index.php:30 +#: application/views/activators/index.php:33 msgid "Minimum Count" msgstr "Nbre d'activation minimum" -#: application/views/activators/index.php:77 +#: application/views/activators/index.php:76 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:46 -#: application/views/awards/cq/index.php:196 +#: application/views/awards/cq/index.php:198 #: application/views/awards/dok/index.php:196 #: application/views/awards/dxcc/index.php:280 -#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/helvetia/index.php:200 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:196 +#: application/views/awards/itu/index.php:198 #: application/views/awards/jcc/index.php:236 #: application/views/awards/pota/index.php:67 -#: application/views/awards/rac/index.php:190 +#: application/views/awards/rac/index.php:192 #: application/views/awards/sig/index.php:45 #: application/views/awards/sota/index.php:53 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:39 -#: application/views/awards/waja/index.php:200 -#: application/views/awards/was/index.php:198 +#: application/views/awards/wac/index.php:199 +#: application/views/awards/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 +#: application/views/distancerecords/index.php:50 #: application/views/public_search/empty.php:3 -#: application/views/qrz/export.php:64 application/views/timeline/index.php:102 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:135 msgid "Nothing found!" -msgstr "" +msgstr "Rien trouvé !" -#: application/views/activators/index.php:99 -#: application/views/adif/import.php:66 application/views/adif/import.php:172 -#: application/views/adif/import.php:217 +#: application/views/activators/index.php:98 +#: application/views/adif/import.php:66 application/views/adif/import.php:182 +#: application/views/adif/import.php:227 #: application/views/awards/pota/index.php:34 #: application/views/awards/sig/qso_list.php:11 #: application/views/awards/sota/index.php:25 #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:104 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:152 +#: application/views/contesting/index.php:156 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:168 +#: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 -#: application/views/lotw_views/index.php:39 +#: application/views/lotw_views/index.php:35 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 #: application/views/qslcard/index.php:28 @@ -2524,35 +3082,36 @@ msgstr "" #: application/views/qslprint/qslprint.php:21 #: application/views/qslprint/qsolist.php:6 #: application/views/qso/edit_ajax.php:62 application/views/qso/index.php:124 +#: application/views/reg1test/index.php:33 #: application/views/search/cqzones.php:32 #: application/views/search/cqzones_result.php:9 #: application/views/search/lotw_unconfirmed.php:33 #: application/views/search/lotw_unconfirmed_result.php:6 #: application/views/search/result.php:11 -#: application/views/simplefle/index.php:142 -#: application/views/station_profile/edit.php:36 +#: application/views/simplefle/index.php:148 +#: application/views/station_profile/edit.php:63 #: application/views/stationsetup/linkedlocations.php:17 -#: application/views/user/edit.php:123 application/views/user/main.php:4 -#: application/views/user/main.php:47 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:507 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 +#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:510 msgid "Callsign" msgstr "Indicatif" -#: application/views/activators/index.php:100 +#: application/views/activators/index.php:99 msgid "Count" msgstr "Nombre" -#: application/views/activators/index.php:102 -#: application/views/timeline/index.php:121 -#: application/views/timeline/index.php:153 -#: application/views/timeline/index.php:178 -#: application/views/timeline/index.php:205 -#: application/views/timeline/index.php:232 -#: application/views/timeline/index.php:258 +#: application/views/activators/index.php:101 +#: application/views/timeline/index.php:154 +#: application/views/timeline/index.php:186 +#: application/views/timeline/index.php:211 +#: application/views/timeline/index.php:238 +#: application/views/timeline/index.php:265 +#: application/views/timeline/index.php:291 msgid "Show QSO's" msgstr "Afficher les QSO" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "Afficher la carte" @@ -2593,10 +3152,12 @@ msgstr "Différence de données DOK entre votre journal de travail et DCL" #: application/views/awards/wwff/index.php:32 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:25 -#: application/views/contesting/index.php:42 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36 +#: application/views/contesting/index.php:93 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:163 +#: application/views/debug/index.php:545 +#: application/views/distancerecords/index.php:16 +#: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2609,36 +3170,38 @@ msgstr "Différence de données DOK entre votre journal de travail et DCL" #: application/views/qslcard/searchresult.php:4 #: application/views/qslprint/qslprint.php:22 #: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:64 -#: application/views/qso/index.php:100 +#: application/views/qso/index.php:100 application/views/satellite/pass.php:473 #: application/views/search/cqzones_result.php:7 #: application/views/search/result_search.php:4 #: application/views/search/search_result_ajax.php:89 -#: application/views/simplefle/index.php:140 +#: application/views/simplefle/index.php:146 #: application/views/statistics/custom.php:38 #: application/views/statistics/custom_result.php:40 #: application/views/statistics/custom_result.php:85 -#: application/views/timeline/index.php:116 -#: application/views/timeline/index.php:151 -#: application/views/timeline/index.php:176 -#: application/views/timeline/index.php:201 -#: application/views/timeline/index.php:230 -#: application/views/timeline/index.php:255 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:184 +#: application/views/timeline/index.php:209 +#: application/views/timeline/index.php:234 +#: application/views/timeline/index.php:263 +#: application/views/timeline/index.php:288 #: application/views/view_log/partial/log.php:4 -#: application/views/view_log/partial/log_ajax.php:57 +#: application/views/view_log/partial/log_ajax.php:59 #: application/views/visitor/index.php:147 #: application/views/widgets/qsos.php:24 msgid "Date" -msgstr "" +msgstr "Date" #: application/views/adif/dcl_success.php:30 #: application/views/awards/pota/index.php:33 #: application/views/awards/wwff/index.php:33 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:26 -#: application/views/contesting/index.php:47 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37 +#: application/views/contesting/index.php:98 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:166 +#: application/views/debug/index.php:546 +#: application/views/distancerecords/index.php:17 +#: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2649,12 +3212,12 @@ msgstr "" #: application/views/search/cqzones_result.php:8 #: application/views/search/result_search.php:5 #: application/views/search/search_result_ajax.php:91 -#: application/views/simplefle/index.php:141 +#: application/views/simplefle/index.php:147 #: application/views/statistics/custom_result.php:86 -#: application/views/timeline/index.php:256 +#: application/views/timeline/index.php:289 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 -#: application/views/view_log/partial/log_ajax.php:59 +#: application/views/view_log/partial/log_ajax.php:61 #: application/views/visitor/index.php:150 #: application/views/widgets/qsos.php:26 msgid "Time" @@ -2663,7 +3226,7 @@ msgstr "Heure" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 -#: application/views/contesting/index.php:201 +#: application/views/contesting/index.php:248 #: application/views/debug/index.php:547 application/views/debug/index.php:582 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -2675,7 +3238,7 @@ msgstr "Heure" #: application/views/search/search_result_ajax.php:93 #: application/views/statistics/custom_result.php:87 #: application/views/view_log/partial/log.php:8 -#: application/views/view_log/partial/log_ajax.php:61 +#: application/views/view_log/partial/log_ajax.php:63 #: application/views/visitor/index.php:152 #: application/views/widgets/qsos.php:28 msgid "Call" @@ -2683,67 +3246,67 @@ msgstr "QRZ" #: application/views/adif/dcl_success.php:34 msgid "DOK in Log" -msgstr "" +msgstr "DOK dans le log" #: application/views/adif/dcl_success.php:35 msgid "DOK in DCL" -msgstr "" +msgstr "DOK dans DCL" #: application/views/adif/dcl_success.php:36 msgid "DCL QSL Status" -msgstr "" +msgstr "Statut QSL DCL" -#: application/views/adif/import.php:36 application/views/adif/import.php:242 +#: application/views/adif/import.php:36 application/views/adif/import.php:252 msgid "DARC DCL" -msgstr "" +msgstr "DARC DCL" #: application/views/adif/import.php:55 -#: application/views/dashboard/index.php:97 -#: application/views/dashboard/index.php:118 -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:112 +#: application/views/dashboard/index.php:133 +#: application/views/dashboard/index.php:139 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" -msgstr "" +msgstr "Important" #: application/views/adif/import.php:55 msgid "Log Files must have the file type *.adi" msgstr "Les fichiers de Log doivent avoir l'extention : *.adi" -#: application/views/adif/import.php:56 application/views/view_log/qso.php:622 +#: application/views/adif/import.php:56 application/views/view_log/qso.php:625 msgid "Maximum file upload size is " msgstr "La taille maximum d'un fichier à télécharger est " -#: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:175 +#: application/views/adif/import.php:56 application/views/adif/import.php:230 +#: application/views/adif/import.php:268 application/views/debug/index.php:175 #: application/views/debug/index.php:192 application/views/debug/index.php:537 #: application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:34 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 -#: application/views/station_profile/index.php:31 #: application/views/stationsetup/stationsetup.php:111 -#: application/views/view_log/qso.php:622 +#: application/views/view_log/qso.php:625 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" msgstr "Attention" #: application/views/adif/import.php:60 application/views/adif/import.php:62 -#: application/views/adif/import.php:168 application/views/adif/import.php:215 +#: application/views/adif/import.php:178 application/views/adif/import.php:225 #: application/views/eqsl/import.php:36 application/views/hrdlog/export.php:69 -#: application/views/qrz/export.php:89 application/views/webadif/export.php:89 +#: application/views/qrz/export.php:89 application/views/reg1test/index.php:30 +#: application/views/webadif/export.php:89 msgid "Select Station Location" msgstr "Sélectionner une Localisation" #: application/views/adif/import.php:69 msgid "Add QSOs to Contest" -msgstr "" +msgstr "Ajouter des QSOs au concours" #: application/views/adif/import.php:71 #: application/views/simplefle/index.php:82 msgid "No Contest" -msgstr "" +msgstr "Pas de concours" #: application/views/adif/import.php:77 msgid "ADIF File" @@ -2759,29 +3322,34 @@ msgstr "Indiquer que les QSO importés ont été téléchargés sur LoTW" #: application/views/adif/import.php:95 application/views/adif/import.php:105 #: application/views/adif/import.php:115 application/views/adif/import.php:125 +#: application/views/adif/import.php:135 msgid "Select if ADIF being imported does not contain this information." msgstr "(A cocher, si l'ADIF à importer ne contient pas ces informations)." #: application/views/adif/import.php:103 +msgid "Mark imported QSOs as uploaded to eQSL Logbook" +msgstr "" + +#: application/views/adif/import.php:113 msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" msgstr "" "Indiquer que les QSO importés ont été téléchargés dans le journal HRDLog.net" -#: application/views/adif/import.php:113 +#: application/views/adif/import.php:123 msgid "Mark imported QSOs as uploaded to QRZ Logbook" msgstr "" "Indiquer que les QSO importés ont été téléchargés dans le journal QRZ.com" -#: application/views/adif/import.php:123 +#: application/views/adif/import.php:133 msgid "Mark imported QSOs as uploaded to Clublog Logbook" msgstr "" "Indiquer que les QSO importés ont été téléchargés dans le journal Clublog" -#: application/views/adif/import.php:133 +#: application/views/adif/import.php:143 msgid "Use DXCC information from ADIF" msgstr "Utiliser l'information du DXCC issue du fichier ADIF" -#: application/views/adif/import.php:135 +#: application/views/adif/import.php:145 msgid "" "If not selected, Wavelog will attempt to determine DXCC information " "automatically." @@ -2789,42 +3357,43 @@ msgstr "" "(Si cochée, Wavelog tentera de déterminer automatiquement les informations " "DXCC)." -#: application/views/adif/import.php:143 +#: application/views/adif/import.php:153 msgid "Always use login-callsign as operator-name on import" msgstr "" "Toujours utiliser l'indicatif de connexion comme nom d'opérateur lors de " "l'import" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:32 -#: application/views/interface_assets/footer.php:495 -#: application/views/interface_assets/footer.php:2119 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2133 msgid "DANGER" -msgstr "" +msgstr "DANGER" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 msgid "Ignore Stationcallsign on import" msgstr "Ignorer l'indicatif de la station lors de l'import" -#: application/views/adif/import.php:154 +#: application/views/adif/import.php:164 +#, php-format msgid "" -"If selected, Wavelog will try to import all QSO's of the ADIF, " +"If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " "regardless if they match to the chosen station-location." msgstr "" -"(Si cochée, Wavelog tentera d'importer TOUS les QSO de l'ADIF, qu'ils " -"correspondent ou non à l'emplacement de la station choisie)." +"Si sélectionné, Wavelog essaiera d'importer %stous%s les QSO de l'ADIF, " +"qu'ils correspondent ou non à la station-lieu choisie." -#: application/views/adif/import.php:158 application/views/adif/import.php:273 +#: application/views/adif/import.php:168 application/views/adif/import.php:283 #: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 #: application/views/webadif/export.php:55 msgid "Upload" msgstr "Importer" -#: application/views/adif/import.php:165 +#: application/views/adif/import.php:175 msgid "Take your logbook file anywhere!" msgstr "Emportez votre fichier journal de trafic partout !" -#: application/views/adif/import.php:166 +#: application/views/adif/import.php:176 msgid "" "Exporting ADIFs allows you to import contacts into third party applications " "like LoTW, Awards or just for keeping a backup." @@ -2833,7 +3402,7 @@ msgstr "" "applications tierces comme LoTW, Awards ou simplement pour conserver une " "sauvegarde." -#: application/views/adif/import.php:176 application/views/adif/import.php:222 +#: application/views/adif/import.php:186 application/views/adif/import.php:232 #: application/views/cfd/index.php:15 application/views/csv/index.php:118 #: application/views/dxatlas/index.php:118 #: application/views/hrdlog/export.php:77 application/views/kml/index.php:103 @@ -2842,7 +3411,7 @@ msgstr "" msgid "From date" msgstr "Date, du" -#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/adif/import.php:189 application/views/adif/import.php:235 #: application/views/cfd/index.php:20 application/views/csv/index.php:123 #: application/views/dxatlas/index.php:123 #: application/views/hrdlog/export.php:82 application/views/kml/index.php:108 @@ -2851,40 +3420,40 @@ msgstr "Date, du" msgid "To date" msgstr "au" -#: application/views/adif/import.php:187 +#: application/views/adif/import.php:197 msgid "Mark exported QSOs as uploaded to LoTW" msgstr "Indiquer que les QSO exportés ont été téléchargés sur LoTW" -#: application/views/adif/import.php:195 +#: application/views/adif/import.php:205 msgid "Export QSOs not uploaded to LoTW" msgstr "Exporter les QSO non téléchargés sur LoTW" -#: application/views/adif/import.php:200 +#: application/views/adif/import.php:210 msgid "Export QSO's" msgstr "Exporter" -#: application/views/adif/import.php:205 +#: application/views/adif/import.php:215 msgid "Export Satellite-Only QSOs" msgstr "Export des QSO par Satellite seulement" -#: application/views/adif/import.php:206 +#: application/views/adif/import.php:216 msgid "Export All Satellite QSOs" msgstr "Exporter tous les QSO par satellite" -#: application/views/adif/import.php:208 +#: application/views/adif/import.php:218 msgid "Export All Satellite QSOs Confirmed on LoTW" msgstr "Exporter tous les QSO par satellite et confirmés sur LoTW" -#: application/views/adif/import.php:220 application/views/hrdlog/export.php:74 +#: application/views/adif/import.php:230 application/views/hrdlog/export.php:74 #: application/views/qrz/export.php:94 application/views/webadif/export.php:94 msgid "If a date range is not selected then all QSOs will be marked!" msgstr "Si aucune date n'est renseignées, tous les QSO seront marqués !" -#: application/views/adif/import.php:228 +#: application/views/adif/import.php:238 msgid "Mark QSOs as exported to LoTW" msgstr "Marquer les QSO comme étant 'téléchargé sur LoTW'" -#: application/views/adif/import.php:242 +#: application/views/adif/import.php:252 #, php-format msgid "" "Go to %s and export your logbook with confirmed DOKs. To speed up the " @@ -2892,12 +3461,17 @@ msgid "" "List). The downloaded ADIF file can be uploaded here in order to update QSOs " "with DOK info." msgstr "" +"Aller à %s et exporter votre carnet de bord avec les DOKs confirmés. Pour " +"accélérer le processus, vous peux sélectionner uniquement les QSOs DL à " +"télécharger (c'est-à-dire mettre 'DL' dans la liste des préfixes). Le " +"fichier ADIF téléchargé peut être téléchargé ici pour mettre à jour les QSOs " +"avec les infos DOK." -#: application/views/adif/import.php:249 +#: application/views/adif/import.php:259 msgid "Only import DOK data from QSOs confirmed on DCL." msgstr "Importez uniquement les données DOK des QSO confirmés sur DCL." -#: application/views/adif/import.php:251 +#: application/views/adif/import.php:261 msgid "" "Uncheck if you also want to update DOK with data from unconfirmed QSOs in " "DCL." @@ -2905,11 +3479,11 @@ msgstr "" "(Décoché, si vous souhaitez également mettre à jour DOK, avec les données " "des QSO non confirmés dans DCL)." -#: application/views/adif/import.php:258 +#: application/views/adif/import.php:268 msgid "Overwrites exisiting DOK in log by DCL (if different)." -msgstr "" +msgstr "Remplace le DOK existant dans le journal par DCL (si différent)." -#: application/views/adif/import.php:260 +#: application/views/adif/import.php:270 msgid "" "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " "log." @@ -2917,15 +3491,32 @@ msgstr "" "(Si cochée, Wavelog écrasera de force le DOK existant par le DOK du journal " "DCL)." -#: application/views/adif/import.php:267 +#: application/views/adif/import.php:277 msgid "Ignore QSOs that cannot be matched." msgstr "Ignorer les QSO qui ne correspondent pas." -#: application/views/adif/import.php:269 +#: application/views/adif/import.php:279 msgid "" "If unchecked, information about QSOs which could not be found in Wavelog " "will be displayed." msgstr "" +"Si non coché, les informations sur les QSOs qui n'ont pas pu être trouvées " +"dans Wavelog seront affichées." + +#: application/views/adif/import_failed.php:15 +msgid "The ADIF file could not be parsed correctly." +msgstr "Le fichier ADIF n'a pas pu être analysé correctement." + +#: application/views/adif/import_failed.php:16 +msgid "" +"At least one of the ADIF fields could not be parsed and/or inserted into the " +"database. Please check the imported ADIF file. You can use an online ADIF " +"file checker. For example:" +msgstr "" +"Au moins un champ ADIF n'a pas pu être analysé et/ou inséré dans la base de " +"données. Veuillez vérifier le fichier ADIF importé. Vous pouvez utiliser un " +"vérificateur de fichiers ADIF en ligne. Vous pouvez utiliser un vérificateur " +"de fichiers ADIF en ligne, tel que :" #: application/views/adif/import_success.php:15 msgid "Yay, its imported!" @@ -2937,11 +3528,11 @@ msgstr "Le fichier ADIF a été importé." #: application/views/adif/import_success.php:18 msgid "Dupes were inserted!" -msgstr "" +msgstr "Des doublons ont été insérés !" #: application/views/adif/import_success.php:20 msgid "Dupes were skipped." -msgstr "" +msgstr "Les doublons ont été ignorés." #: application/views/adif/import_success.php:24 msgid "ADIF Errors" @@ -2972,35 +3563,33 @@ msgstr "Les QSO ont été marqués comme téléchargés sur LoTW." #: application/views/api/description.php:15 msgid "Editing Description for API Key" -msgstr "" +msgstr "Modification de la description de la clé API" #: application/views/api/description.php:28 msgid "Simple name to describe what you use this API for." -msgstr "" +msgstr "Nom simple pour décrire l'utilisation de cette API." #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 -#: application/views/interface_assets/footer.php:43 -#: application/views/interface_assets/footer.php:530 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 -#: application/views/options/appearance.php:107 +#: application/views/options/appearance.php:116 #: application/views/options/dxcluster.php:67 #: application/views/options/email.php:112 #: application/views/options/oqrs.php:63 #: application/views/options/radios.php:45 #: application/views/options/version_dialog.php:78 -#: application/views/qso/components/winkeysettings.php:90 -#: application/views/qso/components/winkeysettings_results.php:90 #: application/views/satellite/create.php:70 #: application/views/simplefle/index.php:22 msgid "Save" msgstr "Enregistrer" #: application/views/api/help.php:14 -#: application/views/interface_assets/header.php:431 +#: application/views/interface_assets/header.php:437 msgid "API Keys" -msgstr "" +msgstr "Clés API" #: application/views/api/help.php:17 msgid "" @@ -3008,6 +3597,9 @@ msgid "" "access Wavelog in a controlled way. Access to the API is managed via API " "keys." msgstr "" +"L'API Wavelog (Interface de Programmation d'Applications) permet aux " +"systèmes tiers d'accéder à Wavelog de manière contrôlée. L'accès à l'API est " +"géré via des clés API." #: application/views/api/help.php:18 msgid "" @@ -3016,29 +3608,34 @@ msgid "" "Wavelog. Generate a read-only key if the application only needs to obtain " "data from Wavelog." msgstr "" +"Vous devrez générer une clé API pour chaque outil que vous souhaitez " +"utiliser (par exemple, WLgate). Générez une clé en lecture-écriture si " +"l'application doit envoyer des données à Wavelog. Générez une clé en lecture " +"seule si l'application a seulement besoin d'obtenir des données de Wavelog." #: application/views/api/help.php:19 msgid "API URL" -msgstr "" +msgstr "URL de l'API" #: application/views/api/help.php:19 application/views/api/help.php:38 -#: application/views/cron/index.php:21 application/views/debug/index.php:36 +#: application/views/cron/index.php:22 application/views/debug/index.php:36 msgid "Copy to clipboard" msgstr "Copier dans le presse-papier" #: application/views/api/help.php:19 msgid "The API URL for this Wavelog instance is" -msgstr "" +msgstr "L'URL de l'API pour cette instance de Wavelog est" #: application/views/api/help.php:20 application/views/dxcalendar/index.php:15 -#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:477 -#: application/views/qso/index.php:538 application/views/qso/index.php:583 +#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:504 +#: application/views/qso/index.php:560 application/views/qso/index.php:605 #: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 #: application/views/sattimers/index.php:73 #: application/views/sattimers/index.php:75 +#: application/views/sattimers/index.php:77 #: application/views/search/filter.php:69 msgid "Info" msgstr "Information" @@ -3048,85 +3645,87 @@ msgid "" "It's good practice to delete a key if you are no longer using the associated " "application." msgstr "" +"Il est bon de supprimer une clé si vous n'utilisez plus l'application " +"associée." #: application/views/api/help.php:27 msgid "API Key" -msgstr "" +msgstr "Clé API" #: application/views/api/help.php:28 application/views/cron/edit.php:30 -#: application/views/cron/index.php:51 +#: application/views/cron/index.php:53 #: application/views/search/stored_queries.php:8 msgid "Description" -msgstr "" +msgstr "Description" #: application/views/api/help.php:29 msgid "Last Used" -msgstr "" +msgstr "Dernière utilisation" #: application/views/api/help.php:30 msgid "Permissions" -msgstr "" +msgstr "Autorisations" -#: application/views/api/help.php:31 application/views/cron/index.php:52 -#: application/views/lotw_views/index.php:45 +#: application/views/api/help.php:31 application/views/cron/index.php:54 +#: application/views/lotw_views/index.php:41 #: application/views/mode/index.php:31 #: application/views/oqrs/showrequests.php:91 #: application/views/sattimers/index.php:39 #: application/views/stationsetup/stationsetup.php:31 -#: application/views/timeline/index.php:119 -#: application/views/update/index.php:30 +#: application/views/timeline/index.php:152 msgid "Status" msgstr "Statut" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:519 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" -msgstr "" +msgstr "Actions" #: application/views/api/help.php:45 msgid "Read & Write" -msgstr "" +msgstr "Lire et écrire" #: application/views/api/help.php:47 msgid "Read-Only" -msgstr "" +msgstr "Lecture seulement" #: application/views/api/help.php:49 msgid "Unknown" -msgstr "" +msgstr "Inconnu" #: application/views/api/help.php:59 msgid "Test" -msgstr "" +msgstr "Test" #: application/views/api/help.php:71 msgid "You have no API Keys." -msgstr "" +msgstr "Vous n'avez pas de clés API." #: application/views/api/help.php:75 msgid "Create a read & write key" -msgstr "" +msgstr "Créer une clé de lecture et d'écriture" #: application/views/api/help.php:76 msgid "Create a read-only key" -msgstr "" +msgstr "Créer une clé de lecture seulement" #: application/views/awards/counties/details.php:4 #: application/views/awards/details.php:1 #: application/views/awards/vucc/band.php:4 +#: application/views/distancerecords/details.php:1 #: application/views/timeline/details.php:2 msgid "Filtering on" msgstr "Filtré sur" #: application/views/awards/counties/details.php:13 msgid "County" -msgstr "" +msgstr "Comté" #: application/views/awards/counties/index.php:6 #: application/views/awards/counties/index.php:13 -#: application/views/awards/cq/index.php:17 -#: application/views/awards/cq/index.php:24 +#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:26 #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:13 #: application/views/awards/dxcc/index.php:13 @@ -3135,12 +3734,12 @@ msgstr "" #: application/views/awards/ffma/index.php:14 #: application/views/awards/gridmaster/index.php:6 #: application/views/awards/gridmaster/index.php:13 -#: application/views/awards/helvetia/index.php:17 -#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:26 #: application/views/awards/iota/index.php:15 #: application/views/awards/iota/index.php:22 -#: application/views/awards/itu/index.php:17 -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:26 #: application/views/awards/jcc/index.php:15 #: application/views/awards/jcc/index.php:22 #: application/views/awards/pota/index.php:6 @@ -3153,10 +3752,12 @@ msgstr "" #: application/views/awards/vucc/index.php:13 #: application/views/awards/wab/index.php:11 #: application/views/awards/wab/index.php:18 -#: application/views/awards/waja/index.php:16 -#: application/views/awards/waja/index.php:23 -#: application/views/awards/was/index.php:17 -#: application/views/awards/was/index.php:24 +#: application/views/awards/wac/index.php:7 +#: application/views/awards/wac/index.php:14 +#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:25 +#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:26 #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:13 msgid "Award Info" @@ -3164,7 +3765,7 @@ msgstr "Informations complémentaires" #: application/views/awards/counties/index.php:7 msgid "US County Award" -msgstr "" +msgstr "Diplome des Comté des États-Unis" #: application/views/awards/counties/index.php:8 #, php-format @@ -3173,6 +3774,10 @@ msgid "" "magazine, is issued for confirmed two-way radio contacts with specified " "numbers of U.S. counties under rules and conditions you can find %s." msgstr "" +"Le diplome des comtés des États-Unis d'Amérique (USA-CA), parrainé par le " +"magazine CQ, est délivré pour des 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 "" @@ -3180,31 +3785,38 @@ msgid "" "individuals for all county contacts made, regardless of callsigns used, " "operating locations, or dates." msgstr "" +"USA-CA est disponible pour tous les radioamateurs licenciés dans le monde " +"entier et est délivré aux individus pour tous les contacts de comté " +"effectués, indépendamment des indicatifs d'appel utilisés, des lieux " +"d'exploitation ou des dates." #: application/views/awards/counties/index.php:10 msgid "Special USA-CA awards are also available to SWLs on a heard basis." msgstr "" +"Des diplomes spéciales USA-CA sont également disponibles pour les SWLs sur " +"la base des stations entendues." #: application/views/awards/counties/index.php:21 msgid "Counties Worked" -msgstr "" +msgstr "Départements travaillés" #: application/views/awards/counties/index.php:22 msgid "Counties Confirmed" -msgstr "" +msgstr "Comtés Confirmés" #: application/views/awards/counties/index.php:39 -#: application/views/awards/cq/index.php:174 +#: application/views/awards/cq/index.php:176 #: application/views/awards/dok/index.php:174 #: application/views/awards/dxcc/index.php:257 -#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/helvetia/index.php:179 #: application/views/awards/iota/index.php:201 -#: application/views/awards/itu/index.php:174 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:185 -#: application/views/awards/rac/index.php:169 -#: application/views/awards/waja/index.php:177 -#: application/views/awards/was/index.php:177 -#: application/views/dashboard/index.php:217 +#: application/views/awards/rac/index.php:171 +#: application/views/awards/wac/index.php:177 +#: application/views/awards/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:233 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3218,221 +3830,244 @@ msgstr "" #: application/views/statistics/uniquetable.php:23 #: application/views/visitor/index.php:241 msgid "Total" -msgstr "" +msgstr "Total" -#: application/views/awards/cq/index.php:18 +#: application/views/awards/cq/index.php:3 +#: application/views/awards/cq/index.php:150 application/views/csv/index.php:80 +#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/logbookadvanced/edit.php:6 +#: application/views/logbookadvanced/index.php:246 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:284 +#: application/views/qso/index.php:390 +#: application/views/search/cqzones_result.php:13 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:264 +#: application/views/timeplotter/index.php:44 +msgid "CQ Zone" +msgstr "Zone CQ" + +#: application/views/awards/cq/index.php:4 +#: application/views/awards/itu/index.php:4 +msgid "Hover over a zone" +msgstr "Survoler une zone" + +#: application/views/awards/cq/index.php:20 msgid "CQ Magazine WAZ Award" msgstr "" -#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:21 msgid "" "The CQ Magazine is located in the US and one of the most popular amateur " "radio magazines in the world. The magazine first appeared in January 1945 " "and focuses on awards and the practical aspects of amateur radio." msgstr "" +"Le magazine CQ est situé aux États-Unis et est l'un des magazines de radio " +"amateur les plus populaires au monde. Le magazine est apparu pour la " +"première fois en janvier 1945 et se concentre sur les récompenses et les " +"aspects pratiques de la radio amateur." -#: application/views/awards/cq/index.php:20 +#: application/views/awards/cq/index.php:22 msgid "" "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to " "all 40 CQ Zones along with the corresponding confirmation." msgstr "" -#: application/views/awards/cq/index.php:21 +#: application/views/awards/cq/index.php:23 #, php-format msgctxt "uses 'CQ Magazine'" msgid "You can find all the information and rules on the Website of the %s." msgstr "" +"Vous pouvez trouver toutes les informations et les règles sur le site Web du " +"%s." -#: application/views/awards/cq/index.php:23 +#: application/views/awards/cq/index.php:25 msgid "Awards - CQ Magazine WAZ" -msgstr "" +msgstr "Récompense - CQ Magazine WAZ" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 #: application/views/awards/wab/list.php:6 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:73 -#: application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:362 -#: application/views/interface_assets/footer.php:39 +#: application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:378 +#: application/views/interface_assets/footer.php:40 #: application/views/visitor/index.php:266 msgid "Confirmed" msgstr "Confirmés" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:256 +#: application/views/dashboard/index.php:372 #: application/views/visitor/index.php:262 msgid "Worked" msgstr "Réalisés" -#: application/views/awards/cq/index.php:36 +#: application/views/awards/cq/index.php:38 #: application/views/awards/dok/index.php:41 #: application/views/awards/dxcc/index.php:43 -#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:43 -#: application/views/awards/itu/index.php:36 +#: application/views/awards/itu/index.php:38 #: application/views/awards/jcc/index.php:34 -#: application/views/awards/rac/index.php:27 -#: application/views/awards/waja/index.php:35 -#: application/views/awards/was/index.php:35 +#: application/views/awards/rac/index.php:29 +#: application/views/awards/wac/index.php:26 +#: application/views/awards/waja/index.php:37 +#: application/views/awards/was/index.php:37 msgid "Show worked" msgstr "Voir les 'réalisés'" -#: application/views/awards/cq/index.php:40 +#: application/views/awards/cq/index.php:42 #: application/views/awards/dok/index.php:45 #: application/views/awards/dxcc/index.php:47 -#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:47 -#: application/views/awards/itu/index.php:40 +#: application/views/awards/itu/index.php:42 #: application/views/awards/jcc/index.php:38 -#: application/views/awards/rac/index.php:31 -#: application/views/awards/waja/index.php:39 -#: application/views/awards/was/index.php:39 +#: application/views/awards/rac/index.php:33 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/waja/index.php:41 +#: application/views/awards/was/index.php:41 msgid "Show confirmed" msgstr "Voir les 'confirmés'" -#: application/views/awards/cq/index.php:44 +#: application/views/awards/cq/index.php:46 #: application/views/awards/dxcc/index.php:51 -#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:51 -#: application/views/awards/itu/index.php:44 +#: application/views/awards/itu/index.php:46 #: application/views/awards/jcc/index.php:42 -#: application/views/awards/rac/index.php:35 -#: application/views/awards/waja/index.php:43 -#: application/views/awards/was/index.php:43 +#: application/views/awards/rac/index.php:37 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/waja/index.php:45 +#: application/views/awards/was/index.php:45 msgid "Show not worked" msgstr "Voir les 'non réalisés'" -#: application/views/awards/cq/index.php:50 +#: application/views/awards/cq/index.php:52 #: application/views/awards/dok/index.php:51 #: application/views/awards/dxcc/index.php:57 -#: application/views/awards/helvetia/index.php:49 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/helvetia/index.php:51 +#: application/views/awards/itu/index.php:52 #: application/views/awards/jcc/index.php:48 -#: application/views/awards/rac/index.php:41 -#: application/views/awards/waja/index.php:49 -#: application/views/awards/was/index.php:49 +#: application/views/awards/rac/index.php:43 +#: application/views/awards/wac/index.php:40 +#: application/views/awards/waja/index.php:51 +#: application/views/awards/was/index.php:51 msgid "Show QSO with QSL Type" -msgstr "" +msgstr "Afficher QSO avec type QSL" -#: application/views/awards/cq/index.php:54 -#: application/views/awards/itu/index.php:54 -#: application/views/interface_assets/footer.php:2098 -#: application/views/qso/edit_ajax.php:378 +#: application/views/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/awards/wac/index.php:44 +#: application/views/interface_assets/footer.php:2112 +#: application/views/qso/edit_ajax.php:405 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "Carte QSL" -#: application/views/awards/cq/index.php:110 +#: application/views/awards/cq/index.php:112 #: application/views/awards/dok/index.php:126 #: application/views/awards/dxcc/index.php:186 -#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/helvetia/index.php:111 #: application/views/awards/iota/index.php:129 -#: application/views/awards/itu/index.php:110 +#: application/views/awards/itu/index.php:112 #: application/views/awards/jcc/index.php:112 -#: application/views/awards/rac/index.php:101 -#: application/views/awards/waja/index.php:113 -#: application/views/awards/was/index.php:109 +#: application/views/awards/rac/index.php:103 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/waja/index.php:115 +#: application/views/awards/was/index.php:111 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:523 +#: application/views/logbookadvanced/index.php:551 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 msgid "Reset" msgstr "Réinitialiser" -#: application/views/awards/cq/index.php:113 +#: application/views/awards/cq/index.php:115 msgid "Show CQ Zone Map" msgstr "Voir la carte" -#: application/views/awards/cq/index.php:122 +#: application/views/awards/cq/index.php:124 #: application/views/awards/dxcc/index.php:199 -#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/helvetia/index.php:124 #: application/views/awards/iota/index.php:142 -#: application/views/awards/itu/index.php:122 -#: application/views/awards/rac/index.php:114 -#: application/views/awards/waja/index.php:126 -#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:124 +#: application/views/awards/rac/index.php:116 +#: application/views/awards/waja/index.php:128 +#: application/views/awards/was/index.php:124 msgid "Table" -msgstr "" +msgstr "Table" -#: application/views/awards/cq/index.php:125 +#: application/views/awards/cq/index.php:127 #: application/views/awards/dok/index.php:128 #: application/views/awards/dxcc/index.php:202 -#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/helvetia/index.php:127 #: application/views/awards/iota/index.php:145 -#: application/views/awards/itu/index.php:125 +#: application/views/awards/itu/index.php:127 #: application/views/awards/jcc/index.php:129 -#: application/views/awards/rac/index.php:117 +#: application/views/awards/rac/index.php:119 #: application/views/awards/wab/index.php:108 -#: application/views/awards/waja/index.php:129 -#: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:516 +#: application/views/awards/waja/index.php:131 +#: application/views/awards/was/index.php:127 +#: application/views/logbookadvanced/index.php:544 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "Carte" -#: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 -#: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:235 -#: application/views/logbookadvanced/index.php:586 -#: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:90 -#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 -#: application/views/qso/index.php:390 -#: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:106 -#: application/views/station_profile/edit.php:126 -#: application/views/timeline/index.php:231 -#: application/views/timeplotter/index.php:44 -msgid "CQ Zone" -msgstr "Zone CQ" - -#: application/views/awards/cq/index.php:165 +#: application/views/awards/cq/index.php:167 #: application/views/awards/dok/index.php:165 #: application/views/awards/dxcc/index.php:248 -#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/helvetia/index.php:170 #: application/views/awards/iota/index.php:192 -#: application/views/awards/itu/index.php:165 +#: application/views/awards/itu/index.php:167 #: application/views/awards/jcc/index.php:168 -#: application/views/awards/rac/index.php:160 -#: application/views/awards/waja/index.php:168 -#: application/views/awards/was/index.php:168 +#: application/views/awards/rac/index.php:162 +#: application/views/awards/wac/index.php:168 +#: application/views/awards/waja/index.php:170 +#: application/views/awards/was/index.php:170 msgid "Summary" msgstr "Résumé" -#: application/views/awards/cq/index.php:178 +#: application/views/awards/cq/index.php:180 #: application/views/awards/dok/index.php:178 #: application/views/awards/dxcc/index.php:262 -#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:206 -#: application/views/awards/itu/index.php:178 +#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:195 -#: application/views/awards/rac/index.php:173 -#: application/views/awards/waja/index.php:182 -#: application/views/awards/was/index.php:181 +#: application/views/awards/rac/index.php:175 +#: application/views/awards/wac/index.php:181 +#: application/views/awards/waja/index.php:184 +#: application/views/awards/was/index.php:183 msgid "Total worked" msgstr "Total 'réalisés'" -#: application/views/awards/cq/index.php:185 +#: application/views/awards/cq/index.php:187 #: application/views/awards/dok/index.php:185 #: application/views/awards/dxcc/index.php:269 -#: application/views/awards/helvetia/index.php:188 +#: application/views/awards/helvetia/index.php:190 #: application/views/awards/iota/index.php:213 -#: application/views/awards/itu/index.php:185 +#: application/views/awards/itu/index.php:187 #: application/views/awards/jcc/index.php:214 -#: application/views/awards/rac/index.php:180 -#: application/views/awards/waja/index.php:189 -#: application/views/awards/was/index.php:188 +#: application/views/awards/rac/index.php:182 +#: application/views/awards/wac/index.php:188 +#: application/views/awards/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "Total 'confirmés'" #: application/views/awards/dok/index.php:7 msgid "DOK Award" -msgstr "" +msgstr "Récompense DOK" #: application/views/awards/dok/index.php:8 msgid "" @@ -3443,6 +4078,12 @@ msgid "" "'Deutscher Ortsverband Kenner' (English: 'German Local Association " "Identifier')." msgstr "" +"L'Allemagne s'étend sur plus de 630 km d'est en ouest et près de 900 km du " +"nord au sud. Environ 70 000 des 82 millions d'habitants de l'Allemagne sont " +"des radioamateurs licenciés, dont plus de 40 000 sont membres du DARC. Le " +"DOK est un système qui fournit aux sections locales individuelles un " +"identifiant et signifie 'Deutscher Ortsverband Kenner' (en anglais : 'German " +"Local Association Identifier')." #: application/views/awards/dok/index.php:9 msgid "" @@ -3451,10 +4092,14 @@ msgid "" "or F41 Baunatal (location of the DARC headquarters). Note: A zero in a DOK " "is a common mistake, often being logged as the letter O." msgstr "" +"Le DOK se compose d'une lettre pour le district et d'un numéro à deux " +"chiffres pour le chapitre local, comme P03 Friedrichshafen (ville de " +"l'exposition 'Hamradio') ou F41 Baunatal (siège du DARC). Remarque : Un zéro " +"dans un DOK est une erreur courante, souvent enregistré comme la lettre O." #: application/views/awards/dok/index.php:10 msgid "DARC website" -msgstr "" +msgstr "Site web du DARC" #: application/views/awards/dok/index.php:10 #, php-format @@ -3463,44 +4108,47 @@ msgid "" "This information is provided by the %s. Information about the DOK Awards and " "its rules can be found %s." msgstr "" +"Ces informations sont fournies par le %s. Les informations sur les DOK " +"Awards et leurs règles peuvent être trouvées %s." #: application/views/awards/dok/index.php:20 msgid "DOK / SDOK" -msgstr "" +msgstr "DOK / SDOK" #: application/views/awards/dok/index.php:23 msgid "DOK + SDOK" -msgstr "" +msgstr "DOK + SDOK" #: application/views/awards/dok/index.php:37 #: application/views/awards/dxcc/index.php:39 -#: application/views/awards/helvetia/index.php:31 +#: application/views/awards/helvetia/index.php:33 #: application/views/awards/iota/index.php:39 #: application/views/awards/jcc/index.php:30 -#: application/views/awards/rac/index.php:23 -#: application/views/awards/waja/index.php:31 -#: application/views/awards/was/index.php:31 +#: application/views/awards/rac/index.php:25 +#: application/views/awards/waja/index.php:33 +#: application/views/awards/was/index.php:33 msgid "Worked / Confirmed" -msgstr "" +msgstr "Travaillé / Confirmé" #: application/views/awards/dok/index.php:80 #: application/views/awards/dxcc/index.php:120 -#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/helvetia/index.php:76 #: application/views/awards/iota/index.php:94 #: application/views/awards/jcc/index.php:77 -#: application/views/awards/rac/index.php:66 -#: application/views/awards/waja/index.php:78 -#: application/views/awards/was/index.php:74 +#: application/views/awards/rac/index.php:68 +#: application/views/awards/wac/index.php:66 +#: application/views/awards/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" -msgstr "" +msgstr "Chaque bande" #: application/views/awards/dxcc/index.php:14 msgid "DXCC Award" -msgstr "" +msgstr "Récompense DXCC" #: application/views/awards/dxcc/index.php:15 msgid "'How to Count Countries Worked, A New DX Scoring System'" -msgstr "" +msgstr "'Comment compter les pays contactés, un nouveau système de score DX'" #: application/views/awards/dxcc/index.php:15 #, php-format @@ -3509,15 +4157,21 @@ msgid "" "DXCC List is based on an article created in 1935 by Clinton B. DeSoto, " "W1CBD, titled %s." msgstr "" +"DXCC signifie 'DX Century Club', une récompense basée sur les pays " +"contactés. La liste DXCC est basée sur un article créé en 1935 par Clinton " +"B. DeSoto, W1CBD, intitulé %s." #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 msgid "ARRL website" -msgstr "" +msgstr "Site web de l'ARRL" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 #, php-format msgid "You can find all information about the DXCC Award on the %s." msgstr "" +"Vous pouvez trouver toutes les informations sur le DXCC Award sur le %s." #: application/views/awards/dxcc/index.php:17 msgid "" @@ -3527,92 +4181,112 @@ msgid "" "will find Deleted DXCC entities also in the lists on Wavelog. Be aware that " "these DXCC entities are outdated and no longer valid." msgstr "" +"Note importante : Au fil du temps, les critères pour la liste DXCC ont " +"changé. La liste reste inchangée jusqu'à ce qu'une entité ne satisfasse plus " +"aux critères sous lesquels elle a été ajoutée, moment où elle est déplacée " +"vers la liste des entités supprimées. Vous trouverez également des entités " +"DXCC supprimées dans les listes sur Wavelog. Soyez conscient que ces entités " +"DXCC sont obsolètes et ne sont plus valides." #: application/views/awards/dxcc/index.php:32 #: application/views/awards/iota/index.php:33 msgid "Include deleted" -msgstr "" +msgstr "Inclure supprimé" #: application/views/awards/dxcc/index.php:87 #: application/views/awards/iota/index.php:61 #: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/logbookadvanced/edit.php:144 +#: application/views/logbookadvanced/index.php:309 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 -#: application/views/view_log/qso.php:250 +#: application/views/view_log/qso.php:253 msgid "Antarctica" msgstr "Antarctique" #: application/views/awards/dxcc/index.php:91 #: application/views/awards/iota/index.php:65 #: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/logbookadvanced/edit.php:143 +#: application/views/logbookadvanced/index.php:308 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 -#: application/views/view_log/qso.php:247 +#: application/views/view_log/qso.php:250 msgid "Africa" msgstr "Afrique" #: application/views/awards/dxcc/index.php:95 #: application/views/awards/iota/index.php:69 #: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/logbookadvanced/edit.php:146 +#: application/views/logbookadvanced/index.php:311 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 -#: application/views/view_log/qso.php:253 +#: application/views/view_log/qso.php:256 msgid "Asia" msgstr "Asie" #: application/views/awards/dxcc/index.php:99 #: application/views/awards/iota/index.php:73 #: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/logbookadvanced/edit.php:147 +#: application/views/logbookadvanced/index.php:312 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 -#: application/views/view_log/qso.php:256 +#: application/views/view_log/qso.php:259 msgid "Europe" -msgstr "" +msgstr "Europe" #: application/views/awards/dxcc/index.php:103 #: application/views/awards/iota/index.php:77 #: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/logbookadvanced/edit.php:145 +#: application/views/logbookadvanced/index.php:310 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 -#: application/views/view_log/qso.php:259 +#: application/views/view_log/qso.php:262 msgid "North America" msgstr "Amérique du Nord" #: application/views/awards/dxcc/index.php:107 #: application/views/awards/iota/index.php:81 #: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/logbookadvanced/edit.php:148 +#: application/views/logbookadvanced/index.php:313 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:265 +#: application/views/view_log/qso.php:268 msgid "South America" msgstr "Amérique du Sud" #: application/views/awards/dxcc/index.php:111 #: application/views/awards/iota/index.php:85 #: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/logbookadvanced/edit.php:149 +#: application/views/logbookadvanced/index.php:314 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 -#: application/views/view_log/qso.php:262 +#: application/views/view_log/qso.php:265 msgid "Oceania" msgstr "Océanie" #: application/views/awards/dxcc/index.php:189 msgid "Show DXCC Map" -msgstr "" +msgstr "Afficher la carte DXCC" #: application/views/awards/dxcc/index.php:225 msgid "DXCC Name" -msgstr "" +msgstr "Nom DXCC" #: application/views/awards/dxcc/index.php:226 #: application/views/awards/iota/index.php:170 -#: application/views/timeline/index.php:117 -#: application/views/timeline/index.php:204 +#: application/views/timeline/index.php:150 +#: application/views/timeline/index.php:237 msgid "Prefix" msgstr "Préfix" #: application/views/awards/ffma/index.php:8 -#: application/views/interface_assets/header.php:236 +#: application/views/interface_assets/header.php:240 msgid "Fred Fish Memorial Award" msgstr "" @@ -3632,11 +4306,11 @@ msgstr "" #: application/views/awards/ffma/index.php:11 #, php-format msgid "For more information, you can visit this link: %s." -msgstr "" +msgstr "Pour plus d'informations, consultez ce lien : %s." #: application/views/awards/gridmaster/index.php:7 msgid "US Gridmaster Award" -msgstr "" +msgstr "Récompense US Gridmaster" #: application/views/awards/gridmaster/index.php:8 msgid "" @@ -3661,17 +4335,26 @@ msgstr "" #: application/views/awards/gridmaster/index.php:9 msgid "website" -msgstr "" +msgstr "siteweb" #: application/views/awards/gridmaster/index.php:10 msgid "This map shows only QSOs worked on SAT." +msgstr "Cette carte ne montre que les QSOs effectués sur SAT." + +#: application/views/awards/helvetia/index.php:3 +msgctxt "Switzerland Canton" +msgid "Canton" msgstr "" -#: application/views/awards/helvetia/index.php:18 +#: application/views/awards/helvetia/index.php:4 +msgid "Hover over a canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:20 msgid "HELVETIA 26 | SWITZERLAND AWARD" -msgstr "" +msgstr "HELVETIA 26 | Récompense Suisse" -#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:21 msgid "" "The USKA (Union of Swiss Shortwave Amateurs) sponsors two awards, the " "HELVETIA 26 (H26) Award and the SWITZERLAND Award, aimed at promoting " @@ -3679,39 +4362,39 @@ msgid "" "as possible on multiple bands." msgstr "" -#: application/views/awards/helvetia/index.php:20 +#: application/views/awards/helvetia/index.php:22 msgid "" "These awards come in two versions: one for HF bands and the other for VHF " "(including SHF and UHF) bands. Valid connections for these awards date back " "to January 1, 1980" msgstr "" -#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/helvetia/index.php:23 #: application/views/awards/jcc/index.php:19 #: application/views/awards/sota/index.php:10 #: application/views/awards/wab/index.php:15 -#: application/views/awards/waja/index.php:20 +#: application/views/awards/waja/index.php:22 #: application/views/awards/wwff/index.php:10 #, php-format msgid "For more information, please visit: %s." -msgstr "" +msgstr "Pour plus d'informations, consultez le site : %s." -#: application/views/awards/helvetia/index.php:112 +#: application/views/awards/helvetia/index.php:114 msgid "Show Helvetia Map" -msgstr "" +msgstr "Afficher la carte Helvétique" -#: application/views/awards/helvetia/index.php:149 +#: application/views/awards/helvetia/index.php:151 msgid "Canton" msgstr "" #: application/views/awards/index.php:9 application/views/bands/index.php:46 -#: application/views/interface_assets/header.php:162 +#: application/views/interface_assets/header.php:164 msgid "CQ" -msgstr "" +msgstr "CQ" #: application/views/awards/iota/index.php:16 msgid "IOTA Awards" -msgstr "" +msgstr "Récompense IOTA" #: application/views/awards/iota/index.php:17 msgid "" @@ -3721,6 +4404,12 @@ msgid "" "enhance the experience of all those active on the amateur bands. To achieve " "this, it draws on the widespread mystique surrounding islands." msgstr "" +"L'IOTA est un programme d'activités passionnant et novateur qui a suscité " +"l'intérêt de milliers de radioamateurs dans le monde entier. Créé en 1964, " +"il encourage les contacts radio avec des stations situées sur des îles du " +"monde entier afin d'améliorer l'expérience de tous ceux qui sont actifs sur " +"les bandes amateurs. Pour ce faire, il s'appuie sur la mystique qui entoure " +"les îles." #: application/views/awards/iota/index.php:18 msgid "" @@ -3740,24 +4429,24 @@ msgstr "" #: application/views/awards/iota/index.php:19 #, php-format msgid "You can also find this information on %s." -msgstr "" +msgstr "Vous pouvez également trouver ces informations sur %s." #: application/views/awards/iota/index.php:29 msgid "Deleted IOTA" -msgstr "" +msgstr "Supprimer IOTA" #: application/views/awards/iota/index.php:132 msgid "Show IOTA Map" -msgstr "" +msgstr "Afficher la carte IOTA" #: application/views/awards/iota/index.php:171 #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 -#: application/views/contesting/index.php:153 -#: application/views/contesting/index.php:171 +#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:214 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:559 +#: application/views/logbookadvanced/index.php:587 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3767,20 +4456,32 @@ msgstr "" #: application/views/search/search_result_ajax.php:19 #: application/views/stationsetup/stationsetup.php:30 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:203 application/views/user/edit.php:241 +#: application/views/timeline/index.php:236 application/views/user/edit.php:241 #: application/views/user/edit.php:263 application/views/user/edit.php:285 #: application/views/user/edit.php:307 application/views/user/edit.php:330 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:191 -#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:194 +#: application/views/view_log/qso.php:514 msgid "Name" msgstr "Nom" #: application/views/awards/iota/index.php:173 msgid "Deleted" -msgstr "" +msgstr "Supprimé" -#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:3 +#: application/views/awards/itu/index.php:150 +#: application/views/logbookadvanced/edit.php:10 +#: application/views/logbookadvanced/index.php:257 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:400 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 +msgid "ITU Zone" +msgstr "Zone ITU" + +#: application/views/awards/itu/index.php:21 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -3788,29 +4489,19 @@ msgid "" "(ITU)." msgstr "" -#: application/views/awards/itu/index.php:20 +#: application/views/awards/itu/index.php:22 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." -msgstr "" +msgstr "Vous pouvez trouver plus d'informations sur le site web de %s." -#: application/views/awards/itu/index.php:23 +#: application/views/awards/itu/index.php:25 msgid "Awards - ITU Zones" -msgstr "" +msgstr "Récompenses - ITU Zones" -#: application/views/awards/itu/index.php:113 +#: application/views/awards/itu/index.php:115 msgid "Show ITU Zone Map" -msgstr "" - -#: application/views/awards/itu/index.php:148 -#: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:246 -#: application/views/logbookadvanced/index.php:589 -#: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:120 -#: application/views/station_profile/edit.php:143 -msgid "ITU Zone" -msgstr "Zone ITU" +msgstr "Afficher la carte ITU" #: application/views/awards/jcc/index.php:16 msgid "JCC - Japan Century Cities Award" @@ -3837,36 +4528,37 @@ msgstr "" #: application/views/awards/jcc/index.php:116 #: application/views/cabrillo/index.php:180 application/views/cfd/index.php:25 #: application/views/csv/index.php:128 application/views/dxatlas/index.php:128 -#: application/views/kml/index.php:113 +#: application/views/kml/index.php:113 application/views/reg1test/index.php:145 msgid "Export" -msgstr "" +msgstr "Export" #: application/views/awards/jcc/index.php:126 #: application/views/public_search/empty.php:2 #: application/views/public_search/result.php:2 msgid "Results" -msgstr "" +msgstr "Résultats" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 +#: application/views/distancerecords/index.php:13 msgid "Number" -msgstr "" +msgstr "Nombre" #: application/views/awards/jcc/index.php:152 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:524 msgid "City" msgstr "Ville" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:368 #: application/views/distances/index.php:23 msgid "SAT" -msgstr "" +msgstr "SAT" #: application/views/awards/pota/index.php:7 msgid "POTA Awards" -msgstr "" +msgstr "Récompenses POTA" #: application/views/awards/pota/index.php:8 msgid "" @@ -3874,6 +4566,10 @@ msgid "" "Parks on the Air special event ended. A group of volunteers wanted to " "continue the fun beyond the one-year event, and thus, POTA was born." msgstr "" +"Parks on the Air® (POTA) a commencé au début de 2017 lorsque l'événement " +"spécial de l'ARRL, National Parks on the Air, s'est terminé. Un groupe de " +"bénévoles a voulu poursuivre le plaisir au-delà de l'événement d'une année, " +"et c'est ainsi que POTA est né." #: application/views/awards/pota/index.php:9 msgid "" @@ -3881,6 +4577,9 @@ msgid "" "there are several categories based on the number of parks, geographic areas, " "and more." msgstr "" +"Le POTA fonctionne de la même manière que le SOTA, avec des activateurs et " +"des chasseurs. Pour les récompenses, il existe plusieurs catégories basées " +"sur le nombre de parcs, les zones géographiques, etc." #: application/views/awards/pota/index.php:10 #, php-format @@ -3889,17 +4588,28 @@ msgid "" "For more information about the available awards and categories, please visit " "the %s." msgstr "" +"Pour plus d'informations sur les récompenses et les catégories, veuillez " +"consulter le site %s." #: application/views/awards/pota/index.php:31 -#: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:177 -#: application/views/station_profile/edit.php:245 -#: application/views/user/edit.php:595 application/views/view_log/qso.php:303 -#: application/views/view_log/qso.php:570 +#: application/views/qso/index.php:236 application/views/qso/index.php:492 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 +#: application/views/user/edit.php:595 application/views/view_log/qso.php:306 +#: application/views/view_log/qso.php:573 msgid "POTA Reference(s)" msgstr "Référence POTA" -#: application/views/awards/rac/index.php:104 +#: application/views/awards/rac/index.php:3 +msgctxt "Canada Province" +msgid "Province" +msgstr "Province" + +#: application/views/awards/rac/index.php:4 +msgid "Hover over a province" +msgstr "Survoler une province" + +#: application/views/awards/rac/index.php:106 msgid "Show RAC Map" msgstr "" @@ -3949,7 +4659,7 @@ msgstr "" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:535 +#: application/views/logbookadvanced/index.php:563 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4045,17 +4755,48 @@ msgstr "" msgid "WAB Square" msgstr "" -#: application/views/awards/waja/index.php:17 +#: application/views/awards/wac/index.php:9 +msgid "" +"Sponsored by the International Amateur Radio Union (IARU), the Worked All " +"Continents award is issued for working and confirming all six continents. " +"These are North America, South America, Oceania, Asia, Europe and Africa." +msgstr "" + +#: application/views/awards/wac/index.php:13 +msgid "Awards - Worked All Continents (WAC)" +msgstr "" + +#: application/views/awards/wac/index.php:151 +#: application/views/continents/index.php:62 +#: application/views/logbookadvanced/edit.php:25 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 +#: application/views/view_log/qso.php:245 +msgid "Continent" +msgstr "" + +#: application/views/awards/waja/index.php:3 +msgctxt "Japan Prefecture" +msgid "Prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:4 +msgid "Hover over a prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:19 msgid "WAJA - Worked All Japan prefectures Award" msgstr "" -#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:20 msgid "" "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " "radio operators to work all the prefectures in Japan." msgstr "" -#: application/views/awards/waja/index.php:19 +#: application/views/awards/waja/index.php:21 msgid "" "May be claimed for having contacted (heard) and received a QSL card from an " "amateur station located in each of the 47 prefectures of Japan. A list of " @@ -4063,20 +4804,29 @@ msgid "" "however names of prefectures may be omitted." msgstr "" -#: application/views/awards/waja/index.php:116 +#: application/views/awards/waja/index.php:118 msgid "Show WAJA Map" msgstr "" -#: application/views/awards/waja/index.php:152 -#: application/views/timeline/index.php:152 +#: application/views/awards/waja/index.php:154 +#: application/views/timeline/index.php:185 msgid "Prefecture" msgstr "" -#: application/views/awards/was/index.php:18 +#: application/views/awards/was/index.php:3 +msgctxt "USA State" +msgid "State" +msgstr "" + +#: application/views/awards/was/index.php:4 +msgid "Hover over a state" +msgstr "" + +#: application/views/awards/was/index.php:20 msgid "WAS Award" msgstr "" -#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:21 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -4084,7 +4834,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:20 +#: application/views/awards/was/index.php:22 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -4093,13 +4843,13 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:21 +#: application/views/awards/was/index.php:23 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:112 +#: application/views/awards/was/index.php:114 msgid "Show WAS Map" msgstr "" @@ -4122,11 +4872,11 @@ msgid "" msgstr "" #: application/views/awards/wwff/index.php:31 -#: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:171 -#: application/views/station_profile/edit.php:232 -#: application/views/user/edit.php:591 application/views/view_log/qso.php:296 -#: application/views/view_log/qso.php:563 +#: application/views/qso/index.php:224 application/views/qso/index.php:479 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 +#: application/views/user/edit.php:591 application/views/view_log/qso.php:299 +#: application/views/view_log/qso.php:566 msgid "WWFF Reference" msgstr "Référence WWFF" @@ -4181,8 +4931,8 @@ msgstr "" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 #: application/views/contesting/index.php:15 -#: application/views/contesting/index.php:94 -#: application/views/contesting/index.php:169 +#: application/views/contesting/index.php:52 +#: application/views/contesting/index.php:145 #: application/views/qso/index.php:314 msgid "None" msgstr "Aucun" @@ -4262,25 +5012,25 @@ msgid "" "will be hidden and cannot be selected." msgstr "" -#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:351 -#: application/views/qso/index.php:248 application/views/qso/index.php:494 -#: application/views/user/edit.php:599 application/views/view_log/qso.php:325 -#: application/views/view_log/qso.php:577 +#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 +#: application/views/qso/index.php:248 application/views/qso/index.php:504 +#: application/views/user/edit.php:599 application/views/view_log/qso.php:328 +#: application/views/view_log/qso.php:580 msgid "Sig" msgstr "" -#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:312 -#: application/views/qso/index.php:433 +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:339 +#: application/views/qso/index.php:443 msgid "USA County" msgstr "Compté USA" #: application/views/bands/index.php:58 -#: application/views/interface_assets/header.php:208 +#: application/views/interface_assets/header.php:212 msgid "WAJA" msgstr "" #: application/views/bands/index.php:59 -#: application/views/interface_assets/header.php:232 +#: application/views/interface_assets/header.php:236 msgid "WAS" msgstr "" @@ -4310,9 +5060,8 @@ msgstr "" #: application/views/bands/index.php:152 #: application/views/contesting/add.php:74 -#: application/views/interface_assets/footer.php:42 -#: application/views/qso/components/winkeysettings.php:91 -#: application/views/qso/components/winkeysettings_results.php:91 +#: application/views/contesting/index.php:83 +#: application/views/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4342,22 +5091,28 @@ msgstr "Désactiver tout" #: application/views/cabrillo/index.php:2 #: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:59 +#: application/views/reg1test/index.php:2 +#: application/views/reg1test/index.php:36 msgid "Proceed" msgstr "Démarrer" #: application/views/cabrillo/index.php:3 +#: application/views/reg1test/index.php:3 msgid "Select Year" msgstr "Sélectionner l'année" #: application/views/cabrillo/index.php:4 +#: application/views/reg1test/index.php:4 msgid "Select Contest" msgstr "Sélectionner le concours" #: application/views/cabrillo/index.php:5 +#: application/views/reg1test/index.php:5 msgid "Select Date Range" msgstr "Sélectionner la période (date début/fin)" #: application/views/cabrillo/index.php:6 +#: application/views/reg1test/index.php:7 msgid "No contests were found for this station location!" msgstr "Aucun concours trouvé pour ce lieu de station !" @@ -4370,10 +5125,12 @@ msgid "Select Station Location:" msgstr "Sélectionner le lieu de la Station :" #: application/views/cabrillo/index.php:44 +#: application/views/reg1test/index.php:53 msgid "Club" msgstr "" #: application/views/cabrillo/index.php:48 +#: application/views/reg1test/index.php:58 msgid "Category Operator" msgstr "Catégorie - Opérateur" @@ -4414,10 +5171,12 @@ msgid "Category Overlay" msgstr "Catégorie - Overlay" #: application/views/cabrillo/index.php:150 +#: application/views/reg1test/index.php:70 msgid "Operators" msgstr "Operateurs" #: application/views/cabrillo/index.php:155 +#: application/views/reg1test/index.php:139 msgid "Soapbox" msgstr "Message" @@ -4442,6 +5201,7 @@ msgid "Address Country" msgstr "Adresse - Pays" #: application/views/cabrillo/index.php:186 +#: application/views/reg1test/index.php:150 msgid "No contests were found in your log." msgstr "Aucun concours trouvé dans votre journal de trafic." @@ -4475,13 +5235,13 @@ 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:158 +#: application/views/contesting/index.php:219 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:629 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 -#: application/views/view_log/qso.php:199 +#: application/views/view_log/qso.php:202 msgid "Comment" msgstr "Commentaire" @@ -4513,9 +5273,9 @@ msgid "No Contests" msgstr "" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/edit.php:21 -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:635 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4543,10 +5303,11 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:38 -#: application/views/dashboard/index.php:262 -#: application/views/dashboard/index.php:289 -#: application/views/dashboard/index.php:310 -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:278 +#: application/views/dashboard/index.php:305 +#: application/views/dashboard/index.php:326 +#: application/views/dashboard/index.php:347 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "Aujourd'hui" @@ -4585,7 +5346,7 @@ msgstr "Nom ADIF" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:466 +#: application/views/interface_assets/header.php:472 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:43 @@ -4643,15 +5404,15 @@ msgid "Name of Contest in ADIF-specification" msgstr "(Nom utilisé par le concours dans les spécifications ADIF)" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "Créer" #: application/views/contesting/edit.php:31 -#: application/views/contesting/index.php:24 -#: application/views/qso/edit_ajax.php:548 -#: application/views/view_log/qso.php:275 +#: application/views/contesting/index.php:25 +#: application/views/qso/edit_ajax.php:575 +#: application/views/view_log/qso.php:278 msgid "Contest Name" msgstr "Nom du concours" @@ -4687,90 +5448,138 @@ msgstr "N° QSO + Echange" msgid "Serial + Gridsquare" msgstr "N° QSO + Locator" -#: application/views/contesting/index.php:34 +#: application/views/contesting/index.php:21 +msgid "Serial + Gridsquare + Exchange" +msgstr "" + +#: application/views/contesting/index.php:35 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:539 application/views/qso/index.php:352 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:352 msgid "Operator Callsign" msgstr "Indicatif de l'opérateur" -#: application/views/contesting/index.php:116 -#: application/views/contesting/index.php:208 -#: application/views/qso/edit_ajax.php:571 -msgid "Serial (S)" -msgstr "N° QSO (S)" +#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:45 +msgid "More Settings" +msgstr "" -#: application/views/contesting/index.php:121 -#: application/views/contesting/index.php:206 -msgid "Exch (S)" -msgstr "Ech (S)" - -#: application/views/contesting/index.php:126 -msgid "Gridsquare (S)" -msgstr "Locator (S)" - -#: application/views/contesting/index.php:136 -#: application/views/contesting/index.php:209 -#: application/views/qso/edit_ajax.php:566 -msgid "Serial (R)" -msgstr "N° QSO (R)" - -#: application/views/contesting/index.php:141 -#: application/views/contesting/index.php:207 -msgid "Exch (R)" -msgstr "Ech (R)" - -#: application/views/contesting/index.php:146 -msgid "Gridsquare (R)" -msgstr "Locator (R)" - -#: application/views/contesting/index.php:163 -msgid "Reset QSO" -msgstr "Réinitialiser QSO" - -#: application/views/contesting/index.php:164 -#: application/views/qso/index.php:607 -msgid "Save QSO" -msgstr "Sauvegarder QSO" - -#: application/views/contesting/index.php:166 +#: application/views/contesting/index.php:49 msgid "Copy received exchange to" msgstr "Copiez l'échange reçu dans le champ" -#: application/views/contesting/index.php:168 +#: application/views/contesting/index.php:51 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "" -#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:55 msgid "Age" msgstr "Âge" -#: application/views/contesting/index.php:174 +#: application/views/contesting/index.php:57 msgid "RX Power (W)" msgstr "Puissance RX (W)" -#: application/views/contesting/index.php:175 +#: application/views/contesting/index.php:58 msgid "Locator" msgstr "" -#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:59 +#: application/views/qso/edit_ajax.php:177 +msgid "QTH" +msgstr "" + +#: application/views/contesting/index.php:64 +msgid "Sequence of Exchanges" +msgstr "" + +#: application/views/contesting/index.php:67 +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 "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Grid" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Serial" +msgstr "" + +#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:255 +#: application/views/qso/edit_ajax.php:598 +msgid "Serial (S)" +msgstr "N° QSO (S)" + +#: application/views/contesting/index.php:177 +msgid "Gridsquare (S)" +msgstr "Locator (S)" + +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:253 +msgid "Exch (S)" +msgstr "Ech (S)" + +#: application/views/contesting/index.php:196 +#: application/views/contesting/index.php:256 +#: application/views/qso/edit_ajax.php:593 +msgid "Serial (R)" +msgstr "N° QSO (R)" + +#: application/views/contesting/index.php:201 +msgid "Gridsquare (R)" +msgstr "Locator (R)" + +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:254 +msgid "Exch (R)" +msgstr "Ech (R)" + +#: application/views/contesting/index.php:224 +msgid "Reset QSO" +msgstr "Réinitialiser QSO" + +#: application/views/contesting/index.php:225 +#: application/views/qso/index.php:629 +msgid "Save QSO" +msgstr "Sauvegarder QSO" + +#: application/views/contesting/index.php:234 msgid "Callsign Suggestions" msgstr "Suggestion d'indicatif" -#: application/views/contesting/index.php:194 +#: application/views/contesting/index.php:241 msgid "Contest Logbook" msgstr "Journal de trafic du concours" -#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:258 #: application/views/qso/edit_ajax.php:164 msgid "VUCC Gridsquare" msgstr "" -#: application/views/continents/index.php:62 -#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 -#: application/views/view_log/qso.php:242 -msgid "Continent" -msgstr "" - #: application/views/continents/index.php:63 #: application/views/statistics/index.php:19 #: application/views/statistics/index.php:113 @@ -4788,14 +5597,15 @@ msgstr "" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:261 -#: application/views/station_profile/edit.php:314 +#: application/views/options/appearance.php:109 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 msgid "Enabled" msgstr "Activé" -#: application/views/cron/edit.php:36 application/views/cron/index.php:53 +#: application/views/cron/edit.php:36 application/views/cron/index.php:55 msgid "Intervall" msgstr "" @@ -4845,6 +5655,7 @@ msgstr "" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "Annuler" @@ -4858,79 +5669,84 @@ msgid "" "requiring CLI access." msgstr "" -#: application/views/cron/index.php:18 +#: application/views/cron/index.php:19 msgid "" "To execute cron jobs based on the data below, remove all old cron jobs and " "create a new one:" msgstr "" -#: application/views/cron/index.php:27 application/views/cron/index.php:31 -msgid "Status Master-Cron" +#: application/views/cron/index.php:29 application/views/cron/index.php:33 +msgid "Status Master-Cron:" msgstr "" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgctxt "PHP Version" msgid "Min. Version is" msgstr "" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgid "PHP Version not supported." msgstr "" -#: application/views/cron/index.php:41 +#: application/views/cron/index.php:43 msgid "Cron List" msgstr "" -#: application/views/cron/index.php:50 +#: application/views/cron/index.php:52 #: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "" -#: application/views/cron/index.php:54 +#: application/views/cron/index.php:56 msgid "Last Run" msgstr "" -#: application/views/cron/index.php:55 +#: application/views/cron/index.php:57 msgid "Next Run" msgstr "" -#: application/views/cron/index.php:68 +#: application/views/cron/index.php:70 msgid "healthy" msgstr "" -#: application/views/cron/index.php:70 +#: application/views/cron/index.php:72 msgid "failed" msgstr "" -#: application/views/cron/index.php:75 +#: application/views/cron/index.php:74 +msgid "pending" +msgstr "" + +#: application/views/cron/index.php:79 msgid "disabled" msgstr "" -#: application/views/cron/index.php:79 application/views/cron/index.php:81 -#: application/views/cron/index.php:83 application/views/debug/index.php:494 +#: application/views/cron/index.php:83 application/views/cron/index.php:85 +#: application/views/cron/index.php:87 application/views/debug/index.php:494 #: application/views/debug/index.php:500 application/views/debug/index.php:505 #: application/views/debug/index.php:510 application/views/debug/index.php:515 #: application/views/debug/index.php:520 application/views/debug/index.php:525 +#: application/views/user/index.php:138 msgid "never" msgstr "" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:102 msgid "Your Mastercron isn't running." msgstr "" -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:103 msgid "" "Copy the cron above to a external cron service or into your server's cron to " "use this cron manager." msgstr "" -#: application/views/cron/index.php:100 +#: application/views/cron/index.php:104 msgid "" "On a basic linux server with shell access use this command to edit your " "crons:" msgstr "" -#: application/views/cron/index.php:107 +#: application/views/cron/index.php:111 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -4948,154 +5764,10 @@ 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:42 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:411 msgid "Propagation Mode" msgstr "Mode Propagation" -#: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:214 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 -msgctxt "Propagation Mode" -msgid "Aircraft Scatter" -msgstr "" - -#: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:215 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 -msgctxt "Propagation Mode" -msgid "Aurora" -msgstr "" - -#: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:216 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 -msgctxt "Propagation Mode" -msgid "Aurora-E" -msgstr "" - -#: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:217 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 -msgctxt "Propagation Mode" -msgid "Back scatter" -msgstr "" - -#: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:218 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 -msgctxt "Propagation Mode" -msgid "EchoLink" -msgstr "" - -#: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:219 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 -msgctxt "Propagation Mode" -msgid "Earth-Moon-Earth" -msgstr "" - -#: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:220 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 -msgctxt "Propagation Mode" -msgid "Sporadic E" -msgstr "" - -#: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:221 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 -msgctxt "Propagation Mode" -msgid "Field Aligned Irregularities" -msgstr "" - -#: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:222 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 -msgctxt "Propagation Mode" -msgid "F2 Reflection" -msgstr "" - -#: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:223 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 -msgctxt "Propagation Mode" -msgid "Internet-assisted" -msgstr "" - -#: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:224 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 -msgctxt "Propagation Mode" -msgid "Ionoscatter" -msgstr "" - -#: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:225 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 -msgctxt "Propagation Mode" -msgid "IRLP" -msgstr "" - -#: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:226 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 -msgctxt "Propagation Mode" -msgid "Meteor scatter" -msgstr "" - -#: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:227 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 -msgctxt "Propagation Mode" -msgid "Terrestrial or atmospheric repeater or transponder" -msgstr "" - -#: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:228 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 -msgctxt "Propagation Mode" -msgid "Rain scatter" -msgstr "" - -#: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:229 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 -msgctxt "Propagation Mode" -msgid "Satellite" -msgstr "" - -#: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:230 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 -msgctxt "Propagation Mode" -msgid "Trans-equatorial" -msgstr "" - -#: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:231 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 -msgctxt "Propagation Mode" -msgid "Tropospheric ducting" -msgstr "" - #: application/views/dashboard/index.php:5 msgid "RSTS" msgstr "" @@ -5104,88 +5776,102 @@ msgstr "" msgid "RSTR" msgstr "" -#: application/views/dashboard/index.php:56 +#: application/views/dashboard/index.php:58 msgid "" "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" msgstr "" "Vous devez mettre à jour votre version PHP. La version minimale est 7.4. " "Votre version est" -#: application/views/dashboard/index.php:63 +#: application/views/dashboard/index.php:65 #, php-format msgctxt "Dashboard Warning" -msgid "You need to update country files! Click %s to do it." +msgid "You need to update country files! Click %shere%s to do it." msgstr "" -#: application/views/dashboard/index.php:72 +#: application/views/dashboard/index.php:73 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station locations. Click %s to do it:" +msgid "You have no station locations. Click %shere%s to do it." msgstr "" #: application/views/dashboard/index.php:81 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station logbook. Click %s to do it:" +msgid "You have no station logbook. Click %shere%s to do it." msgstr "" -#: application/views/dashboard/index.php:91 +#: application/views/dashboard/index.php:89 +#, php-format +msgctxt "Dashboard Warning" +msgid "" +"Your active Station Location isn't linked to your Logbook. Click %shere%s to " +"do it." +msgstr "" + +#: application/views/dashboard/index.php:97 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station linked to your Logbook. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:106 #, php-format msgid "You have had %d QSO today" msgid_plural "You have had %d QSOs today" msgstr[0] "" msgstr[1] "" -#: application/views/dashboard/index.php:97 +#: application/views/dashboard/index.php:112 msgid "You have made no QSOs today; time to turn on the radio!" msgstr "" "Vous n'avez réalisé aucun QSO aujourd'hui. Il est temps d'allumer la radio !" -#: application/views/dashboard/index.php:104 +#: application/views/dashboard/index.php:119 msgid "Attention: you need to set an active station location." msgstr "ATTENTION : vous devez activer le profil d'une station." -#: application/views/dashboard/index.php:110 +#: application/views/dashboard/index.php:125 msgid "" "You have themes without defined theme mode. Please ask the admin to edit the " "themes." msgstr "" -#: application/views/dashboard/index.php:118 +#: application/views/dashboard/index.php:133 msgid "At least one of your LoTW certificates is expired!" msgstr "Au moins un de vos certificats LoTW est expiré !" -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:139 msgid "At least one of your LoTW certificates is about to expire!" msgstr "Au moins un de vos certificats LoTW est sur le point d'expirer !" -#: application/views/dashboard/index.php:213 +#: application/views/dashboard/index.php:229 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "QSO Breakdown" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:252 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "Pays Breakdown" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:269 #: application/views/visitor/index.php:275 msgid "Needed" msgstr "Demandés" -#: application/views/dashboard/index.php:266 -#: application/views/dashboard/index.php:293 -#: application/views/dashboard/index.php:314 -#: application/views/dashboard/index.php:335 +#: application/views/dashboard/index.php:282 +#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:330 +#: application/views/dashboard/index.php:351 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:167 -#: application/views/qso/edit_ajax.php:390 -#: application/views/qso/edit_ajax.php:451 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:550 +#: application/views/qso/edit_ajax.php:417 +#: application/views/qso/edit_ajax.php:478 +#: application/views/qso/edit_ajax.php:518 application/views/qso/index.php:572 #: application/views/search/result_search.php:8 #: application/views/search/search_result_ajax.php:180 #: application/views/search/search_result_ajax.php:260 @@ -5193,91 +5879,91 @@ msgstr "Demandés" #: application/views/search/search_result_ajax.php:332 #: application/views/search/search_result_ajax.php:362 #: application/views/statistics/custom_result.php:89 -#: application/views/view_log/partial/log_ajax.php:140 -#: application/views/view_log/partial/log_ajax.php:217 -#: application/views/view_log/partial/log_ajax.php:237 -#: application/views/view_log/partial/log_ajax.php:287 -#: application/views/view_log/partial/log_ajax.php:295 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:289 +#: application/views/view_log/partial/log_ajax.php:297 #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 -#: src/QSLManager/QSO.php:371 src/QSLManager/QSO.php:423 -#: src/QSLManager/QSO.php:459 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:270 +#: src/QSLManager/QSO.php:373 src/QSLManager/QSO.php:425 +#: src/QSLManager/QSO.php:461 msgid "Sent" msgstr "Envoyées" -#: application/views/dashboard/index.php:272 -#: application/views/dashboard/index.php:299 -#: application/views/dashboard/index.php:320 -#: application/views/dashboard/index.php:341 +#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:315 +#: application/views/dashboard/index.php:336 +#: application/views/dashboard/index.php:357 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 #: application/views/qslprint/qsolist.php:151 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:423 -#: application/views/qso/edit_ajax.php:464 -#: application/views/qso/edit_ajax.php:503 +#: application/views/qso/edit_ajax.php:450 +#: application/views/qso/edit_ajax.php:491 +#: application/views/qso/edit_ajax.php:530 #: application/views/search/search_result_ajax.php:222 #: application/views/search/search_result_ajax.php:273 #: application/views/search/search_result_ajax.php:313 #: application/views/search/search_result_ajax.php:345 #: application/views/search/search_result_ajax.php:375 -#: application/views/view_log/partial/log_ajax.php:178 -#: application/views/view_log/partial/log_ajax.php:218 -#: application/views/view_log/partial/log_ajax.php:263 -#: application/views/view_log/partial/log_ajax.php:288 -#: application/views/view_log/partial/log_ajax.php:296 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:265 +#: application/views/view_log/partial/log_ajax.php:290 +#: application/views/view_log/partial/log_ajax.php:298 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 -#: src/QSLManager/QSO.php:394 src/QSLManager/QSO.php:436 -#: src/QSLManager/QSO.php:472 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:315 +#: src/QSLManager/QSO.php:396 src/QSLManager/QSO.php:438 +#: src/QSLManager/QSO.php:474 msgid "Received" msgstr "Reçues" -#: application/views/dashboard/index.php:278 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:388 -#: application/views/logbookadvanced/index.php:399 +#: application/views/dashboard/index.php:294 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:415 +#: application/views/logbookadvanced/index.php:426 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 -#: application/views/qso/edit_ajax.php:395 -#: application/views/qso/edit_ajax.php:428 -#: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:469 +#: application/views/qso/edit_ajax.php:422 +#: application/views/qso/edit_ajax.php:455 +#: application/views/qso/edit_ajax.php:483 #: application/views/qso/edit_ajax.php:496 -#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:555 +#: application/views/qso/edit_ajax.php:523 +#: application/views/qso/edit_ajax.php:535 application/views/qso/index.php:577 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 -#: application/views/view_log/partial/log_ajax.php:146 -#: application/views/view_log/partial/log_ajax.php:184 -#: application/views/view_log/partial/log_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:273 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 -#: src/QSLManager/QSO.php:319 src/QSLManager/QSO.php:379 -#: src/QSLManager/QSO.php:402 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +#: application/views/view_log/partial/log_ajax.php:249 +#: application/views/view_log/partial/log_ajax.php:275 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:276 +#: src/QSLManager/QSO.php:321 src/QSLManager/QSO.php:381 +#: src/QSLManager/QSO.php:404 msgid "Requested" msgstr "Demandées" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:304 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:351 +#: application/views/dashboard/index.php:367 msgid "VUCC-Grids" msgstr "" #: application/views/dayswithqso/index.php:2 -#: application/views/interface_assets/header.php:146 +#: application/views/interface_assets/header.php:148 msgid "Days with QSOs" msgstr "" @@ -5306,7 +5992,7 @@ msgstr "Date début" #: application/views/dayswithqso/index.php:58 #: application/views/dayswithqso/index.php:86 #: application/views/dayswithqso/index.php:108 -#: application/views/timeline/index.php:120 +#: application/views/timeline/index.php:153 msgid "End Date" msgstr "Date fin" @@ -5373,9 +6059,7 @@ msgstr "" #: application/views/debug/index.php:47 #, php-format -msgid "" -"Check this wiki article here for " -"more information." +msgid "Check this wiki article %shere%s for more information." msgstr "" #: application/views/debug/index.php:48 @@ -5519,7 +6203,7 @@ msgstr "" msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:283 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:671 msgid "Settings" msgstr "" @@ -5576,7 +6260,7 @@ msgstr "" #: application/views/debug/index.php:506 application/views/debug/index.php:511 #: application/views/debug/index.php:516 application/views/debug/index.php:521 #: application/views/debug/index.php:526 -#: application/views/station_profile/edit.php:22 +#: application/views/station_profile/edit.php:49 msgid "Update" msgstr "Mettre à jour" @@ -5618,9 +6302,8 @@ msgstr[1] "" #: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:57 -#: application/views/station_profile/edit.php:46 -#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" @@ -5648,69 +6331,93 @@ msgid "Everything ok" msgstr "" #: application/views/debug/index.php:629 -msgid "Bulgarian" +msgid "Albanian" msgstr "" #: application/views/debug/index.php:630 -msgid "Chinese (Simplified)" +msgid "Bosnian" msgstr "" #: application/views/debug/index.php:631 -msgid "Czech" +msgid "Bulgarian" msgstr "" #: application/views/debug/index.php:632 -msgid "Dutch" +msgid "Chinese (Simplified)" msgstr "" #: application/views/debug/index.php:633 -msgid "English" +msgid "Croatian" msgstr "" #: application/views/debug/index.php:634 -msgid "Finnish" +msgid "Czech" msgstr "" #: application/views/debug/index.php:635 -msgid "French" +msgid "Dutch" msgstr "" #: application/views/debug/index.php:636 -msgid "German" +msgid "English" msgstr "" #: application/views/debug/index.php:637 -msgid "Greek" +msgid "Finnish" msgstr "" #: application/views/debug/index.php:638 -msgid "Italian" +msgid "French" msgstr "" #: application/views/debug/index.php:639 -msgid "Polish" +msgid "German" msgstr "" #: application/views/debug/index.php:640 -msgid "Portuguese" +msgid "Greek" msgstr "" #: application/views/debug/index.php:641 -msgid "Russian" +msgid "Italian" msgstr "" #: application/views/debug/index.php:642 -msgid "Spanish" +msgid "Montenegrin" msgstr "" #: application/views/debug/index.php:643 -msgid "Swedish" +msgid "Polish" msgstr "" #: application/views/debug/index.php:644 +msgid "Portuguese" +msgstr "" + +#: application/views/debug/index.php:645 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:646 +msgid "Serbian" +msgstr "" + +#: application/views/debug/index.php:647 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:648 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:649 msgid "Turkish" msgstr "" +#: application/views/distancerecords/index.php:4 +msgid "This page lists distance records per satellite based on gridsquares." +msgstr "" + #: application/views/distances/index.php:7 #: application/views/interface_assets/footer.php:30 #: application/views/simplefle/index.php:68 @@ -5718,9 +6425,9 @@ msgid "QSO Data" msgstr "Données du QSO" #: application/views/distances/index.php:9 -msgid "contacts were plotted.
Your furthest contact was with" +#, php-format +msgid "contacts were plotted.%s Your furthest contact was with" msgstr "" -"contacts utilisés pour le graphique.
Le dernier contact réalisé est" #: application/views/distances/index.php:10 msgid "in gridsquare" @@ -5763,7 +6470,7 @@ msgid "Date to" msgstr "" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:366 +#: application/views/view_log/qso.php:369 msgid "QSL Info" msgstr "Info QSL" @@ -5789,7 +6496,7 @@ msgstr "" #: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 #: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 #: application/views/eqsl/tools.php:15 -#: application/views/interface_assets/header.php:243 +#: application/views/interface_assets/header.php:247 msgid "Tools" msgstr "" @@ -5931,27 +6638,15 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2324 -#: application/views/interface_assets/footer.php:2342 -#: application/views/interface_assets/footer.php:2363 -#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2338 +#: application/views/interface_assets/footer.php:2356 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 #: application/views/qslcard/index.php:66 -#: application/views/view_log/qso.php:614 +#: application/views/view_log/qso.php:617 msgid "View" msgstr "" -#: application/views/gridmap/index.php:38 -#: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:604 -#: application/views/logbookadvanced/useroptions.php:118 -msgid "Propagation" -msgstr "" - -#: application/views/gridmap/index.php:42 -msgid "None/Empty" -msgstr "" - #: application/views/gridmap/index.php:43 msgid "All except SAT" msgstr "" @@ -6047,8 +6742,8 @@ msgstr "" #: application/views/interface_assets/footer.php:31 #: application/views/search/search_result_ajax.php:404 #: application/views/view_log/partial/log.php:135 -#: application/views/view_log/partial/log_ajax.php:318 -#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log_ajax.php:320 +#: application/views/view_log/qso.php:437 msgid "Edit QSO" msgstr "Editer QSO" @@ -6056,171 +6751,192 @@ msgstr "Editer QSO" msgid "Attention" msgstr "" -#: application/views/interface_assets/footer.php:36 -msgid "OK" -msgstr "" - -#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/footer.php:38 msgid "Warning! Are you sure you want delete QSO with " msgstr "" -#: application/views/interface_assets/footer.php:38 +#: application/views/interface_assets/footer.php:39 #: application/views/user/edit.php:493 msgid "Colors" msgstr "Couleurs" -#: application/views/interface_assets/footer.php:40 +#: application/views/interface_assets/footer.php:41 msgid "Worked not confirmed" msgstr "Réalisés - non confirmés" -#: application/views/interface_assets/footer.php:41 +#: application/views/interface_assets/footer.php:42 msgid "Not worked" msgstr "Non réalisés" -#: application/views/interface_assets/footer.php:44 -#: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/interface_assets/footer.php:46 +#: application/views/qso/index.php:623 +#: application/views/visitor/layout/footer.php:246 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:47 #: application/views/qso/edit_ajax.php:211 -#: application/views/qso/edit_ajax.php:512 +#: application/views/qso/edit_ajax.php:539 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "" -#: application/views/interface_assets/footer.php:127 -#: application/views/interface_assets/header.php:434 +#: application/views/interface_assets/footer.php:48 +msgid "No states for this DXCC available" +msgstr "" + +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "" + +#: application/views/interface_assets/footer.php:132 +#: application/views/interface_assets/header.php:440 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:392 +#: application/views/interface_assets/footer.php:398 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:395 +#: application/views/interface_assets/footer.php:401 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:411 +#: application/views/interface_assets/footer.php:417 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:413 +#: application/views/interface_assets/footer.php:419 #: application/views/search/filter.php:46 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:415 +#: application/views/interface_assets/footer.php:421 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:420 +#: application/views/interface_assets/footer.php:426 #: application/views/search/filter.php:60 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:432 -#: application/views/interface_assets/footer.php:561 -#: application/views/interface_assets/footer.php:625 +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:437 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:458 -#: application/views/interface_assets/footer.php:589 +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 #: application/views/search/filter.php:79 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:496 +#: application/views/interface_assets/footer.php:502 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:516 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:519 +#: application/views/interface_assets/footer.php:525 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:545 +#: application/views/interface_assets/footer.php:551 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:549 +#: application/views/interface_assets/footer.php:555 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:678 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1156 -#, php-format -msgid "You're not logged it. Please login" +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:533 +msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:1362 -#: application/views/interface_assets/footer.php:1366 -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1506 -#: application/views/interface_assets/footer.php:1510 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:731 +msgid "Count: " +msgstr "" + +#: application/views/interface_assets/footer.php:732 +msgid "Grids: " +msgstr "" + +#: application/views/interface_assets/footer.php:1167 +#, php-format +msgid "You're not logged in. Please %slogin%s" +msgstr "" + +#: application/views/interface_assets/footer.php:1375 +#: application/views/interface_assets/footer.php:1379 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1523 +#: application/views/interface_assets/footer.php:1526 msgid "grid square" msgstr "Grilles des Locators" -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1526 msgid "Total count" msgstr "Total" -#: application/views/interface_assets/footer.php:2100 +#: application/views/interface_assets/footer.php:2114 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2120 +#: application/views/interface_assets/footer.php:2134 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2160 +#: application/views/interface_assets/footer.php:2174 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "Carte eQSL" -#: application/views/interface_assets/footer.php:2162 +#: application/views/interface_assets/footer.php:2176 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2335 -#: application/views/interface_assets/footer.php:2374 -#: application/views/view_log/qso.php:604 +#: application/views/interface_assets/footer.php:2349 +#: application/views/interface_assets/footer.php:2388 +#: application/views/view_log/qso.php:607 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2354 +#: application/views/interface_assets/footer.php:2368 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2392 +#: application/views/interface_assets/footer.php:2406 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2403 -#: application/views/interface_assets/footer.php:2428 +#: application/views/interface_assets/footer.php:2417 +#: application/views/interface_assets/footer.php:2442 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2439 +#: application/views/interface_assets/footer.php:2453 msgid "Something went wrong. Please try again!" msgstr "" @@ -6276,91 +6992,91 @@ msgstr "" msgid "Activated Gridsquares" msgstr "" -#: application/views/interface_assets/header.php:160 +#: application/views/interface_assets/header.php:162 msgid "International" msgstr "" -#: application/views/interface_assets/header.php:166 +#: application/views/interface_assets/header.php:168 msgid "ITU" msgstr "" -#: application/views/interface_assets/header.php:186 +#: application/views/interface_assets/header.php:190 msgid "Canada" msgstr "" -#: application/views/interface_assets/header.php:192 +#: application/views/interface_assets/header.php:196 msgid "Germany" msgstr "" -#: application/views/interface_assets/header.php:196 +#: application/views/interface_assets/header.php:200 msgid "DL Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:200 +#: application/views/interface_assets/header.php:204 msgid "Great Britain" msgstr "" -#: application/views/interface_assets/header.php:202 +#: application/views/interface_assets/header.php:206 msgid "WAB" msgstr "" -#: application/views/interface_assets/header.php:206 +#: application/views/interface_assets/header.php:210 msgid "Japan" msgstr "" -#: application/views/interface_assets/header.php:212 +#: application/views/interface_assets/header.php:216 msgid "JA Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:216 +#: application/views/interface_assets/header.php:220 msgid "Luxemburg" msgstr "" -#: application/views/interface_assets/header.php:218 +#: application/views/interface_assets/header.php:222 msgid "LX Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:222 +#: application/views/interface_assets/header.php:226 msgid "Switzerland" msgstr "" -#: application/views/interface_assets/header.php:228 +#: application/views/interface_assets/header.php:232 msgid "USA" msgstr "" -#: application/views/interface_assets/header.php:234 +#: application/views/interface_assets/header.php:238 msgid "US Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:251 +#: application/views/interface_assets/header.php:255 msgid "Bandmap" msgstr "" -#: application/views/interface_assets/header.php:253 +#: application/views/interface_assets/header.php:257 msgid "SAT Timers" msgstr "" -#: application/views/interface_assets/header.php:256 +#: application/views/interface_assets/header.php:260 msgid "Satellite Flightpath" msgstr "" -#: application/views/interface_assets/header.php:258 +#: application/views/interface_assets/header.php:262 msgid "Satellite Pass" msgstr "" -#: application/views/interface_assets/header.php:265 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:269 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:274 msgid "Global Options" msgstr "" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:280 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:11 +#: application/views/satellite/pass.php:495 #: application/views/statistics/custom.php:20 #: application/views/statistics/custom_result.php:21 #: application/views/statistics/index.php:39 @@ -6368,79 +7084,83 @@ msgstr "" msgid "Satellites" msgstr "" -#: application/views/interface_assets/header.php:282 +#: application/views/interface_assets/header.php:286 msgid "Update Country Files" msgstr "" -#: application/views/interface_assets/header.php:286 +#: application/views/interface_assets/header.php:290 msgid "Debug Information" msgstr "" -#: application/views/interface_assets/header.php:333 +#: application/views/interface_assets/header.php:337 msgid "Add/Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:335 +#: application/views/interface_assets/header.php:339 msgid "Log" msgstr "" -#: application/views/interface_assets/header.php:342 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:346 +#: application/views/logbookadvanced/index.php:474 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "Recherche l'indicatif" -#: application/views/interface_assets/header.php:371 +#: application/views/interface_assets/header.php:375 #: application/views/user/edit.php:49 msgid "Account" msgstr "Compte" -#: application/views/interface_assets/header.php:386 +#: application/views/interface_assets/header.php:390 msgid "Other Export Options" msgstr "" -#: application/views/interface_assets/header.php:394 +#: application/views/interface_assets/header.php:398 msgid "Cabrillo Export" msgstr "Cabrillo - Export" -#: application/views/interface_assets/header.php:418 -msgid "QSL Queue" -msgstr "" - -#: application/views/interface_assets/header.php:419 -msgid "Labels" -msgstr "" - -#: application/views/interface_assets/header.php:421 -msgid "Third-Party Services" +#: application/views/interface_assets/header.php:400 +msgid "EDI Export" msgstr "" #: application/views/interface_assets/header.php:424 -msgid "eQSL Import / Export" +msgid "QSL Queue" msgstr "" #: application/views/interface_assets/header.php:425 +msgid "Labels" +msgstr "" + +#: application/views/interface_assets/header.php:427 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:430 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:431 msgid "HRDLog Logbook" msgstr "" -#: application/views/interface_assets/header.php:435 +#: application/views/interface_assets/header.php:441 msgid "Help" msgstr "" -#: application/views/interface_assets/header.php:436 +#: application/views/interface_assets/header.php:442 msgid "Forum" msgstr "" -#: application/views/interface_assets/header.php:438 +#: application/views/interface_assets/header.php:444 msgid "Logout" msgstr "" -#: application/views/interface_assets/header.php:446 +#: application/views/interface_assets/header.php:452 msgid "Select a Location" msgstr "" -#: application/views/interface_assets/header.php:525 +#: application/views/interface_assets/header.php:531 msgid "Extras" msgstr "" @@ -6713,86 +7433,122 @@ msgid "Start printing at?" msgstr "Commencer à imprimer à ?" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:405 -#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" -#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/edit.php:23 msgid "LoTW Sent" msgstr "" -#: application/views/logbookadvanced/edit.php:23 +#: application/views/logbookadvanced/edit.php:24 msgid "LoTW Received" msgstr "" -#: application/views/logbookadvanced/edit.php:73 +#: application/views/logbookadvanced/edit.php:75 msgid "SAT Mode" msgstr "" -#: application/views/logbookadvanced/edit.php:87 +#: application/views/logbookadvanced/edit.php:89 msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:174 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:144 msgid "From" msgstr "Date, du" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:148 msgid "To" msgstr "au" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:152 +#: application/views/logbookadvanced/index.php:569 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:148 +#: application/views/logbookadvanced/index.php:159 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:224 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:540 +msgid "Invalid" +msgstr "" + +#: application/views/logbookadvanced/index.php:324 msgid "QSL sent" msgstr "QSL Envoyée" -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:375 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:397 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:439 #: application/views/lookup/lotwuser.php:12 -#: application/views/qso/edit_ajax.php:394 -#: application/views/qso/edit_ajax.php:427 -#: application/views/qso/edit_ajax.php:455 -#: application/views/qso/edit_ajax.php:468 +#: application/views/qso/edit_ajax.php:421 +#: application/views/qso/edit_ajax.php:454 +#: application/views/qso/edit_ajax.php:482 #: application/views/qso/edit_ajax.php:495 -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 +#: application/views/qso/edit_ajax.php:522 +#: application/views/qso/edit_ajax.php:534 application/views/qso/index.php:576 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:209 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:236 -#: application/views/station_profile/create.php:275 -#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 #: application/views/station_profile/create.php:293 -#: application/views/station_profile/edit.php:330 -#: application/views/station_profile/edit.php:338 -#: application/views/station_profile/edit.php:364 -#: application/views/station_profile/edit.php:385 -#: application/views/station_profile/edit.php:403 -#: application/views/station_profile/edit.php:410 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 +#: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 #: application/views/user/edit.php:347 application/views/user/edit.php:358 #: application/views/user/edit.php:369 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:399 @@ -6802,35 +7558,35 @@ msgstr "QSL Envoyée" msgid "Yes" msgstr "Oui" -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 -#: application/views/logbookadvanced/index.php:376 -#: application/views/logbookadvanced/index.php:387 -#: application/views/logbookadvanced/index.php:398 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:440 #: application/views/lookup/lotwuser.php:14 -#: application/views/qso/edit_ajax.php:393 -#: application/views/qso/edit_ajax.php:426 -#: application/views/qso/edit_ajax.php:454 -#: application/views/qso/edit_ajax.php:467 +#: application/views/qso/edit_ajax.php:420 +#: application/views/qso/edit_ajax.php:453 +#: application/views/qso/edit_ajax.php:481 #: application/views/qso/edit_ajax.php:494 -#: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 +#: application/views/qso/edit_ajax.php:521 +#: application/views/qso/edit_ajax.php:533 application/views/qso/index.php:575 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:210 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:237 -#: application/views/station_profile/create.php:276 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/create.php:292 -#: application/views/station_profile/edit.php:331 -#: application/views/station_profile/edit.php:339 -#: application/views/station_profile/edit.php:365 -#: application/views/station_profile/edit.php:386 -#: application/views/station_profile/edit.php:404 -#: application/views/station_profile/edit.php:411 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 #: application/views/user/edit.php:348 application/views/user/edit.php:359 #: application/views/user/edit.php:370 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:400 @@ -6841,32 +7597,32 @@ msgstr "Oui" msgid "No" msgstr "Non" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 -#: application/views/logbookadvanced/index.php:389 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:416 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 -#: application/views/qso/edit_ajax.php:396 -#: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:497 application/views/qso/index.php:556 +#: application/views/qso/edit_ajax.php:423 +#: application/views/qso/edit_ajax.php:484 +#: application/views/qso/edit_ajax.php:524 application/views/qso/index.php:578 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:225 -#: application/views/view_log/partial/log_ajax.php:143 -#: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +#: src/QSLManager/QSO.php:273 src/QSLManager/QSO.php:318 msgid "Queued" msgstr "En attente" -#: application/views/logbookadvanced/index.php:304 -#: application/views/logbookadvanced/index.php:314 -#: application/views/logbookadvanced/index.php:346 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:368 -#: application/views/logbookadvanced/index.php:378 -#: application/views/logbookadvanced/index.php:390 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:373 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:417 +#: application/views/logbookadvanced/index.php:427 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6874,42 +7630,42 @@ msgstr "En attente" #: application/views/qslprint/qsolist.php:109 #: application/views/qslprint/qsolist.php:174 #: application/views/qslprint/qsolist.php:189 -#: application/views/qso/edit_ajax.php:397 -#: application/views/qso/edit_ajax.php:429 -#: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:470 -#: application/views/qso/edit_ajax.php:498 -#: application/views/qso/edit_ajax.php:509 application/views/qso/index.php:557 +#: application/views/qso/edit_ajax.php:424 +#: application/views/qso/edit_ajax.php:456 +#: application/views/qso/edit_ajax.php:485 +#: application/views/qso/edit_ajax.php:497 +#: application/views/qso/edit_ajax.php:525 +#: application/views/qso/edit_ajax.php:536 application/views/qso/index.php:579 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/search/search_result_ajax.php:305 #: application/views/search/search_result_ajax.php:320 -#: application/views/view_log/partial/log_ajax.php:149 -#: application/views/view_log/partial/log_ajax.php:187 -#: application/views/view_log/partial/log_ajax.php:242 -#: application/views/view_log/partial/log_ajax.php:268 -#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 -#: src/QSLManager/QSO.php:375 src/QSLManager/QSO.php:398 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +#: application/views/view_log/partial/log_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:270 +#: src/QSLManager/QSO.php:279 src/QSLManager/QSO.php:324 +#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:400 msgid "Invalid (Ignore)" msgstr "Invalide (Ignoré)" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:335 msgid "QSL received" msgstr "QSL Reçue" -#: application/views/logbookadvanced/index.php:315 -#: application/views/logbookadvanced/index.php:357 -#: application/views/logbookadvanced/index.php:379 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:428 msgid "Verified" msgstr "Vérifiée" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:346 msgid "QSL send. method" msgstr "QSL Méthode (envoi)" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:359 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6918,270 +7674,266 @@ msgstr "QSL Méthode (envoi)" #: application/views/qslprint/qsolist.php:77 #: application/views/qslprint/qsolist.php:119 #: application/views/qslprint/qsolist.php:210 -#: application/views/qso/edit_ajax.php:408 -#: application/views/qso/edit_ajax.php:441 application/views/qso/index.php:568 +#: application/views/qso/edit_ajax.php:435 +#: application/views/qso/edit_ajax.php:468 application/views/qso/index.php:590 #: application/views/search/search_result_ajax.php:199 #: application/views/search/search_result_ajax.php:241 -#: application/views/view_log/partial/log_ajax.php:162 -#: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +#: src/QSLManager/QSO.php:296 src/QSLManager/QSO.php:339 msgid "Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:360 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 #: application/views/qslprint/qsolist.php:80 #: application/views/qslprint/qsolist.php:122 #: application/views/qslprint/qsolist.php:211 -#: application/views/qso/edit_ajax.php:407 -#: application/views/qso/edit_ajax.php:440 application/views/qso/index.php:567 +#: application/views/qso/edit_ajax.php:434 +#: application/views/qso/edit_ajax.php:467 application/views/qso/index.php:589 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 -#: application/views/view_log/partial/log_ajax.php:165 -#: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +#: src/QSLManager/QSO.php:299 src/QSLManager/QSO.php:342 msgid "Direct" msgstr "" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 #: application/views/qslprint/qsolist.php:86 #: application/views/qslprint/qsolist.php:128 #: application/views/qslprint/qsolist.php:212 -#: application/views/qso/edit_ajax.php:409 -#: application/views/qso/edit_ajax.php:442 application/views/qso/index.php:569 +#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:591 #: application/views/search/search_result_ajax.php:208 #: application/views/search/search_result_ajax.php:250 -#: application/views/view_log/partial/log_ajax.php:171 -#: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +#: src/QSLManager/QSO.php:305 src/QSLManager/QSO.php:348 msgid "Electronic" msgstr "Numérique" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:362 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 -#: application/views/qso/edit_ajax.php:410 -#: application/views/qso/edit_ajax.php:443 application/views/qso/index.php:570 +#: application/views/qso/edit_ajax.php:437 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:592 #: application/views/search/search_result_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:206 +#: application/views/view_log/partial/log_ajax.php:208 msgid "Manager" msgstr "" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:356 msgid "QSL recv. method" msgstr "QSL Méthode (reçue)" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:366 msgid "LoTW sent" msgstr "LoTW Envoyé" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:377 msgid "LoTW received" msgstr "LoTW Reçu" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:388 msgid "Clublog sent" msgstr "" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:399 msgid "Clublog received" msgstr "" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:410 msgid "eQSL sent" msgstr "eQSL Envoyée" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "eQSL received" msgstr "eQSL Reçue" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:436 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:448 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" "ATTENTION ! Etes vous certain de vouloir supprimer les QSO " "sélectionnés ?" -#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:451 msgid "With selected: " msgstr "Action pour lignes sélectionnées : " -#: application/views/logbookadvanced/index.php:425 -#: application/views/qso/edit_ajax.php:595 +#: application/views/logbookadvanced/index.php:452 +#: application/views/qso/edit_ajax.php:622 msgid "Update from Callbook" msgstr "Mise à jour depuis Callbook" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:453 msgid "Queue Bureau" msgstr "En attente (Bureau)" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:454 msgid "Queue Direct" msgstr "En attente (Direct)" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Queue Electronic" msgstr "En attente (Electronic)" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:456 msgid "Sent (Bureau)" msgstr "Envoyée (Bureau)" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:457 msgid "Sent (Direct)" msgstr "Envoyée (Direct)" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Sent (Electronic)" msgstr "Envoyée (Electronic)" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:459 msgid "Not Sent" msgstr "Non envoyée" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:460 msgid "QSL Not Required" msgstr "QSL Non requis" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:462 msgid "Received (Bureau)" msgstr "Reçue (Bureau)" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:463 msgid "Received (Direct)" msgstr "Reçue (Direct)" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Received (Electronic)" msgstr "Reçue (Numérique)" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:465 msgid "Create ADIF" msgstr "Exporter en ADIF" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:466 msgid "Print Label" msgstr "Imprimer Etiquette" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "QSL Slideshow" msgstr "Diaporama QSL" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:472 msgid "Quicksearch with selected: " msgstr "Recherche rapide (avec infos de la ligne sélectionnée) : " -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:477 msgid "Search DXCC" msgstr "Même DXCC" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:480 msgid "Search State" msgstr "Même Etat" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Search Gridsquare" msgstr "Même Locator" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:486 msgid "Search CQ Zone" msgstr "Même Zone CQ" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:492 msgid "Search Mode" msgstr "Même Mode" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:495 msgid "Search Band" msgstr "Même Band" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:498 msgid "Search IOTA" msgstr "Même IOTA" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:501 msgid "Search SOTA" msgstr "Même SOTA" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 msgid "Search POTA" msgstr "Même POTA" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:507 msgid "Search WWFF" msgstr "Même WWFF" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:516 msgid "Quickfilters" msgstr "Filtres rapides" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "QSL Filters" msgstr "Filtres QSL" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:518 #: application/views/mode/index.php:68 msgid "Filters" msgstr "Filtres" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "Nb lignes" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:527 #: application/views/qso/index.php:272 -#: application/views/station_profile/edit.php:65 +#: application/views/station_profile/edit.php:92 msgid "Location" msgstr "Lieu" -#: application/views/logbookadvanced/index.php:506 -msgid "Callsign: " -msgstr "" - -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:539 msgid "Dupes" msgstr "Doublon(s)" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:547 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:605 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:650 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "Ma Refs" @@ -7209,41 +7961,15 @@ msgstr "Ajouter Via" msgid "Column" msgstr "Colonne" -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/useroptions.php:152 msgctxt "Map Options" msgid "Layer" msgstr "" -#: application/views/logbookadvanced/useroptions.php:149 +#: application/views/logbookadvanced/useroptions.php:153 msgid "Default on" msgstr "" -#: application/views/logbookadvanced/useroptions.php:154 -#: application/views/stationsetup/exportmapoptions.php:23 -msgctxt "Map Options" -msgid "Path lines" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:158 -msgctxt "Map Options" -msgid "Gridsquares" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:162 -msgctxt "Map Options" -msgid "CQ Zones" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:166 -msgctxt "Map Options" -msgid "ITU Zones" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:170 -msgctxt "Map Options" -msgid "Night Shadow" -msgstr "" - #: application/views/lookup/index.php:8 msgid "US State" msgstr "" @@ -7348,58 +8074,62 @@ msgstr "Certificats disponibles" msgid "Upload Certificate" msgstr "Envoyer un certificat" -#: application/views/lotw_views/index.php:41 +#: application/views/lotw_views/index.php:37 msgid "QSO Start Date" msgstr "Date de début des QSO" -#: application/views/lotw_views/index.php:42 +#: application/views/lotw_views/index.php:38 msgid "QSO End Date" msgstr "Date de fin des QSO" -#: application/views/lotw_views/index.php:43 +#: application/views/lotw_views/index.php:39 msgid "Date Created" msgstr "Date de création" -#: application/views/lotw_views/index.php:44 +#: application/views/lotw_views/index.php:40 msgid "Date Expires" msgstr "Date d'expiration" -#: application/views/lotw_views/index.php:46 -#: application/views/view_log/qso.php:404 +#: application/views/lotw_views/index.php:42 +#: application/views/view_log/qso.php:407 msgid "Last Upload" msgstr "Dernier téléchargement" -#: application/views/lotw_views/index.php:91 +#: application/views/lotw_views/index.php:87 msgid "Expired" msgstr "Expiré" -#: application/views/lotw_views/index.php:93 +#: application/views/lotw_views/index.php:89 msgid "Expiring" msgstr "Expiration" -#: application/views/lotw_views/index.php:105 +#: application/views/lotw_views/index.php:91 +msgid "Valid" +msgstr "Valide" + +#: application/views/lotw_views/index.php:101 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:108 +#: application/views/lotw_views/index.php:104 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:114 +#: application/views/lotw_views/index.php:110 msgid "Not Synced" msgstr "Non synchronisé" -#: application/views/lotw_views/index.php:129 +#: application/views/lotw_views/index.php:125 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:144 +#: application/views/lotw_views/index.php:140 msgid "Information" msgstr "" -#: application/views/lotw_views/index.php:149 +#: application/views/lotw_views/index.php:145 msgid "Manual Sync" msgstr "Synchro manuelle" @@ -7615,6 +8345,14 @@ msgstr "" msgid "This enables the button to Wavelog's Github page in the public view" msgstr "" +#: application/views/options/appearance.php:107 +msgid "Public Login Button" +msgstr "" + +#: application/views/options/appearance.php:112 +msgid "This enables the button to login to Wavelog in the public view" +msgstr "" + #: application/views/options/dxcluster.php:38 msgid "Provider of DXClusterCache" msgstr "" @@ -7912,7 +8650,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:64 #: application/views/oqrs/showrequests.php:87 -#: application/views/user/main.php:48 application/views/user/profile.php:24 +#: application/views/user/index.php:48 application/views/user/profile.php:24 msgid "E-mail" msgstr "" @@ -7935,21 +8673,21 @@ msgstr "" #: application/views/search/search_result_ajax.php:127 #: application/views/user/edit.php:478 #: application/views/view_log/partial/log.php:22 -#: application/views/view_log/partial/log_ajax.php:86 -#: application/views/view_log/qso.php:503 -#: application/views/view_log/qso.php:507 -#: application/views/view_log/qso.php:511 -#: application/views/view_log/qso.php:515 -#: application/views/view_log/qso.php:521 -#: application/views/view_log/qso.php:528 -#: application/views/view_log/qso.php:535 -#: application/views/view_log/qso.php:542 -#: application/views/view_log/qso.php:549 -#: application/views/view_log/qso.php:556 -#: application/views/view_log/qso.php:563 -#: application/views/view_log/qso.php:570 -#: application/views/view_log/qso.php:577 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log_ajax.php:88 +#: application/views/view_log/qso.php:506 +#: application/views/view_log/qso.php:510 +#: application/views/view_log/qso.php:514 +#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:531 +#: application/views/view_log/qso.php:538 +#: application/views/view_log/qso.php:545 +#: application/views/view_log/qso.php:552 +#: application/views/view_log/qso.php:559 +#: application/views/view_log/qso.php:566 +#: application/views/view_log/qso.php:573 +#: application/views/view_log/qso.php:580 +#: application/views/view_log/qso.php:585 msgid "Station" msgstr "" @@ -7957,10 +8695,10 @@ msgstr "" #: application/views/qslprint/qslprint.php:28 #: application/views/qslprint/qsolist.php:14 #: application/views/qslprint/qsolist.php:83 -#: application/views/qso/index.php:576 +#: application/views/qso/index.php:598 #: application/views/search/search_result_ajax.php:205 -#: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:300 +#: application/views/view_log/partial/log_ajax.php:170 +#: src/QSLManager/QSO.php:302 msgid "Via" msgstr "" @@ -8189,7 +8927,7 @@ msgid "Remove" msgstr "Enlever" #: application/views/qslprint/qslprint.php:33 -#: application/views/simplefle/index.php:133 +#: application/views/simplefle/index.php:139 msgid "QSO List" msgstr "" @@ -8235,35 +8973,20 @@ msgid "" "queue." msgstr "" -#: application/views/qso/components/winkeysettings.php:7 -#: application/views/qso/components/winkeysettings_results.php:7 -msgid "Winkey Macros" -msgstr "" - -#: application/views/qso/components/winkeysettings.php:12 -#: application/views/qso/components/winkeysettings.php:28 -#: application/views/qso/components/winkeysettings.php:44 -#: application/views/qso/components/winkeysettings.php:60 -#: application/views/qso/components/winkeysettings.php:76 -#: application/views/qso/components/winkeysettings_results.php:12 -#: application/views/qso/components/winkeysettings_results.php:28 -#: application/views/qso/components/winkeysettings_results.php:44 -#: application/views/qso/components/winkeysettings_results.php:60 -#: application/views/qso/components/winkeysettings_results.php:76 -#, php-format -msgid "Function %d - Name" -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:83 -#: application/views/qso/components/winkeysettings_results.php:19 -#: application/views/qso/components/winkeysettings_results.php:35 -#: application/views/qso/components/winkeysettings_results.php:51 -#: application/views/qso/components/winkeysettings_results.php:67 -#: application/views/qso/components/winkeysettings_results.php:83 +#, 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 #, php-format msgid "Function %d - Macro" msgstr "" @@ -8289,7 +9012,8 @@ msgid "RX Band" msgstr "" #: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:346 -#: application/views/view_log/qso.php:542 +#: application/views/reg1test/index.php:114 +#: application/views/view_log/qso.php:545 msgid "Transmit Power (W)" msgstr "Puissance Emission (W)" @@ -8301,10 +9025,6 @@ msgstr "Saisissez la ouissance en Watts en utilisant uniquement des chiffres." msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:177 -msgid "QTH" -msgstr "" - #: application/views/qso/edit_ajax.php:258 msgid "Sat Name" msgstr "" @@ -8313,69 +9033,85 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:356 application/views/qso/index.php:255 -#: application/views/qso/index.php:500 application/views/user/edit.php:599 -#: application/views/view_log/qso.php:332 -#: application/views/view_log/qso.php:582 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:545 +msgid "Antenna Azimuth (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:547 +msgid "Antenna azimuth in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:274 application/views/qso/index.php:551 +msgid "Antenna Elevation (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:276 application/views/qso/index.php:553 +msgid "Antenna elevation in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:383 application/views/qso/index.php:255 +#: application/views/qso/index.php:510 application/views/user/edit.php:599 +#: application/views/view_log/qso.php:335 +#: application/views/view_log/qso.php:585 msgid "Sig Info" msgstr "" -#: application/views/qso/edit_ajax.php:369 +#: application/views/qso/edit_ajax.php:396 msgid "Notes (for internal usage only)" msgstr "" -#: application/views/qso/edit_ajax.php:403 +#: application/views/qso/edit_ajax.php:430 msgid "Sent Method" msgstr "" -#: application/views/qso/edit_ajax.php:406 -#: application/views/qso/edit_ajax.php:439 application/views/qso/index.php:563 -#: application/views/qso/index.php:566 +#: application/views/qso/edit_ajax.php:433 +#: application/views/qso/edit_ajax.php:466 application/views/qso/index.php:585 +#: application/views/qso/index.php:588 msgid "Method" msgstr "Méthode" -#: application/views/qso/edit_ajax.php:416 +#: application/views/qso/edit_ajax.php:443 msgid "Sent Via" msgstr "" -#: application/views/qso/edit_ajax.php:430 -#: application/views/qso/edit_ajax.php:471 -#: application/views/qso/edit_ajax.php:510 +#: application/views/qso/edit_ajax.php:457 +#: application/views/qso/edit_ajax.php:498 +#: application/views/qso/edit_ajax.php:537 msgid "Verified (Match)" msgstr "" -#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:463 msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:477 application/views/qso/index.php:583 +#: application/views/qso/edit_ajax.php:504 application/views/qso/index.php:605 msgid "This note content is exported to QSL services like eqsl.cc." msgstr "" -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:586 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:608 msgid "Get the default message for eQSL, for this station." msgstr "Récupérer le message par défaut pour ce lieu de station." -#: application/views/qso/edit_ajax.php:530 +#: application/views/qso/edit_ajax.php:557 msgid "Change Station Profile" msgstr "" -#: application/views/qso/edit_ajax.php:576 +#: application/views/qso/edit_ajax.php:603 msgid "Exchange (R)" msgstr "" -#: application/views/qso/edit_ajax.php:581 +#: application/views/qso/edit_ajax.php:608 msgid "Exchange (S)" msgstr "" -#: application/views/qso/edit_ajax.php:593 +#: application/views/qso/edit_ajax.php:620 #: application/views/search/search_result_ajax.php:432 #: application/views/view_log/partial/log.php:156 -#: application/views/view_log/partial/log_ajax.php:346 +#: application/views/view_log/partial/log_ajax.php:348 msgid "Delete QSO" msgstr "Effacer QSO" -#: application/views/qso/edit_ajax.php:596 +#: application/views/qso/edit_ajax.php:623 msgid "Save changes" msgstr "" @@ -8383,7 +9119,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "Heure de fin inférieure à celle de début" -#: application/views/qso/index.php:5 application/views/qso/index.php:694 +#: application/views/qso/index.php:5 application/views/qso/index.php:718 msgid "Previous Contacts" msgstr "Contacts précédents" @@ -8423,23 +9159,23 @@ msgstr "Heure fin" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:149 -#: application/views/station_profile/edit.php:191 -#: application/views/user/edit.php:583 application/views/view_log/qso.php:282 -#: application/views/view_log/qso.php:549 +#: application/views/qso/index.php:196 application/views/qso/index.php:449 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 +#: application/views/user/edit.php:583 application/views/view_log/qso.php:285 +#: application/views/view_log/qso.php:552 msgid "IOTA Reference" msgstr "Référence IOTA" -#: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:165 -#: application/views/station_profile/edit.php:219 -#: application/views/user/edit.php:587 application/views/view_log/qso.php:289 -#: application/views/view_log/qso.php:556 +#: application/views/qso/index.php:212 application/views/qso/index.php:466 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 +#: application/views/user/edit.php:587 application/views/view_log/qso.php:292 +#: application/views/view_log/qso.php:559 msgid "SOTA Reference" msgstr "Référence SOTA" -#: application/views/qso/index.php:322 application/views/view_log/qso.php:98 +#: application/views/qso/index.php:322 application/views/view_log/qso.php:100 msgid "Frequency (RX)" msgstr "Frequence (RX)" @@ -8447,39 +9183,39 @@ msgstr "Frequence (RX)" msgid "Band (RX)" msgstr "Bande (RX)" -#: application/views/qso/index.php:458 +#: application/views/qso/index.php:468 msgid "For example: GM/NS-001." msgstr "Par exemple : GM/NS-001." -#: application/views/qso/index.php:471 +#: application/views/qso/index.php:481 msgid "For example: DLFF-0069." msgstr "Par exemple : DLFF-0069." -#: application/views/qso/index.php:484 +#: application/views/qso/index.php:494 msgid "For example: PA-0150. Multiple values allowed." msgstr "Par exemple : PA-0150. (Plusieurs valeurs autorisées)." -#: application/views/qso/index.php:496 +#: application/views/qso/index.php:506 msgid "For example: GMA" msgstr "Par exemple : GMA" -#: application/views/qso/index.php:502 +#: application/views/qso/index.php:512 msgid "For example: DA/NW-357" msgstr "Par exemple : DA/NW-357" -#: application/views/qso/index.php:510 +#: application/views/qso/index.php:520 msgid "For example: Q03" msgstr "Par exemple : Q03" -#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +#: application/views/qso/index.php:529 application/views/view_log/qso.php:210 msgid "Satellite Name" msgstr "Nom du Satellite" -#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +#: application/views/qso/index.php:537 application/views/view_log/qso.php:217 msgid "Satellite Mode" msgstr "Mode du Satellite" -#: application/views/qso/index.php:538 +#: application/views/qso/index.php:560 msgid "" "Note content is used within Wavelog only and is not exported to other " "services." @@ -8487,27 +9223,47 @@ msgstr "" "A noter : le contenu est utilisé par Wavelog uniquement et n'est pas exporté " "vers d'autre services." -#: application/views/qso/index.php:604 +#: application/views/qso/index.php:626 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:645 +#: application/views/qso/index.php:667 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:647 +#: application/views/qso/index.php:669 msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:678 +msgid "Stop" +msgstr "" + +#: application/views/qso/index.php:679 +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:680 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:686 +msgid "CW Speed" +msgstr "" + +#: application/views/qso/index.php:691 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:701 msgid "Suggestions" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:708 msgid "Profile Picture" msgstr "" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:732 msgid "Max. 5 previous contacts are shown" msgstr "" @@ -8538,6 +9294,137 @@ msgstr "" msgid "Please wait..." msgstr "" +#: application/views/reg1test/index.php:6 +msgid "Select Band" +msgstr "" + +#: application/views/reg1test/index.php:8 +msgid "" +"Bands below 50Mhz are not valid for the EDI REG1TEST format and will produce " +"invalid files." +msgstr "" + +#: application/views/reg1test/index.php:18 +msgid "Export a contest to a REG1TEST EDI log" +msgstr "" + +#: application/views/reg1test/index.php:48 +msgid "Sent Exchange" +msgstr "" + +#: application/views/reg1test/index.php:50 +msgid "" +"The exchange which was sent during the contest. Can be any type of " +"information, e.g. Province, DOK, County, State, Power, Name. Max. length: 6 " +"characters." +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:66 +msgid "Callsign of responsible operator" +msgstr "" + +#: application/views/reg1test/index.php:72 +msgid "" +"List of all operators. Seperated with a semicolon ';'. The responsible " +"operator is not needed here." +msgstr "" + +#: application/views/reg1test/index.php:75 +msgid "Contest Address 1" +msgstr "" + +#: application/views/reg1test/index.php:77 +msgid "Address of the QTH used during the contest." +msgstr "" + +#: application/views/reg1test/index.php:80 +msgid "Contest Address 2" +msgstr "" + +#: application/views/reg1test/index.php:84 +msgid "Operator Address 1" +msgstr "" + +#: application/views/reg1test/index.php:86 +msgid "Address of the responsible operator." +msgstr "" + +#: application/views/reg1test/index.php:89 +msgid "Operator Address 2" +msgstr "" + +#: application/views/reg1test/index.php:93 +msgid "Operator Address Postalcode" +msgstr "" + +#: application/views/reg1test/index.php:97 +msgid "Operator Address City" +msgstr "" + +#: application/views/reg1test/index.php:101 +msgid "Operator Address Country" +msgstr "" + +#: application/views/reg1test/index.php:105 +msgid "Operator Phone Number" +msgstr "" + +#: application/views/reg1test/index.php:109 +msgid "Transmit Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:111 +msgid "Short description of the used equipment." +msgstr "" + +#: application/views/reg1test/index.php:116 +msgid "TX Power during the contest in Watt." +msgstr "" + +#: application/views/reg1test/index.php:119 +msgid "Receive Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:121 +msgid "If you used another gear for RX, then describe it here." +msgstr "" + +#: application/views/reg1test/index.php:124 +msgid "Antenna Description" +msgstr "" + +#: application/views/reg1test/index.php:126 +msgid "What kind of antenna was used." +msgstr "" + +#: application/views/reg1test/index.php:129 +msgid "Antenna Height Above Ground (m)" +msgstr "" + +#: application/views/reg1test/index.php:131 +msgid "Height of the antenna above the ground." +msgstr "" + +#: application/views/reg1test/index.php:134 +msgid "Band multiplicator" +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:141 +msgid "Any other remarks." +msgstr "" + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8627,10 +9514,71 @@ msgstr "" msgid "Satellite passes" msgstr "" -#: application/views/satellite/pass.php:548 +#: application/views/satellite/pass.php:8 +msgid "Min. Satellite Elevation" +msgstr "" + +#: application/views/satellite/pass.php:12 +msgid "Min. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:20 +msgid "Max. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:32 +msgid "Altitude (meters)" +msgstr "" + +#: application/views/satellite/pass.php:36 application/views/user/edit.php:179 +msgid "Timezone" +msgstr "Fuseau horaire" + +#: application/views/satellite/pass.php:479 +msgid "Min. time" +msgstr "" + +#: application/views/satellite/pass.php:487 +msgid "Max. time" +msgstr "" + +#: application/views/satellite/pass.php:504 msgid "Load predictions" msgstr "" +#: application/views/satellite/passtable.php:6 +msgid "AOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:7 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "" + +#: application/views/satellite/passtable.php:8 +msgid "AOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:9 +msgid "AOS El" +msgstr "" + +#: application/views/satellite/passtable.php:10 +msgid "Max El" +msgstr "" + +#: application/views/satellite/passtable.php:11 +msgid "LOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:12 +msgid "LOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:13 +msgid "LOS El" +msgstr "" + #: application/views/sattimers/index.php:15 #, php-format msgid "" @@ -8651,10 +9599,6 @@ msgstr "" msgid "Max Elevation" msgstr "" -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "" - #: application/views/search/cqzones.php:5 #: application/views/search/lotw_unconfirmed.php:5 #: application/views/search/main.php:5 @@ -8761,50 +9705,50 @@ msgstr "" #: application/views/search/search_result_ajax.php:409 #: application/views/view_log/partial/log.php:140 -#: application/views/view_log/partial/log_ajax.php:323 +#: application/views/view_log/partial/log_ajax.php:325 msgid "Mark QSL Sent (Bureau)" msgstr "Marquer QSL Envoyée (Bureau)" #: application/views/search/search_result_ajax.php:410 #: application/views/view_log/partial/log.php:141 -#: application/views/view_log/partial/log_ajax.php:324 +#: application/views/view_log/partial/log_ajax.php:326 msgid "Mark QSL Sent (Direct)" msgstr "Marquer QSL Envoyée (Direct)" #: application/views/search/search_result_ajax.php:417 #: application/views/view_log/partial/log.php:148 -#: application/views/view_log/partial/log_ajax.php:333 -#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log_ajax.php:335 +#: application/views/view_log/qso.php:655 msgid "Mark QSL Received (Bureau)" msgstr "Marquer QSL Reçue (Bureau)" #: application/views/search/search_result_ajax.php:418 #: application/views/view_log/partial/log.php:149 -#: application/views/view_log/partial/log_ajax.php:334 -#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log_ajax.php:336 +#: application/views/view_log/qso.php:657 msgid "Mark QSL Received (Direct)" msgstr "Marquer QSL Reçue (Direct)" #: application/views/search/search_result_ajax.php:419 #: application/views/view_log/partial/log.php:150 -#: application/views/view_log/partial/log_ajax.php:325 +#: application/views/view_log/partial/log_ajax.php:327 msgid "Mark QSL Card Requested" msgstr "Marquer Carte QSL comme demandé" #: application/views/search/search_result_ajax.php:420 #: application/views/view_log/partial/log.php:151 -#: application/views/view_log/partial/log_ajax.php:326 -#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log_ajax.php:328 +#: application/views/view_log/qso.php:669 msgid "Mark QSL Card Not Required" msgstr "Marquer Carte QSL comme non requise" #: application/views/search/search_result_ajax.php:426 -#: application/views/view_log/partial/log_ajax.php:340 +#: application/views/view_log/partial/log_ajax.php:342 msgid "Lookup on QRZ.com" msgstr "Rechercher sur QRZ.com" #: application/views/search/search_result_ajax.php:428 -#: application/views/view_log/partial/log_ajax.php:342 +#: application/views/view_log/partial/log_ajax.php:344 msgid "Lookup on HamQTH" msgstr "Rechercher sur HamQTH" @@ -8839,7 +9783,7 @@ msgid "" msgstr "" #: application/views/simplefle/index.php:17 -#: application/views/simplefle/index.php:170 +#: application/views/simplefle/index.php:176 msgid "Syntax Help" msgstr "" @@ -8933,8 +9877,8 @@ msgstr "" #: application/views/simplefle/index.php:107 #, php-format msgid "" -"If you did operate from a new location, first create a new Station Location" +"If you did operate from a new location, first create a new %sStation " +"Location%s" msgstr "" #: application/views/simplefle/index.php:112 @@ -8949,24 +9893,24 @@ msgstr "" msgid "Enter the Data" msgstr "" -#: application/views/simplefle/index.php:148 +#: application/views/simplefle/index.php:154 msgid "Refs" msgstr "" -#: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +#: application/views/simplefle/index.php:166 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" msgstr "" -#: application/views/simplefle/index.php:167 +#: application/views/simplefle/index.php:173 msgid "Reload QSO List" msgstr "" -#: application/views/simplefle/index.php:168 +#: application/views/simplefle/index.php:174 msgid "Save in Wavelog" msgstr "" -#: application/views/simplefle/index.php:169 +#: application/views/simplefle/index.php:175 msgid "Clear Logging Session" msgstr "" @@ -9023,122 +9967,121 @@ msgstr "" #: application/views/simplefle/syntax_help.php:28 #, php-format -msgctxt "uses 'this article'" msgid "" -"A full summary of all commands and the necessary syntax can be found in %s " -"of our Wiki." +"A full summary of all commands and the necessary syntax can be found in " +"%sthis article%s of our Wiki." msgstr "" -#: application/views/station_profile/create.php:51 -#: application/views/station_profile/edit.php:40 +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:52 -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:59 -#: application/views/station_profile/edit.php:48 +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 msgid "Station callsign. For example: 4W7EST/P" msgstr "" -#: application/views/station_profile/create.php:63 -#: application/views/station_profile/edit.php:52 +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 msgid "Station Power (W)" msgstr "" -#: application/views/station_profile/create.php:65 -#: application/views/station_profile/edit.php:54 +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" -#: application/views/station_profile/create.php:68 -#: application/views/station_profile/edit.php:69 +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 msgid "Station DXCC" msgstr "" -#: application/views/station_profile/create.php:71 -#: application/views/station_profile/edit.php:72 +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 msgctxt "DXCC selection" msgid "None" msgstr "Aucun" -#: application/views/station_profile/create.php:78 -#: application/views/station_profile/edit.php:85 +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:83 -#: application/views/station_profile/edit.php:91 +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 msgid "Station City" msgstr "" -#: application/views/station_profile/create.php:85 -#: application/views/station_profile/edit.php:93 +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:94 -#: application/views/station_profile/edit.php:105 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 msgid "Station state. Applies to certain countries only." msgstr "" -#: application/views/station_profile/create.php:99 -#: application/views/station_profile/edit.php:110 +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 msgid "Station County" msgstr "" -#: application/views/station_profile/create.php:101 -#: application/views/station_profile/edit.php:112 +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/edit.php:138 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:138 -#: application/views/station_profile/edit.php:155 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 msgid "click here" msgstr "cliquer ici" -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/edit.php:155 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:135 -#: application/views/station_profile/edit.php:167 -#: application/views/station_profile/edit.php:170 +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 msgid "Station Gridsquare" msgstr "" -#: application/views/station_profile/create.php:140 -#: application/views/station_profile/edit.php:175 +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 msgid "Get Gridsquare" msgstr "Trouver le Locator" -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 #, php-format msgctxt "uses 'click here'" msgid "" @@ -9146,102 +10089,102 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:145 -#: application/views/station_profile/edit.php:180 +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" -#: application/views/station_profile/create.php:160 -#: application/views/station_profile/edit.php:205 +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 msgid "Station IOTA reference. For example: EU-005" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 #, php-format msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:183 -#: application/views/station_profile/edit.php:260 +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 msgid "Signature Name" msgstr "" -#: application/views/station_profile/create.php:185 -#: application/views/station_profile/edit.php:262 +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 msgid "Station Signature (e.g. GMA).." msgstr "" -#: application/views/station_profile/create.php:189 -#: application/views/station_profile/edit.php:266 +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 msgid "Signature Information" msgstr "" -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/edit.php:268 +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "" -#: application/views/station_profile/create.php:195 -#: application/views/station_profile/edit.php:281 +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:197 -#: application/views/station_profile/edit.php:283 +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "" -#: application/views/station_profile/create.php:201 -#: application/views/station_profile/edit.php:286 +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 msgid "Default QSLMSG" msgstr "Message (QSLMSG) par défaut" -#: application/views/station_profile/create.php:204 -#: application/views/station_profile/edit.php:289 +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." @@ -9249,203 +10192,149 @@ msgstr "" "Vous pouvez définir un message par défaut qui sera renseigné et envoyé pour " "chaque QSO pour ce lieu station." -#: application/views/station_profile/create.php:207 -#: application/views/station_profile/edit.php:328 +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:212 -#: application/views/station_profile/edit.php:333 +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " "Clublog. If this is deactivated on it's own please check if the Call is " "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:215 -#: application/views/station_profile/edit.php:336 +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 msgid "ClubLog Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:224 -#: application/views/station_profile/edit.php:352 +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 msgid "HRDLog.net Username" msgstr "" -#: application/views/station_profile/create.php:226 -#: application/views/station_profile/edit.php:354 +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" -#: application/views/station_profile/create.php:229 -#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 msgid "HRDLog.net API Key" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:234 -#: application/views/station_profile/edit.php:362 +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 msgid "HRDLog.net Logbook Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:243 -#: application/views/station_profile/edit.php:297 +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 msgid "Subscription Required" msgstr "" -#: application/views/station_profile/create.php:248 +#: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/edit.php:310 +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 msgid "QRZ.com Logbook Upload" msgstr "" -#: application/views/station_profile/create.php:260 -#: application/views/station_profile/edit.php:313 +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:268 -#: application/views/station_profile/edit.php:378 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:273 -#: application/views/station_profile/edit.php:383 +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 msgid "QO-100 Dx Club Realtime Upload" msgstr "QO-100 Dx Club Téléchargement en temps réel" -#: application/views/station_profile/create.php:283 -#: application/views/station_profile/edit.php:401 +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 msgid "OQRS Enabled" msgstr "OQRS activé" -#: application/views/station_profile/create.php:290 -#: application/views/station_profile/edit.php:408 +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 msgid "OQRS Email alert" msgstr "OQRS Alerte par email" -#: application/views/station_profile/create.php:295 -#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 msgid "Make sure email is set up under admin and global options." msgstr "" -#: application/views/station_profile/create.php:298 -#: application/views/station_profile/edit.php:416 +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 msgid "OQRS Text" msgstr "" -#: application/views/station_profile/create.php:300 -#: application/views/station_profile/edit.php:418 +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 msgid "Some info you want to add regarding QSL'ing." msgstr "" -#: application/views/station_profile/edit.php:122 +#: application/views/station_profile/edit.php:149 msgid "Zones" msgstr "" -#: application/views/station_profile/edit.php:257 +#: application/views/station_profile/edit.php:284 msgid "Signature" msgstr "" -#: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:95 -msgid "" -"Station Locations define operating locations, such as your QTH, a friends " -"QTH, or a portable station." -msgstr "" - -#: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:96 -msgid "Similar to logbooks, a station profile keeps a set of QSOs together." -msgstr "" - -#: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:97 -msgid "" -"Only one station may be active at a time. In the table below this is shown " -"with the -Active Station- badge." -msgstr "" - -#: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:101 -msgid "Create a Station Location" -msgstr "" - -#: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:105 -msgid "" -"Attention: You need to set an active station location. Go to Callsign-" -">Station Location to select one." -msgstr "" - -#: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:111 -msgid "" -"Due to recent changes within Wavelog you need to reassign QSOs to your " -"station profiles." -msgstr "" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Maintenance" -msgstr "" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Please reassign them at " -msgstr "" - -#: application/views/station_profile/index.php:41 -#: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:122 -msgid "Profile Name" -msgstr "" - #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "" @@ -9493,6 +10382,11 @@ msgstr "" msgid "Link Location" msgstr "" +#: application/views/stationsetup/linkedlocations.php:31 +#: application/views/stationsetup/stationsetup.php:122 +msgid "Profile Name" +msgstr "" + #: application/views/stationsetup/linkedlocations.php:34 msgid "Unlink Station Location" msgstr "" @@ -9522,12 +10416,52 @@ msgstr "" msgid "Station Locations" msgstr "" +#: application/views/stationsetup/stationsetup.php:95 +msgid "" +"Station Locations define operating locations, such as your QTH, a friends " +"QTH, or a portable station." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:96 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:97 +msgid "" +"Only one station may be active at a time. In the table below this is shown " +"with the -Active Station- badge." +msgstr "" + #: application/views/stationsetup/stationsetup.php:98 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." msgstr "" +#: application/views/stationsetup/stationsetup.php:101 +msgid "Create a Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:105 +msgid "" +"Attention: You need to set an active station location. Go to Callsign-" +">Station Location to select one." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:111 +msgid "" +"Due to recent changes within Wavelog you need to reassign QSOs to your " +"station profiles." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Maintenance" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Please reassign them at " +msgstr "" + #: application/views/stationsetup/stationsetup.php:127 msgid "Linked" msgstr "" @@ -9744,9 +10678,10 @@ msgid "4. Step" msgstr "" #: application/views/themes/index.php:73 +#, php-format msgid "" "Click here on 'Add a Theme' and type in the necessary data. Type in the " -"filenames for the logos without the file extension '.png'" +"filenames for the logos %swithout%s the file extension '.png'" msgstr "" #: application/views/themes/index.php:83 @@ -9809,6 +10744,10 @@ msgstr "" msgid "Update DXCC Data" msgstr "" +#: application/views/update/index.php:30 +msgid "Status:" +msgstr "" + #: application/views/update/index.php:34 msgid "Apply DXCC Data to Logbook" msgstr "" @@ -9822,36 +10761,43 @@ msgid "" "\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." msgstr "" -#: application/views/update/index.php:40 +#: application/views/update/index.php:45 msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:54 application/views/update/index.php:95 msgid "Re-check all QSOs in logbook" msgstr "" -#: application/views/update/index.php:45 +#: application/views/update/index.php:59 msgid "Apply Continent Data to Logbook" msgstr "" -#: application/views/update/index.php:47 +#: application/views/update/index.php:61 msgid "" "This function can be used to update QSO continent information for all QSOs " "in Wavelog missing that information." msgstr "" -#: application/views/update/index.php:49 +#: application/views/update/index.php:68 msgid "Check QSOs missing continent data" msgstr "" -#: application/views/update/index.php:59 +#: application/views/update/index.php:80 msgid "Here you can update QSOs with missing distance information." msgstr "" -#: application/views/update/index.php:60 +#: application/views/update/index.php:86 msgid "Update distance data" msgstr "" +#: application/views/update/index.php:89 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" + #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "Supprimer l'utilisateur" @@ -9881,13 +10827,13 @@ msgid "General Information" msgstr "Informations Générales" #: application/views/user/edit.php:52 application/views/user/login.php:58 -#: application/views/user/login.php:67 application/views/user/login.php:68 +#: application/views/user/login.php:69 application/views/user/login.php:70 #: application/views/user/profile.php:14 msgid "Username" msgstr "Utilisateur" #: application/views/user/edit.php:64 application/views/user/login.php:59 -#: application/views/user/login.php:71 application/views/user/login.php:72 +#: application/views/user/login.php:73 application/views/user/login.php:74 #: application/views/user/reset_password.php:21 #: application/views/user/reset_password.php:23 #: application/views/user/reset_password.php:30 @@ -9930,10 +10876,6 @@ msgstr "Langue utilisée par Wavelog" msgid "Choose Wavelog language." msgstr "(Sélectionner la langue à utiliser)." -#: application/views/user/edit.php:179 -msgid "Timezone" -msgstr "Fuseau horaire" - #: application/views/user/edit.php:187 msgid "Date Format" msgstr "Format de la date" @@ -10281,6 +11223,127 @@ msgstr "Mot de passe oublié ?" msgid "You can reset your password here." msgstr "Vous pouvez réinitialiser votre mot de passe ici." +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "" + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "Liste des utilisateurs" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "Wavelog a besoin d'au moins un utilisateur configuré pour fonctionner." + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" +"Les utilisateurs peuvent se voir attribuer des rôles qui leur donnent " +"différentes autorisations, telles que l'ajout de QSO au journal de trafic et " +"l'accès aux API Wavelog." + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" +"L'utilisateur actuellement connecté est affiché en haut à droite de chaque " +"page." + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "Création d'un utilisateur" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "" @@ -10295,101 +11358,17 @@ msgstr "" #: application/views/user/login.php:60 #, php-format -msgid "" -"More Information about Wavelog on Github." +msgid "More Information about Wavelog on %sGithub%s." msgstr "" -#: application/views/user/login.php:77 +#: application/views/user/login.php:79 msgid "Forgot your password?" msgstr "Mot de passe oublié ?" -#: application/views/user/login.php:83 +#: application/views/user/login.php:85 msgid "Keep me logged in" msgstr "" -#: application/views/user/main.php:2 -msgid "Do you really want to send this user a password-reset link?" -msgstr "" - -#: application/views/user/main.php:6 -msgid "Please Wait ..." -msgstr "" - -#: application/views/user/main.php:9 -msgid "Password-reset e-mail sent to user:" -msgstr "" - -#: application/views/user/main.php:30 -msgid "User List" -msgstr "Liste des utilisateurs" - -#: application/views/user/main.php:33 -msgid "Wavelog needs at least one user configured in order to operate." -msgstr "Wavelog a besoin d'au moins un utilisateur configuré pour fonctionner." - -#: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" -"Les utilisateurs peuvent se voir attribuer des rôles qui leur donnent " -"différentes autorisations, telles que l'ajout de QSO au journal de trafic et " -"l'accès aux API Wavelog." - -#: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "" -"L'utilisateur actuellement connecté est affiché en haut à droite de chaque " -"page." - -#: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." -msgstr "" - -#: application/views/user/main.php:38 -msgid "Create user" -msgstr "Création d'un utilisateur" - -#: application/views/user/main.php:39 -msgid "Refresh List" -msgstr "" - -#: application/views/user/main.php:49 -msgid "Type" -msgstr "" - -#: application/views/user/main.php:50 -msgid "Last seen" -msgstr "" - -#: application/views/user/main.php:53 -msgid "Password Reset" -msgstr "" - -#: application/views/user/main.php:79 -msgid "Never" -msgstr "" - -#: application/views/user/main.php:83 -msgid "Locations" -msgstr "" - -#: application/views/user/main.php:85 -msgid "Logbooks" -msgstr "" - -#: application/views/user/main.php:87 -msgid "Last QSO:" -msgstr "" - -#: application/views/user/main.php:89 -msgid "No QSOs in Log" -msgstr "" - #: application/views/user/profile.php:19 msgid "Level" msgstr "" @@ -10439,118 +11418,118 @@ msgstr "" msgid "QSL Management" msgstr "Gestionnaire de QSL" -#: application/views/view_log/qso.php:128 +#: application/views/view_log/qso.php:131 msgid "Total Distance" msgstr "Distance Totale" -#: application/views/view_log/qso.php:221 +#: application/views/view_log/qso.php:224 msgid "Antenna Azimuth" msgstr "" -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:231 msgid "Antenna Elevation" msgstr "" -#: application/views/view_log/qso.php:370 +#: application/views/view_log/qso.php:373 msgid "QSL Card has been sent via the bureau" msgstr "La carte QSL a été envoyée via le bureau" -#: application/views/view_log/qso.php:372 +#: application/views/view_log/qso.php:375 msgid "QSL Card has been sent via direct" msgstr "La carte QSL a été envoyée en direct" -#: application/views/view_log/qso.php:374 +#: application/views/view_log/qso.php:377 msgid "QSL Card has been sent electronically" msgstr "La carte QSL a été envoyée numériquement" -#: application/views/view_log/qso.php:376 +#: application/views/view_log/qso.php:379 msgid "QSL Card has been sent via manager" msgstr "La carte QSL a été envoyée via QSL Manager" -#: application/views/view_log/qso.php:378 +#: application/views/view_log/qso.php:381 msgid "QSL Card has been sent" msgstr "La carte QSL a été envoyée" -#: application/views/view_log/qso.php:387 +#: application/views/view_log/qso.php:390 msgid "QSL Card has been received via the bureau" msgstr "La carte QSL a été reçue via le bureau" -#: application/views/view_log/qso.php:389 +#: application/views/view_log/qso.php:392 msgid "QSL Card has been received via direct" msgstr "La carte QSL a été reçue en direct" -#: application/views/view_log/qso.php:391 +#: application/views/view_log/qso.php:394 msgid "QSL Card has been received electronically" msgstr "La carte QSL a été reçue numériquement" -#: application/views/view_log/qso.php:393 +#: application/views/view_log/qso.php:396 msgid "QSL Card has been received via manager" msgstr "La carte QSL a été reçue via QSL Manager" -#: application/views/view_log/qso.php:395 +#: application/views/view_log/qso.php:398 msgid "QSL Card has been received" msgstr "La carte QSL a été reçue" -#: application/views/view_log/qso.php:404 +#: application/views/view_log/qso.php:407 msgid "This station uses LoTW." msgstr "Cette station utilise LoTW." -#: application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:414 -#: application/views/view_log/qso.php:419 -#: application/views/view_log/qso.php:424 +#: application/views/view_log/qso.php:412 +#: application/views/view_log/qso.php:417 +#: application/views/view_log/qso.php:422 +#: application/views/view_log/qso.php:427 msgid "This QSO was confirmed on" msgstr "Ce QSO est confirmé depuis le" -#: application/views/view_log/qso.php:435 +#: application/views/view_log/qso.php:438 msgid "More QSOs" msgstr "Autres QSO" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:506 msgid "Details" msgstr "Détails" -#: application/views/view_log/qso.php:630 +#: application/views/view_log/qso.php:633 msgid "Uploaded QSL Card front image" msgstr "Sélectionner l'image 'recto' de la QSL" -#: application/views/view_log/qso.php:635 +#: application/views/view_log/qso.php:638 msgid "Upload QSL Card image" msgstr "Télécharger le(s) image(s) de la QSL" -#: application/views/view_log/qso.php:640 +#: application/views/view_log/qso.php:643 msgid "Uploaded QSL Card back image" msgstr "Sélectionner l'image 'verso' de la QSL" -#: application/views/view_log/qso.php:656 +#: application/views/view_log/qso.php:659 msgid "Mark QSL Received (Electronic)" msgstr "Marquer QSL Reçue (Electronic)" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:665 msgid "Mark QSL Card Requested (Bureau)" msgstr "Marquer Carte QSL comme demandé (Bureau)" -#: application/views/view_log/qso.php:664 +#: application/views/view_log/qso.php:667 msgid "Mark QSL Card Requested (Direct)" msgstr "Marquer Carte QSL comme demandé (Direct)" -#: application/views/view_log/qso.php:679 +#: application/views/view_log/qso.php:682 msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:242 msgid "CSV" msgstr "" -#: application/views/visitor/layout/header.php:75 +#: application/views/visitor/layout/header.php:74 msgid "OQRS" msgstr "" -#: application/views/visitor/layout/header.php:83 +#: application/views/visitor/layout/header.php:82 msgid "Visit Wavelog on Github" msgstr "" -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Please enter a callsign!" msgstr "" @@ -10633,11 +11612,34 @@ msgstr "" #: application/views/widgets/oqrs.php:83 msgid "Your Callsign:" -msgstr "" +msgstr "Votre indicatif :" #: application/views/widgets/oqrs.php:90 msgid "Submit Request" -msgstr "" +msgstr "Soumettre la demande" + +#~ msgid "Key Disabled" +#~ msgstr "Clé désactivée" + +#~ msgid "No Key Found" +#~ msgstr "Aucune clé trouvée" + +#~ msgid "Key Invalid - either not found or disabled" +#~ msgstr "Clé invalide - soit non trouvée ou désactivée" + +#~ msgid "User logged in" +#~ msgstr "Utilisateur connecté" + +#~ msgid "" +#~ "If selected, Wavelog will try to import all QSO's of the ADIF, " +#~ "regardless if they match to the chosen station-location." +#~ msgstr "" +#~ "(Si cochée, Wavelog tentera d'importer TOUS les QSO de l'ADIF, " +#~ "qu'ils correspondent ou non à l'emplacement de la station choisie)." + +#~ msgid "contacts were plotted.
Your furthest contact was with" +#~ msgstr "" +#~ "contacts utilisés pour le graphique.
Le dernier contact réalisé est" #~ msgid "API Key is required do not change this field" #~ msgstr "La clé API est requise, ne modifiez pas ce champ" diff --git a/application/locale/hr/LC_MESSAGES/messages.mo b/application/locale/hr/LC_MESSAGES/messages.mo new file mode 100644 index 000000000..e3e8d73f9 Binary files /dev/null and b/application/locale/hr/LC_MESSAGES/messages.mo differ diff --git a/application/locale/hr/LC_MESSAGES/messages.po b/application/locale/hr/LC_MESSAGES/messages.po new file mode 100644 index 000000000..ab2e4e8dd --- /dev/null +++ b/application/locale/hr/LC_MESSAGES/messages.po @@ -0,0 +1,11427 @@ +# WAVELOG PO FILE +# Copyright (c) 2024 Wavelog by DF2ET, DJ7NT, HB9HIL and LA8AJA. +# This file is distributed under the MIT licence. +# +# Fabian Berg <80885850+HB9HIL@users.noreply.github.com>, 2024. +msgid "" +msgstr "" +"Report-Msgid-Bugs-To: translations@wavelog.org\n" +"POT-Creation-Date: 2024-09-07 07:18+0000\n" +"PO-Revision-Date: 2024-08-17 10:49+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Croatian \n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 5.6.2\n" + +#: application/controllers/Accumulated.php:12 +#: application/controllers/Activators.php:13 +#: application/controllers/Activatorsmap.php:13 +#: application/controllers/Adif.php:13 application/controllers/Awards.php:16 +#: application/controllers/Backup.php:13 application/controllers/Backup.php:26 +#: application/controllers/Backup.php:63 application/controllers/Band.php:15 +#: application/controllers/Bandmap.php:9 +#: application/controllers/Cabrillo.php:16 +#: application/controllers/Cabrillo.php:53 +#: application/controllers/Cabrillo.php:80 +#: application/controllers/Cabrillo.php:135 +#: application/controllers/Calltester.php:11 +#: application/controllers/Cfdexport.php:18 +#: application/controllers/Cfdexport.php:29 +#: application/controllers/Components.php:13 +#: application/controllers/Contestcalendar.php:15 +#: application/controllers/Contesting.php:14 +#: application/controllers/Cron.php:26 application/controllers/Cron.php:162 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: application/controllers/Distancerecords.php:11 +#: application/controllers/Distances.php:11 +#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29 +#: application/controllers/Dxatlas.php:51 +#: application/controllers/Dxatlas.php:108 +#: application/controllers/Dxcalendar.php:8 +#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23 +#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 +#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 +#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:353 +#: application/controllers/Eqsl.php:420 application/controllers/Eqsl.php:436 +#: application/controllers/Eqsl.php:497 application/controllers/Hamsat.php:13 +#: application/controllers/Kmlexport.php:18 +#: application/controllers/Kmlexport.php:33 +#: application/controllers/Labels.php:26 +#: application/controllers/Logbookadvanced.php:16 +#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 +#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 +#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 +#: application/controllers/Notes.php:10 application/controllers/Options.php:15 +#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 +#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 +#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 +#: application/controllers/Qso.php:9 application/controllers/Qso.php:19 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:600 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Reg1test.php:18 +#: application/controllers/Reg1test.php:63 +#: application/controllers/Reg1test.php:102 +#: application/controllers/Reg1test.php:130 +#: application/controllers/Reg1test.php:164 +#: application/controllers/Satellite.php:18 +#: application/controllers/Satellite.php:37 +#: application/controllers/Satellite.php:44 +#: application/controllers/Satellite.php:53 +#: application/controllers/Satellite.php:72 +#: application/controllers/Satellite.php:87 +#: application/controllers/Satellite.php:95 +#: application/controllers/Satellite.php:103 +#: application/controllers/Satellite.php:117 +#: application/controllers/Satellite.php:135 +#: application/controllers/Satellite.php:146 +#: application/controllers/Satellite.php:162 +#: application/controllers/Satellite.php:190 +#: application/controllers/Satellite.php:201 +#: application/controllers/Satellite.php:223 +#: application/controllers/Satellite.php:236 +#: application/controllers/Satellite.php:244 +#: application/controllers/Sattimers.php:9 +#: application/controllers/Search.php:13 +#: application/controllers/Simplefle.php:7 +#: application/controllers/Station.php:17 +#: application/controllers/Stationsetup.php:15 +#: application/controllers/Themes.php:17 +#: application/controllers/Timeline.php:10 +#: application/controllers/Timeplotter.php:11 +#: application/controllers/Update.php:24 application/controllers/Update.php:273 +#: application/controllers/Update.php:284 +#: application/controllers/Update.php:295 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 +#: application/controllers/User_options.php:9 +msgid "You're not allowed to do that!" +msgstr "" + +#: application/controllers/Accumulated.php:19 +#: application/views/interface_assets/header.php:152 +msgid "Accumulated Statistics" +msgstr "" + +#: application/controllers/Activated_gridmap.php:10 +#: application/views/activated_gridmap/index.php:5 +msgid "Activated Gridsquare Map" +msgstr "" + +#: application/controllers/Activated_gridmap.php:31 +#: application/controllers/Awards.php:919 +#: application/controllers/Awards.php:951 +#: application/controllers/Gridmap.php:31 +#: application/controllers/Visitor.php:385 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: application/views/visitor/layout/footer.php:22 +#: application/views/visitor/layout/header.php:68 +msgid "Gridsquares" +msgstr "" + +#: application/controllers/Activated_gridmap.php:32 +#: application/controllers/Gridmap.php:32 +#: application/controllers/Visitor.php:386 +msgid "Gridsquares confirmed" +msgstr "" + +#: application/controllers/Activated_gridmap.php:33 +#: application/controllers/Gridmap.php:33 +#: application/controllers/Visitor.php:387 +msgid "Gridsquares not confirmed" +msgstr "" + +#: application/controllers/Activated_gridmap.php:34 +msgid "Total gridsquares activated" +msgstr "" + +#: application/controllers/Activators.php:20 +#: application/views/activators/index.php:5 +#: application/views/interface_assets/header.php:142 +msgid "Gridsquare Activators" +msgstr "" + +#: application/controllers/Activatorsmap.php:17 +#: application/views/activators/index.php:2 +msgid "Activators Map" +msgstr "" + +#: application/controllers/Adif.php:18 +msgid "valid date" +msgstr "" + +#: application/controllers/Adif.php:20 +msgid "date incorrect" +msgstr "" + +#: application/controllers/Adif.php:29 application/views/adif/import.php:24 +msgid "ADIF Export" +msgstr "" + +#: application/controllers/Adif.php:145 +#: application/views/interface_assets/header.php:388 +msgid "ADIF Import / Export" +msgstr "" + +#: application/controllers/Adif.php:169 application/views/adif/import.php:21 +#: application/views/lotw/import.php:3 +msgid "ADIF Import" +msgstr "" + +#: application/controllers/Adif.php:209 +msgid "Unsupported Filetype" +msgstr "" + +#: application/controllers/Adif.php:240 +#: application/views/adif/import_failed.php:12 +msgid "ADIF Import failed!" +msgstr "" + +#: application/controllers/Adif.php:254 +msgid "Station Profile not valid for User" +msgstr "" + +#: application/controllers/Adif.php:261 +#: application/views/adif/import_success.php:12 +msgid "ADIF Imported" +msgstr "" + +#: application/controllers/Adif.php:272 +msgid "DCL Import" +msgstr "" + +#: application/controllers/Adif.php:328 +msgid "DCL Data Imported" +msgstr "" + +#: application/controllers/Api.php:26 +msgid "API" +msgstr "" + +#: application/controllers/Api.php:50 application/views/api/description.php:26 +msgid "API Description" +msgstr "" + +#: application/controllers/Api.php:51 +msgid "API Key is required. Do not change this field" +msgstr "" + +#: application/controllers/Api.php:57 +msgid "Edit API Description" +msgstr "" + +#: application/controllers/Api.php:69 +#, php-format +msgid "API Key %s description has been updated." +msgstr "" + +#: application/controllers/Api.php:109 +#, php-format +msgid "API Key %s has been deleted" +msgstr "" + +#: application/controllers/Awards.php:22 +#: application/views/interface_assets/header.php:160 +#: application/views/qso/edit_ajax.php:35 +msgid "Awards" +msgstr "" + +#: application/controllers/Awards.php:92 application/controllers/Awards.php:172 +#: application/controllers/Awards.php:327 +#: application/controllers/Awards.php:375 +#: application/controllers/Awards.php:486 +#: application/controllers/Awards.php:503 +#: application/controllers/Awards.php:520 +#: application/controllers/Awards.php:591 +#: application/controllers/Awards.php:652 +#: application/controllers/Awards.php:714 +#: application/controllers/Awards.php:776 +#: application/controllers/Awards.php:856 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:939 +#: application/controllers/Awards.php:1140 +#: application/controllers/Awards.php:1639 +#: application/controllers/Awards.php:1779 +#: application/controllers/Awards.php:1908 +#, php-format +msgid "Awards - %s" +msgstr "" + +#: application/controllers/Awards.php:92 +#: application/views/awards/dok/index.php:149 +#: application/views/bands/index.php:47 +#: application/views/contesting/index.php:53 +#: application/views/interface_assets/header.php:198 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/qso/edit_ajax.php:388 application/views/qso/index.php:264 +#: application/views/qso/index.php:518 application/views/user/edit.php:603 +#: application/views/view_log/qso.php:354 +msgid "DOK" +msgstr "" + +#: application/controllers/Awards.php:172 application/views/awards/index.php:7 +#: application/views/bandmap/list.php:112 application/views/bands/index.php:48 +#: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 +#: application/views/dxcalendar/index.php:11 +#: application/views/interface_assets/header.php:166 +#: application/views/kml/index.php:47 +#: application/views/logbookadvanced/edit.php:7 +#: application/views/logbookadvanced/index.php:156 +#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/lookup/index.php:4 +#: application/views/lotw_views/index.php:36 +#: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 +#: application/views/search/cqzones_result.php:15 +#: application/views/search/result.php:27 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:33 +#: application/views/timeplotter/index.php:24 +msgid "DXCC" +msgstr "" + +#: application/controllers/Awards.php:251 +msgid "Awards - WAJA" +msgstr "" + +#: application/controllers/Awards.php:327 application/views/bands/index.php:51 +#: application/views/interface_assets/header.php:214 +msgid "JCC" +msgstr "" + +#: application/controllers/Awards.php:375 application/views/bands/index.php:57 +#: application/views/interface_assets/header.php:172 +msgid "VUCC" +msgstr "" + +#: application/controllers/Awards.php:405 +msgid "Log View - VUCC" +msgstr "" + +#: application/controllers/Awards.php:453 +#: application/controllers/Distancerecords.php:59 +#: application/controllers/Timeline.php:105 +#: application/controllers/Timeline.php:108 +#: application/controllers/Timeline.php:111 +#: application/controllers/Timeline.php:114 +#: application/controllers/Timeline.php:117 +#: application/controllers/Timeline.php:120 +msgid "Log View" +msgstr "" + +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr "" + +#: application/controllers/Awards.php:457 +msgid " and sat " +msgstr "" + +#: application/controllers/Awards.php:460 +msgid " and orbit type " +msgstr "" + +#: application/controllers/Awards.php:464 +msgid " and propagation " +msgstr "" + +#: application/controllers/Awards.php:467 +msgid " and mode " +msgstr "" + +#: application/controllers/Awards.php:470 +msgid " and " +msgstr "" + +#: application/controllers/Awards.php:486 +#: application/controllers/Logbook.php:1289 +#: application/views/awards/index.php:8 application/views/bands/index.php:55 +#: application/views/dashboard/index.php:9 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/index.php:270 +#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/lookup/index.php:7 +#: application/views/qslcard/searchresult.php:17 +#: application/views/qslcard/searchresult.php:33 +#: application/views/qslcard/searchresult.php:49 +#: application/views/qslcard/searchresult.php:65 +#: application/views/qslcard/searchresult.php:81 +#: application/views/qso/components/previous_contacts.php:82 +#: application/views/qso/edit_ajax.php:363 +#: application/views/search/search_result_ajax.php:9 +#: application/views/station_profile/edit.php:243 +#: application/views/user/edit.php:234 application/views/user/edit.php:256 +#: application/views/user/edit.php:278 application/views/user/edit.php:300 +#: application/views/user/edit.php:323 +#: application/views/view_log/partial/log_ajax.php:9 +#: application/views/visitor/index.php:21 +msgid "SOTA" +msgstr "" + +#: application/controllers/Awards.php:503 +#: application/controllers/Logbook.php:1290 +#: application/views/bands/index.php:60 +#: application/views/dashboard/index.php:10 +#: application/views/interface_assets/header.php:176 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/index.php:290 +#: application/views/logbookadvanced/useroptions.php:134 +#: application/views/lookup/index.php:9 +#: application/views/qso/components/previous_contacts.php:83 +#: application/views/qso/edit_ajax.php:368 +#: application/views/search/search_result_ajax.php:10 +#: application/views/station_profile/edit.php:256 +#: application/views/user/edit.php:235 application/views/user/edit.php:257 +#: application/views/user/edit.php:279 application/views/user/edit.php:301 +#: application/views/user/edit.php:324 +#: application/views/view_log/partial/log_ajax.php:10 +msgid "WWFF" +msgstr "" + +#: application/controllers/Awards.php:520 +#: application/controllers/Logbook.php:1291 +#: application/views/bands/index.php:52 +#: application/views/dashboard/index.php:11 +#: application/views/interface_assets/header.php:186 +#: application/views/logbookadvanced/edit.php:13 +#: application/views/logbookadvanced/index.php:274 +#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/qso/components/previous_contacts.php:84 +#: application/views/qso/edit_ajax.php:373 +#: application/views/search/search_result_ajax.php:11 +#: application/views/station_profile/edit.php:269 +#: application/views/user/edit.php:236 application/views/user/edit.php:258 +#: application/views/user/edit.php:280 application/views/user/edit.php:302 +#: application/views/user/edit.php:325 +#: application/views/view_log/partial/log_ajax.php:11 +msgid "POTA" +msgstr "" + +#: application/controllers/Awards.php:591 +msgid "CQ Magazine WAZ" +msgstr "" + +#: application/controllers/Awards.php:652 +#: application/views/accumulate/index.php:54 +#: application/views/timeline/index.php:45 +msgid "Worked All States (WAS)" +msgstr "" + +#: application/controllers/Awards.php:714 application/views/bands/index.php:53 +#: application/views/interface_assets/header.php:192 +msgid "RAC" +msgstr "" + +#: application/controllers/Awards.php:776 application/views/bands/index.php:49 +msgid "H26" +msgstr "" + +#: application/controllers/Awards.php:856 +msgid "IOTA (Island On The Air)" +msgstr "" + +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 +#: application/views/interface_assets/header.php:234 +msgid "US Counties" +msgstr "" + +#: application/controllers/Awards.php:896 +msgid "Log View - Counties" +msgstr "" + +#: application/controllers/Awards.php:903 +msgid "Awards - " +msgstr "" + +#: application/controllers/Awards.php:920 +#: application/controllers/Awards.php:952 +msgid "Gridsquares worked" +msgstr "" + +#: application/controllers/Awards.php:921 +#: application/controllers/Awards.php:953 +msgid "Gridsquares confirmed on LoTW" +msgstr "" + +#: application/controllers/Awards.php:922 +#: application/controllers/Awards.php:954 +msgid "Gridsquares confirmed by paper QSL" +msgstr "" + +#: application/controllers/Awards.php:939 +msgid "Fred Fish Memorial Award (FFMA)" +msgstr "" + +#: application/controllers/Awards.php:1140 +#: application/views/interface_assets/header.php:170 +#: application/views/logbookadvanced/useroptions.php:138 +msgid "SIG" +msgstr "" + +#: application/controllers/Awards.php:1158 +msgid "Awards - SIG - " +msgstr "" + +#: application/controllers/Awards.php:1779 +#: application/views/awards/itu/index.php:20 +msgid "ITU Zones" +msgstr "" + +#: application/controllers/Awards.php:1908 +#: application/views/awards/wac/index.php:8 +#: application/views/interface_assets/header.php:174 +msgid "Worked All Continents (WAC)" +msgstr "" + +#: application/controllers/Backup.php:15 application/views/backup/main.php:14 +#: application/views/interface_assets/header.php:284 +msgid "Backup" +msgstr "" + +#: application/controllers/Backup.php:50 +msgid "ADIF - Backup" +msgstr "" + +#: application/controllers/Backup.php:84 +msgid "Notes - Backup" +msgstr "" + +#: application/controllers/Band.php:25 application/views/bands/index.php:28 +#: application/views/bands/index.php:32 +#: application/views/interface_assets/header.php:383 +#: application/views/statistics/index.php:16 +#: application/views/statistics/index.php:56 +msgid "Bands" +msgstr "" + +#: application/controllers/Band.php:40 application/controllers/Mode.php:41 +msgid "Create Mode" +msgstr "" + +#: application/controllers/Band.php:59 application/views/bands/index.php:150 +msgid "Edit Band" +msgstr "" + +#: application/controllers/Bandmap.php:28 +#: application/controllers/Bandmap.php:69 +#: application/controllers/Options.php:145 +#: application/controllers/Options.php:156 +#: application/views/options/sidebar.php:10 +msgid "DXCluster" +msgstr "" + +#: application/controllers/Cabrillo.php:20 +msgid "Export Cabrillo" +msgstr "" + +#: application/controllers/Cfdexport.php:20 +#: application/views/interface_assets/header.php:402 +msgid "CFD Export" +msgstr "" + +#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12 +#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19 +#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14 +#: application/controllers/Update.php:16 +msgid "Maintenance Mode is active. Try again later." +msgstr "" + +#: application/controllers/Clublog.php:44 +#: application/controllers/Clublog.php:66 +msgid "No user has configured Clublog." +msgstr "" + +#: application/controllers/Contestcalendar.php:19 +#: application/views/interface_assets/header.php:251 +msgid "Contest Calendar" +msgstr "" + +#: application/controllers/Contesting.php:47 +#: application/views/contesting/index.php:3 +msgid "Contest Logging" +msgstr "" + +#: application/controllers/Contesting.php:113 +#: application/views/interface_assets/header.php:278 +msgid "Contests" +msgstr "" + +#: application/controllers/Contesting.php:127 +msgid "Update Contest" +msgstr "" + +#: application/controllers/Continents.php:25 +#: application/views/awards/dxcc/index.php:83 +#: application/views/awards/iota/index.php:57 +#: application/views/interface_assets/header.php:156 +msgid "Continents" +msgstr "" + +#: application/controllers/Cron.php:38 +#: application/views/interface_assets/header.php:288 +msgid "Cron Manager" +msgstr "" + +#: application/controllers/Cron.php:154 application/views/cron/edit.php:5 +msgid "Edit Cronjob" +msgstr "" + +#: application/controllers/Cron.php:274 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:278 +#, php-format +msgid "" +"Last run occurred more than %s seconds ago.%sPlease check your master cron! " +"It should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:281 +#, php-format +msgid "" +"Last run occurred more than %s minutes ago.%sSeems like your Mastercron " +"isn't running!%sIt should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:286 application/views/cron/index.php:29 +msgctxt "Master Cron" +msgid "Not running" +msgstr "" + +#: application/controllers/Csv.php:20 application/views/csv/index.php:3 +#: application/views/interface_assets/header.php:396 +msgid "SOTA CSV Export" +msgstr "" + +#: application/controllers/Dashboard.php:123 +#: application/controllers/Visitor.php:134 +msgid "Dashboard" +msgstr "" + +#: application/controllers/Dayswithqso.php:18 +msgid "Number of days with QSOs each year" +msgstr "" + +#: application/controllers/Debug.php:93 +msgid "Debug" +msgstr "" + +#: application/controllers/Debug.php:132 +msgid "Migrate data now" +msgstr "" + +#: application/controllers/Debug.php:135 +msgid "Migration already done. Run again?" +msgstr "" + +#: application/controllers/Debug.php:139 +msgid "No data to migrate" +msgstr "" + +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 +msgid "No migration possible" +msgstr "" + +#: application/controllers/Debug.php:213 +msgid "Wavelog was updated successfully!" +msgstr "" + +#: application/controllers/Debug.php:231 +msgid "Selfupdate() not available. Check the Error Log." +msgstr "" + +#: application/controllers/Debug.php:275 +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:278 +msgid "File Migration failed. Please check the Error Log." +msgstr "" + +#: application/controllers/Distancerecords.php:42 +#: application/controllers/Distancerecords.php:59 +#: application/views/interface_assets/header.php:146 +msgid "Satellite Distance Records" +msgstr "" + +#: application/controllers/Distances.php:17 +#: application/views/distances/index.php:5 +#: application/views/distances/index.php:8 +#: application/views/interface_assets/header.php:144 +msgid "Distances Worked" +msgstr "" + +#: application/controllers/Distances.php:83 +#: application/views/distances/index.php:15 +msgid "QSOs with" +msgstr "" + +#: application/controllers/Distances.php:83 +msgid "and band" +msgstr "" + +#: application/controllers/Distances.php:83 +msgid "and propagation" +msgstr "" + +#: application/controllers/Dxatlas.php:19 +#: application/views/interface_assets/header.php:394 +msgid "DX Atlas Gridsquare Export" +msgstr "" + +#: application/controllers/Dxcalendar.php:10 +#: application/views/interface_assets/header.php:249 +msgid "DX Calendar" +msgstr "" + +#: application/controllers/Eqsl.php:34 +#: application/views/dashboard/index.php:325 +#: application/views/eqslcard/index.php:5 +#: application/views/visitor/index.php:306 +msgid "eQSL Cards" +msgstr "" + +#: application/controllers/Eqsl.php:124 +msgid "eQSL Import" +msgstr "" + +#: application/controllers/Eqsl.php:134 +msgid "eQSL Import Information" +msgstr "" + +#: application/controllers/Eqsl.php:158 +msgid "eQSL QSO Upload" +msgstr "" + +#: application/controllers/Eqsl.php:424 +msgid "eQSL Tools" +msgstr "" + +#: application/controllers/Eqsl.php:472 +msgid " / Errors: " +msgstr "" + +#: application/controllers/Eqsl.php:472 +msgid "Successfully downloaded: " +msgstr "" + +#: application/controllers/Eqsl.php:481 +msgid "eQSL Card Image Download" +msgstr "" + +#: application/controllers/Gridmap.php:10 +#: application/views/interface_assets/header.php:138 +msgid "Gridsquare Map" +msgstr "" + +#: application/controllers/Gridmap.php:34 +#: application/controllers/Visitor.php:388 +msgid "Total gridsquares worked" +msgstr "" + +#: application/controllers/Hamsat.php:59 +msgid "Hamsat - Satellite Roving" +msgstr "" + +#: application/controllers/Hrdlog.php:71 +#, php-format +msgid "%d QSO is now uploaded to HRDlog" +msgid_plural "%d QSOs are now uploaded to HRDlog" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/controllers/Hrdlog.php:76 +msgid "No QSOs found to upload." +msgstr "" + +#: application/controllers/Kmlexport.php:24 +#: application/views/interface_assets/header.php:392 +#: application/views/kml/index.php:3 +msgid "KML Export" +msgstr "" + +#: application/controllers/Labels.php:40 application/views/labels/index.php:30 +msgid "QSL Card Labels" +msgstr "" + +#: application/controllers/Labels.php:71 +msgid "Create Label Type" +msgstr "" + +#: application/controllers/Labels.php:78 application/controllers/Labels.php:406 +#: application/views/labels/create.php:22 application/views/labels/edit.php:22 +msgid "Label Name" +msgstr "" + +#: application/controllers/Labels.php:79 application/controllers/Labels.php:407 +#: application/views/labels/create.php:28 application/views/labels/edit.php:28 +#: application/views/labels/index.php:76 +msgid "Paper Type" +msgstr "" + +#: application/controllers/Labels.php:80 application/controllers/Labels.php:408 +#: application/views/labels/index.php:42 application/views/labels/index.php:77 +msgid "Measurement" +msgstr "" + +#: application/controllers/Labels.php:81 application/controllers/Labels.php:409 +msgid "Top Margin" +msgstr "" + +#: application/controllers/Labels.php:82 application/controllers/Labels.php:410 +msgid "Left Margin" +msgstr "" + +#: application/controllers/Labels.php:83 application/controllers/Labels.php:411 +msgid "QSLs Horizontally" +msgstr "" + +#: application/controllers/Labels.php:84 application/controllers/Labels.php:412 +msgid "QSLs Vertically" +msgstr "" + +#: application/controllers/Labels.php:85 application/controllers/Labels.php:413 +msgid "Horizontal Space" +msgstr "" + +#: application/controllers/Labels.php:86 application/controllers/Labels.php:414 +msgid "Vertical Space" +msgstr "" + +#: application/controllers/Labels.php:87 application/controllers/Labels.php:415 +msgid "Label width" +msgstr "" + +#: application/controllers/Labels.php:88 application/controllers/Labels.php:416 +msgid "Label height" +msgstr "" + +#: application/controllers/Labels.php:89 application/controllers/Labels.php:417 +msgid "Size of Font" +msgstr "" + +#: application/controllers/Labels.php:90 application/controllers/Labels.php:418 +msgid "Number of QSOs on label" +msgstr "" + +#: application/controllers/Labels.php:115 +msgid "Create Paper Type" +msgstr "" + +#: application/controllers/Labels.php:119 +#: application/controllers/Labels.php:465 +msgid "Paper Name" +msgstr "" + +#: application/controllers/Labels.php:120 +#: application/controllers/Labels.php:466 +msgid "Paper Width" +msgstr "" + +#: application/controllers/Labels.php:121 +#: application/controllers/Labels.php:467 +msgid "Paper Height" +msgstr "" + +#: application/controllers/Labels.php:132 +#: application/controllers/Labels.php:475 +msgid "" +"Your paper could not be saved. Remember that it can't have the same name as " +"existing paper types." +msgstr "" + +#: application/controllers/Labels.php:205 +#: application/controllers/Labels.php:208 +msgid "You need to assign a paperType to the label before printing" +msgstr "" + +#: application/controllers/Labels.php:215 +#: application/controllers/Labels.php:218 +msgid "You need to create a label and set it to be used for print." +msgstr "" + +#: application/controllers/Labels.php:225 +#: application/controllers/Labels.php:228 +msgid "" +"Something went wrong! The label could not be generated. Check label size and " +"font size." +msgstr "" + +#: application/controllers/Labels.php:251 +msgid "0 QSOs found for print!" +msgstr "" + +#: application/controllers/Labels.php:395 +msgid "Edit Label" +msgstr "" + +#: application/controllers/Labels.php:424 +msgid "Label was saved." +msgstr "" + +#: application/controllers/Labels.php:432 +msgid "Label was deleted." +msgstr "" + +#: application/controllers/Labels.php:454 +msgid "Edit Paper" +msgstr "" + +#: application/controllers/Labels.php:479 +msgid "Paper was saved." +msgstr "" + +#: application/controllers/Labels.php:492 +msgid "Paper was deleted." +msgstr "" + +#: application/controllers/Logbook.php:37 +msgid "" +"No logbooks were found. You need to define a logbook under Station Logbooks! " +"Do it here:" +msgstr "" + +#: application/controllers/Logbook.php:37 +#: application/views/stationsetup/stationsetup.php:18 +msgid "Station Logbooks" +msgstr "" + +#: application/controllers/Logbook.php:60 +#: application/views/interface_assets/header.php:97 +#: application/views/logbookadvanced/useroptions.php:4 +#: application/views/view_log/index.php:11 +msgid "Logbook" +msgstr "" + +#: application/controllers/Logbook.php:657 +#: application/controllers/Logbook.php:672 +#: application/views/activated_gridmap/index.php:58 +#: application/views/awards/dok/index.php:55 +#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/helvetia/index.php:55 +#: application/views/awards/jcc/index.php:52 +#: application/views/awards/rac/index.php:47 +#: application/views/awards/vucc/band.php:15 +#: application/views/awards/wab/index.php:72 +#: application/views/awards/waja/index.php:55 +#: application/views/awards/was/index.php:55 +#: application/views/gridmap/index.php:101 +#: application/views/logbookadvanced/index.php:596 +#: application/views/logbookadvanced/useroptions.php:62 +#: application/views/oqrs/qsolist.php:12 +#: application/views/qslprint/qslprint.php:28 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:16 +#: application/views/qso/edit_ajax.php:37 application/views/qso/index.php:42 +#: application/views/search/result_search.php:13 +#: application/views/timeline/index.php:56 application/views/user/edit.php:562 +#: application/views/user/edit.php:649 +msgid "QSL" +msgstr "" + +#: application/controllers/Logbook.php:660 +#: application/views/activated_gridmap/index.php:66 +#: application/views/awards/cq/index.php:60 +#: application/views/awards/dok/index.php:59 +#: application/views/awards/dxcc/index.php:65 +#: application/views/awards/helvetia/index.php:59 +#: application/views/awards/itu/index.php:60 +#: application/views/awards/jcc/index.php:56 +#: application/views/awards/rac/index.php:51 +#: application/views/awards/vucc/band.php:16 +#: application/views/awards/wab/index.php:80 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:260 +#: application/views/gridmap/index.php:109 +#: application/views/logbookadvanced/useroptions.php:66 +#: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 +#: application/views/oqrs/qsolist.php:174 +#: application/views/qslprint/qsolist.php:21 +#: application/views/qslprint/qsolist.php:167 +#: application/views/qslprint/qsolist.php:182 +#: application/views/qso/edit_ajax.php:411 +#: application/views/search/result_search.php:22 +#: application/views/search/search_result_ajax.php:298 +#: application/views/search/search_result_ajax.php:313 +#: application/views/timeline/index.php:60 application/views/user/edit.php:563 +#: application/views/user/edit.php:659 application/views/view_log/qso.php:411 +msgid "LoTW" +msgstr "" + +#: application/controllers/Logbook.php:663 +#: application/views/activated_gridmap/index.php:74 +#: application/views/awards/cq/index.php:64 +#: application/views/awards/dok/index.php:63 +#: application/views/awards/dxcc/index.php:69 +#: application/views/awards/helvetia/index.php:63 +#: application/views/awards/itu/index.php:64 +#: application/views/awards/jcc/index.php:60 +#: application/views/awards/rac/index.php:55 +#: application/views/awards/wab/index.php:88 +#: application/views/awards/wac/index.php:52 +#: application/views/awards/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:260 +#: application/views/gridmap/index.php:117 +#: application/views/logbookadvanced/useroptions.php:70 +#: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:143 +#: application/views/qslprint/qsolist.php:18 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:151 +#: application/views/qso/edit_ajax.php:408 +#: application/views/search/result_search.php:16 +#: application/views/search/search_result_ajax.php:260 +#: application/views/search/search_result_ajax.php:273 +#: application/views/station_profile/edit.php:305 +#: application/views/timeline/index.php:64 application/views/user/edit.php:564 +#: application/views/user/edit.php:667 application/views/user/edit.php:731 +msgid "eQSL" +msgstr "" + +#: application/controllers/Logbook.php:669 +#: application/views/awards/dok/index.php:71 +#: application/views/awards/dxcc/index.php:77 +#: application/views/awards/jcc/index.php:68 +#: application/views/awards/wab/index.php:104 +#: application/views/awards/waja/index.php:71 +#: application/views/logbookadvanced/useroptions.php:74 +#: application/views/search/search_result_ajax.php:124 +#: application/views/station_profile/edit.php:352 +#: application/views/timeline/index.php:68 +#: application/views/update/index.php:20 application/views/user/edit.php:566 +#: application/views/user/edit.php:683 +#: application/views/view_log/partial/log_ajax.php:85 +#: application/views/view_log/qso.php:426 +msgid "Clublog" +msgstr "" + +#: application/controllers/Logbook.php:1284 +#: application/controllers/Radio.php:49 +#: application/views/accumulate/index.php:31 +#: application/views/activated_gridmap/index.php:39 +#: application/views/adif/dcl_success.php:33 +#: application/views/awards/cq/index.php:88 +#: application/views/awards/dok/index.php:91 +#: application/views/awards/dxcc/index.php:162 +#: application/views/awards/helvetia/index.php:87 +#: application/views/awards/iota/index.php:105 +#: application/views/awards/itu/index.php:88 +#: application/views/awards/jcc/index.php:88 +#: application/views/awards/rac/index.php:79 +#: application/views/awards/sig/qso_list.php:12 +#: application/views/awards/wab/index.php:53 +#: application/views/awards/wac/index.php:110 +#: application/views/awards/waja/index.php:91 +#: application/views/awards/was/index.php:87 +#: application/views/components/hamsat/table.php:30 +#: application/views/contesting/index.php:108 +#: application/views/contesting/index.php:250 +#: application/views/continents/index.php:39 application/views/csv/index.php:42 +#: application/views/dashboard/index.php:4 +#: application/views/debug/index.php:548 +#: 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/logbookadvanced/edit.php:11 +#: application/views/logbookadvanced/index.php:181 +#: application/views/logbookadvanced/index.php:572 +#: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/mode/index.php:28 +#: application/views/oqrs/notinlogform.php:11 +#: application/views/oqrs/qsolist.php:9 application/views/oqrs/request.php:18 +#: application/views/oqrs/request_grouped.php:11 +#: application/views/oqrs/showrequests.php:84 +#: application/views/public_search/result.php:15 +#: application/views/qslcard/index.php:29 +#: application/views/qslcard/searchresult.php:12 +#: application/views/qslcard/searchresult.php:28 +#: application/views/qslcard/searchresult.php:44 +#: application/views/qslcard/searchresult.php:60 +#: application/views/qslcard/searchresult.php:76 +#: application/views/qslprint/qslprint.php:24 +#: application/views/qslprint/qsolist.php:9 +#: application/views/qso/components/previous_contacts.php:77 +#: application/views/qso/edit_ajax.php:119 application/views/qso/index.php:136 +#: application/views/satellite/index.php:24 +#: application/views/search/cqzones_result.php:10 +#: application/views/search/lotw_unconfirmed_result.php:8 +#: application/views/search/result_search.php:7 +#: application/views/search/search_result_ajax.php:4 +#: application/views/simplefle/index.php:150 +#: application/views/statistics/custom.php:60 +#: application/views/statistics/custom_result.php:62 +#: application/views/statistics/custom_result.php:88 +#: application/views/statistics/index.php:15 +#: application/views/statistics/index.php:20 +#: application/views/statistics/index.php:53 +#: application/views/timeline/index.php:19 application/views/user/edit.php:229 +#: application/views/user/edit.php:251 application/views/user/edit.php:273 +#: application/views/user/edit.php:295 application/views/user/edit.php:318 +#: application/views/view_log/partial/log.php:9 +#: application/views/view_log/partial/log_ajax.php:4 +#: application/views/view_log/qso.php:107 application/views/visitor/index.php:6 +#: application/views/widgets/qsos.php:29 +msgid "Mode" +msgstr "" + +#: application/controllers/Logbook.php:1285 +#: application/views/awards/pota/index.php:36 +#: application/views/awards/wwff/index.php:36 +#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:251 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/useroptions.php:38 +#: application/views/qslcard/searchresult.php:13 +#: application/views/qslcard/searchresult.php:29 +#: application/views/qslcard/searchresult.php:45 +#: application/views/qslcard/searchresult.php:61 +#: application/views/qslcard/searchresult.php:77 +#: application/views/qslprint/qslprint.php:26 +#: application/views/qslprint/qsolist.php:11 +#: application/views/qso/components/previous_contacts.php:78 +#: application/views/qso/edit_ajax.php:142 application/views/qso/index.php:177 +#: application/views/search/search_result_ajax.php:5 +#: application/views/simplefle/index.php:151 +#: application/views/user/edit.php:230 application/views/user/edit.php:252 +#: application/views/user/edit.php:274 application/views/user/edit.php:296 +#: application/views/user/edit.php:319 +#: application/views/view_log/partial/log.php:10 +#: application/views/view_log/partial/log_ajax.php:5 +#: application/views/view_log/qso.php:112 application/views/visitor/index.php:9 +msgid "RST (S)" +msgstr "" + +#: application/controllers/Logbook.php:1286 +#: application/views/awards/pota/index.php:37 +#: application/views/awards/wwff/index.php:37 +#: application/views/contesting/index.php:189 +#: application/views/contesting/index.php:252 +#: application/views/logbookadvanced/index.php:578 +#: application/views/logbookadvanced/useroptions.php:42 +#: application/views/qslcard/searchresult.php:14 +#: application/views/qslcard/searchresult.php:30 +#: application/views/qslcard/searchresult.php:46 +#: application/views/qslcard/searchresult.php:62 +#: application/views/qslcard/searchresult.php:78 +#: application/views/qslprint/qslprint.php:27 +#: application/views/qslprint/qsolist.php:12 +#: application/views/qso/components/previous_contacts.php:79 +#: application/views/qso/edit_ajax.php:147 application/views/qso/index.php:182 +#: application/views/search/search_result_ajax.php:6 +#: application/views/simplefle/index.php:152 +#: application/views/user/edit.php:231 application/views/user/edit.php:253 +#: application/views/user/edit.php:275 application/views/user/edit.php:297 +#: application/views/user/edit.php:320 +#: application/views/view_log/partial/log.php:11 +#: application/views/view_log/partial/log_ajax.php:6 +#: application/views/view_log/qso.php:117 +#: application/views/visitor/index.php:12 +msgid "RST (R)" +msgstr "" + +#: application/controllers/Logbook.php:1287 +#: application/views/dashboard/index.php:7 +#: application/views/qslcard/searchresult.php:15 +#: application/views/qslcard/searchresult.php:31 +#: application/views/qslcard/searchresult.php:47 +#: application/views/qslcard/searchresult.php:63 +#: application/views/qslcard/searchresult.php:79 +#: application/views/qso/components/previous_contacts.php:80 +#: application/views/search/result_search.php:11 +#: application/views/search/search_result_ajax.php:7 +#: application/views/stationsetup/stationsetup.php:124 +#: application/views/statistics/custom_result.php:92 +#: application/views/timeline/index.php:151 application/views/user/edit.php:232 +#: application/views/user/edit.php:254 application/views/user/edit.php:276 +#: application/views/user/edit.php:298 application/views/user/edit.php:321 +#: application/views/view_log/partial/log.php:13 +#: application/views/view_log/partial/log_ajax.php:7 +#: application/views/view_log/qso.php:238 +#: application/views/view_log/qso.php:531 +#: application/views/visitor/index.php:15 +msgid "Country" +msgstr "" + +#: application/controllers/Logbook.php:1288 +#: application/views/awards/iota/index.php:169 +#: application/views/bands/index.php:50 application/views/dashboard/index.php:8 +#: application/views/interface_assets/header.php:184 +#: application/views/logbookadvanced/edit.php:9 +#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:620 +#: application/views/logbookadvanced/qslcarousel.php:38 +#: application/views/logbookadvanced/useroptions.php:102 +#: application/views/lookup/index.php:6 +#: application/views/qslcard/searchresult.php:16 +#: application/views/qslcard/searchresult.php:32 +#: application/views/qslcard/searchresult.php:48 +#: application/views/qslcard/searchresult.php:64 +#: application/views/qslcard/searchresult.php:80 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/edit_ajax.php:345 +#: application/views/search/search_result_ajax.php:8 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:235 application/views/user/edit.php:233 +#: application/views/user/edit.php:255 application/views/user/edit.php:277 +#: application/views/user/edit.php:299 application/views/user/edit.php:322 +#: application/views/view_log/partial/log_ajax.php:8 +#: application/views/visitor/index.php:18 +msgid "IOTA" +msgstr "" + +#: application/controllers/Logbook.php:1292 +#: application/views/awards/counties/details.php:12 +#: application/views/awards/counties/index.php:20 +#: application/views/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 +#: application/views/contesting/index.php:56 +#: application/views/dashboard/index.php:12 +#: application/views/logbookadvanced/edit.php:21 +#: application/views/logbookadvanced/edit.php:66 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:611 +#: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/qslcard/searchresult.php:18 +#: application/views/qslcard/searchresult.php:34 +#: application/views/qslcard/searchresult.php:50 +#: application/views/qslcard/searchresult.php:66 +#: application/views/qslcard/searchresult.php:82 +#: application/views/qso/components/previous_contacts.php:85 +#: application/views/search/search_result_ajax.php:12 +#: application/views/timeline/index.php:210 application/views/user/edit.php:237 +#: application/views/user/edit.php:259 application/views/user/edit.php:281 +#: application/views/user/edit.php:303 application/views/user/edit.php:326 +#: application/views/view_log/partial/log_ajax.php:12 +#: application/views/visitor/index.php:24 +msgid "State" +msgstr "" + +#: application/controllers/Logbook.php:1293 +#: application/views/activated_gridmap/index.php:106 +#: application/views/awards/ffma/index.php:34 +#: application/views/awards/gridmaster/index.php:33 +#: application/views/awards/vucc/band.php:12 +#: application/views/contesting/index.php:17 +#: application/views/contesting/index.php:257 +#: application/views/dashboard/index.php:13 +#: application/views/distancerecords/index.php:20 +#: application/views/gridmap/index.php:152 +#: application/views/labels/index.php:125 +#: application/views/logbookadvanced/edit.php:8 +#: application/views/logbookadvanced/index.php:10 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/qslcarousel.php:39 +#: application/views/logbookadvanced/useroptions.php:126 +#: application/views/lookup/index.php:5 +#: application/views/qslcard/searchresult.php:19 +#: application/views/qslcard/searchresult.php:35 +#: application/views/qslcard/searchresult.php:51 +#: application/views/qslcard/searchresult.php:67 +#: application/views/qslcard/searchresult.php:83 +#: application/views/qso/components/previous_contacts.php:86 +#: application/views/qso/edit_ajax.php:156 application/views/qso/index.php:279 +#: application/views/satellite/pass.php:28 +#: application/views/search/cqzones_result.php:12 +#: application/views/search/result.php:33 +#: application/views/search/search_result_ajax.php:13 +#: application/views/simplefle/index.php:153 +#: application/views/stationsetup/stationsetup.php:125 +#: application/views/timeline/index.php:290 application/views/user/edit.php:130 +#: application/views/user/edit.php:238 application/views/user/edit.php:260 +#: application/views/user/edit.php:282 application/views/user/edit.php:304 +#: application/views/user/edit.php:327 application/views/user/profile.php:34 +#: application/views/view_log/partial/log_ajax.php:13 +#: application/views/view_log/qso.php:518 +#: application/views/visitor/index.php:27 +msgid "Gridsquare" +msgstr "" + +#: application/controllers/Logbook.php:1294 +#: application/views/activated_gridmap/index.php:108 +#: application/views/awards/ffma/index.php:36 +#: application/views/awards/gridmaster/index.php:35 +#: 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/logbookadvanced/index.php:12 +#: application/views/qslcard/searchresult.php:20 +#: application/views/qslcard/searchresult.php:36 +#: application/views/qslcard/searchresult.php:52 +#: application/views/qslcard/searchresult.php:68 +#: application/views/qslcard/searchresult.php:84 +#: application/views/qso/components/previous_contacts.php:87 +#: application/views/search/search_result_ajax.php:14 +#: application/views/user/edit.php:239 application/views/user/edit.php:261 +#: application/views/user/edit.php:283 application/views/user/edit.php:305 +#: application/views/user/edit.php:328 +#: application/views/view_log/partial/log_ajax.php:14 +#: application/views/visitor/index.php:30 +msgid "Distance" +msgstr "" + +#: application/controllers/Logbook.php:1295 +#: application/views/accumulate/index.php:21 +#: application/views/activated_gridmap/index.php:8 +#: application/views/activators/index.php:10 +#: application/views/adif/dcl_success.php:32 +#: application/views/awards/cq/index.php:74 +#: application/views/awards/dok/index.php:77 +#: application/views/awards/dxcc/index.php:117 +#: application/views/awards/helvetia/index.php:73 +#: application/views/awards/iota/index.php:91 +#: application/views/awards/itu/index.php:74 +#: application/views/awards/jcc/index.php:74 +#: application/views/awards/pota/index.php:35 +#: application/views/awards/rac/index.php:65 +#: application/views/awards/sig/qso_list.php:13 +#: application/views/awards/sota/index.php:26 +#: application/views/awards/vucc/index.php:21 +#: application/views/awards/wab/index.php:22 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/waja/index.php:77 +#: application/views/awards/was/index.php:73 +#: application/views/awards/wwff/index.php:35 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 +#: application/views/bands/create.php:24 application/views/bands/edit.php:6 +#: application/views/bands/index.php:45 +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:249 +#: application/views/continents/index.php:30 application/views/csv/index.php:31 +#: application/views/dashboard/index.php:15 +#: application/views/debug/index.php:549 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/logbookadvanced/edit.php:3 +#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/oqrs/notinlogform.php:10 +#: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 +#: application/views/oqrs/request_grouped.php:10 +#: application/views/oqrs/showrequests.php:83 +#: application/views/public_search/result.php:16 +#: application/views/qslcard/index.php:32 +#: application/views/qslcard/searchresult.php:21 +#: application/views/qslcard/searchresult.php:37 +#: application/views/qslcard/searchresult.php:39 +#: application/views/qslcard/searchresult.php:53 +#: application/views/qslcard/searchresult.php:69 +#: application/views/qslcard/searchresult.php:85 +#: application/views/qslmanagement/index.php:24 +#: application/views/qslprint/qslprint.php:25 +#: application/views/qslprint/qsolist.php:10 +#: application/views/qso/components/previous_contacts.php:88 +#: application/views/qso/edit_ajax.php:83 application/views/qso/index.php:151 +#: application/views/search/cqzones_result.php:11 +#: application/views/search/lotw_unconfirmed_result.php:9 +#: application/views/search/result_search.php:10 +#: application/views/search/search_result_ajax.php:15 +#: application/views/simplefle/index.php:149 +#: application/views/stationsetup/exportmapoptions.php:31 +#: application/views/statistics/custom.php:53 +#: application/views/statistics/custom_result.php:55 +#: application/views/statistics/custom_result.php:91 +#: application/views/statistics/index.php:21 +#: application/views/timeline/index.php:7 +#: application/views/timeplotter/index.php:14 +#: application/views/user/edit.php:227 application/views/user/edit.php:249 +#: application/views/user/edit.php:271 application/views/user/edit.php:293 +#: application/views/user/edit.php:316 +#: application/views/view_log/partial/log.php:12 +#: application/views/view_log/partial/log_ajax.php:15 +#: application/views/view_log/qso.php:87 application/views/visitor/index.php:33 +#: application/views/widgets/qsos.php:32 +msgid "Band" +msgstr "" + +#: application/controllers/Logbook.php:1296 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 +#: application/views/contesting/index.php:138 +#: application/views/dashboard/index.php:16 +#: application/views/qslcard/searchresult.php:22 +#: application/views/qslcard/searchresult.php:38 +#: application/views/qslcard/searchresult.php:54 +#: application/views/qslcard/searchresult.php:70 +#: application/views/qslcard/searchresult.php:86 +#: application/views/qso/components/previous_contacts.php:89 +#: application/views/qso/edit_ajax.php:71 application/views/qso/index.php:169 +#: application/views/search/search_result_ajax.php:16 +#: application/views/user/edit.php:228 application/views/user/edit.php:250 +#: application/views/user/edit.php:272 application/views/user/edit.php:294 +#: application/views/user/edit.php:317 +#: application/views/view_log/partial/log_ajax.php:16 +#: application/views/view_log/qso.php:94 application/views/visitor/index.php:36 +msgid "Frequency" +msgstr "" + +#: application/controllers/Logbook.php:1297 +#: application/views/dashboard/index.php:17 +#: application/views/logbookadvanced/edit.php:12 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:626 +#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/qslcard/searchresult.php:23 +#: application/views/qslcard/searchresult.php:55 +#: application/views/qslcard/searchresult.php:71 +#: application/views/qslcard/searchresult.php:87 +#: application/views/qso/components/previous_contacts.php:90 +#: application/views/search/search_result_ajax.php:17 +#: application/views/simplefle/index.php:112 +#: application/views/user/edit.php:240 application/views/user/edit.php:262 +#: application/views/user/edit.php:284 application/views/user/edit.php:306 +#: application/views/user/edit.php:329 +#: application/views/view_log/partial/log_ajax.php:17 +#: application/views/view_log/qso.php:538 +#: application/views/visitor/index.php:39 +msgid "Operator" +msgstr "" + +#: application/controllers/Logbook.php:1318 +#: application/controllers/Stationsetup.php:381 +#: application/views/awards/dxcc/index.php:28 +#: application/views/awards/dxcc/index.php:238 +#: application/views/csv/index.php:65 application/views/dashboard/index.php:28 +#: application/views/dxatlas/index.php:65 +#: application/views/interface_assets/footer.php:675 +#: application/views/kml/index.php:54 +#: application/views/logbookadvanced/index.php:165 +#: application/views/lookup/index.php:31 +#: application/views/lotw_views/index.php:52 +#: application/views/qso/components/previous_contacts.php:59 +#: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:45 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/timeline/index.php:167 +#: application/views/timeplotter/index.php:33 +#: application/views/view_log/partial/log_ajax.php:29 +#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:532 +msgid "Deleted DXCC" +msgstr "" + +#: application/controllers/Logbookadvanced.php:31 +msgid "Advanced logbook" +msgstr "" + +#: application/controllers/Lookup.php:22 +msgid "Quick Lookup" +msgstr "" + +#: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83 +#: application/controllers/Lotw.php:125 application/views/adif/import.php:27 +#: application/views/interface_assets/header.php:429 +#: application/views/lotw/import.php:3 +#: application/views/lotw_views/index.php:12 +#: application/views/lotw_views/upload_cert.php:3 +#: application/views/user/edit.php:705 application/views/visitor/index.php:324 +msgid "Logbook of the World" +msgstr "" + +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "" + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "" + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "" + +#: application/controllers/Lotw.php:413 +#, 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:617 +msgid "LoTW ADIF Information" +msgstr "" + +#: application/controllers/Lotw.php:725 +msgid "LoTW ADIF Import" +msgstr "" + +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "" + +#: application/controllers/Lotw.php:837 +msgid "LoTW .TQ8 Upload" +msgstr "" + +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "" + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 +msgid "LoTW .TQ8 Sent" +msgstr "" + +#: application/controllers/Lotw.php:946 +msgid "LoTW .TQ8 Not Sent" +msgstr "" + +#: application/controllers/Mode.php:25 +#: application/views/interface_assets/header.php:276 +#: application/views/mode/index.php:15 +msgid "Modes" +msgstr "" + +#: application/controllers/Mode.php:62 +msgid "Edit Mode" +msgstr "" + +#: application/controllers/Notes.php:18 +#: application/views/interface_assets/header.php:128 +#: application/views/notes/add.php:9 application/views/notes/edit.php:10 +#: application/views/notes/main.php:5 application/views/notes/main.php:8 +#: application/views/notes/view.php:6 application/views/notes/view.php:9 +#: application/views/qso/edit_ajax.php:36 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:38 +#: application/views/qso/index.php:563 application/views/qso/index.php:608 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:593 +msgid "Notes" +msgstr "" + +#: application/controllers/Notes.php:37 +msgid "Add Notes" +msgstr "" + +#: application/controllers/Notes.php:64 +#: application/views/oqrs/showrequests.php:88 +msgid "Note" +msgstr "" + +#: application/controllers/Notes.php:92 application/views/notes/edit.php:7 +#: application/views/notes/view.php:19 +msgid "Edit Note" +msgstr "" + +#: application/controllers/Options.php:31 +#: application/controllers/Options.php:41 +#: application/controllers/Options.php:56 +#: application/controllers/Options.php:144 +#: application/controllers/Options.php:155 +#: application/controllers/Options.php:192 +#: application/controllers/Options.php:203 +#: application/controllers/Options.php:236 +#: application/controllers/Options.php:247 +#: application/controllers/Options.php:317 +#: application/controllers/Options.php:327 +#: application/controllers/Options.php:395 +#: application/controllers/Options.php:405 +msgid "Wavelog Options" +msgstr "" + +#: application/controllers/Options.php:42 +#: application/controllers/Options.php:57 +#: application/views/options/sidebar.php:4 +msgid "Appearance" +msgstr "" + +#: application/controllers/Options.php:78 +#: application/controllers/Options.php:86 +#: application/controllers/Options.php:94 +#: application/controllers/Options.php:102 +#: application/controllers/Options.php:110 +#: application/controllers/Options.php:118 +#: application/controllers/Options.php:126 +#: application/controllers/Options.php:134 +msgid "Options saved" +msgstr "" + +#: application/controllers/Options.php:173 +msgid "de continent changed to " +msgstr "" + +#: application/controllers/Options.php:178 +msgid "Maximum age of spots changed to " +msgstr "" + +#: application/controllers/Options.php:183 +msgid "DXCluster Cache URL changed to " +msgstr "" + +#: application/controllers/Options.php:193 +#: application/controllers/Options.php:204 +msgid "Radio Settings" +msgstr "" + +#: application/controllers/Options.php:225 +msgid "Radio Timeout Warning changed to " +msgstr "" + +#: application/controllers/Options.php:237 +#: application/controllers/Options.php:248 +#: application/views/options/sidebar.php:6 +msgid "Email" +msgstr "" + +#: application/controllers/Options.php:305 +msgid "The settings were saved successfully." +msgstr "" + +#: application/controllers/Options.php:307 +msgid "Something went wrong with saving the settings. Try again." +msgstr "" + +#: application/controllers/Options.php:318 +#: application/controllers/Options.php:328 +#: application/views/options/sidebar.php:8 +msgid "OQRS Options" +msgstr "" + +#: application/controllers/Options.php:341 +msgid "OQRS options have been saved." +msgstr "" + +#: application/controllers/Options.php:381 +#: application/controllers/Options.php:386 +msgid "Testmail failed. Something went wrong." +msgstr "" + +#: application/controllers/Options.php:383 +msgid "Testmail sent. Email settings seem to be correct." +msgstr "" + +#: application/controllers/Options.php:396 +#: application/controllers/Options.php:406 +msgid "Version Info Settings" +msgstr "" + +#: application/controllers/Options.php:412 +msgid "Version Info Header changed to" +msgstr "" + +#: application/controllers/Options.php:416 +msgid "Version Info Mode changed to" +msgstr "" + +#: application/controllers/Options.php:421 +msgid "Version Info Custom Text saved!" +msgstr "" + +#: application/controllers/Options.php:432 +msgid "Version Info will be shown to all users again" +msgstr "" + +#: application/controllers/Options.php:440 +msgid "Version Info will not be shown to any user" +msgstr "" + +#: application/controllers/Oqrs.php:46 application/controllers/Oqrs.php:85 +#: application/controllers/Oqrs.php:97 +msgid "Log Search & OQRS" +msgstr "" + +#: application/controllers/Oqrs.php:127 +#: application/views/interface_assets/header.php:419 +msgid "OQRS Requests" +msgstr "" + +#: application/controllers/Qrbcalc.php:17 +msgid "QRB Calculator" +msgstr "" + +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "" + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" + +#: application/controllers/Qrz.php:173 +#: application/views/interface_assets/header.php:432 +msgid "QRZ Logbook" +msgstr "" + +#: application/controllers/Qrz.php:253 +msgid "QRZ QSL Import" +msgstr "" + +#: application/controllers/Qrz.php:307 +msgid "QRZ ADIF Information" +msgstr "" + +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:277 +#: application/views/qslcard/index.php:5 +#: application/views/visitor/index.php:283 +msgid "QSL Cards" +msgstr "" + +#: application/controllers/Qsl.php:35 +msgid "Upload QSL Cards" +msgstr "" + +#: application/controllers/Qslmanagement.php:14 +msgid "QSL Card Management" +msgstr "" + +#: application/controllers/Qslprint.php:46 +msgid "Print Requested QSLs" +msgstr "" + +#: application/controllers/Qso.php:102 +msgid "Add QSO" +msgstr "" + +#: application/controllers/Radio.php:17 +#: application/views/interface_assets/header.php:438 +msgid "Hardware Interfaces" +msgstr "" + +#: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 +#: application/views/bandmap/list.php:60 +#: application/views/contesting/index.php:143 +#: application/views/qso/index.php:312 +msgid "Radio" +msgstr "" + +#: application/controllers/Radio.php:50 +msgid "Timestamp" +msgstr "" + +#: application/controllers/Radio.php:52 +#: application/views/logbookadvanced/index.php:550 +#: application/views/lotw_views/index.php:43 +#: application/views/simplefle/index.php:20 +#: application/views/simplefle/index.php:177 +#: application/views/stationsetup/exportmapoptions.php:5 +#: application/views/statistics/custom.php:31 +#: application/views/statistics/custom_result.php:33 +msgid "Options" +msgstr "" + +#: application/controllers/Radio.php:90 +#: application/views/contesting/index.php:147 +#: application/views/qso/index.php:316 +msgid "last updated" +msgstr "" + +#: application/controllers/Radio.php:97 application/controllers/Radio.php:100 +msgid "Set as default radio" +msgstr "" + +#: application/controllers/Radio.php:102 +msgid "Default (click to release)" +msgstr "" + +#: application/controllers/Radio.php:105 +#: application/controllers/Stationsetup.php:372 +#: application/views/api/help.php:61 application/views/contesting/add.php:62 +#: application/views/interface_assets/footer.php:2337 +#: application/views/interface_assets/footer.php:2355 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:542 +#: application/views/lotw_views/index.php:114 +#: application/views/mode/index.php:55 +#: application/views/oqrs/showrequests.php:71 +#: application/views/qslcard/index.php:65 +#: application/views/satellite/edit.php:40 +#: application/views/satellite/index.php:26 +#: application/views/search/stored_queries.php:22 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:192 +#: application/views/themes/index.php:107 application/views/user/index.php:57 +#: application/views/view_log/qso.php:616 +msgid "Delete" +msgstr "" + +#: application/controllers/Radio.php:111 +msgid "No CAT interfaced radios found." +msgstr "" + +#: application/controllers/Reg1test.php:25 +msgid "Export EDI" +msgstr "" + +#: application/controllers/Satellite.php:39 +msgid "Create Satellite" +msgstr "" + +#: application/controllers/Satellite.php:66 +msgid "Edit Satellite" +msgstr "" + +#: application/controllers/Sattimers.php:41 +#, php-format +msgid "You have no station locations. Go %s to create it!" +msgstr "" + +#: application/controllers/Sattimers.php:41 +#: application/views/awards/counties/index.php:8 +#: application/views/awards/dok/index.php:10 +#: application/views/awards/iota/index.php:19 +#: application/views/awards/was/index.php:23 +#: application/views/simplefle/index.php:16 +msgid "here" +msgstr "" + +#: application/controllers/Sattimers.php:44 +#: application/views/sattimers/index.php:13 +msgid "Satellite Timers" +msgstr "" + +#: application/controllers/Search.php:19 +#: application/views/continents/index.php:49 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:340 +#: application/views/interface_assets/header.php:347 +#: application/views/logbookadvanced/index.php:538 +#: application/views/oqrs/index.php:28 +#: application/views/oqrs/showrequests.php:67 +#: application/views/qslcard/searchform.php:8 +#: application/views/search/cqzones.php:4 +#: application/views/search/cqzones.php:12 +#: application/views/search/cqzones.php:36 +#: application/views/search/filter.php:20 +#: application/views/search/filter.php:38 +#: application/views/search/lotw_unconfirmed.php:4 +#: application/views/search/lotw_unconfirmed.php:12 +#: application/views/search/lotw_unconfirmed.php:37 +#: application/views/search/main.php:4 application/views/search/main.php:12 +#: application/views/search/main.php:33 +#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:98 +msgid "Search" +msgstr "" + +#: application/controllers/Search.php:28 +msgid "Search & Filter Logbook" +msgstr "" + +#: application/controllers/Search.php:58 +msgid "Incorrectly logged CQ zones" +msgstr "" + +#: application/controllers/Search.php:70 +msgid "" +"QSOs unconfirmed on LoTW, but the callsign has uploaded to LoTW after QSO " +"date" +msgstr "" + +#: application/controllers/Station.php:36 +#: application/controllers/Stationsetup.php:226 +msgid "Create Station Location" +msgstr "" + +#: application/controllers/Station.php:51 +msgid "Edit Station Location: " +msgstr "" + +#: application/controllers/Station.php:59 application/views/csv/index.php:19 +#: application/views/dxatlas/index.php:19 +#: application/views/labels/index.php:124 +#: application/views/logbookadvanced/edit.php:19 +#: application/views/qslprint/index.php:20 application/views/qso/index.php:300 +#: application/views/search/search_result_ajax.php:18 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 +#: application/views/user/edit.php:331 +#: application/views/view_log/partial/log_ajax.php:18 +#: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 +#: application/views/webadif/export.php:115 +msgid "Station Location" +msgstr "" + +#: application/controllers/Station.php:73 +msgid "Duplicate Station Location:" +msgstr "" + +#: application/controllers/Stationsetup.php:35 +#: application/views/interface_assets/header.php:381 +#: application/views/interface_assets/header.php:494 +msgid "Station Setup" +msgstr "" + +#: application/controllers/Stationsetup.php:50 +#: application/controllers/Stationsetup.php:68 +#: application/controllers/Stationsetup.php:395 +#: application/controllers/Stationsetup.php:409 +msgid "Not allowed" +msgstr "" + +#: application/controllers/Stationsetup.php:72 +#: application/controllers/Stationsetup.php:86 +#: application/controllers/Stationsetup.php:105 +#: application/controllers/Stationsetup.php:118 +#: application/controllers/Stationsetup.php:131 +#: application/controllers/Stationsetup.php:152 +#: application/controllers/Stationsetup.php:436 +#: application/views/qso/index.php:630 +msgid "Error" +msgstr "" + +#: application/controllers/Stationsetup.php:159 +#: application/views/stationsetup/stationsetup.php:22 +msgid "Create Station Logbook" +msgstr "" + +#: application/controllers/Stationsetup.php:166 +msgid "Edit container name" +msgstr "" + +#: application/controllers/Stationsetup.php:181 +msgid "Edit linked locations" +msgstr "" + +#: application/controllers/Stationsetup.php:190 +msgid "Edit visitor site" +msgstr "" + +#: application/controllers/Stationsetup.php:212 +msgid "Error. Link is already in use!" +msgstr "" + +#: application/controllers/Stationsetup.php:253 +#: application/views/options/appearance.php:57 +#: application/views/options/appearance.php:64 +#: application/views/options/appearance.php:73 +#: application/views/options/appearance.php:83 +#: application/views/options/appearance.php:92 +#: application/views/options/appearance.php:101 +#: application/views/options/appearance.php:110 +#: application/views/options/version_dialog.php:66 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 +#: application/views/stationsetup/stationsetup.php:76 +#: application/views/user/edit.php:451 application/views/user/edit.php:460 +msgid "Disabled" +msgstr "" + +#: application/controllers/Stationsetup.php:261 +#: application/views/stationsetup/stationsetup.php:44 +msgid "Set as Active Logbook" +msgstr "" + +#: application/controllers/Stationsetup.php:263 +#: application/views/interface_assets/header.php:492 +#: application/views/stationsetup/stationsetup.php:46 +#: application/views/view_log/index.php:4 +msgid "Active Logbook" +msgstr "" + +#: application/controllers/Stationsetup.php:270 +#: application/views/stationsetup/stationsetup.php:55 +msgid "" +"Are you sure you want to delete the following station logbook? You must re-" +"link any locations linked here to another logbook.: " +msgstr "" + +#: application/controllers/Stationsetup.php:280 +#: application/views/stationsetup/stationsetup.php:65 +msgid "View Public Page for Logbook: " +msgstr "" + +#: application/controllers/Stationsetup.php:281 +msgid "Are you sure you want to delete the public slug?" +msgstr "" + +#: application/controllers/Stationsetup.php:349 +#: application/views/stationsetup/stationsetup.php:154 +msgid "" +"Are you sure you want to make the following station the active station: " +msgstr "" + +#: application/controllers/Stationsetup.php:349 +#: application/views/stationsetup/stationsetup.php:154 +msgid "Set Active" +msgstr "" + +#: application/controllers/Stationsetup.php:351 +#: application/views/stationsetup/stationsetup.php:156 +msgid "Active Station" +msgstr "" + +#: application/controllers/Stationsetup.php:354 +#: application/views/interface_assets/header.php:113 +#: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 +#: application/views/simplefle/index.php:28 +#: application/views/stationsetup/stationsetup.php:161 +#: application/views/user/index.php:90 application/views/user/index.php:92 +msgid "QSO" +msgstr "" + +#: application/controllers/Stationsetup.php:359 +#: application/views/api/help.php:57 application/views/contesting/add.php:59 +#: application/views/cron/index.php:58 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 +#: application/views/labels/index.php:47 application/views/labels/index.php:83 +#: application/views/logbookadvanced/index.php:541 +#: application/views/mode/index.php:52 application/views/satellite/edit.php:39 +#: application/views/satellite/index.php:25 +#: application/views/search/stored_queries.php:21 +#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:165 +#: application/views/themes/index.php:104 application/views/user/index.php:52 +msgid "Edit" +msgstr "" + +#: application/controllers/Stationsetup.php:363 +#: application/views/stationsetup/stationsetup.php:185 +msgid "Are you sure you want to delete all QSOs within this station profile?" +msgstr "" + +#: application/controllers/Stationsetup.php:363 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:187 +msgid "Empty Log" +msgstr "" + +#: application/controllers/Stationsetup.php:367 +#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:168 +msgid "Copy" +msgstr "" + +#: application/controllers/Stationsetup.php:372 +#: application/views/stationsetup/stationsetup.php:191 +#, php-format +msgid "" +"Are you sure you want delete station profile '%s'? This will delete all QSOs " +"within this station profile." +msgstr "" + +#: application/controllers/Stationsetup.php:379 +#: application/views/qso/edit_ajax.php:221 +msgid "NONE" +msgstr "" + +#: application/controllers/Stationsetup.php:462 +msgid "Edit Export Map options" +msgstr "" + +#: application/controllers/Statistics.php:27 +#: application/views/interface_assets/header.php:134 +msgid "Statistics" +msgstr "" + +#: application/controllers/Statistics.php:50 +msgid "Custom Statistics" +msgstr "" + +#: application/controllers/Statistics.php:232 +#: application/views/interface_assets/header.php:136 +#: application/views/statistics/qsltable.php:5 +msgid "QSL Statistics" +msgstr "" + +#: application/controllers/Themes.php:27 +#: application/views/interface_assets/header.php:282 +msgid "Themes" +msgstr "" + +#: application/controllers/Themes.php:46 +msgid "Create Theme" +msgstr "" + +#: application/controllers/Themes.php:65 +msgid "Edit Theme" +msgstr "" + +#: application/controllers/Timeline.php:15 +#: application/views/interface_assets/header.php:150 +#: application/views/timeline/index.php:2 +msgid "Timeline" +msgstr "" + +#: application/controllers/Timeplotter.php:17 +#: application/views/interface_assets/header.php:154 +#: application/views/timeplotter/index.php:9 +msgid "Timeplotter" +msgstr "" + +#: application/controllers/Update.php:26 +msgid "Updates" +msgstr "" + +#: application/controllers/Update.php:78 +msgid "Preparing DXCC-Entries: " +msgstr "" + +#: application/controllers/Update.php:122 +msgid "Preparing DXCC Exceptions: " +msgstr "" + +#: application/controllers/Update.php:166 +msgid "Preparing DXCC Prefixes: " +msgstr "" + +#: application/controllers/Update.php:230 +msgid "DONE" +msgstr "" + +#: application/controllers/Update.php:244 +msgid "Updating..." +msgstr "" + +#: application/controllers/Update.php:247 +msgid "Dxcc Entities:" +msgstr "" + +#: application/controllers/Update.php:248 +msgid "Dxcc Exceptions:" +msgstr "" + +#: application/controllers/Update.php:249 +msgid "Dxcc Prefixes:" +msgstr "" + +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:272 +msgid "User Accounts" +msgstr "" + +#: application/controllers/User.php:76 +msgid "Add User" +msgstr "" + +#: application/controllers/User.php:190 +msgid "Users" +msgstr "" + +#: application/controllers/User.php:264 application/controllers/User.php:697 +msgid "Edit User" +msgstr "" + +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 +msgid "User" +msgstr "" + +#: application/controllers/User.php:689 application/controllers/User.php:692 +msgid "edited" +msgstr "" + +#: application/controllers/User.php:746 +msgid "Profile" +msgstr "" + +#: application/controllers/User.php:803 +msgid "" +"Congrats! Wavelog was successfully installed. You can now login for the " +"first time." +msgstr "" + +#: application/controllers/User.php:867 application/controllers/User.php:877 +msgid "Login failed. Try again." +msgstr "" + +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:360 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:87 +msgid "Login" +msgstr "" + +#: application/controllers/User.php:922 +msgid "" +"Sorry. This instance is currently in maintenance mode. If this message " +"appears unexpectedly or keeps showing up, please contact an administrator. " +"Only administrators are currently allowed to log in." +msgstr "" + +#: application/controllers/User.php:925 +msgid "Incorrect username or password!" +msgstr "" + +#: application/controllers/User.php:942 +#, php-format +msgid "User %s logged out." +msgstr "" + +#: application/controllers/User.php:956 +msgid "Password Reset is disabled on the Demo!" +msgstr "" + +#: application/controllers/User.php:969 +msgid "Forgot Password" +msgstr "" + +#: application/controllers/User.php:1019 application/views/user/index.php:8 +msgid "Email settings are incorrect." +msgstr "" + +#: application/controllers/User.php:1023 application/controllers/User.php:1028 +msgid "Password Reset Processed." +msgstr "" + +#: application/controllers/User.php:1129 +#: application/views/user/forgot_password.php:51 +#: application/views/user/reset_password.php:8 +#: application/views/user/reset_password.php:35 +msgid "Reset Password" +msgstr "" + +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "" + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "" + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "" + +#: application/controllers/Visitor.php:50 +#: application/controllers/Visitor.php:81 +#: application/controllers/Visitor.php:148 +#: application/controllers/Visitor.php:175 +#: application/controllers/Visitor.php:210 +#: application/controllers/Visitor.php:472 +#: application/controllers/Widgets.php:40 +msgid "Unknown Public Page." +msgstr "" + +#: application/controllers/Visitor.php:76 +#: application/controllers/Visitor.php:171 +#: application/controllers/Visitor.php:206 +#: application/controllers/Visitor.php:468 +#: application/controllers/Widgets.php:36 +msgid "Empty Logbook" +msgstr "" + +#: application/controllers/Visitor.php:216 +msgid "Satellite Gridsquare Map" +msgstr "" + +#: application/controllers/Visitor.php:405 +#: application/views/stationsetup/stationsetup.php:35 +msgid "Public Search" +msgstr "" + +#: application/controllers/Visitor.php:438 +msgid "Export Map" +msgstr "" + +#: application/controllers/Webadif.php:90 +#: application/controllers/Webadif.php:137 +#: application/views/interface_assets/header.php:433 +msgid "QO-100 Dx Club Upload" +msgstr "" + +#: application/controllers/Widgets.php:21 +msgid "Unknown Public Page, please make sure the public slug is correct." +msgstr "" + +#: application/controllers/Widgets.php:54 application/views/oqrs/index.php:69 +msgid "No stations found that are using Wavelog OQRS." +msgstr "" + +#: application/libraries/Subdivisions.php:31 +msgctxt "Division Name (States in various countries)." +msgid "Province" +msgstr "" + +#: application/libraries/Subdivisions.php:39 +msgctxt "Division Name (States in various countries)." +msgid "Oblast" +msgstr "" + +#: application/libraries/Subdivisions.php:41 +#: application/libraries/Subdivisions.php:47 +msgctxt "Division Name (States in various countries)." +msgid "Region" +msgstr "" + +#: application/libraries/Subdivisions.php:45 +msgctxt "Division Name (States in various countries)." +msgid "Department" +msgstr "" + +#: application/libraries/Subdivisions.php:49 +msgctxt "Division Name (States in various countries)." +msgid "Municipality" +msgstr "" + +#: application/libraries/Subdivisions.php:51 +msgctxt "Division Name (States in various countries)." +msgid "Federal State" +msgstr "" + +#: application/libraries/Subdivisions.php:56 +#: application/libraries/Subdivisions.php:94 +msgctxt "Division Name (States in various countries)." +msgid "County" +msgstr "" + +#: application/libraries/Subdivisions.php:60 +#: application/libraries/Subdivisions.php:85 +msgctxt "Division Name (States in various countries)." +msgid "District" +msgstr "" + +#: application/libraries/Subdivisions.php:62 +msgctxt "Division Name (States in various countries)." +msgid "Canton" +msgstr "" + +#: application/libraries/Subdivisions.php:64 +msgctxt "Division Name (States in various countries)." +msgid "US State" +msgstr "" + +#: application/libraries/Subdivisions.php:67 +msgctxt "Division Name (States in various countries)." +msgid "Prefecture" +msgstr "" + +#: application/libraries/Subdivisions.php:69 +msgctxt "Division Name (States in various countries)." +msgid "State" +msgstr "" + +#: application/libraries/Subdivisions.php:78 +msgctxt "Division Name (States in various countries)." +msgid "US County" +msgstr "" + +#: application/libraries/Subdivisions.php:90 +msgctxt "Division Name (States in various countries)." +msgid "DME" +msgstr "" + +#: application/libraries/Subdivisions.php:92 +msgctxt "Division Name (States in various countries)." +msgid "City / Ku / Gun" +msgstr "" + +#: application/models/Eqslmethods_model.php:281 +msgid "Your eQSL username and/or password is incorrect." +msgstr "" + +#: application/models/Eqslmethods_model.php:287 +msgid "Something went wrong with eQSL.cc!" +msgstr "" + +#: application/models/Eqslmethods_model.php:303 +msgid "eQSL.cc is experiencing issues. Please try exporting QSOs later." +msgstr "" + +#: application/models/Eqslmethods_model.php:309 +msgid "" +"There was an error in one of the QSOs. You might want to manually upload " +"them." +msgstr "" + +#: application/models/Eqslmethods_model.php:315 +msgid "" +"It seems that the eQSL site has changed. Please open up an issue on GitHub." +msgstr "" + +#: application/models/Hrdlog_model.php:22 +msgid "" +"HRDlog: QSOs have been uploaded to hrdlog.net for the station callsign: " +msgstr "" + +#: application/models/Hrdlog_model.php:25 +msgid "HRDlog: No QSOs found to upload for the station callsign: " +msgstr "" + +#: application/models/Hrdlog_model.php:31 +msgid "HRDlog: No station profiles with HRDlog Credentials found." +msgstr "" + +#: application/models/Logbook_model.php:4255 +msgid "QSO could not be matched" +msgstr "" + +#: application/models/Logbook_model.php:4261 +msgid "confirmed by LoTW/Clublog/eQSL/Contest" +msgstr "" + +#: application/models/Logbook_model.php:4266 +msgid "confirmed by award manager" +msgstr "" + +#: application/models/Logbook_model.php:4269 +msgid "confirmed by cross-check of DCL data" +msgstr "" + +#: application/models/Logbook_model.php:4272 +msgid "confirmation pending" +msgstr "" + +#: application/models/Logbook_model.php:4275 +msgid "unconfirmed" +msgstr "" + +#: application/models/Logbook_model.php:4278 +msgid "unknown" +msgstr "" + +#: application/views/accumulate/index.php:2 +msgid "Accumulated number of DXCCs worked" +msgstr "" + +#: application/views/accumulate/index.php:3 +msgid "Accumulated number of States worked" +msgstr "" + +#: application/views/accumulate/index.php:4 +msgid "Accumulated number of IOTAs worked" +msgstr "" + +#: application/views/accumulate/index.php:5 +msgid "Accumulated number of CQ Zones worked" +msgstr "" + +#: application/views/accumulate/index.php:6 +msgid "Accumulated number of VUCC Grids worked" +msgstr "" + +#: application/views/accumulate/index.php:7 +msgid "Accumulated number of WAJA worked" +msgstr "" + +#: application/views/accumulate/index.php:8 +#: application/views/dashboard/index.php:238 +#: application/views/dayswithqso/index.php:16 +#: application/views/statistics/index.php:18 +#: application/views/visitor/index.php:246 +msgid "Year" +msgstr "" + +#: application/views/accumulate/index.php:9 +#: application/views/accumulate/index.php:67 +msgid "Yearly" +msgstr "" + +#: application/views/accumulate/index.php:10 +#: application/views/dashboard/index.php:243 +#: application/views/visitor/index.php:251 +msgid "Month" +msgstr "" + +#: application/views/accumulate/index.php:11 +#: application/views/accumulate/index.php:73 +msgid "Monthly" +msgstr "" + +#: application/views/accumulate/index.php:12 +msgid "Difference" +msgstr "" + +#: application/views/accumulate/index.php:24 +#: application/views/accumulate/index.php:34 +#: application/views/accumulate/index.php:83 +#: application/views/activated_gridmap/index.php:10 +#: application/views/activated_gridmap/index.php:22 +#: application/views/activated_gridmap/index.php:32 +#: application/views/activated_gridmap/index.php:41 +#: application/views/activators/index.php:13 +#: application/views/awards/cq/index.php:77 +#: application/views/awards/cq/index.php:91 +#: application/views/awards/dok/index.php:94 +#: application/views/awards/dxcc/index.php:134 +#: application/views/awards/dxcc/index.php:150 +#: application/views/awards/dxcc/index.php:165 +#: application/views/awards/helvetia/index.php:90 +#: application/views/awards/iota/index.php:108 +#: application/views/awards/itu/index.php:77 +#: application/views/awards/itu/index.php:91 +#: application/views/awards/jcc/index.php:91 +#: application/views/awards/rac/index.php:82 +#: application/views/awards/wab/index.php:24 +#: application/views/awards/wab/index.php:36 +#: application/views/awards/wab/index.php:46 +#: application/views/awards/wab/index.php:55 +#: application/views/awards/wac/index.php:81 +#: application/views/awards/wac/index.php:97 +#: application/views/awards/wac/index.php:113 +#: application/views/awards/waja/index.php:94 +#: application/views/awards/was/index.php:90 +#: application/views/bandmap/list.php:71 application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:90 application/views/bands/index.php:117 +#: application/views/cabrillo/index.php:65 +#: application/views/continents/index.php:32 +#: application/views/continents/index.php:41 application/views/csv/index.php:21 +#: application/views/csv/index.php:33 application/views/csv/index.php:44 +#: application/views/csv/index.php:60 application/views/csv/index.php:82 +#: application/views/csv/index.php:94 application/views/distances/index.php:21 +#: application/views/distances/index.php:36 +#: application/views/distances/index.php:46 +#: application/views/distances/index.php:56 +#: application/views/dxatlas/index.php:21 +#: application/views/dxatlas/index.php:33 +#: application/views/dxatlas/index.php:44 +#: 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/interface_assets/footer.php:1448 +#: application/views/interface_assets/footer.php:1587 +#: application/views/kml/index.php:21 application/views/kml/index.php:33 +#: application/views/kml/index.php:49 application/views/kml/index.php:67 +#: application/views/kml/index.php:79 +#: application/views/logbookadvanced/index.php:183 +#: application/views/logbookadvanced/index.php:194 +#: application/views/logbookadvanced/index.php:205 +#: application/views/logbookadvanced/index.php:214 +#: application/views/logbookadvanced/index.php:223 +#: application/views/logbookadvanced/index.php:248 +#: application/views/logbookadvanced/index.php:259 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:423 +#: application/views/lotw/import.php:54 +#: application/views/oqrs/showrequests.php:33 +#: application/views/oqrs/showrequests.php:49 +#: application/views/oqrs/showrequests.php:62 +#: application/views/qslprint/index.php:22 +#: application/views/search/cqzones.php:30 +#: application/views/search/lotw_unconfirmed.php:31 +#: application/views/stationsetup/exportmapoptions.php:33 +#: application/views/timeline/index.php:10 +#: application/views/timeline/index.php:22 +#: application/views/timeline/index.php:77 +#: application/views/timeplotter/index.php:17 +#: application/views/timeplotter/index.php:27 +#: application/views/timeplotter/index.php:47 +#: application/views/user/edit.php:633 +#: application/views/visitor/layout/footer.php:171 +msgid "All" +msgstr "" + +#: application/views/accumulate/index.php:50 +#: application/views/timeline/index.php:41 +msgid "Award" +msgstr "" + +#: application/views/accumulate/index.php:53 +#: application/views/timeline/index.php:44 +msgid "DX Century Club (DXCC)" +msgstr "" + +#: application/views/accumulate/index.php:55 +#: application/views/timeline/index.php:46 +msgid "Islands On The Air (IOTA)" +msgstr "" + +#: application/views/accumulate/index.php:56 +#: application/views/timeline/index.php:47 +msgid "Worked All Zones (WAZ)" +msgstr "" + +#: application/views/accumulate/index.php:57 +#: application/views/timeline/index.php:48 +msgid "VHF / UHF Century Club (VUCC)" +msgstr "" + +#: application/views/accumulate/index.php:58 +#: application/views/timeline/index.php:49 +msgid "Worked All Japan (WAJA)" +msgstr "" + +#: application/views/accumulate/index.php:62 +msgid "Period" +msgstr "" + +#: application/views/accumulate/index.php:80 +#: application/views/distances/index.php:53 +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/timeline/index.php:74 +msgid "Propagation" +msgstr "" + +#: application/views/accumulate/index.php:84 +#: application/views/distances/index.php:57 +#: application/views/timeline/index.php:78 +msgid "All but SAT" +msgstr "" + +#: application/views/accumulate/index.php:85 +#: application/views/distances/index.php:58 +#: application/views/gridmap/index.php:42 +#: application/views/logbookadvanced/edit.php:142 +#: application/views/logbookadvanced/index.php:307 +#: application/views/timeline/index.php:79 +msgid "None/Empty" +msgstr "" + +#: application/views/accumulate/index.php:86 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/logbookadvanced/index.php:225 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:414 +#: application/views/timeline/index.php:80 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/accumulate/index.php:87 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/logbookadvanced/index.php:226 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:415 +#: application/views/timeline/index.php:81 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/accumulate/index.php:88 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/logbookadvanced/index.php:227 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:416 +#: application/views/timeline/index.php:82 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/accumulate/index.php:89 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/logbookadvanced/index.php:228 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:417 +#: application/views/timeline/index.php:83 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/accumulate/index.php:90 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/logbookadvanced/index.php:229 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:418 +#: application/views/timeline/index.php:84 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/accumulate/index.php:91 +#: 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/logbookadvanced/index.php:230 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:419 +#: application/views/timeline/index.php:85 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/accumulate/index.php:92 +#: 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/logbookadvanced/index.php:231 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:420 +#: application/views/timeline/index.php:86 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/accumulate/index.php:93 +#: 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/logbookadvanced/index.php:232 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:421 +#: application/views/timeline/index.php:87 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/accumulate/index.php:94 +#: 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/logbookadvanced/index.php:233 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:422 +#: application/views/timeline/index.php:88 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/accumulate/index.php:95 +#: 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/logbookadvanced/index.php:234 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:423 +#: application/views/timeline/index.php:89 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/accumulate/index.php:96 +#: 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/logbookadvanced/index.php:235 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:424 +#: application/views/timeline/index.php:90 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/accumulate/index.php:97 +#: 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/logbookadvanced/index.php:236 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:425 +#: application/views/timeline/index.php:91 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/accumulate/index.php:98 +#: 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/logbookadvanced/index.php:237 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:426 +#: application/views/timeline/index.php:92 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/accumulate/index.php:99 +#: 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/logbookadvanced/index.php:238 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:427 +#: application/views/timeline/index.php:93 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/accumulate/index.php:100 +#: 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/logbookadvanced/index.php:239 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:428 +#: application/views/timeline/index.php:94 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/accumulate/index.php:101 +#: 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/logbookadvanced/index.php:240 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:429 +#: application/views/timeline/index.php:95 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "" + +#: application/views/accumulate/index.php:102 +#: 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/logbookadvanced/index.php:241 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:430 +#: application/views/timeline/index.php:96 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/accumulate/index.php:103 +#: 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/logbookadvanced/index.php:242 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:431 +#: application/views/timeline/index.php:97 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/accumulate/index.php:112 +#: application/views/activators/index.php:53 +#: application/views/awards/cq/index.php:113 +#: application/views/awards/dok/index.php:127 +#: application/views/awards/dxcc/index.php:187 +#: application/views/awards/helvetia/index.php:112 +#: application/views/awards/iota/index.php:130 +#: application/views/awards/itu/index.php:113 +#: application/views/awards/jcc/index.php:113 +#: application/views/awards/rac/index.php:104 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:79 +#: application/views/logbookadvanced/useroptions.php:17 +#: application/views/lookup/index.php:63 +#: application/views/stationsetup/exportmapoptions.php:6 +#: application/views/timeline/index.php:105 +#: application/views/timeline/index.php:170 +#: application/views/timeline/index.php:197 +#: application/views/timeline/index.php:222 +#: application/views/timeline/index.php:251 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:303 +#: application/views/timeplotter/index.php:59 +msgid "Show" +msgstr "" + +#: application/views/activated_gridmap/index.php:20 +#: application/views/awards/dxcc/index.php:131 +#: application/views/awards/wab/index.php:34 +#: application/views/awards/wac/index.php:78 +#: 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/logbookadvanced/edit.php:17 +#: application/views/logbookadvanced/index.php:203 +#: application/views/satellite/flightpath.php:34 +#: application/views/satellite/passtable.php:5 +#: application/views/sattimers/index.php:38 +#: application/views/statistics/index.php:112 +msgid "Satellite" +msgstr "" + +#: application/views/activated_gridmap/index.php:30 +#: application/views/awards/dxcc/index.php:147 +#: application/views/awards/wab/index.php:44 +#: application/views/awards/wac/index.php:94 +#: application/views/distances/index.php:44 +#: application/views/gridmap/index.php:80 +#: application/views/logbookadvanced/index.php:212 +#: application/views/satellite/create.php:35 +#: application/views/satellite/edit.php:19 +#: application/views/satellite/index.php:23 +msgid "Orbit" +msgstr "" + +#: application/views/activated_gridmap/index.php:50 +#: application/views/awards/wab/index.php:64 +#: application/views/gridmap/index.php:92 +#: application/views/timeline/index.php:52 +msgid "Confirmation" +msgstr "" + +#: application/views/activated_gridmap/index.php:82 +#: application/views/awards/cq/index.php:68 +#: application/views/awards/dok/index.php:67 +#: application/views/awards/dxcc/index.php:73 +#: application/views/awards/helvetia/index.php:67 +#: application/views/awards/itu/index.php:68 +#: application/views/awards/jcc/index.php:64 +#: application/views/awards/rac/index.php:59 +#: application/views/awards/wab/index.php:96 +#: application/views/awards/wac/index.php:56 +#: application/views/awards/waja/index.php:67 +#: application/views/awards/was/index.php:67 +#: application/views/gridmap/index.php:125 application/views/user/edit.php:675 +msgid "QRZ.com" +msgstr "" + +#: application/views/activated_gridmap/index.php:86 +#: application/views/gridmap/index.php:130 +#: application/views/satellite/flightpath.php:42 +msgid "Plot" +msgstr "" + +#: application/views/activated_gridmap/index.php:87 +#: application/views/gridmap/index.php:131 +msgid "Clear Markers" +msgstr "" + +#: application/views/activated_gridmap/index.php:102 +#: application/views/awards/ffma/index.php:30 +#: application/views/awards/gridmaster/index.php:29 +#: application/views/gridmap/index.php:148 +#: application/views/logbookadvanced/index.php:8 +msgid "Latitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:104 +#: application/views/awards/ffma/index.php:32 +#: application/views/awards/gridmaster/index.php:31 +#: application/views/gridmap/index.php:150 +#: application/views/logbookadvanced/index.php:9 +msgid "Longitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:110 +#: application/views/awards/ffma/index.php:38 +#: application/views/awards/gridmaster/index.php:37 +#: application/views/gridmap/index.php:156 +#: application/views/logbookadvanced/index.php:13 +msgid "Bearing" +msgstr "" + +#: application/views/activators/index.php:26 +msgctxt "Orbiter LEO or GEO" +msgid "Both" +msgstr "" + +#: application/views/activators/index.php:33 +msgid "Minimum Count" +msgstr "" + +#: application/views/activators/index.php:76 +#: application/views/awards/counties/details.php:27 +#: application/views/awards/counties/index.php:46 +#: application/views/awards/cq/index.php:198 +#: application/views/awards/dok/index.php:196 +#: application/views/awards/dxcc/index.php:280 +#: application/views/awards/helvetia/index.php:200 +#: application/views/awards/iota/index.php:224 +#: application/views/awards/itu/index.php:198 +#: application/views/awards/jcc/index.php:236 +#: application/views/awards/pota/index.php:67 +#: application/views/awards/rac/index.php:192 +#: application/views/awards/sig/index.php:45 +#: application/views/awards/sota/index.php:53 +#: application/views/awards/vucc/band.php:41 +#: application/views/awards/vucc/index.php:39 +#: application/views/awards/wac/index.php:199 +#: application/views/awards/waja/index.php:202 +#: application/views/awards/was/index.php:200 +#: application/views/awards/wwff/index.php:64 +#: application/views/distancerecords/index.php:50 +#: application/views/public_search/empty.php:3 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:135 +msgid "Nothing found!" +msgstr "" + +#: application/views/activators/index.php:98 +#: application/views/adif/import.php:66 application/views/adif/import.php:182 +#: application/views/adif/import.php:227 +#: application/views/awards/pota/index.php:34 +#: application/views/awards/sig/qso_list.php:11 +#: application/views/awards/sota/index.php:25 +#: application/views/awards/wwff/index.php:34 +#: application/views/cabrillo/index.php:31 +#: application/views/components/hamsat/table.php:27 +#: application/views/contesting/index.php:156 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:168 +#: application/views/distancerecords/index.php:18 +#: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41 +#: application/views/eqslcard/index.php:28 +#: application/views/hamsat/index.php:30 application/views/labels/index.php:123 +#: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/lotw_views/index.php:35 +#: application/views/oqrs/qsolist.php:6 +#: application/views/oqrs/request_grouped.php:12 +#: application/views/qslcard/index.php:28 +#: application/views/qslcard/searchform.php:3 +#: application/views/qslprint/index.php:24 +#: application/views/qslprint/qslprint.php:21 +#: application/views/qslprint/qsolist.php:6 +#: application/views/qso/edit_ajax.php:62 application/views/qso/index.php:124 +#: application/views/reg1test/index.php:33 +#: application/views/search/cqzones.php:32 +#: application/views/search/cqzones_result.php:9 +#: application/views/search/lotw_unconfirmed.php:33 +#: application/views/search/lotw_unconfirmed_result.php:6 +#: application/views/search/result.php:11 +#: application/views/simplefle/index.php:148 +#: application/views/station_profile/edit.php:63 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 +#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:510 +msgid "Callsign" +msgstr "" + +#: application/views/activators/index.php:99 +msgid "Count" +msgstr "" + +#: application/views/activators/index.php:101 +#: application/views/timeline/index.php:154 +#: application/views/timeline/index.php:186 +#: application/views/timeline/index.php:211 +#: application/views/timeline/index.php:238 +#: application/views/timeline/index.php:265 +#: application/views/timeline/index.php:291 +msgid "Show QSO's" +msgstr "" + +#: application/views/activators/index.php:102 +msgid "Show Map" +msgstr "" + +#: application/views/adif/dcl_success.php:12 +msgid "Results of DCL DOK Update" +msgstr "" + +#: application/views/adif/dcl_success.php:17 +msgid "DCL information for DOKs has been updated." +msgstr "" + +#: application/views/adif/dcl_success.php:19 +msgid "No QSOs found which could be updated." +msgstr "" + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs ignored" +msgstr "" + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs unmatched" +msgstr "" + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs updated" +msgstr "" + +#: application/views/adif/dcl_success.php:25 +msgid "DOK Errors" +msgstr "" + +#: application/views/adif/dcl_success.php:26 +msgid "There is different data for DOK in your log compared to DCL" +msgstr "" + +#: application/views/adif/dcl_success.php:29 +#: application/views/awards/pota/index.php:32 +#: application/views/awards/wwff/index.php:32 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:25 +#: application/views/contesting/index.php:93 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:163 +#: application/views/debug/index.php:545 +#: application/views/distancerecords/index.php:16 +#: application/views/eqsl/analysis.php:36 +#: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 +#: application/views/eqslcard/index.php:30 +#: application/views/hamsat/index.php:28 +#: application/views/logbookadvanced/edit.php:4 +#: application/views/oqrs/notinlogform.php:8 +#: application/views/oqrs/qsolist.php:7 application/views/oqrs/request.php:15 +#: application/views/oqrs/request_grouped.php:8 +#: application/views/public_search/result.php:13 +#: application/views/qslcard/index.php:30 +#: application/views/qslcard/searchresult.php:4 +#: application/views/qslprint/qslprint.php:22 +#: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:64 +#: application/views/qso/index.php:100 application/views/satellite/pass.php:473 +#: application/views/search/cqzones_result.php:7 +#: application/views/search/result_search.php:4 +#: application/views/search/search_result_ajax.php:89 +#: application/views/simplefle/index.php:146 +#: application/views/statistics/custom.php:38 +#: application/views/statistics/custom_result.php:40 +#: application/views/statistics/custom_result.php:85 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:184 +#: application/views/timeline/index.php:209 +#: application/views/timeline/index.php:234 +#: application/views/timeline/index.php:263 +#: application/views/timeline/index.php:288 +#: application/views/view_log/partial/log.php:4 +#: application/views/view_log/partial/log_ajax.php:59 +#: application/views/visitor/index.php:147 +#: application/views/widgets/qsos.php:24 +msgid "Date" +msgstr "" + +#: application/views/adif/dcl_success.php:30 +#: application/views/awards/pota/index.php:33 +#: application/views/awards/wwff/index.php:33 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:26 +#: application/views/contesting/index.php:98 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:166 +#: application/views/debug/index.php:546 +#: application/views/distancerecords/index.php:17 +#: application/views/eqsl/analysis.php:37 +#: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 +#: application/views/eqslcard/index.php:31 +#: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 +#: application/views/qslcard/index.php:31 +#: application/views/qslcard/searchresult.php:6 +#: application/views/qslprint/qslprint.php:23 +#: application/views/qslprint/qsolist.php:8 application/views/qso/index.php:105 +#: application/views/search/cqzones_result.php:8 +#: application/views/search/result_search.php:5 +#: application/views/search/search_result_ajax.php:91 +#: application/views/simplefle/index.php:147 +#: application/views/statistics/custom_result.php:86 +#: application/views/timeline/index.php:289 +#: application/views/timeplotter/index.php:5 +#: application/views/view_log/partial/log.php:6 +#: application/views/view_log/partial/log_ajax.php:61 +#: application/views/visitor/index.php:150 +#: application/views/widgets/qsos.php:26 +msgid "Time" +msgstr "" + +#: application/views/adif/dcl_success.php:31 +#: application/views/awards/vucc/band.php:18 +#: application/views/bandmap/list.php:111 +#: application/views/contesting/index.php:248 +#: application/views/debug/index.php:547 application/views/debug/index.php:582 +#: application/views/dxcalendar/index.php:12 +#: application/views/eqsl/analysis.php:38 +#: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 +#: application/views/public_search/result.php:14 +#: application/views/qslcard/searchresult.php:8 +#: application/views/qso/components/previous_contacts.php:7 +#: application/views/search/result_search.php:6 +#: application/views/search/search_result_ajax.php:93 +#: application/views/statistics/custom_result.php:87 +#: application/views/view_log/partial/log.php:8 +#: application/views/view_log/partial/log_ajax.php:63 +#: application/views/visitor/index.php:152 +#: application/views/widgets/qsos.php:28 +msgid "Call" +msgstr "" + +#: application/views/adif/dcl_success.php:34 +msgid "DOK in Log" +msgstr "" + +#: application/views/adif/dcl_success.php:35 +msgid "DOK in DCL" +msgstr "" + +#: application/views/adif/dcl_success.php:36 +msgid "DCL QSL Status" +msgstr "" + +#: application/views/adif/import.php:36 application/views/adif/import.php:252 +msgid "DARC DCL" +msgstr "" + +#: application/views/adif/import.php:55 +#: application/views/dashboard/index.php:112 +#: application/views/dashboard/index.php:133 +#: application/views/dashboard/index.php:139 +#: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 +#: application/views/lotw_views/index.php:4 +msgid "Important" +msgstr "" + +#: application/views/adif/import.php:55 +msgid "Log Files must have the file type *.adi" +msgstr "" + +#: application/views/adif/import.php:56 application/views/view_log/qso.php:625 +msgid "Maximum file upload size is " +msgstr "" + +#: application/views/adif/import.php:56 application/views/adif/import.php:230 +#: application/views/adif/import.php:268 application/views/debug/index.php:175 +#: application/views/debug/index.php:192 application/views/debug/index.php:537 +#: application/views/hrdlog/export.php:25 +#: application/views/hrdlog/export.php:74 +#: application/views/interface_assets/footer.php:34 +#: application/views/qrz/export.php:73 application/views/qrz/export.php:94 +#: application/views/stationsetup/stationsetup.php:111 +#: application/views/view_log/qso.php:625 +#: application/views/webadif/export.php:34 +#: application/views/webadif/export.php:94 +msgid "Warning" +msgstr "" + +#: application/views/adif/import.php:60 application/views/adif/import.php:62 +#: application/views/adif/import.php:178 application/views/adif/import.php:225 +#: application/views/eqsl/import.php:36 application/views/hrdlog/export.php:69 +#: application/views/qrz/export.php:89 application/views/reg1test/index.php:30 +#: application/views/webadif/export.php:89 +msgid "Select Station Location" +msgstr "" + +#: application/views/adif/import.php:69 +msgid "Add QSOs to Contest" +msgstr "" + +#: application/views/adif/import.php:71 +#: application/views/simplefle/index.php:82 +msgid "No Contest" +msgstr "" + +#: application/views/adif/import.php:77 +msgid "ADIF File" +msgstr "" + +#: application/views/adif/import.php:84 +msgid "Import duplicate QSOs" +msgstr "" + +#: application/views/adif/import.php:93 +msgid "Mark imported QSOs as uploaded to LoTW" +msgstr "" + +#: application/views/adif/import.php:95 application/views/adif/import.php:105 +#: application/views/adif/import.php:115 application/views/adif/import.php:125 +#: application/views/adif/import.php:135 +msgid "Select if ADIF being imported does not contain this information." +msgstr "" + +#: application/views/adif/import.php:103 +msgid "Mark imported QSOs as uploaded to eQSL Logbook" +msgstr "" + +#: application/views/adif/import.php:113 +msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" +msgstr "" + +#: application/views/adif/import.php:123 +msgid "Mark imported QSOs as uploaded to QRZ Logbook" +msgstr "" + +#: application/views/adif/import.php:133 +msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgstr "" + +#: application/views/adif/import.php:143 +msgid "Use DXCC information from ADIF" +msgstr "" + +#: application/views/adif/import.php:145 +msgid "" +"If not selected, Wavelog will attempt to determine DXCC information " +"automatically." +msgstr "" + +#: application/views/adif/import.php:153 +msgid "Always use login-callsign as operator-name on import" +msgstr "" + +#: application/views/adif/import.php:162 +#: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2133 +msgid "DANGER" +msgstr "" + +#: application/views/adif/import.php:162 +msgid "Ignore Stationcallsign on import" +msgstr "" + +#: application/views/adif/import.php:164 +#, php-format +msgid "" +"If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " +"regardless if they match to the chosen station-location." +msgstr "" + +#: application/views/adif/import.php:168 application/views/adif/import.php:283 +#: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 +#: application/views/webadif/export.php:55 +msgid "Upload" +msgstr "" + +#: application/views/adif/import.php:175 +msgid "Take your logbook file anywhere!" +msgstr "" + +#: application/views/adif/import.php:176 +msgid "" +"Exporting ADIFs allows you to import contacts into third party applications " +"like LoTW, Awards or just for keeping a backup." +msgstr "" + +#: application/views/adif/import.php:186 application/views/adif/import.php:232 +#: application/views/cfd/index.php:15 application/views/csv/index.php:118 +#: application/views/dxatlas/index.php:118 +#: application/views/hrdlog/export.php:77 application/views/kml/index.php:103 +#: application/views/lotw/import.php:38 application/views/qrz/export.php:76 +#: application/views/qrz/export.php:97 application/views/webadif/export.php:97 +msgid "From date" +msgstr "" + +#: application/views/adif/import.php:189 application/views/adif/import.php:235 +#: application/views/cfd/index.php:20 application/views/csv/index.php:123 +#: application/views/dxatlas/index.php:123 +#: application/views/hrdlog/export.php:82 application/views/kml/index.php:108 +#: application/views/qrz/export.php:102 +#: application/views/webadif/export.php:102 +msgid "To date" +msgstr "" + +#: application/views/adif/import.php:197 +msgid "Mark exported QSOs as uploaded to LoTW" +msgstr "" + +#: application/views/adif/import.php:205 +msgid "Export QSOs not uploaded to LoTW" +msgstr "" + +#: application/views/adif/import.php:210 +msgid "Export QSO's" +msgstr "" + +#: application/views/adif/import.php:215 +msgid "Export Satellite-Only QSOs" +msgstr "" + +#: application/views/adif/import.php:216 +msgid "Export All Satellite QSOs" +msgstr "" + +#: application/views/adif/import.php:218 +msgid "Export All Satellite QSOs Confirmed on LoTW" +msgstr "" + +#: application/views/adif/import.php:230 application/views/hrdlog/export.php:74 +#: application/views/qrz/export.php:94 application/views/webadif/export.php:94 +msgid "If a date range is not selected then all QSOs will be marked!" +msgstr "" + +#: application/views/adif/import.php:238 +msgid "Mark QSOs as exported to LoTW" +msgstr "" + +#: application/views/adif/import.php:252 +#, php-format +msgid "" +"Go to %s and export your logbook with confirmed DOKs. To speed up the " +"process you can select only DL QSOs to download (i.e. put 'DL' into Prefix " +"List). The downloaded ADIF file can be uploaded here in order to update QSOs " +"with DOK info." +msgstr "" + +#: application/views/adif/import.php:259 +msgid "Only import DOK data from QSOs confirmed on DCL." +msgstr "" + +#: application/views/adif/import.php:261 +msgid "" +"Uncheck if you also want to update DOK with data from unconfirmed QSOs in " +"DCL." +msgstr "" + +#: application/views/adif/import.php:268 +msgid "Overwrites exisiting DOK in log by DCL (if different)." +msgstr "" + +#: application/views/adif/import.php:270 +msgid "" +"If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " +"log." +msgstr "" + +#: application/views/adif/import.php:277 +msgid "Ignore QSOs that cannot be matched." +msgstr "" + +#: application/views/adif/import.php:279 +msgid "" +"If unchecked, information about QSOs which could not be found in Wavelog " +"will be displayed." +msgstr "" + +#: application/views/adif/import_failed.php:15 +msgid "The ADIF file could not be parsed correctly." +msgstr "" + +#: application/views/adif/import_failed.php:16 +msgid "" +"At least one of the ADIF fields could not be parsed and/or inserted into the " +"database. Please check the imported ADIF file. You can use an online ADIF " +"file checker. For example:" +msgstr "" + +#: application/views/adif/import_success.php:15 +msgid "Yay, its imported!" +msgstr "" + +#: application/views/adif/import_success.php:16 +msgid "The ADIF File has been imported." +msgstr "" + +#: application/views/adif/import_success.php:18 +msgid "Dupes were inserted!" +msgstr "" + +#: application/views/adif/import_success.php:20 +msgid "Dupes were skipped." +msgstr "" + +#: application/views/adif/import_success.php:24 +msgid "ADIF Errors" +msgstr "" + +#: application/views/adif/import_success.php:25 +msgid "" +"You have ADIF errors, the QSOs have still been added but these fields have " +"not been populated." +msgstr "" + +#: application/views/adif/mark_lotw.php:12 +#: application/views/hrdlog/mark_hrdlog.php:12 +#: application/views/qrz/mark_qrz.php:12 +#: application/views/webadif/mark_webadif.php:12 +msgid "QSOs marked" +msgstr "" + +#: application/views/adif/mark_lotw.php:15 +msgid "Yay, its done!" +msgstr "" + +#: application/views/adif/mark_lotw.php:16 +msgid "The QSOs are marked as exported to LoTW." +msgstr "" + +#: application/views/api/description.php:15 +msgid "Editing Description for API Key" +msgstr "" + +#: application/views/api/description.php:28 +msgid "Simple name to describe what you use this API for." +msgstr "" + +#: application/views/api/description.php:33 +#: application/views/bands/create.php:49 application/views/bands/edit.php:31 +#: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 +#: application/views/operator/index.php:23 +#: application/views/options/appearance.php:116 +#: application/views/options/dxcluster.php:67 +#: application/views/options/email.php:112 +#: application/views/options/oqrs.php:63 +#: application/views/options/radios.php:45 +#: application/views/options/version_dialog.php:78 +#: application/views/satellite/create.php:70 +#: application/views/simplefle/index.php:22 +msgid "Save" +msgstr "" + +#: application/views/api/help.php:14 +#: application/views/interface_assets/header.php:437 +msgid "API Keys" +msgstr "" + +#: application/views/api/help.php:17 +msgid "" +"The Wavelog API (Application Programming Interface) lets third party systems " +"access Wavelog in a controlled way. Access to the API is managed via API " +"keys." +msgstr "" + +#: application/views/api/help.php:18 +msgid "" +"You will need to generate an API key for each tool you wish to use (e.g. " +"WLgate). Generate a read-write key if the application needs to send data to " +"Wavelog. Generate a read-only key if the application only needs to obtain " +"data from Wavelog." +msgstr "" + +#: application/views/api/help.php:19 +msgid "API URL" +msgstr "" + +#: application/views/api/help.php:19 application/views/api/help.php:38 +#: application/views/cron/index.php:22 application/views/debug/index.php:36 +msgid "Copy to clipboard" +msgstr "" + +#: application/views/api/help.php:19 +msgid "The API URL for this Wavelog instance is" +msgstr "" + +#: application/views/api/help.php:20 application/views/dxcalendar/index.php:15 +#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:504 +#: application/views/qso/index.php:560 application/views/qso/index.php:605 +#: application/views/radio/index.php:22 +#: application/views/sattimers/index.php:67 +#: application/views/sattimers/index.php:69 +#: application/views/sattimers/index.php:71 +#: application/views/sattimers/index.php:73 +#: application/views/sattimers/index.php:75 +#: application/views/sattimers/index.php:77 +#: application/views/search/filter.php:69 +msgid "Info" +msgstr "" + +#: application/views/api/help.php:20 +msgid "" +"It's good practice to delete a key if you are no longer using the associated " +"application." +msgstr "" + +#: application/views/api/help.php:27 +msgid "API Key" +msgstr "" + +#: application/views/api/help.php:28 application/views/cron/edit.php:30 +#: application/views/cron/index.php:53 +#: application/views/search/stored_queries.php:8 +msgid "Description" +msgstr "" + +#: application/views/api/help.php:29 +msgid "Last Used" +msgstr "" + +#: application/views/api/help.php:30 +msgid "Permissions" +msgstr "" + +#: application/views/api/help.php:31 application/views/cron/index.php:54 +#: application/views/lotw_views/index.php:41 +#: application/views/mode/index.php:31 +#: application/views/oqrs/showrequests.php:91 +#: application/views/sattimers/index.php:39 +#: application/views/stationsetup/stationsetup.php:31 +#: application/views/timeline/index.php:152 +msgid "Status" +msgstr "" + +#: application/views/api/help.php:32 application/views/hrdlog/export.php:39 +#: application/views/logbookadvanced/index.php:519 +#: application/views/qrz/export.php:43 application/views/webadif/export.php:45 +msgid "Actions" +msgstr "" + +#: application/views/api/help.php:45 +msgid "Read & Write" +msgstr "" + +#: application/views/api/help.php:47 +msgid "Read-Only" +msgstr "" + +#: application/views/api/help.php:49 +msgid "Unknown" +msgstr "" + +#: application/views/api/help.php:59 +msgid "Test" +msgstr "" + +#: application/views/api/help.php:71 +msgid "You have no API Keys." +msgstr "" + +#: application/views/api/help.php:75 +msgid "Create a read & write key" +msgstr "" + +#: application/views/api/help.php:76 +msgid "Create a read-only key" +msgstr "" + +#: application/views/awards/counties/details.php:4 +#: application/views/awards/details.php:1 +#: application/views/awards/vucc/band.php:4 +#: application/views/distancerecords/details.php:1 +#: application/views/timeline/details.php:2 +msgid "Filtering on" +msgstr "" + +#: application/views/awards/counties/details.php:13 +msgid "County" +msgstr "" + +#: application/views/awards/counties/index.php:6 +#: application/views/awards/counties/index.php:13 +#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:26 +#: application/views/awards/dok/index.php:6 +#: application/views/awards/dok/index.php:13 +#: application/views/awards/dxcc/index.php:13 +#: application/views/awards/dxcc/index.php:20 +#: application/views/awards/ffma/index.php:7 +#: application/views/awards/ffma/index.php:14 +#: application/views/awards/gridmaster/index.php:6 +#: application/views/awards/gridmaster/index.php:13 +#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:26 +#: application/views/awards/iota/index.php:15 +#: application/views/awards/iota/index.php:22 +#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:26 +#: application/views/awards/jcc/index.php:15 +#: application/views/awards/jcc/index.php:22 +#: application/views/awards/pota/index.php:6 +#: application/views/awards/pota/index.php:13 +#: application/views/awards/sig/index.php:6 +#: application/views/awards/sig/index.php:13 +#: application/views/awards/sota/index.php:6 +#: application/views/awards/sota/index.php:13 +#: application/views/awards/vucc/index.php:6 +#: application/views/awards/vucc/index.php:13 +#: application/views/awards/wab/index.php:11 +#: application/views/awards/wab/index.php:18 +#: application/views/awards/wac/index.php:7 +#: application/views/awards/wac/index.php:14 +#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:25 +#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:26 +#: application/views/awards/wwff/index.php:6 +#: application/views/awards/wwff/index.php:13 +msgid "Award Info" +msgstr "" + +#: application/views/awards/counties/index.php:7 +msgid "US County Award" +msgstr "" + +#: application/views/awards/counties/index.php:8 +#, php-format +msgid "" +"The United States of America Counties Award (USA-CA), sponsored by CQ " +"magazine, is issued for confirmed two-way radio contacts with specified " +"numbers of U.S. counties under rules and conditions you can find %s." +msgstr "" + +#: application/views/awards/counties/index.php:9 +msgid "" +"USA-CA is available to all licensed amateurs worldwide and is issued to " +"individuals for all county contacts made, regardless of callsigns used, " +"operating locations, or dates." +msgstr "" + +#: application/views/awards/counties/index.php:10 +msgid "Special USA-CA awards are also available to SWLs on a heard basis." +msgstr "" + +#: application/views/awards/counties/index.php:21 +msgid "Counties Worked" +msgstr "" + +#: application/views/awards/counties/index.php:22 +msgid "Counties Confirmed" +msgstr "" + +#: application/views/awards/counties/index.php:39 +#: application/views/awards/cq/index.php:176 +#: application/views/awards/dok/index.php:174 +#: application/views/awards/dxcc/index.php:257 +#: application/views/awards/helvetia/index.php:179 +#: application/views/awards/iota/index.php:201 +#: application/views/awards/itu/index.php:176 +#: application/views/awards/jcc/index.php:185 +#: application/views/awards/rac/index.php:171 +#: application/views/awards/wac/index.php:177 +#: application/views/awards/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:233 +#: application/views/simplefle/index.php:27 +#: application/views/statistics/qsltable.php:54 +#: application/views/statistics/qsltable.php:109 +#: application/views/statistics/qsotable.php:10 +#: application/views/statistics/qsotable.php:23 +#: application/views/statistics/satqsotable.php:10 +#: application/views/statistics/satqsotable.php:22 +#: application/views/statistics/satuniquetable.php:10 +#: application/views/statistics/satuniquetable.php:22 +#: application/views/statistics/uniquetable.php:10 +#: application/views/statistics/uniquetable.php:23 +#: application/views/visitor/index.php:241 +msgid "Total" +msgstr "" + +#: application/views/awards/cq/index.php:3 +#: application/views/awards/cq/index.php:150 application/views/csv/index.php:80 +#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/logbookadvanced/edit.php:6 +#: application/views/logbookadvanced/index.php:246 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:284 +#: application/views/qso/index.php:390 +#: application/views/search/cqzones_result.php:13 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:264 +#: application/views/timeplotter/index.php:44 +msgid "CQ Zone" +msgstr "" + +#: application/views/awards/cq/index.php:4 +#: application/views/awards/itu/index.php:4 +msgid "Hover over a zone" +msgstr "" + +#: application/views/awards/cq/index.php:20 +msgid "CQ Magazine WAZ Award" +msgstr "" + +#: application/views/awards/cq/index.php:21 +msgid "" +"The CQ Magazine is located in the US and one of the most popular amateur " +"radio magazines in the world. The magazine first appeared in January 1945 " +"and focuses on awards and the practical aspects of amateur radio." +msgstr "" + +#: application/views/awards/cq/index.php:22 +msgid "" +"The WAZ Award stands for 'Worked All Zones' and requires radio contacts to " +"all 40 CQ Zones along with the corresponding confirmation." +msgstr "" + +#: application/views/awards/cq/index.php:23 +#, php-format +msgctxt "uses 'CQ Magazine'" +msgid "You can find all the information and rules on the Website of the %s." +msgstr "" + +#: application/views/awards/cq/index.php:25 +msgid "Awards - CQ Magazine WAZ" +msgstr "" + +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wab/list.php:6 +#: application/views/awards/wac/index.php:22 +#: application/views/bandmap/list.php:73 +#: application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:378 +#: application/views/interface_assets/footer.php:40 +#: application/views/visitor/index.php:266 +msgid "Confirmed" +msgstr "" + +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wac/index.php:22 +#: application/views/bandmap/list.php:72 +#: application/views/dashboard/index.php:256 +#: application/views/dashboard/index.php:372 +#: application/views/visitor/index.php:262 +msgid "Worked" +msgstr "" + +#: application/views/awards/cq/index.php:38 +#: application/views/awards/dok/index.php:41 +#: application/views/awards/dxcc/index.php:43 +#: application/views/awards/helvetia/index.php:37 +#: application/views/awards/iota/index.php:43 +#: application/views/awards/itu/index.php:38 +#: application/views/awards/jcc/index.php:34 +#: application/views/awards/rac/index.php:29 +#: application/views/awards/wac/index.php:26 +#: application/views/awards/waja/index.php:37 +#: application/views/awards/was/index.php:37 +msgid "Show worked" +msgstr "" + +#: application/views/awards/cq/index.php:42 +#: application/views/awards/dok/index.php:45 +#: application/views/awards/dxcc/index.php:47 +#: application/views/awards/helvetia/index.php:41 +#: application/views/awards/iota/index.php:47 +#: application/views/awards/itu/index.php:42 +#: application/views/awards/jcc/index.php:38 +#: application/views/awards/rac/index.php:33 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/waja/index.php:41 +#: application/views/awards/was/index.php:41 +msgid "Show confirmed" +msgstr "" + +#: application/views/awards/cq/index.php:46 +#: application/views/awards/dxcc/index.php:51 +#: application/views/awards/helvetia/index.php:45 +#: application/views/awards/iota/index.php:51 +#: application/views/awards/itu/index.php:46 +#: application/views/awards/jcc/index.php:42 +#: application/views/awards/rac/index.php:37 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/waja/index.php:45 +#: application/views/awards/was/index.php:45 +msgid "Show not worked" +msgstr "" + +#: application/views/awards/cq/index.php:52 +#: application/views/awards/dok/index.php:51 +#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/helvetia/index.php:51 +#: application/views/awards/itu/index.php:52 +#: application/views/awards/jcc/index.php:48 +#: application/views/awards/rac/index.php:43 +#: application/views/awards/wac/index.php:40 +#: application/views/awards/waja/index.php:51 +#: application/views/awards/was/index.php:51 +msgid "Show QSO with QSL Type" +msgstr "" + +#: application/views/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/awards/wac/index.php:44 +#: application/views/interface_assets/footer.php:2112 +#: application/views/qso/edit_ajax.php:405 +#: application/views/view_log/qso.php:25 +msgid "QSL Card" +msgstr "" + +#: application/views/awards/cq/index.php:112 +#: application/views/awards/dok/index.php:126 +#: application/views/awards/dxcc/index.php:186 +#: application/views/awards/helvetia/index.php:111 +#: application/views/awards/iota/index.php:129 +#: application/views/awards/itu/index.php:112 +#: application/views/awards/jcc/index.php:112 +#: application/views/awards/rac/index.php:103 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/waja/index.php:115 +#: application/views/awards/was/index.php:111 +#: application/views/continents/index.php:50 +#: application/views/logbookadvanced/index.php:551 +#: application/views/oqrs/showrequests.php:68 +#: application/views/qrbcalc/index.php:19 +#: application/views/search/filter.php:40 application/views/user/edit.php:607 +msgid "Reset" +msgstr "" + +#: application/views/awards/cq/index.php:115 +msgid "Show CQ Zone Map" +msgstr "" + +#: application/views/awards/cq/index.php:124 +#: application/views/awards/dxcc/index.php:199 +#: application/views/awards/helvetia/index.php:124 +#: application/views/awards/iota/index.php:142 +#: application/views/awards/itu/index.php:124 +#: application/views/awards/rac/index.php:116 +#: application/views/awards/waja/index.php:128 +#: application/views/awards/was/index.php:124 +msgid "Table" +msgstr "" + +#: application/views/awards/cq/index.php:127 +#: application/views/awards/dok/index.php:128 +#: application/views/awards/dxcc/index.php:202 +#: application/views/awards/helvetia/index.php:127 +#: application/views/awards/iota/index.php:145 +#: application/views/awards/itu/index.php:127 +#: application/views/awards/jcc/index.php:129 +#: application/views/awards/rac/index.php:119 +#: application/views/awards/wab/index.php:108 +#: application/views/awards/waja/index.php:131 +#: application/views/awards/was/index.php:127 +#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/useroptions.php:7 +msgid "Map" +msgstr "" + +#: application/views/awards/cq/index.php:167 +#: application/views/awards/dok/index.php:165 +#: application/views/awards/dxcc/index.php:248 +#: application/views/awards/helvetia/index.php:170 +#: application/views/awards/iota/index.php:192 +#: application/views/awards/itu/index.php:167 +#: application/views/awards/jcc/index.php:168 +#: application/views/awards/rac/index.php:162 +#: application/views/awards/wac/index.php:168 +#: application/views/awards/waja/index.php:170 +#: application/views/awards/was/index.php:170 +msgid "Summary" +msgstr "" + +#: application/views/awards/cq/index.php:180 +#: application/views/awards/dok/index.php:178 +#: application/views/awards/dxcc/index.php:262 +#: application/views/awards/helvetia/index.php:183 +#: application/views/awards/iota/index.php:206 +#: application/views/awards/itu/index.php:180 +#: application/views/awards/jcc/index.php:195 +#: application/views/awards/rac/index.php:175 +#: application/views/awards/wac/index.php:181 +#: application/views/awards/waja/index.php:184 +#: application/views/awards/was/index.php:183 +msgid "Total worked" +msgstr "" + +#: application/views/awards/cq/index.php:187 +#: application/views/awards/dok/index.php:185 +#: application/views/awards/dxcc/index.php:269 +#: application/views/awards/helvetia/index.php:190 +#: application/views/awards/iota/index.php:213 +#: application/views/awards/itu/index.php:187 +#: application/views/awards/jcc/index.php:214 +#: application/views/awards/rac/index.php:182 +#: application/views/awards/wac/index.php:188 +#: application/views/awards/waja/index.php:191 +#: application/views/awards/was/index.php:190 +msgid "Total confirmed" +msgstr "" + +#: application/views/awards/dok/index.php:7 +msgid "DOK Award" +msgstr "" + +#: application/views/awards/dok/index.php:8 +msgid "" +"Germany extends over 630 km from East to West and nearly 900 km from North " +"to South. Around 70,000 of Germany's 82 million inhabitants are licensed " +"hams, with more than 40,000 of them being members of DARC. DOK is a system " +"that provides individual local chapters with an identifier and means " +"'Deutscher Ortsverband Kenner' (English: 'German Local Association " +"Identifier')." +msgstr "" + +#: application/views/awards/dok/index.php:9 +msgid "" +"The DOK consists of a letter for the district and a two-digit number for the " +"local chapter, like P03 Friedrichshafen (city of the 'Hamradio exhibition') " +"or F41 Baunatal (location of the DARC headquarters). Note: A zero in a DOK " +"is a common mistake, often being logged as the letter O." +msgstr "" + +#: application/views/awards/dok/index.php:10 +msgid "DARC website" +msgstr "" + +#: application/views/awards/dok/index.php:10 +#, php-format +msgctxt "uses 'DARC Website' and 'here'" +msgid "" +"This information is provided by the %s. Information about the DOK Awards and " +"its rules can be found %s." +msgstr "" + +#: application/views/awards/dok/index.php:20 +msgid "DOK / SDOK" +msgstr "" + +#: application/views/awards/dok/index.php:23 +msgid "DOK + SDOK" +msgstr "" + +#: application/views/awards/dok/index.php:37 +#: application/views/awards/dxcc/index.php:39 +#: application/views/awards/helvetia/index.php:33 +#: application/views/awards/iota/index.php:39 +#: application/views/awards/jcc/index.php:30 +#: application/views/awards/rac/index.php:25 +#: application/views/awards/waja/index.php:33 +#: application/views/awards/was/index.php:33 +msgid "Worked / Confirmed" +msgstr "" + +#: application/views/awards/dok/index.php:80 +#: application/views/awards/dxcc/index.php:120 +#: application/views/awards/helvetia/index.php:76 +#: application/views/awards/iota/index.php:94 +#: application/views/awards/jcc/index.php:77 +#: application/views/awards/rac/index.php:68 +#: application/views/awards/wac/index.php:66 +#: application/views/awards/waja/index.php:80 +#: application/views/awards/was/index.php:76 +msgid "Every band" +msgstr "" + +#: application/views/awards/dxcc/index.php:14 +msgid "DXCC Award" +msgstr "" + +#: application/views/awards/dxcc/index.php:15 +msgid "'How to Count Countries Worked, A New DX Scoring System'" +msgstr "" + +#: application/views/awards/dxcc/index.php:15 +#, php-format +msgid "" +"DXCC stands for 'DX Century Club,' an award based on worked countries. The " +"DXCC List is based on an article created in 1935 by Clinton B. DeSoto, " +"W1CBD, titled %s." +msgstr "" + +#: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 +msgid "ARRL website" +msgstr "" + +#: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 +#, php-format +msgid "You can find all information about the DXCC Award on the %s." +msgstr "" + +#: application/views/awards/dxcc/index.php:17 +msgid "" +"Important Note: Over time, the criteria for the DXCC List have changed. The " +"List remains unchanged until an entity no longer satisfies the criteria " +"under which it was added, at which time it is moved to the Deleted List. You " +"will find Deleted DXCC entities also in the lists on Wavelog. Be aware that " +"these DXCC entities are outdated and no longer valid." +msgstr "" + +#: application/views/awards/dxcc/index.php:32 +#: application/views/awards/iota/index.php:33 +msgid "Include deleted" +msgstr "" + +#: application/views/awards/dxcc/index.php:87 +#: application/views/awards/iota/index.php:61 +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/logbookadvanced/edit.php:144 +#: application/views/logbookadvanced/index.php:309 +#: application/views/options/dxcluster.php:56 +#: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 +#: application/views/view_log/qso.php:253 +msgid "Antarctica" +msgstr "" + +#: application/views/awards/dxcc/index.php:91 +#: application/views/awards/iota/index.php:65 +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/logbookadvanced/edit.php:143 +#: application/views/logbookadvanced/index.php:308 +#: application/views/options/dxcluster.php:55 +#: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 +#: application/views/view_log/qso.php:250 +msgid "Africa" +msgstr "" + +#: application/views/awards/dxcc/index.php:95 +#: application/views/awards/iota/index.php:69 +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/logbookadvanced/edit.php:146 +#: application/views/logbookadvanced/index.php:311 +#: application/views/options/dxcluster.php:57 +#: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 +#: application/views/view_log/qso.php:256 +msgid "Asia" +msgstr "" + +#: application/views/awards/dxcc/index.php:99 +#: application/views/awards/iota/index.php:73 +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/logbookadvanced/edit.php:147 +#: application/views/logbookadvanced/index.php:312 +#: application/views/options/dxcluster.php:58 +#: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 +#: application/views/view_log/qso.php:259 +msgid "Europe" +msgstr "" + +#: application/views/awards/dxcc/index.php:103 +#: application/views/awards/iota/index.php:77 +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/logbookadvanced/edit.php:145 +#: application/views/logbookadvanced/index.php:310 +#: application/views/options/dxcluster.php:59 +#: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 +#: application/views/view_log/qso.php:262 +msgid "North America" +msgstr "" + +#: application/views/awards/dxcc/index.php:107 +#: application/views/awards/iota/index.php:81 +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/logbookadvanced/edit.php:148 +#: application/views/logbookadvanced/index.php:313 +#: application/views/options/dxcluster.php:61 +#: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 +#: application/views/view_log/qso.php:268 +msgid "South America" +msgstr "" + +#: application/views/awards/dxcc/index.php:111 +#: application/views/awards/iota/index.php:85 +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/logbookadvanced/edit.php:149 +#: application/views/logbookadvanced/index.php:314 +#: application/views/options/dxcluster.php:60 +#: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 +#: application/views/view_log/qso.php:265 +msgid "Oceania" +msgstr "" + +#: application/views/awards/dxcc/index.php:189 +msgid "Show DXCC Map" +msgstr "" + +#: application/views/awards/dxcc/index.php:225 +msgid "DXCC Name" +msgstr "" + +#: application/views/awards/dxcc/index.php:226 +#: application/views/awards/iota/index.php:170 +#: application/views/timeline/index.php:150 +#: application/views/timeline/index.php:237 +msgid "Prefix" +msgstr "" + +#: application/views/awards/ffma/index.php:8 +#: application/views/interface_assets/header.php:240 +msgid "Fred Fish Memorial Award" +msgstr "" + +#: application/views/awards/ffma/index.php:9 +msgid "" +"The Fred Fish Memorial Award was created in honor of Fred Fish, W5FF (SK), " +"who was the first amateur to have worked and confirmed all 488 Maidenhead " +"grid squares in the 48 contiguous United States on 6 Meters." +msgstr "" + +#: application/views/awards/ffma/index.php:10 +msgid "" +"The award will be given to any amateur who can duplicate W5FF's " +"accomplishment." +msgstr "" + +#: application/views/awards/ffma/index.php:11 +#, php-format +msgid "For more information, you can visit this link: %s." +msgstr "" + +#: application/views/awards/gridmaster/index.php:7 +msgid "US Gridmaster Award" +msgstr "" + +#: application/views/awards/gridmaster/index.php:8 +msgid "" +"The GridMaster Award is the most prestigious AMSAT award, first introduced " +"in 2014 by the Star Comm Group. It is available to all amateur radio " +"operators worldwide who manage to work all 488 grid squares in the USA via " +"satellite and can provide QSL confirmations for each contact." +msgstr "" + +#: application/views/awards/gridmaster/index.php:9 +#, php-format +msgid "" +"Official information from the %s: Two-way communication must be established " +"via amateur satellite with each grid. There is no minimum signal report " +"required. Contacts must be made from the same location or from locations no " +"two of which are more than 200 kilometers apart. The applicant's attestation " +"in the award application serves as affirmation of abidance by the distance " +"rule. Individuals may apply for and be granted multiple GridMaster awards " +"when achieved from another location, which is in a different 200-kilometer " +"circle." +msgstr "" + +#: application/views/awards/gridmaster/index.php:9 +msgid "website" +msgstr "" + +#: application/views/awards/gridmaster/index.php:10 +msgid "This map shows only QSOs worked on SAT." +msgstr "" + +#: application/views/awards/helvetia/index.php:3 +msgctxt "Switzerland Canton" +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:4 +msgid "Hover over a canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:20 +msgid "HELVETIA 26 | SWITZERLAND AWARD" +msgstr "" + +#: application/views/awards/helvetia/index.php:21 +msgid "" +"The USKA (Union of Swiss Shortwave Amateurs) sponsors two awards, the " +"HELVETIA 26 (H26) Award and the SWITZERLAND Award, aimed at promoting " +"activities on the bands by encouraging contacts across as many Swiss cantons " +"as possible on multiple bands." +msgstr "" + +#: application/views/awards/helvetia/index.php:22 +msgid "" +"These awards come in two versions: one for HF bands and the other for VHF " +"(including SHF and UHF) bands. Valid connections for these awards date back " +"to January 1, 1980" +msgstr "" + +#: application/views/awards/helvetia/index.php:23 +#: application/views/awards/jcc/index.php:19 +#: application/views/awards/sota/index.php:10 +#: application/views/awards/wab/index.php:15 +#: application/views/awards/waja/index.php:22 +#: application/views/awards/wwff/index.php:10 +#, php-format +msgid "For more information, please visit: %s." +msgstr "" + +#: application/views/awards/helvetia/index.php:114 +msgid "Show Helvetia Map" +msgstr "" + +#: application/views/awards/helvetia/index.php:151 +msgid "Canton" +msgstr "" + +#: application/views/awards/index.php:9 application/views/bands/index.php:46 +#: application/views/interface_assets/header.php:164 +msgid "CQ" +msgstr "" + +#: application/views/awards/iota/index.php:16 +msgid "IOTA Awards" +msgstr "" + +#: application/views/awards/iota/index.php:17 +msgid "" +"IOTA is an exciting and innovative activity program that has captured the " +"interest of thousands of radio amateurs worldwide. Established in 1964, it " +"promotes radio contacts with stations located on islands around the world to " +"enhance the experience of all those active on the amateur bands. To achieve " +"this, it draws on the widespread mystique surrounding islands." +msgstr "" + +#: application/views/awards/iota/index.php:18 +msgid "" +"It is administered by Islands On The Air (IOTA) Ltd (referred to as IOTA " +"Management) in partnership with the Radio Society of Great Britain (RSGB). " +"IOTA Management has grouped the world's islands into approximately 1200 " +"'IOTA groups,' each having varying numbers of 'counters,' which are " +"qualifying islands. These listings are published in the IOTA Directory and " +"on the IOTA website. The objective for the IOTA Island Chaser is to make " +"radio contact with at least one counter in as many of these groups as " +"possible. The program has a well-defined set of rules and encourages " +"friendly competition among chasers by publishing participant performance in " +"an Honor Roll and annual listings, as well as recognizing it with " +"certificates and prestigious awards." +msgstr "" + +#: application/views/awards/iota/index.php:19 +#, php-format +msgid "You can also find this information on %s." +msgstr "" + +#: application/views/awards/iota/index.php:29 +msgid "Deleted IOTA" +msgstr "" + +#: application/views/awards/iota/index.php:132 +msgid "Show IOTA Map" +msgstr "" + +#: application/views/awards/iota/index.php:171 +#: application/views/contesting/add.php:25 +#: application/views/contesting/create.php:24 +#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:214 +#: application/views/dashboard/index.php:18 +#: application/views/labels/index.php:41 application/views/labels/index.php:75 +#: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/qslcarousel.php:34 +#: application/views/logbookadvanced/useroptions.php:54 +#: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 +#: application/views/satellite/edit.php:34 +#: application/views/satellite/index.php:21 +#: application/views/search/result.php:16 +#: application/views/search/search_result_ajax.php:19 +#: application/views/stationsetup/stationsetup.php:30 +#: application/views/themes/index.php:82 +#: application/views/timeline/index.php:236 application/views/user/edit.php:241 +#: application/views/user/edit.php:263 application/views/user/edit.php:285 +#: application/views/user/edit.php:307 application/views/user/edit.php:330 +#: application/views/view_log/partial/log_ajax.php:19 +#: application/views/view_log/qso.php:194 +#: application/views/view_log/qso.php:514 +msgid "Name" +msgstr "" + +#: application/views/awards/iota/index.php:173 +msgid "Deleted" +msgstr "" + +#: application/views/awards/itu/index.php:3 +#: application/views/awards/itu/index.php:150 +#: application/views/logbookadvanced/edit.php:10 +#: application/views/logbookadvanced/index.php:257 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:400 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 +msgid "ITU Zone" +msgstr "" + +#: application/views/awards/itu/index.php:21 +msgid "" +"The Classic Worked ITU Zones award may be claimed by producing evidence of " +"having contacted land based amateur radio stations in at least 70 of the 75 " +"broadcasting zones as defined by the International Telecommunications Union " +"(ITU)." +msgstr "" + +#: application/views/awards/itu/index.php:22 +#, php-format +msgctxt "uses 'RSGB'" +msgid "You can find more information on the website of %s." +msgstr "" + +#: application/views/awards/itu/index.php:25 +msgid "Awards - ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:115 +msgid "Show ITU Zone Map" +msgstr "" + +#: application/views/awards/jcc/index.php:16 +msgid "JCC - Japan Century Cities Award" +msgstr "" + +#: application/views/awards/jcc/index.php:17 +msgid "" +"May be claimed for having contacted (heard) and received a QSL card from an " +"amateur station located in each of at least 100 different cities of Japan." +msgstr "" + +#: application/views/awards/jcc/index.php:18 +msgid "" +"JCC-200, 300, 400, 500, 600, 700 and 800 will be issued as separate awards. " +"A list of QSL cards should be arranged in order of JCC reference number, " +"however names of city may be omitted. An additional sticker will be issued " +"at every 50 contacts like 150, 250, 350, 450, 550, 650, 750 cities." +msgstr "" + +#: application/views/awards/jcc/index.php:115 +msgid "Show JCC Map" +msgstr "" + +#: application/views/awards/jcc/index.php:116 +#: application/views/cabrillo/index.php:180 application/views/cfd/index.php:25 +#: application/views/csv/index.php:128 application/views/dxatlas/index.php:128 +#: application/views/kml/index.php:113 application/views/reg1test/index.php:145 +msgid "Export" +msgstr "" + +#: application/views/awards/jcc/index.php:126 +#: application/views/public_search/empty.php:2 +#: application/views/public_search/result.php:2 +msgid "Results" +msgstr "" + +#: application/views/awards/jcc/index.php:151 +#: application/views/awards/waja/index.php:153 +#: application/views/distancerecords/index.php:13 +msgid "Number" +msgstr "" + +#: application/views/awards/jcc/index.php:152 +#: application/views/search/result.php:21 +#: application/views/view_log/qso.php:524 +msgid "City" +msgstr "" + +#: application/views/awards/jcc/index.php:187 +#: application/views/dashboard/index.php:368 +#: application/views/distances/index.php:23 +msgid "SAT" +msgstr "" + +#: application/views/awards/pota/index.php:7 +msgid "POTA Awards" +msgstr "" + +#: application/views/awards/pota/index.php:8 +msgid "" +"Parks on the Air® (POTA) started in early 2017 when the ARRL's National " +"Parks on the Air special event ended. A group of volunteers wanted to " +"continue the fun beyond the one-year event, and thus, POTA was born." +msgstr "" + +#: application/views/awards/pota/index.php:9 +msgid "" +"POTA works similarly to SOTA, with Activators and Hunters. For the awards, " +"there are several categories based on the number of parks, geographic areas, " +"and more." +msgstr "" + +#: application/views/awards/pota/index.php:10 +#, php-format +msgctxt "uses 'the website'" +msgid "" +"For more information about the available awards and categories, please visit " +"the %s." +msgstr "" + +#: application/views/awards/pota/index.php:31 +#: application/views/qso/index.php:236 application/views/qso/index.php:492 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 +#: application/views/user/edit.php:595 application/views/view_log/qso.php:306 +#: application/views/view_log/qso.php:573 +msgid "POTA Reference(s)" +msgstr "" + +#: application/views/awards/rac/index.php:3 +msgctxt "Canada Province" +msgid "Province" +msgstr "" + +#: application/views/awards/rac/index.php:4 +msgid "Hover over a province" +msgstr "" + +#: application/views/awards/rac/index.php:106 +msgid "Show RAC Map" +msgstr "" + +#: application/views/awards/sig/index.php:7 +msgid "SIG Information" +msgstr "" + +#: application/views/awards/sig/index.php:8 +msgid "" +"The SIG or Signature Category provides the possibility to use any kind of " +"'Award Signature' for awards that are not implemented in Wavelog." +msgstr "" + +#: application/views/awards/sig/index.php:9 +msgid "" +"The reason for this is that the common ADIF format provides only a few " +"dedicated fields for certain awards. SIG still makes it possible to use and " +"evaluate all other types of signature markers." +msgstr "" + +#: application/views/awards/sig/index.php:10 +msgid "" +"In the QSO processing, you will find two fields: 'SIG' contains the actual " +"marker, which is also visible in the award evaluation, and 'SIG INFO,' which " +"contains a description of the signature. Both fields are freely customizable." +msgstr "" + +#: application/views/awards/sig/index.php:21 +msgid "Award Type" +msgstr "" + +#: application/views/awards/sig/index.php:22 +#: application/views/continents/index.php:17 +#: application/views/distances/index.php:12 +#: application/views/timeplotter/index.php:4 +msgid "Number of QSOs" +msgstr "" + +#: application/views/awards/sig/index.php:23 +msgid "Number of Refs" +msgstr "" + +#: application/views/awards/sig/qso_list.php:9 +#: application/views/awards/sota/index.php:23 +msgid "Reference" +msgstr "" + +#: application/views/awards/sig/qso_list.php:10 +#: application/views/awards/sota/index.php:24 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/logbookadvanced/useroptions.php:22 +#: application/views/qslmanagement/index.php:23 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/search/lotw_unconfirmed_result.php:7 +#: application/views/view_log/qso.php:71 +msgid "Date/Time" +msgstr "" + +#: application/views/awards/sig/qso_list.php:14 +#: application/views/awards/sota/index.php:27 +msgid "RST Sent" +msgstr "" + +#: application/views/awards/sig/qso_list.php:15 +#: application/views/awards/sota/index.php:28 +msgid "RST Received" +msgstr "" + +#: application/views/awards/sig/qso_list.php:34 +msgid "Export QSOs to ADIF" +msgstr "" + +#: application/views/awards/sota/index.php:7 +msgid "SOTA Awards" +msgstr "" + +#: application/views/awards/sota/index.php:8 +msgid "" +"SOTA (Summits On The Air) is an award scheme for radio amateurs that " +"encourages portable operation in mountainous areas." +msgstr "" + +#: application/views/awards/sota/index.php:9 +msgid "" +"It is fully operational in nearly a hundred countries worldwide. Each " +"country has its own Association that defines the recognized SOTA summits " +"within that Association. Each summit earns the activators and chasers a " +"score related to the height of the summit. Certificates are available for " +"various scores, leading to the prestigious 'Mountain Goat' and 'Shack Sloth' " +"trophies. An Honor Roll for Activators and Chasers is maintained in the SOTA " +"online database." +msgstr "" + +#: application/views/awards/vucc/index.php:7 +msgid "VUCC - VHF/UHF Century Club Award" +msgstr "" + +#: application/views/awards/vucc/index.php:8 +msgid "" +"The VHF/UHF Century Club Award is given for a minimum number of worked and " +"confirmed gridsquares on a desired band." +msgstr "" + +#: application/views/awards/vucc/index.php:9 +#, php-format +msgid "Official information and the rules can be found in this document: %s." +msgstr "" + +#: application/views/awards/vucc/index.php:10 +msgid "Only VHF/UHF bands are relevant." +msgstr "" + +#: application/views/awards/vucc/index.php:22 +msgid "Grids Worked" +msgstr "" + +#: application/views/awards/vucc/index.php:23 +msgid "Grids Confirmed" +msgstr "" + +#: application/views/awards/wab/index.php:12 +msgid "WAB - Worked All Britain Award" +msgstr "" + +#: application/views/awards/wab/index.php:13 +msgid "" +"WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham " +"radio operators to work all the squares in Great Britain." +msgstr "" + +#: application/views/awards/wab/index.php:14 +msgid "" +"May be claimed for having contacted an amateur station located in the " +"required amount of squares, described on the page linked below." +msgstr "" + +#: application/views/awards/wab/index.php:109 +msgid "List" +msgstr "" + +#: application/views/awards/wab/list.php:5 +msgid "WAB Square" +msgstr "" + +#: application/views/awards/wac/index.php:9 +msgid "" +"Sponsored by the International Amateur Radio Union (IARU), the Worked All " +"Continents award is issued for working and confirming all six continents. " +"These are North America, South America, Oceania, Asia, Europe and Africa." +msgstr "" + +#: application/views/awards/wac/index.php:13 +msgid "Awards - Worked All Continents (WAC)" +msgstr "" + +#: application/views/awards/wac/index.php:151 +#: application/views/continents/index.php:62 +#: application/views/logbookadvanced/edit.php:25 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 +#: application/views/view_log/qso.php:245 +msgid "Continent" +msgstr "" + +#: application/views/awards/waja/index.php:3 +msgctxt "Japan Prefecture" +msgid "Prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:4 +msgid "Hover over a prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:19 +msgid "WAJA - Worked All Japan prefectures Award" +msgstr "" + +#: application/views/awards/waja/index.php:20 +msgid "" +"WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " +"radio operators to work all the prefectures in Japan." +msgstr "" + +#: application/views/awards/waja/index.php:21 +msgid "" +"May be claimed for having contacted (heard) and received a QSL card from an " +"amateur station located in each of the 47 prefectures of Japan. A list of " +"QSL cards should be arranged in order of WAJA (HAJA) reference number, " +"however names of prefectures may be omitted." +msgstr "" + +#: application/views/awards/waja/index.php:118 +msgid "Show WAJA Map" +msgstr "" + +#: application/views/awards/waja/index.php:154 +#: application/views/timeline/index.php:185 +msgid "Prefecture" +msgstr "" + +#: application/views/awards/was/index.php:3 +msgctxt "USA State" +msgid "State" +msgstr "" + +#: application/views/awards/was/index.php:4 +msgid "Hover over a state" +msgstr "" + +#: application/views/awards/was/index.php:20 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:21 +msgid "" +"ARRL's most popular award is the Worked All States Award. Thousands upon " +"thousands of awards have been issued to hams around the world. In ARRL's " +"101st year, they have redesigned the certificates and the program in hopes " +"of streamlining and improving the award program." +msgstr "" + +#: application/views/awards/was/index.php:22 +msgid "" +"The WAS (Worked All States) Award is available to all amateurs worldwide who " +"submit proof with written confirmation of contacts with each of the 50 " +"states of the United States of America. Amateurs in the U.S. and its " +"possessions must be members of ARRL to apply for a WAS. Applicants from " +"outside the U.S. are exempt from this requirement." +msgstr "" + +#: application/views/awards/was/index.php:23 +#, php-format +msgctxt "uses 'here'" +msgid "All information and rules for the ARRL WAS Award can be found %s." +msgstr "" + +#: application/views/awards/was/index.php:114 +msgid "Show WAS Map" +msgstr "" + +#: application/views/awards/wwff/index.php:7 +msgid "WWFF - World Wide Flora and Fauna Award" +msgstr "" + +#: application/views/awards/wwff/index.php:8 +msgid "" +"WWFF, World Wide Flora and Fauna in Amateur Radio, encourages licensed ham " +"radio operators to leave their shacks and operate portable in Protected " +"Flora & Fauna areas (PFF) worldwide." +msgstr "" + +#: application/views/awards/wwff/index.php:9 +msgid "" +"More than 26,000 Protected Flora & Fauna (PFF) areas worldwide are already " +"registered in the WWFF Directory. Hunters and Activators can apply for " +"colorful awards, both globally and nationally." +msgstr "" + +#: application/views/awards/wwff/index.php:31 +#: application/views/qso/index.php:224 application/views/qso/index.php:479 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 +#: application/views/user/edit.php:591 application/views/view_log/qso.php:299 +#: application/views/view_log/qso.php:566 +msgid "WWFF Reference" +msgstr "" + +#: application/views/backup/adif_view.php:7 +msgid "" +"The backup of your log completed successfully. The output can be found at" +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 "" + +#: application/views/backup/adif_view.php:13 +#: application/views/backup/notes_view.php:13 +msgid "" +"Something went wrong during the backup process. Check that the backup folder " +"exists and is writeable by your web server user / group." +msgstr "" + +#: application/views/backup/main.php:17 +msgid "" +"Some of the data stored in Wavelog can be exported so that you can keep a " +"backup copy elsewhere." +msgstr "" + +#: application/views/backup/main.php:18 +msgid "" +"It's recommended to create backups on a regular basis to protect your data." +msgstr "" + +#: application/views/backup/main.php:19 +msgid "Backup ADIF data" +msgstr "" + +#: application/views/backup/main.php:20 +msgid "Backup Notes" +msgstr "" + +#: application/views/backup/notes_view.php:7 +msgid "" +"The backup of your notes completed successfully. The output can be found at" +msgstr "" + +#: application/views/bandmap/index.php:15 application/views/bandmap/list.php:49 +msgid "BandMap" +msgstr "" + +#: application/views/bandmap/index.php:18 application/views/bandmap/list.php:52 +msgid "BandList" +msgstr "" + +#: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 +#: application/views/contesting/index.php:15 +#: application/views/contesting/index.php:52 +#: application/views/contesting/index.php:145 +#: application/views/qso/index.php:314 +msgid "None" +msgstr "" + +#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:76 +msgid "Spots de" +msgstr "" + +#: application/views/bandmap/list.php:69 +msgid "DXCC-Status" +msgstr "" + +#: application/views/bandmap/list.php:74 +msgid "Not Confirmed" +msgstr "" + +#: application/views/bandmap/list.php:113 +msgid "Spotter" +msgstr "" + +#: application/views/bandmap/list.php:114 +#: application/views/oqrs/notinlogform.php:28 +#: application/views/oqrs/request.php:54 +#: application/views/oqrs/request_grouped.php:58 +msgid "Message" +msgstr "" + +#: application/views/bands/create.php:26 application/views/bands/edit.php:8 +msgid "Name of Band (E.g. 20m)" +msgstr "" + +#: application/views/bands/create.php:29 application/views/bands/edit.php:11 +#: application/views/bands/index.php:61 +msgid "Bandgroup" +msgstr "" + +#: application/views/bands/create.php:31 application/views/bands/edit.php:13 +msgid "Name of bandgroup (E.g. hf, vhf, uhf, shf)" +msgstr "" + +#: application/views/bands/create.php:34 application/views/bands/edit.php:16 +#: application/views/bands/index.php:62 +msgid "SSB QRG" +msgstr "" + +#: application/views/bands/create.php:36 application/views/bands/edit.php:18 +msgid "Frequency for SSB QRG in band (must be in Hz)" +msgstr "" + +#: application/views/bands/create.php:39 application/views/bands/edit.php:21 +#: application/views/bands/index.php:63 +msgid "DATA QRG" +msgstr "" + +#: application/views/bands/create.php:41 application/views/bands/edit.php:23 +msgid "Frequency for DATA QRG in band (must be in Hz)" +msgstr "" + +#: application/views/bands/create.php:44 application/views/bands/edit.php:26 +#: application/views/bands/index.php:64 +msgid "CW QRG" +msgstr "" + +#: application/views/bands/create.php:46 application/views/bands/edit.php:28 +msgid "Frequency for CW QRG in band (must be in Hz)" +msgstr "" + +#: application/views/bands/index.php:36 +msgid "" +"Using the band list you can control which bands are shown when creating a " +"new QSO." +msgstr "" + +#: application/views/bands/index.php:37 +msgid "" +"Active bands will be shown in the QSO 'Band' drop-down, while inactive bands " +"will be hidden and cannot be selected." +msgstr "" + +#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 +#: application/views/qso/index.php:248 application/views/qso/index.php:504 +#: application/views/user/edit.php:599 application/views/view_log/qso.php:328 +#: application/views/view_log/qso.php:580 +msgid "Sig" +msgstr "" + +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:339 +#: application/views/qso/index.php:443 +msgid "USA County" +msgstr "" + +#: application/views/bands/index.php:58 +#: application/views/interface_assets/header.php:212 +msgid "WAJA" +msgstr "" + +#: application/views/bands/index.php:59 +#: application/views/interface_assets/header.php:236 +msgid "WAS" +msgstr "" + +#: application/views/bands/index.php:65 +msgid "QRG Unit" +msgstr "" + +#: application/views/bands/index.php:98 +msgid "Hz" +msgstr "" + +#: application/views/bands/index.php:99 +msgid "kHz" +msgstr "" + +#: application/views/bands/index.php:100 +msgid "MHz" +msgstr "" + +#: application/views/bands/index.php:101 +msgid "GHz" +msgstr "" + +#: application/views/bands/index.php:151 application/views/bands/index.php:157 +msgid "Create a band" +msgstr "" + +#: application/views/bands/index.php:152 +#: application/views/contesting/add.php:74 +#: application/views/contesting/index.php:83 +#: application/views/interface_assets/footer.php:44 +#: application/views/simplefle/index.php:21 +#: application/views/version_dialog/index.php:79 +msgid "Close" +msgstr "" + +#: application/views/bands/index.php:153 +msgid "Warning! Are you sure you want to delete the following band: " +msgstr "" + +#: application/views/bands/index.php:154 +msgid "Warning! Are you sure you want to activate all bands?" +msgstr "" + +#: application/views/bands/index.php:155 +msgid "Warning! Are you sure you want to deactivate all bands?" +msgstr "" + +#: application/views/bands/index.php:158 +#: application/views/contesting/add.php:77 application/views/mode/index.php:77 +msgid "Activate All" +msgstr "" + +#: application/views/bands/index.php:159 +#: application/views/contesting/add.php:78 application/views/mode/index.php:78 +msgid "Deactivate All" +msgstr "" + +#: application/views/cabrillo/index.php:2 +#: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:59 +#: application/views/reg1test/index.php:2 +#: application/views/reg1test/index.php:36 +msgid "Proceed" +msgstr "" + +#: application/views/cabrillo/index.php:3 +#: application/views/reg1test/index.php:3 +msgid "Select Year" +msgstr "" + +#: application/views/cabrillo/index.php:4 +#: application/views/reg1test/index.php:4 +msgid "Select Contest" +msgstr "" + +#: application/views/cabrillo/index.php:5 +#: application/views/reg1test/index.php:5 +msgid "Select Date Range" +msgstr "" + +#: application/views/cabrillo/index.php:6 +#: application/views/reg1test/index.php:7 +msgid "No contests were found for this station location!" +msgstr "" + +#: application/views/cabrillo/index.php:16 +msgid "Export a contest to a Cabrillo log" +msgstr "" + +#: application/views/cabrillo/index.php:28 +msgid "Select Station Location:" +msgstr "" + +#: application/views/cabrillo/index.php:44 +#: application/views/reg1test/index.php:53 +msgid "Club" +msgstr "" + +#: application/views/cabrillo/index.php:48 +#: application/views/reg1test/index.php:58 +msgid "Category Operator" +msgstr "" + +#: application/views/cabrillo/index.php:56 +msgid "Category Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:63 +msgid "Category Band" +msgstr "" + +#: application/views/cabrillo/index.php:89 +msgid "Light/Laser" +msgstr "" + +#: application/views/cabrillo/index.php:90 +msgid "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)" +msgstr "" + +#: application/views/cabrillo/index.php:94 +msgid "Category Mode" +msgstr "" + +#: application/views/cabrillo/index.php:105 +msgid "Category Power" +msgstr "" + +#: application/views/cabrillo/index.php:113 +msgid "Category Station" +msgstr "" + +#: application/views/cabrillo/index.php:129 +msgid "Category Transmitter" +msgstr "" + +#: application/views/cabrillo/index.php:139 +msgid "Category Overlay" +msgstr "" + +#: application/views/cabrillo/index.php:150 +#: application/views/reg1test/index.php:70 +msgid "Operators" +msgstr "" + +#: application/views/cabrillo/index.php:155 +#: application/views/reg1test/index.php:139 +msgid "Soapbox" +msgstr "" + +#: application/views/cabrillo/index.php:159 +msgid "Address" +msgstr "" + +#: application/views/cabrillo/index.php:163 +msgid "Address City" +msgstr "" + +#: application/views/cabrillo/index.php:167 +msgid "Address State/Province" +msgstr "" + +#: application/views/cabrillo/index.php:171 +msgid "Address Postalcode" +msgstr "" + +#: application/views/cabrillo/index.php:175 +msgid "Address Country" +msgstr "" + +#: application/views/cabrillo/index.php:186 +#: application/views/reg1test/index.php:150 +msgid "No contests were found in your log." +msgstr "" + +#: application/views/cfd/index.php:7 +#, php-format +msgid "Export of CFD-File for DARC-Toplist (See %s)" +msgstr "" + +#: application/views/components/hamsat/table.php:3 +#: application/views/hamsat/index.php:7 +msgid "Hamsat - Satellite Rovers" +msgstr "" + +#: application/views/components/hamsat/table.php:4 +#: application/views/contestcalendar/index.php:4 +#: application/views/dxcalendar/index.php:4 +#: application/views/hamsat/index.php:8 +msgid "This data comes from" +msgstr "" + +#: application/views/components/hamsat/table.php:11 +msgid "Show All Passes" +msgstr "" + +#: application/views/components/hamsat/table.php:14 +msgid "Private feed key empty. Please set the feed key in your profile." +msgstr "" + +#: application/views/components/hamsat/table.php:19 +msgid "No upcoming activations found. Please check back later." +msgstr "" + +#: application/views/components/hamsat/table.php:28 +#: application/views/contesting/index.php:219 +#: application/views/hamsat/index.php:31 +#: application/views/logbookadvanced/edit.php:5 +#: application/views/logbookadvanced/index.php:629 +#: application/views/logbookadvanced/useroptions.php:114 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 +#: application/views/view_log/qso.php:202 +msgid "Comment" +msgstr "" + +#: application/views/components/hamsat/table.php:31 +#: application/views/hamsat/index.php:34 +msgid "Gridsquare(s)" +msgstr "" + +#: application/views/components/hamsat/table.php:32 +#: application/views/hamsat/index.php:35 +msgid "Workable" +msgstr "" + +#: application/views/components/hamsat/table.php:134 +msgctxt "Hamsat - Track Satellites" +msgid "Track" +msgstr "" + +#: application/views/components/hamsat/table.php:146 +msgid "Sked" +msgstr "" + +#: application/views/components/radio_display_table.php:5 +msgid "Radio Status" +msgstr "" + +#: application/views/contestcalendar/index.php:9 +msgid "No Contests" +msgstr "" + +#: application/views/contestcalendar/index.php:14 +#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:635 +#: application/views/logbookadvanced/useroptions.php:122 +#: application/views/qso/edit_ajax.php:39 +#: application/views/simplefle/index.php:80 +msgid "Contest" +msgstr "" + +#: application/views/contestcalendar/index.php:15 +#: application/views/statistics/custom.php:41 +#: application/views/statistics/custom_result.php:43 +msgid "Start" +msgstr "" + +#: application/views/contestcalendar/index.php:16 +#: application/views/statistics/custom.php:46 +#: application/views/statistics/custom_result.php:48 +msgid "End" +msgstr "" + +#: application/views/contestcalendar/index.php:17 +msgid "Link" +msgstr "" + +#: application/views/contestcalendar/index.php:26 +msgid "Show Details" +msgstr "" + +#: application/views/contestcalendar/index.php:38 +#: application/views/dashboard/index.php:278 +#: application/views/dashboard/index.php:305 +#: application/views/dashboard/index.php:326 +#: application/views/dashboard/index.php:347 +#: application/views/satellite/pass.php:475 +msgid "Today" +msgstr "" + +#: application/views/contestcalendar/index.php:48 +msgid "Weekend" +msgstr "" + +#: application/views/contestcalendar/index.php:59 +msgid "Next Week" +msgstr "" + +#: application/views/contesting/add.php:16 +msgid "" +"Using the contest list, you can control which Contests are shown when " +"logging QSOs in a contest." +msgstr "" + +#: application/views/contesting/add.php:19 +msgid "" +"Active contests will be shown in the Contest Name drop-down, while inactive " +"contests will be hidden and cannot be selected." +msgstr "" + +#: application/views/contesting/add.php:26 +#: application/views/contesting/create.php:30 +msgid "ADIF Name" +msgstr "" + +#: application/views/contesting/add.php:27 +#: application/views/contesting/add.php:41 +#: application/views/contesting/add.php:44 +#: application/views/contesting/edit.php:43 +#: application/views/contesting/edit.php:46 +#: application/views/interface_assets/header.php:472 +#: application/views/mode/create.php:46 application/views/mode/create.php:48 +#: application/views/mode/edit.php:57 application/views/mode/edit.php:60 +#: application/views/mode/index.php:43 +msgid "Active" +msgstr "" + +#: application/views/contesting/add.php:39 +#: application/views/contesting/add.php:44 +#: application/views/contesting/edit.php:49 +msgid "Not Active" +msgstr "" + +#: application/views/contesting/add.php:40 +#: application/views/contesting/add.php:49 application/views/mode/index.php:48 +msgid "Activate" +msgstr "" + +#: application/views/contesting/add.php:42 +#: application/views/contesting/add.php:47 application/views/mode/index.php:46 +msgid "Deactivate" +msgstr "" + +#: application/views/contesting/add.php:54 +msgid "DANGER!" +msgstr "" + +#: application/views/contesting/add.php:55 +msgid "Warning! Are you sure you want to delete the following contest: " +msgstr "" + +#: application/views/contesting/add.php:56 +msgid "Warning! Are you sure you want to activate all contests?" +msgstr "" + +#: application/views/contesting/add.php:57 +msgid "Warning! Are you sure you want to deactivate all contests?" +msgstr "" + +#: application/views/contesting/add.php:73 +#: application/views/contesting/add.php:76 +msgid "Add a Contest" +msgstr "" + +#: application/views/contesting/create.php:26 +#: application/views/contesting/edit.php:33 +msgid "Name of the Contest" +msgstr "" + +#: application/views/contesting/create.php:32 +#: application/views/contesting/edit.php:39 +msgid "Name of Contest in ADIF-specification" +msgstr "" + +#: application/views/contesting/create.php:35 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 +msgid "Create" +msgstr "" + +#: application/views/contesting/edit.php:31 +#: application/views/contesting/index.php:25 +#: application/views/qso/edit_ajax.php:575 +#: application/views/view_log/qso.php:278 +msgid "Contest Name" +msgstr "" + +#: application/views/contesting/edit.php:37 +msgid "Contest ADIF Name" +msgstr "" + +#: application/views/contesting/edit.php:52 +msgid "Set to active if to be listed in Contest-list" +msgstr "" + +#: application/views/contesting/index.php:2 +msgid "Start new Contest Session" +msgstr "" + +#: application/views/contesting/index.php:11 +msgid "Exchange Type" +msgstr "" + +#: application/views/contesting/index.php:16 +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:18 +msgid "Serial" +msgstr "" + +#: application/views/contesting/index.php:19 +msgid "Serial + Exchange" +msgstr "" + +#: application/views/contesting/index.php:20 +msgid "Serial + Gridsquare" +msgstr "" + +#: application/views/contesting/index.php:21 +msgid "Serial + Gridsquare + Exchange" +msgstr "" + +#: application/views/contesting/index.php:35 +#: application/views/operator/index.php:5 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:352 +msgid "Operator Callsign" +msgstr "" + +#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:45 +msgid "More Settings" +msgstr "" + +#: application/views/contesting/index.php:49 +msgid "Copy received exchange to" +msgstr "" + +#: application/views/contesting/index.php:51 +msgid "Exchange is only copied if it is matching rules for the selected field!" +msgstr "" + +#: application/views/contesting/index.php:55 +msgid "Age" +msgstr "" + +#: application/views/contesting/index.php:57 +msgid "RX Power (W)" +msgstr "" + +#: application/views/contesting/index.php:58 +msgid "Locator" +msgstr "" + +#: application/views/contesting/index.php:59 +#: application/views/qso/edit_ajax.php:177 +msgid "QTH" +msgstr "" + +#: application/views/contesting/index.php:64 +msgid "Sequence of Exchanges" +msgstr "" + +#: application/views/contesting/index.php:67 +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 "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Grid" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Serial" +msgstr "" + +#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:255 +#: application/views/qso/edit_ajax.php:598 +msgid "Serial (S)" +msgstr "" + +#: application/views/contesting/index.php:177 +msgid "Gridsquare (S)" +msgstr "" + +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:253 +msgid "Exch (S)" +msgstr "" + +#: application/views/contesting/index.php:196 +#: application/views/contesting/index.php:256 +#: application/views/qso/edit_ajax.php:593 +msgid "Serial (R)" +msgstr "" + +#: application/views/contesting/index.php:201 +msgid "Gridsquare (R)" +msgstr "" + +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:254 +msgid "Exch (R)" +msgstr "" + +#: application/views/contesting/index.php:224 +msgid "Reset QSO" +msgstr "" + +#: application/views/contesting/index.php:225 +#: application/views/qso/index.php:629 +msgid "Save QSO" +msgstr "" + +#: application/views/contesting/index.php:234 +msgid "Callsign Suggestions" +msgstr "" + +#: application/views/contesting/index.php:241 +msgid "Contest Logbook" +msgstr "" + +#: application/views/contesting/index.php:258 +#: application/views/qso/edit_ajax.php:164 +msgid "VUCC Gridsquare" +msgstr "" + +#: application/views/continents/index.php:63 +#: application/views/statistics/index.php:19 +#: application/views/statistics/index.php:113 +msgid "# of QSO's worked" +msgstr "" + +#: application/views/cron/edit.php:11 +msgid "Identifier" +msgstr "" + +#: application/views/cron/edit.php:22 +#: application/views/options/appearance.php:56 +#: application/views/options/appearance.php:63 +#: application/views/options/appearance.php:72 +#: application/views/options/appearance.php:82 +#: application/views/options/appearance.php:91 +#: application/views/options/appearance.php:100 +#: application/views/options/appearance.php:109 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 +#: application/views/stationsetup/stationsetup.php:73 +#: application/views/user/edit.php:452 application/views/user/edit.php:461 +msgid "Enabled" +msgstr "" + +#: application/views/cron/edit.php:36 application/views/cron/index.php:55 +msgid "Intervall" +msgstr "" + +#: application/views/cron/edit.php:38 +msgid "Choose a preset from the dropdown" +msgstr "" + +#: application/views/cron/edit.php:43 +msgid "Every 5 Minutes" +msgstr "" + +#: application/views/cron/edit.php:44 +msgid "Every 15 Minutes" +msgstr "" + +#: application/views/cron/edit.php:45 +msgid "Every Hour" +msgstr "" + +#: application/views/cron/edit.php:46 +msgid "Every 2 Hours" +msgstr "" + +#: application/views/cron/edit.php:47 +msgid "Every Day at Midnight" +msgstr "" + +#: application/views/cron/edit.php:48 +msgid "Every Monday at 03:00" +msgstr "" + +#: application/views/cron/edit.php:49 +msgid "First Day of Every Month at midnight" +msgstr "" + +#: application/views/cron/edit.php:50 +msgid "Every 2 Months at 02:00" +msgstr "" + +#: application/views/cron/edit.php:62 +msgid "OR" +msgstr "" + +#: application/views/cron/edit.php:63 +msgid "Enter your own Cron Expression" +msgstr "" + +#: application/views/cron/edit.php:74 +#: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 +msgid "Cancel" +msgstr "" + +#: application/views/cron/index.php:9 +msgid "How it works" +msgstr "" + +#: application/views/cron/index.php:15 +msgid "" +"The Cron Manager assists the administrator in managing cron jobs without " +"requiring CLI access." +msgstr "" + +#: application/views/cron/index.php:19 +msgid "" +"To execute cron jobs based on the data below, remove all old cron jobs and " +"create a new one:" +msgstr "" + +#: application/views/cron/index.php:29 application/views/cron/index.php:33 +msgid "Status Master-Cron:" +msgstr "" + +#: application/views/cron/index.php:33 +msgctxt "PHP Version" +msgid "Min. Version is" +msgstr "" + +#: application/views/cron/index.php:33 +msgid "PHP Version not supported." +msgstr "" + +#: application/views/cron/index.php:43 +msgid "Cron List" +msgstr "" + +#: application/views/cron/index.php:52 +#: application/views/stationsetup/stationsetup.php:121 +msgid "ID" +msgstr "" + +#: application/views/cron/index.php:56 +msgid "Last Run" +msgstr "" + +#: application/views/cron/index.php:57 +msgid "Next Run" +msgstr "" + +#: application/views/cron/index.php:70 +msgid "healthy" +msgstr "" + +#: application/views/cron/index.php:72 +msgid "failed" +msgstr "" + +#: application/views/cron/index.php:74 +msgid "pending" +msgstr "" + +#: application/views/cron/index.php:79 +msgid "disabled" +msgstr "" + +#: application/views/cron/index.php:83 application/views/cron/index.php:85 +#: application/views/cron/index.php:87 application/views/debug/index.php:494 +#: application/views/debug/index.php:500 application/views/debug/index.php:505 +#: application/views/debug/index.php:510 application/views/debug/index.php:515 +#: application/views/debug/index.php:520 application/views/debug/index.php:525 +#: application/views/user/index.php:138 +msgid "never" +msgstr "" + +#: application/views/cron/index.php:102 +msgid "Your Mastercron isn't running." +msgstr "" + +#: application/views/cron/index.php:103 +msgid "" +"Copy the cron above to a external cron service or into your server's cron to " +"use this cron manager." +msgstr "" + +#: application/views/cron/index.php:104 +msgid "" +"On a basic linux server with shell access use this command to edit your " +"crons:" +msgstr "" + +#: application/views/cron/index.php:111 +#, php-format +msgid "" +"You need to upgrade your PHP version. Minimum version is %s. Your Version is " +"%s" +msgstr "" + +#: application/views/csv/index.php:7 +msgid "Export your logbook for SOTA uploads." +msgstr "" + +#: application/views/csv/index.php:11 +msgid "Only QSOs with SOTA information will be exported!" +msgstr "" + +#: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 +#: application/views/eqsl/download.php:42 +#: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:411 +msgid "Propagation Mode" +msgstr "" + +#: application/views/dashboard/index.php:5 +msgid "RSTS" +msgstr "" + +#: application/views/dashboard/index.php:6 +msgid "RSTR" +msgstr "" + +#: application/views/dashboard/index.php:58 +msgid "" +"You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +msgstr "" + +#: application/views/dashboard/index.php:65 +#, php-format +msgctxt "Dashboard Warning" +msgid "You need to update country files! Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:73 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station locations. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:81 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station logbook. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:89 +#, php-format +msgctxt "Dashboard Warning" +msgid "" +"Your active Station Location isn't linked to your Logbook. Click %shere%s to " +"do it." +msgstr "" + +#: application/views/dashboard/index.php:97 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station linked to your Logbook. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:106 +#, php-format +msgid "You have had %d QSO today" +msgid_plural "You have had %d QSOs today" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/views/dashboard/index.php:112 +msgid "You have made no QSOs today; time to turn on the radio!" +msgstr "" + +#: application/views/dashboard/index.php:119 +msgid "Attention: you need to set an active station location." +msgstr "" + +#: application/views/dashboard/index.php:125 +msgid "" +"You have themes without defined theme mode. Please ask the admin to edit the " +"themes." +msgstr "" + +#: application/views/dashboard/index.php:133 +msgid "At least one of your LoTW certificates is expired!" +msgstr "" + +#: application/views/dashboard/index.php:139 +msgid "At least one of your LoTW certificates is about to expire!" +msgstr "" + +#: application/views/dashboard/index.php:229 +#: application/views/visitor/index.php:237 +msgid "QSOs Breakdown" +msgstr "" + +#: application/views/dashboard/index.php:252 +#: application/views/visitor/index.php:258 +msgid "Countries Breakdown" +msgstr "" + +#: application/views/dashboard/index.php:269 +#: application/views/visitor/index.php:275 +msgid "Needed" +msgstr "" + +#: application/views/dashboard/index.php:282 +#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:330 +#: application/views/dashboard/index.php:351 +#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:159 +#: application/views/qslprint/qsolist.php:58 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:167 +#: application/views/qso/edit_ajax.php:417 +#: application/views/qso/edit_ajax.php:478 +#: application/views/qso/edit_ajax.php:518 application/views/qso/index.php:572 +#: application/views/search/result_search.php:8 +#: application/views/search/search_result_ajax.php:180 +#: application/views/search/search_result_ajax.php:260 +#: application/views/search/search_result_ajax.php:298 +#: application/views/search/search_result_ajax.php:332 +#: application/views/search/search_result_ajax.php:362 +#: application/views/statistics/custom_result.php:89 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:289 +#: application/views/view_log/partial/log_ajax.php:297 +#: application/views/visitor/index.php:287 +#: application/views/visitor/index.php:310 +#: application/views/visitor/index.php:328 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:270 +#: src/QSLManager/QSO.php:373 src/QSLManager/QSO.php:425 +#: src/QSLManager/QSO.php:461 +msgid "Sent" +msgstr "" + +#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:315 +#: application/views/dashboard/index.php:336 +#: application/views/dashboard/index.php:357 +#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 +#: application/views/oqrs/qsolist.php:174 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:151 +#: application/views/qslprint/qsolist.php:182 +#: application/views/qso/edit_ajax.php:450 +#: application/views/qso/edit_ajax.php:491 +#: application/views/qso/edit_ajax.php:530 +#: application/views/search/search_result_ajax.php:222 +#: application/views/search/search_result_ajax.php:273 +#: application/views/search/search_result_ajax.php:313 +#: application/views/search/search_result_ajax.php:345 +#: application/views/search/search_result_ajax.php:375 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:265 +#: application/views/view_log/partial/log_ajax.php:290 +#: application/views/view_log/partial/log_ajax.php:298 +#: application/views/visitor/index.php:292 +#: application/views/visitor/index.php:315 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:315 +#: src/QSLManager/QSO.php:396 src/QSLManager/QSO.php:438 +#: src/QSLManager/QSO.php:474 +msgid "Received" +msgstr "" + +#: application/views/dashboard/index.php:294 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:415 +#: application/views/logbookadvanced/index.php:426 +#: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 +#: application/views/qslprint/qsolist.php:64 +#: application/views/qslprint/qsolist.php:106 +#: application/views/qso/edit_ajax.php:422 +#: application/views/qso/edit_ajax.php:455 +#: application/views/qso/edit_ajax.php:483 +#: application/views/qso/edit_ajax.php:496 +#: application/views/qso/edit_ajax.php:523 +#: application/views/qso/edit_ajax.php:535 application/views/qso/index.php:577 +#: application/views/search/search_result_ajax.php:186 +#: application/views/search/search_result_ajax.php:228 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +#: application/views/view_log/partial/log_ajax.php:249 +#: application/views/view_log/partial/log_ajax.php:275 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:276 +#: src/QSLManager/QSO.php:321 src/QSLManager/QSO.php:381 +#: src/QSLManager/QSO.php:404 +msgid "Requested" +msgstr "" + +#: application/views/dashboard/index.php:304 +msgctxt "Probably no translation needed as this is a name." +msgid "Logbook of the World" +msgstr "" + +#: application/views/dashboard/index.php:367 +msgid "VUCC-Grids" +msgstr "" + +#: application/views/dayswithqso/index.php:2 +#: application/views/interface_assets/header.php:148 +msgid "Days with QSOs" +msgstr "" + +#: application/views/dayswithqso/index.php:25 +msgid "Days" +msgstr "" + +#: application/views/dayswithqso/index.php:37 +msgid "Longest streak with QSOs in the log" +msgstr "" + +#: application/views/dayswithqso/index.php:38 +msgid "A maximum of the 10 longest streaks are shown!" +msgstr "" + +#: application/views/dayswithqso/index.php:56 +msgid "Streak (continuous days with QSOs)" +msgstr "" + +#: application/views/dayswithqso/index.php:57 +#: application/views/dayswithqso/index.php:85 +#: application/views/dayswithqso/index.php:107 +msgid "Start Date" +msgstr "" + +#: application/views/dayswithqso/index.php:58 +#: application/views/dayswithqso/index.php:86 +#: application/views/dayswithqso/index.php:108 +#: application/views/timeline/index.php:153 +msgid "End Date" +msgstr "" + +#: application/views/dayswithqso/index.php:74 +msgctxt "Days with QSOs" +msgid "No streak found!" +msgstr "" + +#: application/views/dayswithqso/index.php:78 +msgid "Current streak with QSOs in the log" +msgstr "" + +#: application/views/dayswithqso/index.php:84 +#: application/views/dayswithqso/index.php:106 +msgid "Current streak (continuous days with QSOs)" +msgstr "" + +#: application/views/dayswithqso/index.php:101 +msgid "" +"If you make a QSO today, you can continue to extend your streak... or else " +"your current streak will be broken!" +msgstr "" + +#: application/views/dayswithqso/index.php:122 +msgid "No current streak found!" +msgstr "" + +#: application/views/debug/index.php:23 +msgid "Wavelog Information" +msgstr "" + +#: application/views/debug/index.php:27 +msgid "Version" +msgstr "" + +#: application/views/debug/index.php:31 +msgid "Language" +msgstr "" + +#: application/views/debug/index.php:35 +msgid "Base URL" +msgstr "" + +#: application/views/debug/index.php:39 +msgid "Migration" +msgstr "" + +#: application/views/debug/index.php:40 +msgid "There is something wrong with your Migration in Database!" +msgstr "" + +#: application/views/debug/index.php:45 +msgid "Migration is outdated and locked!" +msgstr "" + +#: application/views/debug/index.php:46 +#, php-format +msgid "" +"The current migration is not the version it is supposed to be. Reload this " +"page after %s seconds. If this warning persists, your migration is likely " +"locked due to a previously failed process. Delete the file %s to force the " +"migration to run again." +msgstr "" + +#: application/views/debug/index.php:47 +#, php-format +msgid "Check this wiki article %shere%s for more information." +msgstr "" + +#: application/views/debug/index.php:48 +#, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format +msgid "Migration should be %s" +msgstr "" + +#: application/views/debug/index.php:54 +msgid "Environment" +msgstr "" + +#: application/views/debug/index.php:62 +msgid "Total QSO on this instance" +msgstr "" + +#: application/views/debug/index.php:70 +msgid "Server Information" +msgstr "" + +#: application/views/debug/index.php:74 +msgid "Server Software" +msgstr "" + +#: application/views/debug/index.php:79 +msgid "PHP Version" +msgstr "" + +#: application/views/debug/index.php:85 +msgid "Deprecated" +msgstr "" + +#: application/views/debug/index.php:92 +msgid "MySQL Version" +msgstr "" + +#: application/views/debug/index.php:96 +msgid "Codeigniter Version" +msgstr "" + +#: application/views/debug/index.php:104 +msgid "Folder Permissions" +msgstr "" + +#: application/views/debug/index.php:106 +msgid "" +"This verifies that the folders used by Wavelog have read and write " +"permissions by PHP." +msgstr "" + +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 +msgid "Success" +msgstr "" + +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 +msgid "Failed" +msgstr "" + +#: application/views/debug/index.php:169 +msgid "Config Maintenance" +msgstr "" + +#: application/views/debug/index.php:175 +msgid "Your authentication mode is outdated and possibly unsafe" +msgstr "" + +#: application/views/debug/index.php:177 application/views/debug/index.php:194 +#, php-format +msgid "Please edit your %s File:" +msgstr "" + +#: application/views/debug/index.php:178 +msgid "" +"Go to your application/config Folder and compare config.sample.php with your " +"config.php" +msgstr "" + +#: application/views/debug/index.php:179 +#, php-format +msgid "Change %s to the value %s (Strongly recommended)" +msgstr "" + +#: application/views/debug/index.php:185 +msgid "Authentication Mode is set correctly" +msgstr "" + +#: application/views/debug/index.php:185 application/views/debug/index.php:202 +msgid "Ok" +msgstr "" + +#: application/views/debug/index.php:192 +msgid "You use the default encryption key. You should change it!" +msgstr "" + +#: application/views/debug/index.php:195 +msgid "This will also enable the 'Keep me logged in' feature." +msgstr "" + +#: application/views/debug/index.php:196 +#, php-format +msgid "" +"Change the value of %s to a new encryption key other then " +"'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" +msgstr "" + +#: application/views/debug/index.php:202 +msgid "You do not use the default encryption key" +msgstr "" + +#: application/views/debug/index.php:209 +msgid "Migrate Userdata" +msgstr "" + +#: application/views/debug/index.php:211 +msgid "" +"Here you can migrate existing QSL cards and eQSL cards to the new userdata " +"folder." +msgstr "" + +#: application/views/debug/index.php:224 +msgid "Modules" +msgstr "" + +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 +msgid "Installed" +msgstr "" + +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 +msgid "Not Installed" +msgstr "" + +#: application/views/debug/index.php:283 application/views/qso/index.php:671 +msgid "Settings" +msgstr "" + +#: application/views/debug/index.php:412 +msgid "Git Information" +msgstr "" + +#: application/views/debug/index.php:416 +msgid "Branch" +msgstr "" + +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 +msgid "n/a" +msgstr "" + +#: application/views/debug/index.php:433 +msgid "Commit" +msgstr "" + +#: application/views/debug/index.php:443 +msgid "Tag" +msgstr "" + +#: application/views/debug/index.php:453 +msgid "Last Fetch" +msgstr "" + +#: application/views/debug/index.php:465 +msgid "Check for new version" +msgstr "" + +#: application/views/debug/index.php:466 +msgid "Update now" +msgstr "" + +#: application/views/debug/index.php:484 +msgid "File download date" +msgstr "" + +#: application/views/debug/index.php:488 +msgid "File" +msgstr "" + +#: application/views/debug/index.php:489 +msgid "Last update" +msgstr "" + +#: application/views/debug/index.php:493 +msgid "DXCC update from Club Log" +msgstr "" + +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 +#: application/views/station_profile/edit.php:49 +msgid "Update" +msgstr "" + +#: application/views/debug/index.php:499 +msgid "DOK file download" +msgstr "" + +#: application/views/debug/index.php:504 +msgid "LoTW users download" +msgstr "" + +#: application/views/debug/index.php:509 +msgid "POTA file download" +msgstr "" + +#: application/views/debug/index.php:514 +msgid "SCP file download" +msgstr "" + +#: application/views/debug/index.php:519 +msgid "SOTA file download" +msgstr "" + +#: application/views/debug/index.php:524 +msgid "WWFF file download" +msgstr "" + +#: application/views/debug/index.php:533 +msgid "QSO-DB Maintenance" +msgstr "" + +#: application/views/debug/index.php:537 +#, 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] "" +msgstr[1] "" +msgstr[2] "" + +#: application/views/debug/index.php:550 +#: application/views/public_search/result.php:17 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 +#: application/views/stationsetup/linkedlocations.php:32 +#: application/views/stationsetup/stationsetup.php:123 +msgid "Station Callsign" +msgstr "" + +#: application/views/debug/index.php:575 +msgid "Please mark QSOs and reassign them to an existing station location:" +msgstr "" + +#: application/views/debug/index.php:583 +msgctxt "Stationlocation" +msgid "Target Location" +msgstr "" + +#: application/views/debug/index.php:584 application/views/debug/index.php:595 +msgid "Reassign" +msgstr "" + +#: application/views/debug/index.php:604 +msgid "Every QSO in your Database is assigned to a station-profile (location)" +msgstr "" + +#: application/views/debug/index.php:604 +msgid "Everything ok" +msgstr "" + +#: application/views/debug/index.php:629 +msgid "Albanian" +msgstr "" + +#: application/views/debug/index.php:630 +msgid "Bosnian" +msgstr "" + +#: application/views/debug/index.php:631 +msgid "Bulgarian" +msgstr "" + +#: application/views/debug/index.php:632 +msgid "Chinese (Simplified)" +msgstr "" + +#: application/views/debug/index.php:633 +msgid "Croatian" +msgstr "" + +#: application/views/debug/index.php:634 +msgid "Czech" +msgstr "" + +#: application/views/debug/index.php:635 +msgid "Dutch" +msgstr "" + +#: application/views/debug/index.php:636 +msgid "English" +msgstr "" + +#: application/views/debug/index.php:637 +msgid "Finnish" +msgstr "" + +#: application/views/debug/index.php:638 +msgid "French" +msgstr "" + +#: application/views/debug/index.php:639 +msgid "German" +msgstr "" + +#: application/views/debug/index.php:640 +msgid "Greek" +msgstr "" + +#: application/views/debug/index.php:641 +msgid "Italian" +msgstr "" + +#: application/views/debug/index.php:642 +msgid "Montenegrin" +msgstr "" + +#: application/views/debug/index.php:643 +msgid "Polish" +msgstr "" + +#: application/views/debug/index.php:644 +msgid "Portuguese" +msgstr "" + +#: application/views/debug/index.php:645 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:646 +msgid "Serbian" +msgstr "" + +#: application/views/debug/index.php:647 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:648 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:649 +msgid "Turkish" +msgstr "" + +#: application/views/distancerecords/index.php:4 +msgid "This page lists distance records per satellite based on gridsquares." +msgstr "" + +#: application/views/distances/index.php:7 +#: application/views/interface_assets/footer.php:30 +#: application/views/simplefle/index.php:68 +msgid "QSO Data" +msgstr "" + +#: application/views/distances/index.php:9 +#, php-format +msgid "contacts were plotted.%s Your furthest contact was with" +msgstr "" + +#: application/views/distances/index.php:10 +msgid "in gridsquare" +msgstr "" + +#: application/views/distances/index.php:11 +msgid "the distance was" +msgstr "" + +#: application/views/distances/index.php:14 +msgid "Callsign(s) worked (max 5 shown)" +msgstr "" + +#: application/views/distances/index.php:19 +msgid "Band selection" +msgstr "" + +#: application/views/dxatlas/index.php:3 +msgid "DX Atlas Export" +msgstr "" + +#: application/views/dxatlas/index.php:7 +msgid "" +"Export your logbook for use in DX Atlas to display worked / confirmed " +"gridsquares." +msgstr "" + +#: application/views/dxatlas/index.php:11 application/views/kml/index.php:11 +msgid "Only QSOs with a gridsquare defined will be exported!" +msgstr "" + +#: application/views/dxcalendar/index.php:9 +msgid "Date from" +msgstr "" + +#: application/views/dxcalendar/index.php:10 +msgid "Date to" +msgstr "" + +#: application/views/dxcalendar/index.php:13 +#: application/views/view_log/qso.php:369 +msgid "QSL Info" +msgstr "" + +#: application/views/dxcalendar/index.php:14 +msgid "Source" +msgstr "" + +#: application/views/eqsl/analysis.php:11 application/views/eqsl/download.php:9 +#: application/views/eqsl/export.php:8 application/views/eqsl/import.php:7 +#: application/views/eqsl/result.php:11 application/views/eqsl/tools.php:7 +#: application/views/qrz/export.php:14 +msgid "Download QSOs" +msgstr "" + +#: application/views/eqsl/analysis.php:14 +#: application/views/eqsl/download.php:13 application/views/eqsl/export.php:12 +#: application/views/eqsl/import.php:11 application/views/eqsl/result.php:14 +#: application/views/eqsl/tools.php:11 +msgid "Upload QSOs" +msgstr "" + +#: application/views/eqsl/analysis.php:17 +#: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 +#: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 +#: application/views/eqsl/tools.php:15 +#: application/views/interface_assets/header.php:247 +msgid "Tools" +msgstr "" + +#: application/views/eqsl/analysis.php:20 +#: application/views/eqsl/download.php:20 application/views/eqsl/export.php:19 +#: application/views/eqsl/import.php:18 application/views/eqsl/result.php:20 +#: application/views/eqsl/tools.php:19 +msgid "Download eQSL cards" +msgstr "" + +#: application/views/eqsl/analysis.php:40 +#: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 +msgid "Submode" +msgstr "" + +#: application/views/eqsl/analysis.php:41 +msgid "Log Status" +msgstr "" + +#: application/views/eqsl/analysis.php:42 application/views/eqsl/result.php:38 +msgid "eQSL Status" +msgstr "" + +#: application/views/eqsl/analysis.php:62 +msgid "There are no QSO confirmations waiting for you at eQSL.cc" +msgstr "" + +#: application/views/eqsl/download.php:31 +msgid "" +"Below is a table of QSOs that have been confirmed on eQSL but QSL images " +"have not been downloaded yet." +msgstr "" + +#: application/views/eqsl/download.php:43 +msgid "Action" +msgstr "" + +#: application/views/eqsl/download.php:60 +msgid "View/Download" +msgstr "" + +#: application/views/eqsl/download.php:71 application/views/eqsl/import.php:53 +msgid "" +"Wavelog will use the eQSL credentials from your Wavelog user profile to " +"connect to eQSL and download confirmations." +msgstr "" + +#: application/views/eqsl/download.php:73 +msgid "" +"Due to a rate limit of approximately 10 seconds per eQSL picture download " +"calling this function will take a long time to complete! Thus you may have " +"to call this function several times depending on the amount of outstanding " +"cards. This may run into a script timeout depending on the PHP configuration." +msgstr "" + +#: application/views/eqsl/download.php:81 +msgid "" +"There are no QSOs whose eQSL card images have not yet been downloaded. Go " +"log some more QSOs!" +msgstr "" + +#: application/views/eqsl/export.php:31 +msgid "Below is a table of QSOs that have not yet been sent to eQSL." +msgstr "" + +#: application/views/eqsl/export.php:33 +msgid "" +"Please make sure the 'eQSL QTH Nickname' field is set in your station " +"profile and that the value matches the QTH Nickname you set within eQSL." +msgstr "" + +#: application/views/eqsl/export.php:37 +msgid "Clicking 'Upload QSOs' will send QSO information to eQSL.cc." +msgstr "" + +#: application/views/eqsl/export.php:46 +msgid "The following QSOs were sent to eQSL." +msgstr "" + +#: application/views/eqsl/export.php:51 +msgid "" +"There are no QSOs that need to be sent to eQSL at this time. Go log some " +"more QSOs!" +msgstr "" + +#: application/views/eqsl/import.php:30 +msgid "Import from file..." +msgstr "" + +#: application/views/eqsl/import.php:33 +msgid "Download Inbox" +msgstr "" + +#: application/views/eqsl/import.php:33 +#, php-format +msgid "" +"Upload the Exported ADIF file from eQSL from the %s page, to mark QSOs as " +"confirmed on eQSL." +msgstr "" + +#: application/views/eqsl/import.php:34 +msgid "Choose Station(location) eQSL File belongs to:" +msgstr "" + +#: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 +msgid "Log files must have the file type .adi" +msgstr "" + +#: application/views/eqsl/import.php:52 +msgid "Import directly from eQSL" +msgstr "" + +#: application/views/eqsl/tools.php:27 +msgid "" +"This does NOT upload any QSOs. It only marks QSOs as sent. If you use this " +"button you need to upload them manually on the eQSL.cc website." +msgstr "" + +#: application/views/eqsl/tools.php:29 +msgid "Mark All QSOs as Sent to eQSL" +msgstr "" + +#: application/views/eqsl/tools.php:29 +msgid "" +"Use this if you have lots of QSOs to upload to eQSL it will save the server " +"timing out." +msgstr "" + +#: application/views/eqslcard/index.php:10 +#, php-format +msgid "You are using %s of disk space to store eQSL Card assets" +msgstr "" + +#: application/views/eqslcard/index.php:34 +#: application/views/qslcard/index.php:33 +msgid "QSL Date" +msgstr "" + +#: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2338 +#: application/views/interface_assets/footer.php:2356 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 +#: application/views/qslcard/index.php:66 +#: application/views/view_log/qso.php:617 +msgid "View" +msgstr "" + +#: application/views/gridmap/index.php:43 +msgid "All except SAT" +msgstr "" + +#: application/views/hamsat/index.php:22 +#, php-format +msgid "" +"Cannot filter workable passes only without private feed key. Please set the " +"feed key in %s." +msgstr "" + +#: application/views/hamsat/index.php:22 +msgid "your profile" +msgstr "" + +#: application/views/hrdlog/export.php:10 application/views/qrz/export.php:10 +#: application/views/webadif/export.php:10 +msgid "Upload Logbook" +msgstr "" + +#: application/views/hrdlog/export.php:13 application/views/qrz/export.php:18 +#: application/views/webadif/export.php:13 +msgid "Mark QSOs" +msgstr "" + +#: application/views/hrdlog/export.php:22 +msgid "" +"Here you can see all QSOs which have not been previously uploaded to a " +"HRDLog logbook." +msgstr "" + +#: application/views/hrdlog/export.php:23 +msgid "" +"You need to set a HRDLog Logbook API Code in your station profile. Only " +"station profiles with an API Key set are displayed." +msgstr "" + +#: application/views/hrdlog/export.php:24 +#, php-format +msgid "The Code can be requested at %s" +msgstr "" + +#: application/views/hrdlog/export.php:25 +#: application/views/webadif/export.php:34 +msgid "This might take a while as QSO uploads are processed sequentially." +msgstr "" + +#: application/views/hrdlog/export.php:34 application/views/qrz/export.php:38 +#: application/views/webadif/export.php:41 +msgid "Profile name" +msgstr "" + +#: application/views/hrdlog/export.php:35 +#: application/views/oqrs/showrequests.php:86 +#: application/views/qrz/export.php:39 application/views/webadif/export.php:42 +msgid "Station callsign" +msgstr "" + +#: application/views/hrdlog/export.php:36 application/views/qrz/export.php:40 +msgid "Edited QSOs not uploaded" +msgstr "" + +#: application/views/hrdlog/export.php:37 application/views/qrz/export.php:41 +#: application/views/webadif/export.php:43 +msgid "Total QSOs not uploaded" +msgstr "" + +#: application/views/hrdlog/export.php:38 application/views/qrz/export.php:42 +#: application/views/webadif/export.php:44 +msgid "Total QSOs uploaded" +msgstr "" + +#: application/views/hrdlog/export.php:60 +msgid "" +"No Station Locations with valid HRDlog-Settings found. Check the HRDlog " +"Credentials in the Station Location Settings!" +msgstr "" + +#: application/views/hrdlog/export.php:87 +msgid "Mark QSOs as exported to HRDLog Logbook" +msgstr "" + +#: application/views/hrdlog/mark_hrdlog.php:15 +#: application/views/qrz/mark_qrz.php:15 +#: application/views/webadif/mark_webadif.php:15 +msgid "Yay, it's done!" +msgstr "" + +#: application/views/hrdlog/mark_hrdlog.php:16 +msgid "The QSOs are marked as exported to HRDLog Logbook." +msgstr "" + +#: application/views/interface_assets/footer.php:31 +#: application/views/search/search_result_ajax.php:404 +#: application/views/view_log/partial/log.php:135 +#: application/views/view_log/partial/log_ajax.php:320 +#: application/views/view_log/qso.php:437 +msgid "Edit QSO" +msgstr "" + +#: application/views/interface_assets/footer.php:33 +msgid "Attention" +msgstr "" + +#: application/views/interface_assets/footer.php:38 +msgid "Warning! Are you sure you want delete QSO with " +msgstr "" + +#: application/views/interface_assets/footer.php:39 +#: application/views/user/edit.php:493 +msgid "Colors" +msgstr "" + +#: application/views/interface_assets/footer.php:41 +msgid "Worked not confirmed" +msgstr "" + +#: application/views/interface_assets/footer.php:42 +msgid "Not worked" +msgstr "" + +#: application/views/interface_assets/footer.php:46 +#: application/views/qso/index.php:623 +#: application/views/visitor/layout/footer.php:246 +msgid "Clear" +msgstr "" + +#: application/views/interface_assets/footer.php:47 +#: application/views/qso/edit_ajax.php:211 +#: application/views/qso/edit_ajax.php:539 +msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." +msgstr "" + +#: application/views/interface_assets/footer.php:48 +msgid "No states for this DXCC available" +msgstr "" + +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "" + +#: application/views/interface_assets/footer.php:132 +#: application/views/interface_assets/header.php:440 +#: application/views/options/sidebar.php:11 +msgid "Version Info" +msgstr "" + +#: application/views/interface_assets/footer.php:398 +msgid "Description:" +msgstr "" + +#: application/views/interface_assets/footer.php:401 +msgid "Query description" +msgstr "" + +#: application/views/interface_assets/footer.php:417 +msgid "Your query has been saved!" +msgstr "" + +#: application/views/interface_assets/footer.php:419 +#: application/views/search/filter.php:46 +msgid "Edit queries" +msgstr "" + +#: application/views/interface_assets/footer.php:421 +msgid "Stored queries:" +msgstr "" + +#: application/views/interface_assets/footer.php:426 +#: application/views/search/filter.php:60 +msgid "Run Query" +msgstr "" + +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 +msgid "Stored Queries" +msgstr "" + +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 +msgid "You need to make a query before you search!" +msgstr "" + +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 +#: application/views/search/filter.php:79 +msgid "Export to ADIF" +msgstr "" + +#: application/views/interface_assets/footer.php:502 +msgid "Warning! Are you sure you want delete this stored query?" +msgstr "" + +#: application/views/interface_assets/footer.php:516 +msgid "The stored query has been deleted!" +msgstr "" + +#: application/views/interface_assets/footer.php:525 +msgid "The stored query could not be deleted. Please try again!" +msgstr "" + +#: application/views/interface_assets/footer.php:551 +msgid "The query description has been updated!" +msgstr "" + +#: application/views/interface_assets/footer.php:555 +msgid "Something went wrong with the save. Please try again!" +msgstr "" + +#: application/views/interface_assets/footer.php:678 +msgid "" +"Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " +"Check which DXCC for this particular location is the correct one. If you are " +"sure, ignore this warning." +msgstr "" + +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:533 +msgid "Callsign: " +msgstr "" + +#: application/views/interface_assets/footer.php:731 +msgid "Count: " +msgstr "" + +#: application/views/interface_assets/footer.php:732 +msgid "Grids: " +msgstr "" + +#: application/views/interface_assets/footer.php:1167 +#, php-format +msgid "You're not logged in. Please %slogin%s" +msgstr "" + +#: application/views/interface_assets/footer.php:1375 +#: application/views/interface_assets/footer.php:1379 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1523 +#: application/views/interface_assets/footer.php:1526 +msgid "grid square" +msgstr "" + +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1526 +msgid "Total count" +msgstr "" + +#: application/views/interface_assets/footer.php:2114 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2134 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2174 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2176 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2349 +#: application/views/interface_assets/footer.php:2388 +#: application/views/view_log/qso.php:607 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2368 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2406 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2417 +#: application/views/interface_assets/footer.php:2442 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2453 +msgid "Something went wrong. Please try again!" +msgstr "" + +#: application/views/interface_assets/header.php:86 +msgid "Developer Mode" +msgstr "" + +#: application/views/interface_assets/header.php:89 +msgid "Maintenance Mode" +msgstr "" + +#: application/views/interface_assets/header.php:99 +msgid "Overview" +msgstr "" + +#: application/views/interface_assets/header.php:101 +msgid "Advanced" +msgstr "" + +#: application/views/interface_assets/header.php:104 +msgid "View QSL Cards" +msgstr "" + +#: application/views/interface_assets/header.php:107 +msgid "View eQSL Cards" +msgstr "" + +#: application/views/interface_assets/header.php:115 +msgid "Live QSO" +msgstr "" + +#: application/views/interface_assets/header.php:117 +msgid "Post QSO" +msgstr "" + +#: application/views/interface_assets/header.php:119 +msgid "Simple Fast Log Entry" +msgstr "" + +#: application/views/interface_assets/header.php:121 +msgid "Live Contest Logging" +msgstr "" + +#: application/views/interface_assets/header.php:123 +msgid "Post Contest Logging" +msgstr "" + +#: application/views/interface_assets/header.php:132 +msgid "Analytics" +msgstr "" + +#: application/views/interface_assets/header.php:140 +msgid "Activated Gridsquares" +msgstr "" + +#: application/views/interface_assets/header.php:162 +msgid "International" +msgstr "" + +#: application/views/interface_assets/header.php:168 +msgid "ITU" +msgstr "" + +#: application/views/interface_assets/header.php:190 +msgid "Canada" +msgstr "" + +#: application/views/interface_assets/header.php:196 +msgid "Germany" +msgstr "" + +#: application/views/interface_assets/header.php:200 +msgid "DL Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:204 +msgid "Great Britain" +msgstr "" + +#: application/views/interface_assets/header.php:206 +msgid "WAB" +msgstr "" + +#: application/views/interface_assets/header.php:210 +msgid "Japan" +msgstr "" + +#: application/views/interface_assets/header.php:216 +msgid "JA Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:220 +msgid "Luxemburg" +msgstr "" + +#: application/views/interface_assets/header.php:222 +msgid "LX Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:226 +msgid "Switzerland" +msgstr "" + +#: application/views/interface_assets/header.php:232 +msgid "USA" +msgstr "" + +#: application/views/interface_assets/header.php:238 +msgid "US Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:255 +msgid "Bandmap" +msgstr "" + +#: application/views/interface_assets/header.php:257 +msgid "SAT Timers" +msgstr "" + +#: application/views/interface_assets/header.php:260 +msgid "Satellite Flightpath" +msgstr "" + +#: application/views/interface_assets/header.php:262 +msgid "Satellite Pass" +msgstr "" + +#: application/views/interface_assets/header.php:269 +#: application/views/stationsetup/stationsetup.php:113 +msgid "Admin" +msgstr "" + +#: application/views/interface_assets/header.php:274 +msgid "Global Options" +msgstr "" + +#: application/views/interface_assets/header.php:280 +#: application/views/notes/add.php:38 application/views/notes/edit.php:39 +#: application/views/satellite/index.php:11 +#: application/views/satellite/pass.php:495 +#: application/views/statistics/custom.php:20 +#: application/views/statistics/custom_result.php:21 +#: application/views/statistics/index.php:39 +#: application/views/statistics/index.php:93 +msgid "Satellites" +msgstr "" + +#: application/views/interface_assets/header.php:286 +msgid "Update Country Files" +msgstr "" + +#: application/views/interface_assets/header.php:290 +msgid "Debug Information" +msgstr "" + +#: application/views/interface_assets/header.php:337 +msgid "Add/Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:339 +msgid "Log" +msgstr "" + +#: application/views/interface_assets/header.php:346 +#: application/views/logbookadvanced/index.php:474 +#: application/views/oqrs/index.php:27 application/views/user/edit.php:441 +#: application/views/visitor/layout/header.php:95 +msgid "Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:375 +#: application/views/user/edit.php:49 +msgid "Account" +msgstr "" + +#: application/views/interface_assets/header.php:390 +msgid "Other Export Options" +msgstr "" + +#: application/views/interface_assets/header.php:398 +msgid "Cabrillo Export" +msgstr "" + +#: application/views/interface_assets/header.php:400 +msgid "EDI Export" +msgstr "" + +#: application/views/interface_assets/header.php:424 +msgid "QSL Queue" +msgstr "" + +#: application/views/interface_assets/header.php:425 +msgid "Labels" +msgstr "" + +#: application/views/interface_assets/header.php:427 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:430 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:431 +msgid "HRDLog Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:441 +msgid "Help" +msgstr "" + +#: application/views/interface_assets/header.php:442 +msgid "Forum" +msgstr "" + +#: application/views/interface_assets/header.php:444 +msgid "Logout" +msgstr "" + +#: application/views/interface_assets/header.php:452 +msgid "Select a Location" +msgstr "" + +#: application/views/interface_assets/header.php:531 +msgid "Extras" +msgstr "" + +#: application/views/kml/index.php:7 +msgid "Export your logbook to a KML file for use in Google Earth." +msgstr "" + +#: application/views/labels/create.php:24 +msgid "" +"Label name used for display purposes, so pick something meaningful, perhaps " +"the label style." +msgstr "" + +#: 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 "" + +#: application/views/labels/create.php:42 +#: application/views/labels/createpaper.php:44 +#: application/views/labels/edit.php:44 +#: application/views/labels/editpaper.php:44 +msgid "Millimeters" +msgstr "" + +#: application/views/labels/create.php:43 +#: application/views/labels/createpaper.php:45 +#: application/views/labels/edit.php:45 +#: application/views/labels/editpaper.php:45 +msgid "Inches" +msgstr "" + +#: application/views/labels/create.php:49 application/views/labels/edit.php:51 +msgid "Margin Top" +msgstr "" + +#: application/views/labels/create.php:52 application/views/labels/edit.php:54 +msgid "Top margin of labels" +msgstr "" + +#: application/views/labels/create.php:55 application/views/labels/edit.php:57 +msgid "Margin Left" +msgstr "" + +#: application/views/labels/create.php:58 application/views/labels/edit.php:60 +msgid "Left margin of labels." +msgstr "" + +#: application/views/labels/create.php:63 application/views/labels/edit.php:65 +msgid "Labels horizontally" +msgstr "" + +#: application/views/labels/create.php:66 application/views/labels/edit.php:68 +msgid "Number of labels horizontally across the page." +msgstr "" + +#: application/views/labels/create.php:69 application/views/labels/edit.php:71 +msgid "Labels vertically" +msgstr "" + +#: application/views/labels/create.php:72 application/views/labels/edit.php:74 +msgid "Number of labels vertically across the page." +msgstr "" + +#: application/views/labels/create.php:77 application/views/labels/edit.php:79 +msgid "Horizontal space" +msgstr "" + +#: application/views/labels/create.php:80 application/views/labels/edit.php:82 +msgid "Horizontal space between 2 labels." +msgstr "" + +#: application/views/labels/create.php:83 application/views/labels/edit.php:85 +msgid "Vertical space" +msgstr "" + +#: application/views/labels/create.php:86 application/views/labels/edit.php:88 +msgid "Vertical space between 2 labels." +msgstr "" + +#: application/views/labels/create.php:91 application/views/labels/edit.php:93 +msgid "Width of label" +msgstr "" + +#: application/views/labels/create.php:94 application/views/labels/edit.php:96 +msgid "Total width of one label." +msgstr "" + +#: application/views/labels/create.php:97 application/views/labels/edit.php:99 +msgid "Height of label" +msgstr "" + +#: application/views/labels/create.php:100 +#: application/views/labels/edit.php:102 +msgid "Total height of one label" +msgstr "" + +#: application/views/labels/create.php:105 +#: application/views/labels/edit.php:107 application/views/labels/index.php:80 +msgid "Font Size" +msgstr "" + +#: 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 "" + +#: application/views/labels/create.php:111 +#: application/views/labels/edit.php:113 +msgid "QSOs on label" +msgstr "" + +#: application/views/labels/create.php:117 +#: application/views/labels/edit.php:118 +msgid "Save Label Type" +msgstr "" + +#: application/views/labels/createpaper.php:36 +#: application/views/labels/editpaper.php:36 +msgid "Paper Type Name" +msgstr "" + +#: application/views/labels/createpaper.php:39 +#: application/views/labels/editpaper.php:39 +msgid "Paper name used for display purposes, so pick something meaningful." +msgstr "" + +#: application/views/labels/createpaper.php:51 +#: application/views/labels/editpaper.php:51 +msgid "Width of paper" +msgstr "" + +#: application/views/labels/createpaper.php:54 +#: application/views/labels/editpaper.php:54 +#: application/views/labels/editpaper.php:60 +msgid "Total width of paper." +msgstr "" + +#: application/views/labels/createpaper.php:57 +#: application/views/labels/editpaper.php:57 +msgid "Height of paper" +msgstr "" + +#: application/views/labels/createpaper.php:60 +msgid "Total height of paper" +msgstr "" + +#: 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 "" + +#: application/views/labels/createpaper.php:68 +#: application/views/labels/editpaper.php:68 +#: application/views/labels/index.php:60 +msgctxt "Orientation" +msgid "Landscape" +msgstr "" + +#: application/views/labels/createpaper.php:69 +#: application/views/labels/editpaper.php:69 +#: application/views/labels/index.php:60 +msgctxt "Orientation" +msgid "Portrait" +msgstr "" + +#: application/views/labels/createpaper.php:75 +#: application/views/labels/editpaper.php:75 +msgid "Save Paper Type" +msgstr "" + +#: application/views/labels/edit.php:24 +msgid "" +"Label name used for display purposes so pick something meaningful perhaps " +"the label style." +msgstr "" + +#: application/views/labels/index.php:2 +#: application/views/logbookadvanced/startatform.php:27 +msgid "Mark QSL as printed" +msgstr "" + +#: application/views/labels/index.php:3 application/views/labels/index.php:128 +msgid "Print" +msgstr "" + +#: application/views/labels/index.php:33 +msgid "Create New Label Type" +msgstr "" + +#: application/views/labels/index.php:34 +msgid "Create New Paper Type" +msgstr "" + +#: application/views/labels/index.php:37 +msgid "Paper types" +msgstr "" + +#: application/views/labels/index.php:43 application/views/labels/index.php:78 +msgid "Width" +msgstr "" + +#: application/views/labels/index.php:44 application/views/labels/index.php:79 +msgid "Height" +msgstr "" + +#: application/views/labels/index.php:45 +msgid "Used by labels" +msgstr "" + +#: application/views/labels/index.php:46 +msgid "Orientation" +msgstr "" + +#: application/views/labels/index.php:71 +msgid "Label types" +msgstr "" + +#: application/views/labels/index.php:81 +#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:96 +#: application/views/widgets/qsos.php:3 +msgid "QSOs" +msgstr "" + +#: application/views/labels/index.php:82 +msgid "Use For Print" +msgstr "" + +#: application/views/labels/index.php:92 +msgid "No paper assigned" +msgstr "" + +#: application/views/labels/index.php:117 +msgid "QSL Card Labels Pending" +msgstr "" + +#: application/views/labels/index.php:126 +msgid "QSOs Waiting" +msgstr "" + +#: application/views/labels/index.php:127 +msgid "View QSOs" +msgstr "" + +#: application/views/labels/startatform.php:4 +#: application/views/logbookadvanced/startatform.php:3 +msgid "Include Grid?" +msgstr "" + +#: application/views/labels/startatform.php:10 +#: application/views/logbookadvanced/startatform.php:9 +msgid "" +"Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" +msgstr "" + +#: application/views/labels/startatform.php:16 +msgid "Include Via (if filled)?" +msgstr "" + +#: application/views/labels/startatform.php:22 +#: application/views/logbookadvanced/startatform.php:21 +msgid "Start printing at?" +msgstr "" + +#: application/views/logbookadvanced/edit.php:15 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/useroptions.php:58 +msgid "QSL via" +msgstr "" + +#: application/views/logbookadvanced/edit.php:23 +msgid "LoTW Sent" +msgstr "" + +#: application/views/logbookadvanced/edit.php:24 +msgid "LoTW Received" +msgstr "" + +#: application/views/logbookadvanced/edit.php:75 +msgid "SAT Mode" +msgstr "" + +#: application/views/logbookadvanced/edit.php:89 +msgid "Band RX" +msgstr "" + +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:174 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:144 +msgid "From" +msgstr "" + +#: application/views/logbookadvanced/index.php:148 +msgid "To" +msgstr "" + +#: application/views/logbookadvanced/index.php:152 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/useroptions.php:30 +#: application/views/oqrs/showrequests.php:42 +msgid "Dx" +msgstr "" + +#: application/views/logbookadvanced/index.php:159 +msgctxt "Logbook Advanced DXCC Select" +msgid "- NONE - (e.g. /MM, /AM)" +msgstr "" + +#: application/views/logbookadvanced/index.php:224 +msgctxt "Propagation Mode" +msgid "None/Empty" +msgstr "" + +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:540 +msgid "Invalid" +msgstr "" + +#: application/views/logbookadvanced/index.php:324 +msgid "QSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:439 +#: application/views/lookup/lotwuser.php:12 +#: application/views/qso/edit_ajax.php:421 +#: application/views/qso/edit_ajax.php:454 +#: application/views/qso/edit_ajax.php:482 +#: application/views/qso/edit_ajax.php:495 +#: application/views/qso/edit_ajax.php:522 +#: application/views/qso/edit_ajax.php:534 application/views/qso/index.php:576 +#: application/views/search/result.php:58 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 +#: application/views/station_profile/create.php:293 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 +#: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 +#: application/views/user/edit.php:347 application/views/user/edit.php:358 +#: application/views/user/edit.php:369 application/views/user/edit.php:379 +#: application/views/user/edit.php:389 application/views/user/edit.php:399 +#: application/views/user/edit.php:419 application/views/user/edit.php:430 +#: application/views/user/edit.php:540 application/views/user/edit.php:802 +#: application/views/user/edit.php:834 application/views/user/edit.php:859 +msgid "Yes" +msgstr "" + +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:440 +#: application/views/lookup/lotwuser.php:14 +#: application/views/qso/edit_ajax.php:420 +#: application/views/qso/edit_ajax.php:453 +#: application/views/qso/edit_ajax.php:481 +#: application/views/qso/edit_ajax.php:494 +#: application/views/qso/edit_ajax.php:521 +#: application/views/qso/edit_ajax.php:533 application/views/qso/index.php:575 +#: application/views/search/result.php:60 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 +#: application/views/station_profile/create.php:292 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 +#: application/views/user/edit.php:348 application/views/user/edit.php:359 +#: application/views/user/edit.php:370 application/views/user/edit.php:380 +#: application/views/user/edit.php:390 application/views/user/edit.php:400 +#: application/views/user/edit.php:420 application/views/user/edit.php:431 +#: application/views/user/edit.php:522 application/views/user/edit.php:526 +#: application/views/user/edit.php:541 application/views/user/edit.php:803 +#: application/views/user/edit.php:833 application/views/user/edit.php:858 +msgid "No" +msgstr "" + +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:416 +#: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 +#: application/views/qslprint/qsolist.php:61 +#: application/views/qslprint/qsolist.php:103 +#: application/views/qso/edit_ajax.php:423 +#: application/views/qso/edit_ajax.php:484 +#: application/views/qso/edit_ajax.php:524 application/views/qso/index.php:578 +#: application/views/search/search_result_ajax.php:183 +#: application/views/search/search_result_ajax.php:225 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +#: src/QSLManager/QSO.php:273 src/QSLManager/QSO.php:318 +msgid "Queued" +msgstr "" + +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:373 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:417 +#: application/views/logbookadvanced/index.php:427 +#: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 +#: application/views/oqrs/qsolist.php:166 +#: application/views/oqrs/qsolist.php:181 +#: application/views/qslprint/qsolist.php:67 +#: application/views/qslprint/qsolist.php:109 +#: application/views/qslprint/qsolist.php:174 +#: application/views/qslprint/qsolist.php:189 +#: application/views/qso/edit_ajax.php:424 +#: application/views/qso/edit_ajax.php:456 +#: application/views/qso/edit_ajax.php:485 +#: application/views/qso/edit_ajax.php:497 +#: application/views/qso/edit_ajax.php:525 +#: application/views/qso/edit_ajax.php:536 application/views/qso/index.php:579 +#: application/views/search/search_result_ajax.php:189 +#: application/views/search/search_result_ajax.php:231 +#: application/views/search/search_result_ajax.php:305 +#: application/views/search/search_result_ajax.php:320 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +#: application/views/view_log/partial/log_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:270 +#: src/QSLManager/QSO.php:279 src/QSLManager/QSO.php:324 +#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:400 +msgid "Invalid (Ignore)" +msgstr "" + +#: application/views/logbookadvanced/index.php:335 +msgid "QSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:428 +msgid "Verified" +msgstr "" + +#: application/views/logbookadvanced/index.php:346 +msgid "QSL send. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:359 +#: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 +#: application/views/oqrs/request.php:45 +#: application/views/oqrs/request_grouped.php:49 +#: application/views/oqrs/showrequests.php:12 +#: application/views/qslprint/qslprint.php:5 +#: application/views/qslprint/qsolist.php:77 +#: application/views/qslprint/qsolist.php:119 +#: application/views/qslprint/qsolist.php:210 +#: application/views/qso/edit_ajax.php:435 +#: application/views/qso/edit_ajax.php:468 application/views/qso/index.php:590 +#: application/views/search/search_result_ajax.php:199 +#: application/views/search/search_result_ajax.php:241 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +#: src/QSLManager/QSO.php:296 src/QSLManager/QSO.php:339 +msgid "Bureau" +msgstr "" + +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:360 +#: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 +#: application/views/oqrs/showrequests.php:13 +#: application/views/qslprint/qslprint.php:6 +#: application/views/qslprint/qsolist.php:80 +#: application/views/qslprint/qsolist.php:122 +#: application/views/qslprint/qsolist.php:211 +#: application/views/qso/edit_ajax.php:434 +#: application/views/qso/edit_ajax.php:467 application/views/qso/index.php:589 +#: application/views/search/search_result_ajax.php:202 +#: application/views/search/search_result_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +#: src/QSLManager/QSO.php:299 src/QSLManager/QSO.php:342 +msgid "Direct" +msgstr "" + +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 +#: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 +#: application/views/oqrs/showrequests.php:14 +#: application/views/qslprint/qslprint.php:7 +#: application/views/qslprint/qsolist.php:86 +#: application/views/qslprint/qsolist.php:128 +#: application/views/qslprint/qsolist.php:212 +#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:591 +#: application/views/search/search_result_ajax.php:208 +#: application/views/search/search_result_ajax.php:250 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +#: src/QSLManager/QSO.php:305 src/QSLManager/QSO.php:348 +msgid "Electronic" +msgstr "" + +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:362 +#: application/views/oqrs/qsolist.php:117 +#: application/views/qslprint/qsolist.php:125 +#: application/views/qso/edit_ajax.php:437 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:592 +#: application/views/search/search_result_ajax.php:247 +#: application/views/view_log/partial/log_ajax.php:208 +msgid "Manager" +msgstr "" + +#: application/views/logbookadvanced/index.php:356 +msgid "QSL recv. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:366 +msgid "LoTW sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:377 +msgid "LoTW received" +msgstr "" + +#: application/views/logbookadvanced/index.php:388 +msgid "Clublog sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:399 +msgid "Clublog received" +msgstr "" + +#: application/views/logbookadvanced/index.php:410 +msgid "eQSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:421 +msgid "eQSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:436 +msgid "QSL Images" +msgstr "" + +#: application/views/logbookadvanced/index.php:448 +msgid "Warning! Are you sure you want to delete the marked QSO(s)?" +msgstr "" + +#: application/views/logbookadvanced/index.php:451 +msgid "With selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:452 +#: application/views/qso/edit_ajax.php:622 +msgid "Update from Callbook" +msgstr "" + +#: application/views/logbookadvanced/index.php:453 +msgid "Queue Bureau" +msgstr "" + +#: application/views/logbookadvanced/index.php:454 +msgid "Queue Direct" +msgstr "" + +#: application/views/logbookadvanced/index.php:455 +msgid "Queue Electronic" +msgstr "" + +#: application/views/logbookadvanced/index.php:456 +msgid "Sent (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:457 +msgid "Sent (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:458 +msgid "Sent (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:459 +msgid "Not Sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:460 +msgid "QSL Not Required" +msgstr "" + +#: application/views/logbookadvanced/index.php:461 +msgid "Not Received" +msgstr "" + +#: application/views/logbookadvanced/index.php:462 +msgid "Received (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:463 +msgid "Received (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:464 +msgid "Received (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:465 +msgid "Create ADIF" +msgstr "" + +#: application/views/logbookadvanced/index.php:466 +msgid "Print Label" +msgstr "" + +#: application/views/logbookadvanced/index.php:467 +msgid "QSL Slideshow" +msgstr "" + +#: application/views/logbookadvanced/index.php:472 +msgid "Quicksearch with selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:477 +msgid "Search DXCC" +msgstr "" + +#: application/views/logbookadvanced/index.php:480 +msgid "Search State" +msgstr "" + +#: application/views/logbookadvanced/index.php:483 +msgid "Search Gridsquare" +msgstr "" + +#: application/views/logbookadvanced/index.php:486 +msgid "Search CQ Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:489 +msgid "Search ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:492 +msgid "Search Mode" +msgstr "" + +#: application/views/logbookadvanced/index.php:495 +msgid "Search Band" +msgstr "" + +#: application/views/logbookadvanced/index.php:498 +msgid "Search IOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:501 +msgid "Search SOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:504 +msgid "Search POTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:507 +msgid "Search WWFF" +msgstr "" + +#: application/views/logbookadvanced/index.php:510 +msgid "Search Operator" +msgstr "" + +#: application/views/logbookadvanced/index.php:516 +msgid "Quickfilters" +msgstr "" + +#: application/views/logbookadvanced/index.php:517 +msgid "QSL Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:518 +#: application/views/mode/index.php:68 +msgid "Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:520 +#: application/views/oqrs/showrequests.php:56 +msgid "# Results" +msgstr "" + +#: application/views/logbookadvanced/index.php:527 +#: application/views/qso/index.php:272 +#: application/views/station_profile/edit.php:92 +msgid "Location" +msgstr "" + +#: application/views/logbookadvanced/index.php:539 +msgid "Dupes" +msgstr "" + +#: application/views/logbookadvanced/index.php:547 +msgid "Globe map" +msgstr "" + +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/useroptions.php:26 +#: application/views/oqrs/showrequests.php:31 +msgid "De" +msgstr "" + +#: application/views/logbookadvanced/index.php:605 +#: application/views/logbookadvanced/useroptions.php:78 +msgid "QSL Msg" +msgstr "" + +#: application/views/logbookadvanced/index.php:650 +#: application/views/logbookadvanced/useroptions.php:50 +msgid "My Refs" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:59 +#: application/views/qslcard/qslcarousel.php:25 +msgid "QSL picture #" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:67 +#: application/views/qslcard/qslcarousel.php:32 +msgid "Previous" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:71 +#: application/views/qslcard/qslcarousel.php:36 +msgid "Next" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:15 +msgid "Include Via" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:16 +msgid "Column" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:152 +msgctxt "Map Options" +msgid "Layer" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:153 +msgid "Default on" +msgstr "" + +#: application/views/lookup/index.php:8 +msgid "US State" +msgstr "" + +#: application/views/lookup/index.php:10 +msgid "LoTW user" +msgstr "" + +#: application/views/lookup/index.php:46 +msgid "Choose a State" +msgstr "" + +#: application/views/lookup/lotwuser.php:2 +#: application/views/lookup/lotwuser.php:12 +#: application/views/search/result.php:46 +#: application/views/search/result.php:58 +msgid "LoTW User" +msgstr "" + +#: application/views/lookup/lotwuser.php:12 +#: application/views/search/result.php:58 +#, php-format +msgid "%d day ago" +msgid_plural "%d days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/views/lookup/lotwuser.php:12 +#: application/views/search/result.php:58 +msgid "last upload" +msgstr "" + +#: application/views/lookup/lotwuser.php:14 +msgid "No LoTW User" +msgstr "" + +#: 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 "" + +#: application/views/lotw/import.php:12 +msgid "Import Options" +msgstr "" + +#: application/views/lotw/import.php:22 +msgid "Upload a File" +msgstr "" + +#: application/views/lotw/import.php:24 +msgid "Download Report" +msgstr "" + +#: application/views/lotw/import.php:24 +#, php-format +msgid "" +"Upload the Exported ADIF file from LoTW from the %s Area, to mark QSOs as " +"confirmed on LoTW." +msgstr "" + +#: application/views/lotw/import.php:27 +msgid "Choose file" +msgstr "" + +#: application/views/lotw/import.php:36 +msgid "Pull LoTW data for me" +msgstr "" + +#: application/views/lotw/import.php:47 +msgid "Select callsign to pull LoTW confirmations for." +msgstr "" + +#: application/views/lotw/import.php:61 +msgid "" +"Wavelog will use the LoTW username and password stored in your user profile " +"to download a report from LoTW for you. The report Wavelog downloads will " +"have all confirmations since chosen date, or since your last LoTW " +"confirmation (fetched from your log), up until now." +msgstr "" + +#: application/views/lotw/import.php:64 +msgid "Import LoTW Matches" +msgstr "" + +#: application/views/lotw_views/index.php:4 +msgid "Upload folder is not writable. Please contact your admin." +msgstr "" + +#: application/views/lotw_views/index.php:10 +msgid "LoTW Import" +msgstr "" + +#: application/views/lotw_views/index.php:17 +msgid "Available Certificates" +msgstr "" + +#: application/views/lotw_views/index.php:17 +msgid "Upload Certificate" +msgstr "" + +#: application/views/lotw_views/index.php:37 +msgid "QSO Start Date" +msgstr "" + +#: application/views/lotw_views/index.php:38 +msgid "QSO End Date" +msgstr "" + +#: application/views/lotw_views/index.php:39 +msgid "Date Created" +msgstr "" + +#: application/views/lotw_views/index.php:40 +msgid "Date Expires" +msgstr "" + +#: application/views/lotw_views/index.php:42 +#: application/views/view_log/qso.php:407 +msgid "Last Upload" +msgstr "" + +#: application/views/lotw_views/index.php:87 +msgid "Expired" +msgstr "" + +#: application/views/lotw_views/index.php:89 +msgid "Expiring" +msgstr "" + +#: application/views/lotw_views/index.php:91 +msgid "Valid" +msgstr "" + +#: application/views/lotw_views/index.php:101 +#, php-format +msgid "Last success: %s" +msgstr "" + +#: application/views/lotw_views/index.php:104 +#, php-format +msgid "Last fail: %s" +msgstr "" + +#: application/views/lotw_views/index.php:110 +msgid "Not Synced" +msgstr "" + +#: application/views/lotw_views/index.php:125 +msgid "You need to upload some LoTW p12 certificates to use this area." +msgstr "" + +#: application/views/lotw_views/index.php:140 +msgid "Information" +msgstr "" + +#: application/views/lotw_views/index.php:145 +msgid "Manual Sync" +msgstr "" + +#: application/views/lotw_views/upload_cert.php:8 +#: application/views/lotw_views/upload_cert.php:31 +msgid "Upload Logbook of the World .p12 Certificate" +msgstr "" + +#: application/views/lotw_views/upload_cert.php:19 +msgid "Export .p12 File Instructions" +msgstr "" + +#: application/views/lotw_views/upload_cert.php:22 +msgid "Open TQSL and go to the Callsign Certificates Tab" +msgstr "" + +#: application/views/lotw_views/upload_cert.php:23 +msgid "Right click on desired Callsign" +msgstr "" + +#: application/views/lotw_views/upload_cert.php:24 +msgid "Click 'Save Callsign Certificate File' and do not add a password" +msgstr "" + +#: application/views/lotw_views/upload_cert.php:25 +msgid "Upload File below." +msgstr "" + +#: application/views/lotw_views/upload_cert.php:35 +msgid "Upload File" +msgstr "" + +#: application/views/mode/create.php:24 application/views/mode/edit.php:33 +msgctxt "Name of mode in ADIF-specification" +msgid "ADIF Mode" +msgstr "" + +#: application/views/mode/create.php:26 application/views/mode/edit.php:35 +msgid "Name of mode in ADIF-specification" +msgstr "" + +#: application/views/mode/create.php:30 application/views/mode/edit.php:39 +msgctxt "Name of sub-mode in ADIF-specification" +msgid "ADIF Sub-Mode" +msgstr "" + +#: application/views/mode/create.php:32 application/views/mode/edit.php:41 +msgid "Name of sub-mode in ADIF-specification" +msgstr "" + +#: application/views/mode/create.php:42 application/views/mode/edit.php:53 +msgid "Defines the QRG-segment in bandplan." +msgstr "" + +#: application/views/mode/create.php:49 application/views/mode/edit.php:61 +#: application/views/mode/index.php:43 +msgid "Not active" +msgstr "" + +#: application/views/mode/create.php:51 application/views/mode/edit.php:64 +msgid "Set to active if to be listed in Modes-list" +msgstr "" + +#: application/views/mode/create.php:54 +msgid "Create mode" +msgstr "" + +#: application/views/mode/edit.php:67 +msgid "Update mode" +msgstr "" + +#: application/views/mode/index.php:19 +msgid "" +"Using the modes list you can control which modes are shown when creating a " +"new QSO." +msgstr "" + +#: application/views/mode/index.php:22 +msgid "" +"Active modes will be shown in the QSO 'Mode' drop-down, while inactive modes " +"will be hidden and cannot be selected." +msgstr "" + +#: application/views/mode/index.php:29 +msgid "Sub-Mode" +msgstr "" + +#: application/views/mode/index.php:76 +msgid "Create a Mode" +msgstr "" + +#: application/views/notes/add.php:6 application/views/notes/add.php:12 +#: application/views/notes/edit.php:13 application/views/notes/main.php:11 +#: application/views/notes/view.php:12 +msgid "Create Note" +msgstr "" + +#: application/views/notes/add.php:29 application/views/notes/edit.php:30 +msgid "Title" +msgstr "" + +#: application/views/notes/add.php:34 application/views/notes/edit.php:35 +msgid "Category" +msgstr "" + +#: application/views/notes/add.php:36 application/views/notes/edit.php:37 +#: application/views/qso/index.php:28 +#: application/views/statistics/custom.php:17 +#: application/views/statistics/custom_result.php:18 +#: application/views/statistics/index.php:35 +#: application/views/user/edit.php:154 +msgid "General" +msgstr "" + +#: application/views/notes/add.php:37 application/views/notes/edit.php:38 +msgid "Antennas" +msgstr "" + +#: application/views/notes/add.php:43 application/views/notes/edit.php:44 +msgid "Note Contents" +msgstr "" + +#: application/views/notes/add.php:48 application/views/notes/edit.php:50 +msgid "Save Note" +msgstr "" + +#: application/views/notes/main.php:22 +msgid "Your Notes" +msgstr "" + +#: application/views/notes/main.php:32 +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 " +"than paper as you can't lose them!" +msgstr "" + +#: application/views/notes/view.php:21 +msgid "Delete Note" +msgstr "" + +#: application/views/operator/index.php:9 +msgid "" +"Please provide your personal call sign. This makes sure that QSOs are logged " +"and exported with correct operator information." +msgstr "" + +#: application/views/operator/index.php:13 +msgid "Your personal Callsign:" +msgstr "" + +#: application/views/operator/index.php:16 +msgid "You have to provide your personal callsign." +msgstr "" + +#: application/views/options/appearance.php:39 +#: application/views/user/edit.php:157 +msgid "Theme" +msgstr "" + +#: application/views/options/appearance.php:51 +msgid "Global Theme Choice, this is used when users arent logged in." +msgstr "" + +#: application/views/options/appearance.php:61 +msgid "Dashboard Notification Banner" +msgstr "" + +#: application/views/options/appearance.php:66 +msgid "This allows to disable the global notification banner on the dashboard." +msgstr "" + +#: application/views/options/appearance.php:70 +msgid "Dashboard Map" +msgstr "" + +#: application/views/options/appearance.php:74 +msgid "Map at right" +msgstr "" + +#: application/views/options/appearance.php:76 +msgid "" +"This allows the map on the dashboard to be disabled or placed on the right." +msgstr "" + +#: application/views/options/appearance.php:80 +msgid "Logbook Map" +msgstr "" + +#: application/views/options/appearance.php:85 +msgid "This allows to disable the map in the logbook." +msgstr "" + +#: application/views/options/appearance.php:89 +msgid "Public Maps" +msgstr "" + +#: application/views/options/appearance.php:94 +msgid "" +"This allows to disable all maps in the public view. This affects the main " +"map and the gridsquares map." +msgstr "" + +#: application/views/options/appearance.php:98 +msgid "Public Github Button" +msgstr "" + +#: application/views/options/appearance.php:103 +msgid "This enables the button to Wavelog's Github page in the public view" +msgstr "" + +#: application/views/options/appearance.php:107 +msgid "Public Login Button" +msgstr "" + +#: application/views/options/appearance.php:112 +msgid "This enables the button to login to Wavelog in the public view" +msgstr "" + +#: application/views/options/dxcluster.php:38 +msgid "Provider of DXClusterCache" +msgstr "" + +#: application/views/options/dxcluster.php:39 +msgid "DXClusterAPI" +msgstr "" + +#: application/views/options/dxcluster.php:39 +#, php-format +msgid "" +"The Provider of the DXCluster-Cache. You can set up your own Cache with %s " +"or use a public one" +msgstr "" + +#: application/views/options/dxcluster.php:41 +#, php-format +msgid "URL of the DXCluster-Cache. e.g. %s" +msgstr "" + +#: application/views/options/dxcluster.php:44 +msgid "Maximum Age of spots taken care of" +msgstr "" + +#: application/views/options/dxcluster.php:46 +msgid "2 Hours" +msgstr "" + +#: application/views/options/dxcluster.php:47 +msgid "60 Minutes" +msgstr "" + +#: application/views/options/dxcluster.php:48 +msgid "30 Minutes" +msgstr "" + +#: application/views/options/dxcluster.php:50 +msgid "The Age in Minutes of spots, that will be taken care at bandplan/lookup" +msgstr "" + +#: application/views/options/dxcluster.php:53 +msgid "Show spots which are spotted from following continent" +msgstr "" + +#: application/views/options/dxcluster.php:63 +msgid "Only spots by spotters from this continent are shown" +msgstr "" + +#: application/views/options/email.php:45 +msgid "Outgoing Protocol" +msgstr "" + +#: application/views/options/email.php:50 +msgid "The protocol that will be used to send out emails." +msgstr "" + +#: application/views/options/email.php:54 +msgid "SMTP Encryption" +msgstr "" + +#: application/views/options/email.php:56 +msgid "No Encryption" +msgstr "" + +#: application/views/options/email.php:60 +msgid "Choose whether emails should be sent with TLS or SSL." +msgstr "" + +#: application/views/options/email.php:64 +msgid "Email Sender Name" +msgstr "" + +#: application/views/options/email.php:67 +msgid "The email sender name, e.g. 'Wavelog'" +msgstr "" + +#: application/views/options/email.php:72 application/views/user/edit.php:58 +#: application/views/user/forgot_password.php:47 +msgid "Email Address" +msgstr "" + +#: application/views/options/email.php:75 +msgid "" +"The email address from which the emails are sent, e.g. 'wavelog@example.com'" +msgstr "" + +#: application/views/options/email.php:80 +msgid "SMTP Host" +msgstr "" + +#: application/views/options/email.php:83 +msgid "" +"The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' " +"or 'tls://')" +msgstr "" + +#: application/views/options/email.php:88 +msgid "SMTP Port" +msgstr "" + +#: application/views/options/email.php:91 +msgid "" +"The SMTP port of the mail server, e.g. if TLS is used -> '587', if SSL is " +"used -> '465'" +msgstr "" + +#: application/views/options/email.php:96 +msgid "SMTP Username" +msgstr "" + +#: application/views/options/email.php:99 +msgid "" +"The username to log in to the mail server, usually this is the email address " +"that is used." +msgstr "" + +#: application/views/options/email.php:104 +msgid "SMTP Password" +msgstr "" + +#: application/views/options/email.php:107 +msgid "The password to log in to the mail server." +msgstr "" + +#: application/views/options/email.php:116 +msgid "Send Test-Mail" +msgstr "" + +#: application/views/options/email.php:117 +msgid "The email will be sent to the address defined in your account settings." +msgstr "" + +#: application/views/options/index.php:13 +msgid "" +"Wavelog Options are global settings used for all users of the installation, " +"which are overridden if there's a setting on a user level." +msgstr "" + +#: application/views/options/oqrs.php:39 +msgid "Global text" +msgstr "" + +#: application/views/options/oqrs.php:41 +msgid "" +"This text is an optional text that can be displayed on top of the OQRS page." +msgstr "" + +#: application/views/options/oqrs.php:45 +msgid "Grouped search" +msgstr "" + +#: application/views/options/oqrs.php:47 application/views/options/oqrs.php:56 +msgid "Off" +msgstr "" + +#: application/views/options/oqrs.php:48 application/views/options/oqrs.php:57 +msgid "On" +msgstr "" + +#: application/views/options/oqrs.php:50 +msgid "" +"When this is on, all station locations with OQRS active, will be searched at " +"once." +msgstr "" + +#: application/views/options/oqrs.php:54 +msgid "Show station location name in grouped search results" +msgstr "" + +#: application/views/options/oqrs.php:59 +msgid "" +"If grouped search is ON, you can decide if the name of the station location " +"shall be shown in the results table." +msgstr "" + +#: application/views/options/radios.php:38 +msgid "Radio Timeout Warning" +msgstr "" + +#: application/views/options/radios.php:39 +msgid "" +"The Radio Timeout Warning is used on the QSO entry panel to alert you to " +"radio interface disconnects." +msgstr "" + +#: application/views/options/radios.php:41 +msgid "This number is in seconds." +msgstr "" + +#: application/views/options/sidebar.php:5 +msgid "Radios" +msgstr "" + +#: application/views/options/version_dialog.php:47 +msgid "Version Info Header" +msgstr "" + +#: application/views/options/version_dialog.php:49 +msgid "You can change the header of the version info dialog." +msgstr "" + +#: application/views/options/version_dialog.php:53 +msgid "Version Info Mode" +msgstr "" + +#: application/views/options/version_dialog.php:57 +msgid "Only Release Notes" +msgstr "" + +#: application/views/options/version_dialog.php:60 +msgid "Only Custom Text" +msgstr "" + +#: application/views/options/version_dialog.php:63 +msgid "Release Notes and Custom Text" +msgstr "" + +#: application/views/options/version_dialog.php:68 +msgid "" +"The Version Info is shown to every user. The user has the option to dismiss " +"the dialog after he read it. Select if you want to show only release notes " +"(fetched from github), only custom text or both." +msgstr "" + +#: application/views/options/version_dialog.php:72 +msgid "Version Info Custom Text" +msgstr "" + +#: application/views/options/version_dialog.php:74 +msgid "This is the custom text which is shown in the dialog." +msgstr "" + +#: application/views/options/version_dialog.php:84 +msgid "Show/Hide Version Info Dialog for all Users" +msgstr "" + +#: application/views/options/version_dialog.php:97 +msgid "Show for all Users" +msgstr "" + +#: application/views/options/version_dialog.php:99 +msgid "" +"This will show the version dialog automatically to all users on their next " +"page reload." +msgstr "" + +#: application/views/options/version_dialog.php:104 +msgid "Hide for all Users" +msgstr "" + +#: application/views/options/version_dialog.php:106 +msgid "" +"This will deactivate the automatic popup of the version dialog for all users." +msgstr "" + +#: application/views/oqrs/index.php:9 +msgid "Request a QSL card" +msgstr "" + +#: application/views/oqrs/index.php:26 +msgid "Enter your callsign" +msgstr "" + +#: application/views/oqrs/index.php:26 +msgid "This search will search in all station locations where OQRS is active." +msgstr "" + +#: application/views/oqrs/index.php:53 +msgid "Select station" +msgstr "" + +#: application/views/oqrs/notinlogform.php:2 +msgid "" +"If you can't find your QSO in the log, please fill out the form below. You " +"will be contacted after the log has been checked." +msgstr "" + +#: application/views/oqrs/notinlogform.php:9 +#: application/views/oqrs/request.php:16 +#: application/views/oqrs/request_grouped.php:9 +msgid "Time (UTC)" +msgstr "" + +#: application/views/oqrs/notinlogform.php:24 +msgid "Add line" +msgstr "" + +#: application/views/oqrs/notinlogform.php:30 +#: application/views/oqrs/request.php:56 +#: application/views/oqrs/request_grouped.php:60 +msgid "Any extra information we need to know about?" +msgstr "" + +#: application/views/oqrs/notinlogform.php:34 +#: application/views/oqrs/request.php:60 +#: application/views/oqrs/request_grouped.php:64 +#: application/views/oqrs/showrequests.php:87 +#: application/views/user/index.php:48 application/views/user/profile.php:24 +msgid "E-mail" +msgstr "" + +#: application/views/oqrs/notinlogform.php:36 +#: application/views/oqrs/request.php:62 +#: application/views/oqrs/request_grouped.php:66 +msgid "Your e-mail address where we can contact you" +msgstr "" + +#: application/views/oqrs/notinlogform.php:40 +msgid "Send not in log request" +msgstr "" + +#: application/views/oqrs/qsolist.php:11 +#: application/views/qslprint/qslprint.php:29 +#: application/views/qslprint/qsolist.php:13 +#: application/views/qso/edit_ajax.php:38 application/views/qso/index.php:24 +#: application/views/search/cqzones_result.php:16 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/search_result_ajax.php:127 +#: application/views/user/edit.php:478 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:88 +#: application/views/view_log/qso.php:506 +#: application/views/view_log/qso.php:510 +#: application/views/view_log/qso.php:514 +#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:531 +#: application/views/view_log/qso.php:538 +#: application/views/view_log/qso.php:545 +#: application/views/view_log/qso.php:552 +#: application/views/view_log/qso.php:559 +#: application/views/view_log/qso.php:566 +#: application/views/view_log/qso.php:573 +#: application/views/view_log/qso.php:580 +#: application/views/view_log/qso.php:585 +msgid "Station" +msgstr "" + +#: application/views/oqrs/qsolist.php:75 +#: application/views/qslprint/qslprint.php:28 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:83 +#: application/views/qso/index.php:598 +#: application/views/search/search_result_ajax.php:205 +#: application/views/view_log/partial/log_ajax.php:170 +#: src/QSLManager/QSO.php:302 +msgid "Via" +msgstr "" + +#: application/views/oqrs/qsolist.php:188 +#: application/views/qslprint/qsolist.php:196 +msgid "Add to print queue" +msgstr "" + +#: application/views/oqrs/qsolist.php:197 +msgid "No QSO's were found. It seems you were not active at this time." +msgstr "" + +#: application/views/oqrs/request.php:9 +#: application/views/oqrs/request_grouped.php:3 +msgid "" +"The following QSO(s) were found. Please fill out the date and time and " +"submit your request." +msgstr "" + +#: application/views/oqrs/request.php:40 +#: application/views/oqrs/request_grouped.php:44 +msgid "QSL Route" +msgstr "" + +#: application/views/oqrs/request.php:50 +#: application/views/oqrs/request_grouped.php:54 +msgid "Direct (write address in message below)" +msgstr "" + +#: application/views/oqrs/request.php:66 +#: application/views/oqrs/request_grouped.php:70 +msgid "Submit request" +msgstr "" + +#: application/views/oqrs/request_grouped.php:16 +msgid "Station Name" +msgstr "" + +#: application/views/oqrs/request_grouped.php:73 +#: application/views/oqrs/result.php:40 +msgid "No QSOs found in the log." +msgstr "" + +#: application/views/oqrs/result.php:5 +#, php-format +msgid "Log search result for %s" +msgstr "" + +#: application/views/oqrs/result.php:30 +#, php-format +msgid "has %d band slot" +msgid_plural "has %d band slots" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/views/oqrs/result.php:33 +#, php-format +msgid "and has %d QSO in the log" +msgid_plural "and has %d QSOs in the log" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/views/oqrs/result.php:37 +msgid "Request QSL" +msgstr "" + +#: application/views/oqrs/result.php:44 +msgid "Not in log?" +msgstr "" + +#: application/views/oqrs/showrequests.php:5 +#: application/views/oqrs/showrequests.php:50 +msgid "Open request" +msgstr "" + +#: application/views/oqrs/showrequests.php:6 +#: application/views/oqrs/showrequests.php:51 +msgid "Not in log request" +msgstr "" + +#: application/views/oqrs/showrequests.php:7 +#: application/views/oqrs/showrequests.php:52 +msgid "Request done" +msgstr "" + +#: application/views/oqrs/showrequests.php:47 +msgid "OQRS Status" +msgstr "" + +#: application/views/oqrs/showrequests.php:69 +msgid "With selected" +msgstr "" + +#: application/views/oqrs/showrequests.php:70 +msgid "Mark as done" +msgstr "" + +#: application/views/oqrs/showrequests.php:80 +msgid "Time of request" +msgstr "" + +#: application/views/oqrs/showrequests.php:81 +#: application/views/simplefle/index.php:74 +msgid "QSO Date" +msgstr "" + +#: application/views/oqrs/showrequests.php:82 +msgid "QSO Time" +msgstr "" + +#: application/views/oqrs/showrequests.php:85 +msgid "Request callsign" +msgstr "" + +#: application/views/oqrs/showrequests.php:89 +msgid "QSL route" +msgstr "" + +#: application/views/oqrs/showrequests.php:90 +msgid "Check log" +msgstr "" + +#: application/views/public_search/empty.php:2 +#: application/views/public_search/result.php:2 +msgid "Searching for" +msgstr "" + +#: application/views/qrbcalc/index.php:3 +msgid "Locator 1" +msgstr "" + +#: application/views/qrbcalc/index.php:10 +msgid "Locator 2" +msgstr "" + +#: application/views/qrbcalc/index.php:20 +msgid "Calculate" +msgstr "" + +#: application/views/qrz/export.php:27 +msgid "" +"Here you can see all QSOs which have not been previously uploaded to a QRZ " +"logbook." +msgstr "" + +#: application/views/qrz/export.php:28 +msgid "" +"You need to set a QRZ Logbook API key in your station profile. Only station " +"profiles with an API Key set are displayed." +msgstr "" + +#: application/views/qrz/export.php:73 +msgid "" +"If no startdate is given then all QSOs after last confirmation will be " +"downloaded/updated!" +msgstr "" + +#: application/views/qrz/export.php:81 +msgid "Download from QRZ Logbook" +msgstr "" + +#: application/views/qrz/export.php:107 +msgid "Mark QSOs as exported to QRZ Logbook" +msgstr "" + +#: application/views/qrz/mark_qrz.php:16 +msgid "The QSOs are marked as exported to QRZ Logbook." +msgstr "" + +#: application/views/qslcard/index.php:10 +#, php-format +msgid "You are using %s of disk space to store QSL Card assets" +msgstr "" + +#: application/views/qslcard/index.php:67 +msgid "Add Qsos" +msgstr "" + +#: application/views/qslcard/searchresult.php:193 +msgid "Add to QSL" +msgstr "" + +#: application/views/qslmanagement/index.php:13 +msgid "Incoming QSL Cards" +msgstr "" + +#: application/views/qslmanagement/index.php:25 +msgid "Report" +msgstr "" + +#: application/views/qslmanagement/index.php:26 +msgid "Option" +msgstr "" + +#: application/views/qslmanagement/index.php:46 +msgid "Outgoing QSL Cards" +msgstr "" + +#: application/views/qslprint/index.php:16 +msgid "Export Requested QSLs for Printing" +msgstr "" + +#: application/views/qslprint/index.php:29 +msgid "" +"Here you can export requested QSLs as CSV or ADIF files for printing and, " +"optionally, mark them as sent." +msgstr "" + +#: application/views/qslprint/index.php:30 +msgid "" +"Requested QSLs are any QSOs with a value of 'Requested' or 'Queued' in their " +"'QSL Sent' field." +msgstr "" + +#: application/views/qslprint/qslprint.php:30 +#: application/views/qslprint/qsolist.php:15 +msgid "Send Method" +msgstr "" + +#: application/views/qslprint/qslprint.php:31 +msgid "Mark as sent" +msgstr "" + +#: application/views/qslprint/qslprint.php:32 +msgid "Remove" +msgstr "" + +#: application/views/qslprint/qslprint.php:33 +#: application/views/simplefle/index.php:139 +msgid "QSO List" +msgstr "" + +#: application/views/qslprint/qslprint.php:67 +msgid "Mark selected QSOs as printed" +msgstr "" + +#: application/views/qslprint/qslprint.php:69 +msgid "Remove selected QSOs from the queue" +msgstr "" + +#: application/views/qslprint/qslprint.php:71 +msgid "Export CSV-file" +msgstr "" + +#: application/views/qslprint/qslprint.php:71 +msgid "Export requested QSLs to CSV-file" +msgstr "" + +#: application/views/qslprint/qslprint.php:73 +msgid "Export ADIF" +msgstr "" + +#: application/views/qslprint/qslprint.php:73 +msgid "Export requested QSLs to ADIF-file" +msgstr "" + +#: application/views/qslprint/qslprint.php:75 +msgid "Mark QSLs as printed" +msgstr "" + +#: application/views/qslprint/qslprint.php:75 +msgid "Mark requested QSLs as sent" +msgstr "" + +#: application/views/qslprint/qslprint.php:79 +msgid "No QSLs to print were found!" +msgstr "" + +#: application/views/qslprint/qsolist.php:205 +msgid "" +"No additional QSO's were found. That means they are probably already in the " +"queue." +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 +#, 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 +#, php-format +msgid "Function %d - Macro" +msgstr "" + +#: application/views/qso/edit_ajax.php:34 +msgid "Sats" +msgstr "" + +#: application/views/qso/edit_ajax.php:51 +msgid "Start Date/Time" +msgstr "" + +#: application/views/qso/edit_ajax.php:56 +msgid "End Date/Time" +msgstr "" + +#: application/views/qso/edit_ajax.php:76 +msgid "RX Frequency" +msgstr "" + +#: application/views/qso/edit_ajax.php:99 +msgid "RX Band" +msgstr "" + +#: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:346 +#: application/views/reg1test/index.php:114 +#: application/views/view_log/qso.php:545 +msgid "Transmit Power (W)" +msgstr "" + +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:348 +msgid "Give power value in Watts. Include only numbers in the input." +msgstr "" + +#: application/views/qso/edit_ajax.php:166 +msgid "Used for VUCC MultiGrids" +msgstr "" + +#: application/views/qso/edit_ajax.php:258 +msgid "Sat Name" +msgstr "" + +#: application/views/qso/edit_ajax.php:263 +msgid "Sat Mode" +msgstr "" + +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:545 +msgid "Antenna Azimuth (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:547 +msgid "Antenna azimuth in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:274 application/views/qso/index.php:551 +msgid "Antenna Elevation (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:276 application/views/qso/index.php:553 +msgid "Antenna elevation in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:383 application/views/qso/index.php:255 +#: application/views/qso/index.php:510 application/views/user/edit.php:599 +#: application/views/view_log/qso.php:335 +#: application/views/view_log/qso.php:585 +msgid "Sig Info" +msgstr "" + +#: application/views/qso/edit_ajax.php:396 +msgid "Notes (for internal usage only)" +msgstr "" + +#: application/views/qso/edit_ajax.php:430 +msgid "Sent Method" +msgstr "" + +#: application/views/qso/edit_ajax.php:433 +#: application/views/qso/edit_ajax.php:466 application/views/qso/index.php:585 +#: application/views/qso/index.php:588 +msgid "Method" +msgstr "" + +#: application/views/qso/edit_ajax.php:443 +msgid "Sent Via" +msgstr "" + +#: application/views/qso/edit_ajax.php:457 +#: application/views/qso/edit_ajax.php:498 +#: application/views/qso/edit_ajax.php:537 +msgid "Verified (Match)" +msgstr "" + +#: application/views/qso/edit_ajax.php:463 +msgid "Received Method" +msgstr "" + +#: application/views/qso/edit_ajax.php:504 application/views/qso/index.php:605 +msgid "This note content is exported to QSL services like eqsl.cc." +msgstr "" + +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:608 +msgid "Get the default message for eQSL, for this station." +msgstr "" + +#: application/views/qso/edit_ajax.php:557 +msgid "Change Station Profile" +msgstr "" + +#: application/views/qso/edit_ajax.php:603 +msgid "Exchange (R)" +msgstr "" + +#: application/views/qso/edit_ajax.php:608 +msgid "Exchange (S)" +msgstr "" + +#: application/views/qso/edit_ajax.php:620 +#: application/views/search/search_result_ajax.php:432 +#: application/views/view_log/partial/log.php:156 +#: application/views/view_log/partial/log_ajax.php:348 +msgid "Delete QSO" +msgstr "" + +#: application/views/qso/edit_ajax.php:623 +msgid "Save changes" +msgstr "" + +#: application/views/qso/index.php:4 +msgid "TimeOff is less than TimeOn" +msgstr "" + +#: application/views/qso/index.php:5 application/views/qso/index.php:718 +msgid "Previous Contacts" +msgstr "" + +#: application/views/qso/index.php:6 +msgid "times worked before" +msgstr "" + +#: application/views/qso/index.php:7 +msgid "Not worked before" +msgstr "" + +#: application/views/qso/index.php:20 +msgid "LIVE" +msgstr "" + +#: application/views/qso/index.php:20 +msgid "POST" +msgstr "" + +#: application/views/qso/index.php:33 +msgid "Sat" +msgstr "" + +#: application/views/qso/index.php:48 +msgid "Add Band/Mode to Favs" +msgstr "" + +#: application/views/qso/index.php:69 +msgid "Time on" +msgstr "" + +#: application/views/qso/index.php:81 +msgid "Time off" +msgstr "" + +#: application/views/qso/index.php:124 +msgid "Search DXCluster for latest Spot" +msgstr "" + +#: application/views/qso/index.php:196 application/views/qso/index.php:449 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 +#: application/views/user/edit.php:583 application/views/view_log/qso.php:285 +#: application/views/view_log/qso.php:552 +msgid "IOTA Reference" +msgstr "" + +#: application/views/qso/index.php:212 application/views/qso/index.php:466 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 +#: application/views/user/edit.php:587 application/views/view_log/qso.php:292 +#: application/views/view_log/qso.php:559 +msgid "SOTA Reference" +msgstr "" + +#: application/views/qso/index.php:322 application/views/view_log/qso.php:100 +msgid "Frequency (RX)" +msgstr "" + +#: application/views/qso/index.php:327 +msgid "Band (RX)" +msgstr "" + +#: application/views/qso/index.php:468 +msgid "For example: GM/NS-001." +msgstr "" + +#: application/views/qso/index.php:481 +msgid "For example: DLFF-0069." +msgstr "" + +#: application/views/qso/index.php:494 +msgid "For example: PA-0150. Multiple values allowed." +msgstr "" + +#: application/views/qso/index.php:506 +msgid "For example: GMA" +msgstr "" + +#: application/views/qso/index.php:512 +msgid "For example: DA/NW-357" +msgstr "" + +#: application/views/qso/index.php:520 +msgid "For example: Q03" +msgstr "" + +#: application/views/qso/index.php:529 application/views/view_log/qso.php:210 +msgid "Satellite Name" +msgstr "" + +#: application/views/qso/index.php:537 application/views/view_log/qso.php:217 +msgid "Satellite Mode" +msgstr "" + +#: application/views/qso/index.php:560 +msgid "" +"Note content is used within Wavelog only and is not exported to other " +"services." +msgstr "" + +#: application/views/qso/index.php:626 +msgid "Reset to Default" +msgstr "" + +#: application/views/qso/index.php:667 +msgid "Winkey" +msgstr "" + +#: application/views/qso/index.php:669 +msgid "Connect" +msgstr "" + +#: application/views/qso/index.php:678 +msgid "Stop" +msgstr "" + +#: application/views/qso/index.php:679 +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:680 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:686 +msgid "CW Speed" +msgstr "" + +#: application/views/qso/index.php:691 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:701 +msgid "Suggestions" +msgstr "" + +#: application/views/qso/index.php:708 +msgid "Profile Picture" +msgstr "" + +#: application/views/qso/index.php:732 +msgid "Max. 5 previous contacts are shown" +msgstr "" + +#: application/views/radio/index.php:16 +msgid "Active Radios" +msgstr "" + +#: application/views/radio/index.php:19 +msgid "Below is a list of active radios that are connected to Wavelog." +msgstr "" + +#: application/views/radio/index.php:20 +msgid "" +"If you haven't connected any radios yet, see the API page to generate API " +"keys." +msgstr "" + +#: application/views/radio/index.php:22 application/views/search/filter.php:69 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "" + +#: application/views/radio/index.php:22 +msgid "radio functions" +msgstr "" + +#: application/views/radio/index.php:27 +msgid "Please wait..." +msgstr "" + +#: application/views/reg1test/index.php:6 +msgid "Select Band" +msgstr "" + +#: application/views/reg1test/index.php:8 +msgid "" +"Bands below 50Mhz are not valid for the EDI REG1TEST format and will produce " +"invalid files." +msgstr "" + +#: application/views/reg1test/index.php:18 +msgid "Export a contest to a REG1TEST EDI log" +msgstr "" + +#: application/views/reg1test/index.php:48 +msgid "Sent Exchange" +msgstr "" + +#: application/views/reg1test/index.php:50 +msgid "" +"The exchange which was sent during the contest. Can be any type of " +"information, e.g. Province, DOK, County, State, Power, Name. Max. length: 6 " +"characters." +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:66 +msgid "Callsign of responsible operator" +msgstr "" + +#: application/views/reg1test/index.php:72 +msgid "" +"List of all operators. Seperated with a semicolon ';'. The responsible " +"operator is not needed here." +msgstr "" + +#: application/views/reg1test/index.php:75 +msgid "Contest Address 1" +msgstr "" + +#: application/views/reg1test/index.php:77 +msgid "Address of the QTH used during the contest." +msgstr "" + +#: application/views/reg1test/index.php:80 +msgid "Contest Address 2" +msgstr "" + +#: application/views/reg1test/index.php:84 +msgid "Operator Address 1" +msgstr "" + +#: application/views/reg1test/index.php:86 +msgid "Address of the responsible operator." +msgstr "" + +#: application/views/reg1test/index.php:89 +msgid "Operator Address 2" +msgstr "" + +#: application/views/reg1test/index.php:93 +msgid "Operator Address Postalcode" +msgstr "" + +#: application/views/reg1test/index.php:97 +msgid "Operator Address City" +msgstr "" + +#: application/views/reg1test/index.php:101 +msgid "Operator Address Country" +msgstr "" + +#: application/views/reg1test/index.php:105 +msgid "Operator Phone Number" +msgstr "" + +#: application/views/reg1test/index.php:109 +msgid "Transmit Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:111 +msgid "Short description of the used equipment." +msgstr "" + +#: application/views/reg1test/index.php:116 +msgid "TX Power during the contest in Watt." +msgstr "" + +#: application/views/reg1test/index.php:119 +msgid "Receive Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:121 +msgid "If you used another gear for RX, then describe it here." +msgstr "" + +#: application/views/reg1test/index.php:124 +msgid "Antenna Description" +msgstr "" + +#: application/views/reg1test/index.php:126 +msgid "What kind of antenna was used." +msgstr "" + +#: application/views/reg1test/index.php:129 +msgid "Antenna Height Above Ground (m)" +msgstr "" + +#: application/views/reg1test/index.php:131 +msgid "Height of the antenna above the ground." +msgstr "" + +#: application/views/reg1test/index.php:134 +msgid "Band multiplicator" +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:141 +msgid "Any other remarks." +msgstr "" + +#: application/views/satellite/create.php:23 +#: application/views/satellite/edit.php:7 +msgid "Satellite name" +msgstr "" + +#: application/views/satellite/create.php:25 +msgid "The name of the Satellite" +msgstr "" + +#: application/views/satellite/create.php:28 +#: application/views/satellite/edit.php:12 +#: application/views/satellite/index.php:22 +msgid "Export Name" +msgstr "" + +#: application/views/satellite/create.php:30 +#: application/views/satellite/edit.php:14 +msgid "If external services uses another name for the satellite, like LoTW" +msgstr "" + +#: application/views/satellite/create.php:37 +#: application/views/satellite/edit.php:21 +msgid "Enter which orbit the satellite has (LEO, MEO, GEO)" +msgstr "" + +#: application/views/satellite/create.php:40 +msgid "Satellite mode name" +msgstr "" + +#: application/views/satellite/create.php:42 +msgid "Enter satellite mode" +msgstr "" + +#: application/views/satellite/create.php:47 +#: application/views/satellite/edit.php:35 +msgid "Uplink mode" +msgstr "" + +#: application/views/satellite/create.php:49 +msgid "Enter modulation used for uplink" +msgstr "" + +#: application/views/satellite/create.php:52 +#: application/views/satellite/edit.php:36 +msgid "Uplink frequency" +msgstr "" + +#: application/views/satellite/create.php:54 +msgid "Enter frequency (in Hz) used for uplink" +msgstr "" + +#: application/views/satellite/create.php:59 +#: application/views/satellite/edit.php:37 +msgid "Downlink mode" +msgstr "" + +#: application/views/satellite/create.php:61 +msgid "Enter modulation used for downlink" +msgstr "" + +#: application/views/satellite/create.php:64 +#: application/views/satellite/edit.php:38 +msgid "Downlink frequency" +msgstr "" + +#: application/views/satellite/create.php:66 +msgid "Enter frequency (in Hz) used for downlink" +msgstr "" + +#: application/views/satellite/edit.php:9 +msgid "Name of the Satellite" +msgstr "" + +#: application/views/satellite/edit.php:25 +msgid "Save satellite" +msgstr "" + +#: application/views/satellite/edit.php:59 +msgid "Add satellite mode" +msgstr "" + +#: application/views/satellite/index.php:15 +msgid "Add a satellite" +msgstr "" + +#: application/views/satellite/pass.php:2 +msgid "Satellite passes" +msgstr "" + +#: application/views/satellite/pass.php:8 +msgid "Min. Satellite Elevation" +msgstr "" + +#: application/views/satellite/pass.php:12 +msgid "Min. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:20 +msgid "Max. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:32 +msgid "Altitude (meters)" +msgstr "" + +#: application/views/satellite/pass.php:36 application/views/user/edit.php:179 +msgid "Timezone" +msgstr "" + +#: application/views/satellite/pass.php:479 +msgid "Min. time" +msgstr "" + +#: application/views/satellite/pass.php:487 +msgid "Max. time" +msgstr "" + +#: application/views/satellite/pass.php:504 +msgid "Load predictions" +msgstr "" + +#: application/views/satellite/passtable.php:6 +msgid "AOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:7 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "" + +#: application/views/satellite/passtable.php:8 +msgid "AOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:9 +msgid "AOS El" +msgstr "" + +#: application/views/satellite/passtable.php:10 +msgid "Max El" +msgstr "" + +#: application/views/satellite/passtable.php:11 +msgid "LOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:12 +msgid "LOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:13 +msgid "LOS El" +msgstr "" + +#: application/views/sattimers/index.php:15 +#, php-format +msgid "" +"This data comes from %s and is calculated for the current stationlocation " +"grid %s." +msgstr "" + +#: application/views/sattimers/index.php:40 +msgid "Time(d)-Out" +msgstr "" + +#: application/views/sattimers/index.php:43 +#: application/views/sattimers/index.php:44 +msgid "Azimuth" +msgstr "" + +#: application/views/sattimers/index.php:45 +msgid "Max Elevation" +msgstr "" + +#: application/views/search/cqzones.php:5 +#: application/views/search/lotw_unconfirmed.php:5 +#: application/views/search/main.php:5 +msgid "Ready to find a QSO?" +msgstr "" + +#: application/views/search/cqzones.php:15 +#: application/views/search/filter.php:4 application/views/search/filter.php:23 +#: application/views/search/lotw_unconfirmed.php:15 +#: application/views/search/main.php:15 +msgid "Advanced Search" +msgstr "" + +#: application/views/search/cqzones.php:18 +#: application/views/search/filter.php:26 +#: application/views/search/lotw_unconfirmed.php:18 +#: application/views/search/main.php:18 +msgid "Incorrect CQ Zones" +msgstr "" + +#: application/views/search/cqzones.php:21 +#: application/views/search/filter.php:29 +#: application/views/search/lotw_unconfirmed.php:21 +#: application/views/search/main.php:21 +msgid "QSOs unconfirmed on LoTW" +msgstr "" + +#: application/views/search/cqzones.php:28 +msgid "Station location:" +msgstr "" + +#: application/views/search/cqzones_result.php:3 +msgid "" +"The following QSOs were found to have an incorrect CQ zone that this DXCC " +"normally has:" +msgstr "" + +#: application/views/search/cqzones_result.php:14 +msgid "DXCC CQ Zone" +msgstr "" + +#: application/views/search/cqzones_result.php:51 +msgid "No incorrect CQ Zones were found." +msgstr "" + +#: application/views/search/filter.php:43 +msgid "Save query" +msgstr "" + +#: application/views/search/filter.php:50 +msgid "Stored queries" +msgstr "" + +#: application/views/search/filter.php:69 +msgid "search filter functions" +msgstr "" + +#: application/views/search/filter.php:79 +msgid "Search Results" +msgstr "" + +#: application/views/search/lotw_unconfirmed.php:26 +msgid "" +"The search displays QSOs which are unconfirmed on LoTW, but the callsign " +"worked has uploaded to LoTW after your QSO date." +msgstr "" + +#: application/views/search/lotw_unconfirmed.php:29 +msgid "Station location" +msgstr "" + +#: application/views/search/lotw_unconfirmed_result.php:10 +msgid "Last LoTW upload" +msgstr "" + +#: application/views/search/lotw_unconfirmed_result.php:41 +msgid "No QSOs with outstanding LoTW upload were found." +msgstr "" + +#: application/views/search/main.php:28 +msgid "Callsign / Gridsquare" +msgstr "" + +#: application/views/search/result.php:2 +#, php-format +msgid "Results for %s" +msgstr "" + +#: application/views/search/result.php:4 +#, php-format +msgid "Sorry, but we didn't find any past QSOs with %s" +msgstr "" + +#: application/views/search/result.php:6 +#, php-format +msgid "Callbook Search for %s" +msgstr "" + +#: application/views/search/result_search.php:9 +#: application/views/statistics/custom_result.php:90 +#: application/views/widgets/qsos.php:31 +msgid "Rcvd" +msgstr "" + +#: application/views/search/search_result_ajax.php:409 +#: application/views/view_log/partial/log.php:140 +#: application/views/view_log/partial/log_ajax.php:325 +msgid "Mark QSL Sent (Bureau)" +msgstr "" + +#: application/views/search/search_result_ajax.php:410 +#: application/views/view_log/partial/log.php:141 +#: application/views/view_log/partial/log_ajax.php:326 +msgid "Mark QSL Sent (Direct)" +msgstr "" + +#: application/views/search/search_result_ajax.php:417 +#: application/views/view_log/partial/log.php:148 +#: application/views/view_log/partial/log_ajax.php:335 +#: application/views/view_log/qso.php:655 +msgid "Mark QSL Received (Bureau)" +msgstr "" + +#: application/views/search/search_result_ajax.php:418 +#: application/views/view_log/partial/log.php:149 +#: application/views/view_log/partial/log_ajax.php:336 +#: application/views/view_log/qso.php:657 +msgid "Mark QSL Received (Direct)" +msgstr "" + +#: application/views/search/search_result_ajax.php:419 +#: application/views/view_log/partial/log.php:150 +#: application/views/view_log/partial/log_ajax.php:327 +msgid "Mark QSL Card Requested" +msgstr "" + +#: application/views/search/search_result_ajax.php:420 +#: application/views/view_log/partial/log.php:151 +#: application/views/view_log/partial/log_ajax.php:328 +#: application/views/view_log/qso.php:669 +msgid "Mark QSL Card Not Required" +msgstr "" + +#: application/views/search/search_result_ajax.php:426 +#: application/views/view_log/partial/log_ajax.php:342 +msgid "Lookup on QRZ.com" +msgstr "" + +#: application/views/search/search_result_ajax.php:428 +#: application/views/view_log/partial/log_ajax.php:344 +msgid "Lookup on HamQTH" +msgstr "" + +#: application/views/search/stored_queries.php:9 +msgid "Query" +msgstr "" + +#: application/views/simplefle/index.php:13 +msgid "Simple Fast Log Entry (FLE)" +msgstr "" + +#: application/views/simplefle/index.php:14 +msgid "" +"'Fast Log Entry', or simply 'FLE' is a system to log QSOs very quickly and " +"efficiently. Due to its syntax, only a minimum of input is required to log " +"many QSOs with as little effort as possible." +msgstr "" + +#: application/views/simplefle/index.php:15 +msgid "" +"FLE was originally written by DF3CB. He offers a program for Windows on his " +"website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides " +"a web interface to log QSOs." +msgstr "" + +#: application/views/simplefle/index.php:16 +#, php-format +msgid "" +"A common use-case is if you have to import your paperlogs from an outdoor " +"session and now SimpleFLE is also available in Wavelog. Information about " +"the syntax and how FLE works can be found %s." +msgstr "" + +#: application/views/simplefle/index.php:17 +#: application/views/simplefle/index.php:176 +msgid "Syntax Help" +msgstr "" + +#: application/views/simplefle/index.php:18 +msgid "Syntax for FLE" +msgstr "" + +#: application/views/simplefle/index.php:19 +msgid "Close and Load Sample Data" +msgstr "" + +#: application/views/simplefle/index.php:23 +msgid "Band is missing!" +msgstr "" + +#: application/views/simplefle/index.php:24 +msgid "Mode is missing!" +msgstr "" + +#: application/views/simplefle/index.php:25 +msgid "Time is not set!" +msgstr "" + +#: application/views/simplefle/index.php:26 +msgid "Invalid date" +msgstr "" + +#: application/views/simplefle/index.php:29 +msgid "Station Call is not selected" +msgstr "" + +#: application/views/simplefle/index.php:30 +msgid "'Operator' Field is empty" +msgstr "" + +#: application/views/simplefle/index.php:31 +msgid "Warning! Do you really want to reset everything?" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: application/views/simplefle/index.php:34 +msgid "" +"Attention! The Data Field containes example data. First Clear Logging " +"Session!" +msgstr "" + +#: application/views/simplefle/index.php:35 +msgid "" +"Are you sure that you want to add these QSO to the Log and clear the session?" +msgstr "" + +#: application/views/simplefle/index.php:36 +msgid "QSO Logged!" +msgstr "" + +#: application/views/simplefle/index.php:37 +msgid "The QSO were successfully logged in the logbook!" +msgstr "" + +#: application/views/simplefle/index.php:40 +msgid "What is that?" +msgstr "" + +#: application/views/simplefle/index.php:43 +msgid "Current UTC Time" +msgstr "" + +#: application/views/simplefle/index.php:76 +msgid "If you don't choose a date, today's date will be used." +msgstr "" + +#: application/views/simplefle/index.php:88 +msgid "You can add the entered QSOs to a contest." +msgstr "" + +#: application/views/simplefle/index.php:95 +msgid "Station Call/Location" +msgstr "" + +#: application/views/simplefle/index.php:107 +#, php-format +msgid "" +"If you did operate from a new location, first create a new %sStation " +"Location%s" +msgstr "" + +#: application/views/simplefle/index.php:112 +msgid "e.g. OK2CQR" +msgstr "" + +#: application/views/simplefle/index.php:115 +msgid "This is callsign of the operator. Without any pre- or suffixes." +msgstr "" + +#: application/views/simplefle/index.php:125 +msgid "Enter the Data" +msgstr "" + +#: application/views/simplefle/index.php:154 +msgid "Refs" +msgstr "" + +#: application/views/simplefle/index.php:166 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" +msgstr "" + +#: application/views/simplefle/index.php:173 +msgid "Reload QSO List" +msgstr "" + +#: application/views/simplefle/index.php:174 +msgid "Save in Wavelog" +msgstr "" + +#: application/views/simplefle/index.php:175 +msgid "Clear Logging Session" +msgstr "" + +#: application/views/simplefle/options.php:20 +msgid "No Options yet" +msgstr "" + +#: application/views/simplefle/syntax_help.php:1 +msgid "Before starting to log a QSO, please note the basic rules." +msgstr "" + +#: application/views/simplefle/syntax_help.php:2 +msgid "- Each new QSO should be on a new line." +msgstr "" + +#: application/views/simplefle/syntax_help.php:3 +msgid "" +"- On each new line, only write data that has changed from the previous QSO." +msgstr "" + +#: application/views/simplefle/syntax_help.php:4 +msgid "" +"To begin, ensure you have already filled in the form on the left with the " +"date, station call, and operator's call. The main data includes the band (or " +"QRG in MHz, e.g., '7.145'), mode, and time. After the time, you provide the " +"first QSO, which is essentially the callsign." +msgstr "" + +#: application/views/simplefle/syntax_help.php:9 +msgid "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB." +msgstr "" + +#: application/views/simplefle/syntax_help.php:10 +msgid "" +"If you don't provide any RST information, the syntax will use 59 (599 for " +"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 "" + +#: application/views/simplefle/syntax_help.php:16 +msgid "" +"The first QSO was at 21:34, and the second one 2 minutes later at 21:36. We " +"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 "" + +#: application/views/simplefle/syntax_help.php:17 +msgid "" +"For our next QSO at 21:40 on 14th May, 2021, we changed the band to 40m but " +"still on SSB. If no RST information is given, the syntax will use 59 for " +"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 "" + +#: application/views/simplefle/syntax_help.php:28 +#, php-format +msgid "" +"A full summary of all commands and the necessary syntax can be found in " +"%sthis article%s of our Wiki." +msgstr "" + +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 +msgid "Location Name" +msgstr "" + +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 +msgctxt "Station Location Setup" +msgid "Home QTH" +msgstr "" + +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 +#, php-format +msgid "Shortname for the station location. For example: %s" +msgstr "" + +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 +msgid "Station callsign. For example: 4W7EST/P" +msgstr "" + +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 +msgid "Station Power (W)" +msgstr "" + +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 +msgid "Default station power in Watt. Overwritten by CAT." +msgstr "" + +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 +msgid "Station DXCC" +msgstr "" + +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 +msgctxt "DXCC selection" +msgid "None" +msgstr "" + +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 +msgid "Station DXCC entity. For example: Bolivia" +msgstr "" + +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 +msgid "Station City" +msgstr "" + +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 +msgid "Station city. For example: Oslo" +msgstr "" + +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 +msgid "Station state. Applies to certain countries only." +msgstr "" + +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 +msgid "Station County" +msgstr "" + +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 +msgid "Station County (Only used for USA/Alaska/Hawaii)." +msgstr "" + +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 +#, php-format +msgctxt "uses 'click here'" +msgid "If you don't know your CQ Zone then %s to find it!" +msgstr "" + +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 +msgid "click here" +msgstr "" + +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 +#, php-format +msgctxt "uses 'click here'" +msgid "If you don't know your ITU Zone then %s to find it!" +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 +msgid "Station Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 +msgid "Get Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 +#, php-format +msgctxt "uses 'click here'" +msgid "" +"Station gridsquare. For example: HM54AP. If you don't know your grid square " +"then %s!" +msgstr "" + +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 +msgid "" +"If you are located on a grid line, enter multiple grid squares separated " +"with commas. For example: IO77,IO78,IO87,IO88." +msgstr "" + +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 +msgid "Station IOTA reference. For example: EU-005" +msgstr "" + +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 +msgid "IOTA World website" +msgstr "" + +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 +#, php-format +msgid "You can look up IOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 +msgid "SOTA Maps website" +msgstr "" + +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 +#, php-format +msgid "Station SOTA reference. You can look up SOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 +msgid "GMA Map website" +msgstr "" + +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 +#, php-format +msgid "Station WWFF reference. You can look up WWFF references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 +msgid "POTA Map website" +msgstr "" + +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 +#, php-format +msgid "" +"Station POTA reference(s). Multiple comma separated values allowed. You can " +"look up POTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 +msgid "Signature Name" +msgstr "" + +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 +msgid "Station Signature (e.g. GMA).." +msgstr "" + +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 +msgid "Signature Information" +msgstr "" + +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 +msgid "Station Signature Info (e.g. DA/NW-357)." +msgstr "" + +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 +msgctxt "Probably no translation needed" +msgid "eQSL QTH Nickname" +msgstr "" + +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 +msgid "The QTH Nickname which is configured in your eQSL Profile" +msgstr "" + +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 +msgid "Default QSLMSG" +msgstr "" + +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 +msgid "" +"Define a default message that will be populated and sent for each QSO for " +"this station location." +msgstr "" + +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 +msgid "Ignore Clublog Upload" +msgstr "" + +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 +msgid "" +"If enabled, the QSOs made from this location will not be uploaded to " +"Clublog. If this is deactivated on it's own please check if the Call is " +"properly configured at Clublog" +msgstr "" + +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 +msgid "ClubLog Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 +msgid "HRDLog.net Username" +msgstr "" + +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 +msgid "" +"The username you are registered with at HRDlog.net (usually your callsign)." +msgstr "" + +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 +msgid "HRDLog.net API Key" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 +#, php-format +msgctxt "HRDLog.net Userprofile page" +msgid "Create your API Code on your %s" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 +msgid "HRDLog.net Userprofile page" +msgstr "" + +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 +msgid "HRDLog.net Logbook Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 +msgid "Subscription Required" +msgstr "" + +#: application/views/station_profile/create.php:255 +msgctxt "Probably no translation needed" +msgid "QRZ.com Logbook API Key" +msgstr "" + +#: application/views/station_profile/create.php:258 +msgid "Test API-Key" +msgstr "" + +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 +#, php-format +msgctxt "the QRZ.com Logbook settings page" +msgid "Find your API key on %s" +msgstr "" + +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 +msgid "the QRZ.com Logbook settings page" +msgstr "" + +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 +msgid "QRZ.com Logbook Upload" +msgstr "" + +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 +msgid "Realtime" +msgstr "" + +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 +msgctxt "Probably no translation needed" +msgid "QO-100 Dx Club API Key" +msgstr "" + +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 +#, php-format +msgctxt "QO-100 Dx Club's profile page" +msgid "Create your API key on your %s" +msgstr "" + +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 +msgid "QO-100 Dx Club's profile page" +msgstr "" + +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 +msgid "QO-100 Dx Club Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 +msgid "OQRS Enabled" +msgstr "" + +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 +msgid "OQRS Email alert" +msgstr "" + +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 +msgid "Make sure email is set up under admin and global options." +msgstr "" + +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 +msgid "OQRS Text" +msgstr "" + +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 +msgid "Some info you want to add regarding QSL'ing." +msgstr "" + +#: application/views/station_profile/edit.php:149 +msgid "Zones" +msgstr "" + +#: application/views/station_profile/edit.php:284 +msgid "Signature" +msgstr "" + +#: application/views/stationsetup/create.php:17 +msgid "Station Logbook Name" +msgstr "" + +#: application/views/stationsetup/create.php:19 +msgid "You can call a station logbook anything." +msgstr "" + +#: application/views/stationsetup/edit.php:18 +msgid "Container name" +msgstr "" + +#: application/views/stationsetup/edit.php:20 +msgid "You can call a container anything." +msgstr "" + +#: application/views/stationsetup/exportmapoptions.php:11 +msgctxt "Map Options" +msgid "CQ Zone overlay" +msgstr "" + +#: application/views/stationsetup/exportmapoptions.php:15 +msgctxt "Map Options" +msgid "Gridsquare overlay" +msgstr "" + +#: application/views/stationsetup/exportmapoptions.php:19 +msgctxt "Map Options" +msgid "Night shadow overlay" +msgstr "" + +#: application/views/stationsetup/exportmapoptions.php:27 +msgid "# QSOs shown" +msgstr "" + +#: application/views/stationsetup/exportmapoptions.php:46 +msgid "Visit export map" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:13 +msgid "Select Available Station Locations" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:25 +msgid "Link Location" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:31 +#: application/views/stationsetup/stationsetup.php:122 +msgid "Profile Name" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:34 +msgid "Unlink Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:21 +msgid "" +"Station Logbooks allow you to group Station Locations, this allows you to " +"see all the locations across one session from the logbook areas to the " +"analytics. Great for when your operating in multiple locations but they are " +"part of the same DXCC or VUCC Circle." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:32 +msgid "Linked locations" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:34 +msgid "Visitor site" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:91 +msgid "Station Locations" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:95 +msgid "" +"Station Locations define operating locations, such as your QTH, a friends " +"QTH, or a portable station." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:96 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:97 +msgid "" +"Only one station may be active at a time. In the table below this is shown " +"with the -Active Station- badge." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:98 +msgid "" +"The 'Linked' column shows if the station location is linked with the Active " +"Logbook selected above." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:101 +msgid "Create a Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:105 +msgid "" +"Attention: You need to set an active station location. Go to Callsign-" +">Station Location to select one." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:111 +msgid "" +"Due to recent changes within Wavelog you need to reassign QSOs to your " +"station profiles." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Maintenance" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Please reassign them at " +msgstr "" + +#: application/views/stationsetup/stationsetup.php:127 +msgid "Linked" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:134 +msgid "Favorite" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:180 +msgid "mark/unmark as favorite" +msgstr "" + +#: application/views/stationsetup/visitor.php:2 +msgid "" +"Setting a public slug allows you to share your logbook with anyone via a " +"custom website address, this slug can contain letters & numbers only." +msgstr "" + +#: application/views/stationsetup/visitor.php:3 +msgid "Later it looks like this:" +msgstr "" + +#: application/views/stationsetup/visitor.php:4 +msgid "[your slug]" +msgstr "" + +#: application/views/stationsetup/visitor.php:10 +msgid "Type in Public Slug choice" +msgstr "" + +#: application/views/stationsetup/visitor.php:17 +msgid "Visit Public Page" +msgstr "" + +#: application/views/statistics/custom.php:12 +#: application/views/statistics/custom_result.php:12 +#: application/views/statistics/index.php:28 +msgid "Explore the logbook." +msgstr "" + +#: application/views/statistics/custom.php:23 +#: application/views/statistics/custom_result.php:24 +msgid "Custom" +msgstr "" + +#: application/views/statistics/custom.php:27 +#: application/views/statistics/custom_result.php:29 +msgid "This is a work in-progress" +msgstr "" + +#: application/views/statistics/custom.php:74 +#: application/views/statistics/custom_result.php:71 +msgid "Finished your selection? time to search!" +msgstr "" + +#: application/views/statistics/custom.php:86 +msgid "Results go here" +msgstr "" + +#: application/views/statistics/index.php:14 +#: application/views/statistics/index.php:50 +msgid "Years" +msgstr "" + +#: application/views/statistics/index.php:17 +msgid "Number of QSOs worked each year" +msgstr "" + +#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:99 +msgid "Unique callsigns" +msgstr "" + +#: application/views/themes/add.php:4 application/views/themes/edit.php:4 +msgid "Theme Name" +msgstr "" + +#: application/views/themes/add.php:6 application/views/themes/edit.php:6 +msgid "This is the name that is used to display the theme in the theme list." +msgstr "" + +#: application/views/themes/add.php:10 application/views/themes/edit.php:10 +msgid "Folder Name" +msgstr "" + +#: application/views/themes/add.php:12 application/views/themes/edit.php:12 +msgid "" +"This is the name of the folder where your CSS-files are placed under assets/" +"css." +msgstr "" + +#: application/views/themes/add.php:16 application/views/themes/edit.php:16 +#: application/views/themes/index.php:84 +msgid "Theme Mode" +msgstr "" + +#: application/views/themes/add.php:18 application/views/themes/edit.php:18 +msgid "Light" +msgstr "" + +#: application/views/themes/add.php:19 application/views/themes/edit.php:19 +msgid "Dark" +msgstr "" + +#: application/views/themes/add.php:21 +msgid "This defines wherever the theme is a light or a dark one." +msgstr "" + +#: application/views/themes/add.php:25 application/views/themes/edit.php:25 +#: application/views/themes/index.php:85 +msgid "Header Logo" +msgstr "" + +#: application/views/themes/add.php:27 application/views/themes/add.php:33 +#: application/views/themes/edit.php:27 application/views/themes/edit.php:33 +msgid "Only PNG files with a size ratio of 1:1 are allowed." +msgstr "" + +#: application/views/themes/add.php:27 application/views/themes/edit.php:27 +#, php-format +msgid "" +"This is the name of the file which is used as %s small %s Logo in the header " +"placed in assets/logo." +msgstr "" + +#: application/views/themes/add.php:31 application/views/themes/edit.php:31 +#: application/views/themes/index.php:86 +msgid "Main Logo" +msgstr "" + +#: application/views/themes/add.php:33 application/views/themes/edit.php:33 +#, php-format +msgid "" +"This is the name of the file which is used as %s big %s Logo in the login " +"screen placed in assets/logo." +msgstr "" + +#: application/views/themes/add.php:36 +msgid "Add theme" +msgstr "" + +#: application/views/themes/edit.php:21 +msgid "" +"This defines wherever the theme is a light or a dark one. On this basis the " +"Logo is chosen." +msgstr "" + +#: application/views/themes/edit.php:36 +msgid "Update theme" +msgstr "" + +#: application/views/themes/index.php:22 +msgid "Themes list" +msgstr "" + +#: application/views/themes/index.php:28 +msgid "" +"In this menu you can add and edit themes to Wavelog. The process of adding a " +"theme is not really straightforward and should only be done by an admin who " +"is aware of their actions." +msgstr "" + +#: application/views/themes/index.php:29 +msgid "Also, it has to be said that this feature is still under development." +msgstr "" + +#: application/views/themes/index.php:35 +msgid "Process of adding a new theme" +msgstr "" + +#: application/views/themes/index.php:41 +msgid "1. Step" +msgstr "" + +#: application/views/themes/index.php:44 +#, php-format +msgid "" +"Create a new folder in 'assets/css/' and upload a 'bootstrap.min.css' file " +"which contains basic styling rules. We use the themes from %s" +msgstr "" + +#: application/views/themes/index.php:50 +msgid "2. Step" +msgstr "" + +#: application/views/themes/index.php:53 +msgid "" +"Create a file in this folder called 'overrides.css'. Place your custom CSS " +"code in there." +msgstr "" + +#: application/views/themes/index.php:59 +msgid "3. Step" +msgstr "" + +#: application/views/themes/index.php:62 +msgid "" +"For each new theme, you need two logo files. One for the login screen and " +"one for the header." +msgstr "" + +#: application/views/themes/index.php:63 +msgid "" +"Only PNG files are allowed, and they should have a pixel ratio of 1:1 (e.g., " +"1000px height and 1000px width)." +msgstr "" + +#: application/views/themes/index.php:64 +msgid "Place the two logo files in the folder 'assets/logo/'" +msgstr "" + +#: application/views/themes/index.php:70 +msgid "4. Step" +msgstr "" + +#: application/views/themes/index.php:73 +#, php-format +msgid "" +"Click here on 'Add a Theme' and type in the necessary data. Type in the " +"filenames for the logos %swithout%s the file extension '.png'" +msgstr "" + +#: application/views/themes/index.php:83 +msgid "Foldername" +msgstr "" + +#: application/views/themes/index.php:99 +msgid "Please edit" +msgstr "" + +#: application/views/themes/index.php:116 +msgid "Add a Theme" +msgstr "" + +#: application/views/timeplotter/index.php:2 +msgid "contacts were plotted" +msgstr "" + +#: application/views/timeplotter/index.php:3 +msgid "Time Distribution" +msgstr "" + +#: application/views/timeplotter/index.php:6 +msgid "Callsign(s) worked (max 5)" +msgstr "" + +#: application/views/timeplotter/index.php:10 +msgid "" +"The Timeplotter is used to analyze your logbook and find out at what times " +"you worked certain CQ zones or DXCC countries on a selected band." +msgstr "" + +#: application/views/update/index.php:8 +msgid "DXCC Lookup Data" +msgstr "" + +#: application/views/update/index.php:12 +msgid "Distance Data" +msgstr "" + +#: application/views/update/index.php:19 +msgid "" +"Here you can update the DXCC lookup data that is used for displaying " +"callsign information." +msgstr "" + +#: application/views/update/index.php:20 +msgid "This data is provided by" +msgstr "" + +#: application/views/update/index.php:24 +msgid "You must install php-xml for this to work." +msgstr "" + +#: application/views/update/index.php:27 +msgid "Check for DXCC Data Updates" +msgstr "" + +#: application/views/update/index.php:28 +msgid "Update DXCC Data" +msgstr "" + +#: application/views/update/index.php:30 +msgid "Status:" +msgstr "" + +#: application/views/update/index.php:34 +msgid "Apply DXCC Data to Logbook" +msgstr "" + +#: application/views/update/index.php:36 +msgid "" +"After updating, Wavelog can fill in missing callsign information in the " +"logbook using the newly-obtained DXCC data.\n" +"\t\t\t\t\t\t\tYou can choose to check just the QSOs in the logbook that are " +"missing DXCC metadata or to re-check the entire logbook\n" +"\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." +msgstr "" + +#: application/views/update/index.php:45 +msgid "Check QSOs missing DXCC data" +msgstr "" + +#: application/views/update/index.php:54 application/views/update/index.php:95 +msgid "Re-check all QSOs in logbook" +msgstr "" + +#: application/views/update/index.php:59 +msgid "Apply Continent Data to Logbook" +msgstr "" + +#: application/views/update/index.php:61 +msgid "" +"This function can be used to update QSO continent information for all QSOs " +"in Wavelog missing that information." +msgstr "" + +#: application/views/update/index.php:68 +msgid "Check QSOs missing continent data" +msgstr "" + +#: application/views/update/index.php:80 +msgid "Here you can update QSOs with missing distance information." +msgstr "" + +#: application/views/update/index.php:86 +msgid "Update distance data" +msgstr "" + +#: application/views/update/index.php:89 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" + +#: application/views/user/delete.php:5 +msgid "Delete User Account" +msgstr "" + +#: application/views/user/delete.php:10 +msgid "Are you sure you want to delete the user account" +msgstr "" + +#: application/views/user/delete.php:14 +msgid "No, do not delete this user" +msgstr "" + +#: application/views/user/delete.php:14 +msgid "Yes, delete this user" +msgstr "" + +#: application/views/user/edit.php:4 +msgid "Create User Account" +msgstr "" + +#: application/views/user/edit.php:6 +msgid "Edit Account" +msgstr "" + +#: application/views/user/edit.php:41 +msgid "General Information" +msgstr "" + +#: application/views/user/edit.php:52 application/views/user/login.php:58 +#: application/views/user/login.php:69 application/views/user/login.php:70 +#: application/views/user/profile.php:14 +msgid "Username" +msgstr "" + +#: application/views/user/edit.php:64 application/views/user/login.php:59 +#: application/views/user/login.php:73 application/views/user/login.php:74 +#: application/views/user/reset_password.php:21 +#: application/views/user/reset_password.php:23 +#: application/views/user/reset_password.php:30 +msgid "Password" +msgstr "" + +#: application/views/user/edit.php:77 +msgid "User Role" +msgstr "" + +#: application/views/user/edit.php:99 +msgid "Personal" +msgstr "" + +#: application/views/user/edit.php:102 +msgid "First Name" +msgstr "" + +#: application/views/user/edit.php:109 +msgid "Last Name" +msgstr "" + +#: application/views/user/edit.php:120 +msgid "Ham Radio" +msgstr "" + +#: application/views/user/edit.php:146 +msgid "Wavelog Preferences" +msgstr "" + +#: application/views/user/edit.php:157 +msgid "Stylesheet" +msgstr "" + +#: application/views/user/edit.php:169 +msgid "Wavelog Language" +msgstr "" + +#: application/views/user/edit.php:176 +msgid "Choose Wavelog language." +msgstr "" + +#: application/views/user/edit.php:187 +msgid "Date Format" +msgstr "" + +#: application/views/user/edit.php:200 +msgid "Select how you would like dates shown when logged into your account." +msgstr "" + +#: application/views/user/edit.php:204 +msgid "Measurement preference" +msgstr "" + +#: application/views/user/edit.php:208 +msgid "Kilometers" +msgstr "" + +#: application/views/user/edit.php:209 +msgid "Miles" +msgstr "" + +#: application/views/user/edit.php:210 +msgid "Nautical miles" +msgstr "" + +#: application/views/user/edit.php:212 +msgid "Choose which unit distances will be shown in" +msgstr "" + +#: application/views/user/edit.php:221 +msgid "Logbook fields" +msgstr "" + +#: application/views/user/edit.php:224 +msgid "Choose column 1" +msgstr "" + +#: application/views/user/edit.php:246 +msgid "Choose column 2" +msgstr "" + +#: application/views/user/edit.php:268 +msgid "Choose column 3" +msgstr "" + +#: application/views/user/edit.php:290 +msgid "Choose column 4" +msgstr "" + +#: application/views/user/edit.php:312 +msgid "Choose column 5 (only for logbook)" +msgstr "" + +#: application/views/user/edit.php:341 +msgid "QSO Logging Options" +msgstr "" + +#: application/views/user/edit.php:344 +msgid "Log End Times for QSOs Separately" +msgstr "" + +#: application/views/user/edit.php:350 +msgid "" +"Choose yes here if you want to log QSO start and end times separately. If " +"set to 'No' the end time will be the same as start time." +msgstr "" + +#: application/views/user/edit.php:355 +msgid "" +"Show profile picture of QSO partner from qrz.com/hamqth.com profile in the " +"log QSO section." +msgstr "" + +#: application/views/user/edit.php:361 +msgid "" +"Please set your qrz.com/hamqth.com credentials in the general config file." +msgstr "" + +#: application/views/user/edit.php:366 +msgid "Location auto lookup." +msgstr "" + +#: application/views/user/edit.php:372 +msgid "If set, gridsquare is fetched based on location name." +msgstr "" + +#: application/views/user/edit.php:376 +msgid "SOTA auto lookup gridsquare and name for summit." +msgstr "" + +#: application/views/user/edit.php:382 application/views/user/edit.php:392 +#: application/views/user/edit.php:402 +msgid "" +"If set, name and gridsquare is fetched from the API and filled in location " +"and locator." +msgstr "" + +#: application/views/user/edit.php:386 +msgid "WWFF auto lookup gridsquare and name for reference." +msgstr "" + +#: application/views/user/edit.php:396 +msgid "POTA auto lookup gridsquare and name for park." +msgstr "" + +#: application/views/user/edit.php:413 +msgid "Menu Options" +msgstr "" + +#: application/views/user/edit.php:416 +msgid "Show notes in the main menu." +msgstr "" + +#: application/views/user/edit.php:427 +msgid "Quicklog Field" +msgstr "" + +#: application/views/user/edit.php:433 +msgid "" +"With this feature, you can log callsigns using the search field in the " +"header." +msgstr "" + +#: application/views/user/edit.php:437 +msgid "Quicklog - Action on press Enter" +msgstr "" + +#: application/views/user/edit.php:440 +msgid "Log Callsign" +msgstr "" + +#: application/views/user/edit.php:443 +msgid "" +"What action should be performed when Enter is pressed in the quicklog field?" +msgstr "" + +#: application/views/user/edit.php:449 +msgid "Station Locations Quickswitch" +msgstr "" + +#: application/views/user/edit.php:454 +msgid "Show the Station Locations Quickswitch in the main menu" +msgstr "" + +#: application/views/user/edit.php:458 +msgid "UTC Time in Menu" +msgstr "" + +#: application/views/user/edit.php:463 +msgid "Show the current UTC Time in the menu" +msgstr "" + +#: application/views/user/edit.php:474 +msgid "Map Settings" +msgstr "" + +#: application/views/user/edit.php:481 +msgid "Icon" +msgstr "" + +#: application/views/user/edit.php:484 application/views/user/edit.php:488 +msgid "Not display" +msgstr "" + +#: application/views/user/edit.php:497 +msgid "QSO (by default)" +msgstr "" + +#: application/views/user/edit.php:516 +msgid "QSO (confirmed)" +msgstr "" + +#: application/views/user/edit.php:517 +msgid "(If 'No', displayed as 'QSO (by default))'" +msgstr "" + +#: application/views/user/edit.php:536 +msgid "Show Locator" +msgstr "" + +#: application/views/user/edit.php:555 +msgid "Previous QSL Type" +msgstr "" + +#: application/views/user/edit.php:559 +msgid "Select the type of QSL to show in the previous QSOs section." +msgstr "" + +#: application/views/user/edit.php:565 +msgid "QRZ" +msgstr "" + +#: application/views/user/edit.php:576 +msgid "Show Reference Fields on QSO Tab" +msgstr "" + +#: application/views/user/edit.php:580 +msgid "" +"The enabled items will be shown on the QSO tab rather than the General tab." +msgstr "" + +#: application/views/user/edit.php:619 +msgid "Default Values" +msgstr "" + +#: application/views/user/edit.php:627 +msgid "Settings for Default Band and Confirmation" +msgstr "" + +#: application/views/user/edit.php:630 +msgid "Default Band" +msgstr "" + +#: application/views/user/edit.php:640 +msgid "Default QSL-Methods" +msgstr "" + +#: application/views/user/edit.php:697 +msgid "Third Party Services" +msgstr "" + +#: application/views/user/edit.php:708 +msgid "Logbook of The World (LoTW) Username" +msgstr "" + +#: application/views/user/edit.php:714 +msgid "Logbook of The World (LoTW) Password" +msgstr "" + +#: application/views/user/edit.php:734 +msgid "eQSL.cc Username" +msgstr "" + +#: application/views/user/edit.php:740 +msgid "eQSL.cc Password" +msgstr "" + +#: application/views/user/edit.php:757 +msgid "Club Log" +msgstr "" + +#: application/views/user/edit.php:760 +msgid "Club Log Email/Callsign" +msgstr "" + +#: application/views/user/edit.php:762 +msgid "The Email or Callsign you use to login to Club Log" +msgstr "" + +#: application/views/user/edit.php:767 +msgid "Club Log Password" +msgstr "" + +#: application/views/user/edit.php:788 +msgid "Miscellaneous" +msgstr "" + +#: application/views/user/edit.php:796 +msgid "AMSAT Status Upload" +msgstr "" + +#: application/views/user/edit.php:799 +msgid "Upload status of SAT QSOs to" +msgstr "" + +#: application/views/user/edit.php:813 +msgid "Mastodonserver" +msgstr "" + +#: application/views/user/edit.php:816 +msgid "URL of Mastodonserver" +msgstr "" + +#: application/views/user/edit.php:818 +#, php-format +msgid "Main URL of your Mastodon server, e.g. %s" +msgstr "" + +#: application/views/user/edit.php:827 +msgid "Experimental" +msgstr "" + +#: application/views/user/edit.php:827 +msgid "Winkeyer" +msgstr "" + +#: application/views/user/edit.php:830 +msgid "Winkeyer Features Enabled" +msgstr "" + +#: application/views/user/edit.php:836 +#, php-format +msgid "" +"Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " +"before enabling." +msgstr "" + +#: application/views/user/edit.php:847 +msgid "Hams.at" +msgstr "" + +#: application/views/user/edit.php:850 +msgid "Private Feed Key" +msgstr "" + +#: application/views/user/edit.php:852 +#, php-format +msgctxt "Hint for Hamsat API Key; uses Link" +msgid "See your profile at %s." +msgstr "" + +#: application/views/user/edit.php:855 +msgid "Show Workable Passes Only" +msgstr "" + +#: application/views/user/edit.php:861 +msgid "" +"If enabled shows only workable passes based on the gridsquare set in your " +"hams.at account. Requires private feed key to be set." +msgstr "" + +#: application/views/user/edit.php:873 +msgid "Save Account" +msgstr "" + +#: application/views/user/forgot_password.php:33 +msgid "Forgot Password?" +msgstr "" + +#: application/views/user/forgot_password.php:34 +#: application/views/user/reset_password.php:9 +msgid "You can reset your password here." +msgstr "" + +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "" + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "" + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "" + +#: application/views/user/login.php:36 +msgid "MAINTENANCE MODE" +msgstr "" + +#: application/views/user/login.php:56 +msgid "Welcome to the Demo of Wavelog" +msgstr "" + +#: application/views/user/login.php:57 +msgid "This demo will be reset every night at 0200z." +msgstr "" + +#: application/views/user/login.php:60 +#, php-format +msgid "More Information about Wavelog on %sGithub%s." +msgstr "" + +#: application/views/user/login.php:79 +msgid "Forgot your password?" +msgstr "" + +#: application/views/user/login.php:85 +msgid "Keep me logged in" +msgstr "" + +#: application/views/user/profile.php:19 +msgid "Level" +msgstr "" + +#: application/views/user/profile.php:39 +msgid "First name" +msgstr "" + +#: application/views/user/profile.php:44 +msgid "Last name" +msgstr "" + +#: application/views/user/profile.php:50 +msgid "Edit profile" +msgstr "" + +#: application/views/user/reset_password.php:28 +msgid "Confirm Password" +msgstr "" + +#: application/views/version_dialog/index.php:20 +msgid "No Version Dialog text set. Go to the Admin Menu and set one." +msgstr "" + +#: application/views/version_dialog/index.php:60 +msgid "Error at parsing JSON-Data or got empty result from github." +msgstr "" + +#: application/views/version_dialog/index.php:63 +msgid "Error at getting the data from GitHub." +msgstr "" + +#: application/views/version_dialog/index.php:75 +msgid "Don't show again" +msgstr "" + +#: application/views/view_log/index.php:4 +msgid "" +"Displaying all QSOs of station locations which are linked to this logbook" +msgstr "" + +#: application/views/view_log/qso.php:6 +msgid "QSO Details" +msgstr "" + +#: application/views/view_log/qso.php:29 +msgid "QSL Management" +msgstr "" + +#: application/views/view_log/qso.php:131 +msgid "Total Distance" +msgstr "" + +#: application/views/view_log/qso.php:224 +msgid "Antenna Azimuth" +msgstr "" + +#: application/views/view_log/qso.php:231 +msgid "Antenna Elevation" +msgstr "" + +#: application/views/view_log/qso.php:373 +msgid "QSL Card has been sent via the bureau" +msgstr "" + +#: application/views/view_log/qso.php:375 +msgid "QSL Card has been sent via direct" +msgstr "" + +#: application/views/view_log/qso.php:377 +msgid "QSL Card has been sent electronically" +msgstr "" + +#: application/views/view_log/qso.php:379 +msgid "QSL Card has been sent via manager" +msgstr "" + +#: application/views/view_log/qso.php:381 +msgid "QSL Card has been sent" +msgstr "" + +#: application/views/view_log/qso.php:390 +msgid "QSL Card has been received via the bureau" +msgstr "" + +#: application/views/view_log/qso.php:392 +msgid "QSL Card has been received via direct" +msgstr "" + +#: application/views/view_log/qso.php:394 +msgid "QSL Card has been received electronically" +msgstr "" + +#: application/views/view_log/qso.php:396 +msgid "QSL Card has been received via manager" +msgstr "" + +#: application/views/view_log/qso.php:398 +msgid "QSL Card has been received" +msgstr "" + +#: application/views/view_log/qso.php:407 +msgid "This station uses LoTW." +msgstr "" + +#: application/views/view_log/qso.php:412 +#: application/views/view_log/qso.php:417 +#: application/views/view_log/qso.php:422 +#: application/views/view_log/qso.php:427 +msgid "This QSO was confirmed on" +msgstr "" + +#: application/views/view_log/qso.php:438 +msgid "More QSOs" +msgstr "" + +#: application/views/view_log/qso.php:506 +msgid "Details" +msgstr "" + +#: application/views/view_log/qso.php:633 +msgid "Uploaded QSL Card front image" +msgstr "" + +#: application/views/view_log/qso.php:638 +msgid "Upload QSL Card image" +msgstr "" + +#: application/views/view_log/qso.php:643 +msgid "Uploaded QSL Card back image" +msgstr "" + +#: application/views/view_log/qso.php:659 +msgid "Mark QSL Received (Electronic)" +msgstr "" + +#: application/views/view_log/qso.php:665 +msgid "Mark QSL Card Requested (Bureau)" +msgstr "" + +#: application/views/view_log/qso.php:667 +msgid "Mark QSL Card Requested (Direct)" +msgstr "" + +#: application/views/view_log/qso.php:682 +msgid "eQSL picture" +msgstr "" + +#: application/views/visitor/layout/footer.php:242 +msgid "CSV" +msgstr "" + +#: application/views/visitor/layout/header.php:74 +msgid "OQRS" +msgstr "" + +#: application/views/visitor/layout/header.php:82 +msgid "Visit Wavelog on Github" +msgstr "" + +#: application/views/visitor/layout/header.php:95 +msgid "Please enter a callsign!" +msgstr "" + +#: application/views/webadif/export.php:22 +msgid "" +"Here you can see and upload all QSOs which have not been previously uploaded " +"to QO-100 Dx Club." +msgstr "" + +#: application/views/webadif/export.php:33 +msgid "" +"You need to set a QO-100 Dx Club API key in your station profile. Only " +"station profiles with an API Key are displayed." +msgstr "" + +#: application/views/webadif/export.php:63 +msgid "" +"There are currently no outstanding QSOs that need to be uploaded to the " +"QO-100 Dx Club's API." +msgstr "" + +#: application/views/webadif/export.php:64 +msgid "Go ahead and turn on your QO-100 station!" +msgstr "" + +#: application/views/webadif/export.php:73 +#: application/views/webadif/export.php:113 +msgid "" +"None of your Logbooks are configured to export data to the QO-100 Dx Club's " +"API." +msgstr "" + +#: application/views/webadif/export.php:74 +#: application/views/webadif/export.php:114 +msgid "QO-100 Dx Club" +msgstr "" + +#: application/views/webadif/export.php:74 +#: application/views/webadif/export.php:114 +#, php-format +msgid "" +"To configure this feature, go to your profile page at the %s and %s Create " +"%s an API key." +msgstr "" + +#: application/views/webadif/export.php:75 +#: application/views/webadif/export.php:115 +#, php-format +msgid "" +"Then, navigate to your %s and configure your station with the key you have " +"created at the club." +msgstr "" + +#: application/views/webadif/export.php:83 +msgid "" +"Here you can mark as uploaded your QSOs which have not been previously " +"uploaded to QO-100 Dx Club." +msgstr "" + +#: application/views/webadif/export.php:107 +msgid "Mark QSOs as exported to QO-100 Dx Club" +msgstr "" + +#: application/views/webadif/mark_webadif.php:16 +msgid "The QSOs are marked as exported to QO-100 Dx Club." +msgstr "" + +#: application/views/widgets/oqrs.php:21 +msgid "Wavelog OQRS" +msgstr "" + +#: application/views/widgets/oqrs.php:76 +msgid "Wavelog OQRS Request" +msgstr "" + +#: application/views/widgets/oqrs.php:79 +#, php-format +msgid "Request a QSL card for your QSO with %s." +msgstr "" + +#: application/views/widgets/oqrs.php:83 +msgid "Your Callsign:" +msgstr "" + +#: application/views/widgets/oqrs.php:90 +msgid "Submit Request" +msgstr "" diff --git a/application/locale/hr/index.html b/application/locale/hr/index.html new file mode 100644 index 000000000..67f2d8864 --- /dev/null +++ b/application/locale/hr/index.html @@ -0,0 +1,11 @@ + + + + 403 Forbidden + + + +

Directory access is forbidden.

+ + + diff --git a/application/locale/it_IT/LC_MESSAGES/messages.mo b/application/locale/it_IT/LC_MESSAGES/messages.mo index 442101458..6623a74db 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 345f16af3..1d70eef58 100644 --- a/application/locale/it_IT/LC_MESSAGES/messages.po +++ b/application/locale/it_IT/LC_MESSAGES/messages.po @@ -3,12 +3,13 @@ # This file is distributed under the MIT licence. # # Luca , 2024. +# "Francisco (F4VSE)" , 2024. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-09 07:24+0000\n" -"PO-Revision-Date: 2024-08-09 07:24+0000\n" -"Last-Translator: Luca \n" +"POT-Creation-Date: 2024-09-07 07:18+0000\n" +"PO-Revision-Date: 2024-08-18 19:11+0000\n" +"Last-Translator: \"Francisco (F4VSE)\" \n" "Language-Team: Italian \n" "Language: it_IT\n" @@ -16,10 +17,104 @@ 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.6.2\n" +"X-Generator: Weblate 5.7\n" -#: application/controllers/Accumulated.php:21 -#: application/views/interface_assets/header.php:150 +#: application/controllers/Accumulated.php:12 +#: application/controllers/Activators.php:13 +#: application/controllers/Activatorsmap.php:13 +#: application/controllers/Adif.php:13 application/controllers/Awards.php:16 +#: application/controllers/Backup.php:13 application/controllers/Backup.php:26 +#: application/controllers/Backup.php:63 application/controllers/Band.php:15 +#: application/controllers/Bandmap.php:9 +#: application/controllers/Cabrillo.php:16 +#: application/controllers/Cabrillo.php:53 +#: application/controllers/Cabrillo.php:80 +#: application/controllers/Cabrillo.php:135 +#: application/controllers/Calltester.php:11 +#: application/controllers/Cfdexport.php:18 +#: application/controllers/Cfdexport.php:29 +#: application/controllers/Components.php:13 +#: application/controllers/Contestcalendar.php:15 +#: application/controllers/Contesting.php:14 +#: application/controllers/Cron.php:26 application/controllers/Cron.php:162 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: application/controllers/Distancerecords.php:11 +#: application/controllers/Distances.php:11 +#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29 +#: application/controllers/Dxatlas.php:51 +#: application/controllers/Dxatlas.php:108 +#: application/controllers/Dxcalendar.php:8 +#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23 +#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 +#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 +#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:353 +#: application/controllers/Eqsl.php:420 application/controllers/Eqsl.php:436 +#: application/controllers/Eqsl.php:497 application/controllers/Hamsat.php:13 +#: application/controllers/Kmlexport.php:18 +#: application/controllers/Kmlexport.php:33 +#: application/controllers/Labels.php:26 +#: application/controllers/Logbookadvanced.php:16 +#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 +#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 +#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 +#: application/controllers/Notes.php:10 application/controllers/Options.php:15 +#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 +#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 +#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 +#: application/controllers/Qso.php:9 application/controllers/Qso.php:19 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:600 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Reg1test.php:18 +#: application/controllers/Reg1test.php:63 +#: application/controllers/Reg1test.php:102 +#: application/controllers/Reg1test.php:130 +#: application/controllers/Reg1test.php:164 +#: application/controllers/Satellite.php:18 +#: application/controllers/Satellite.php:37 +#: application/controllers/Satellite.php:44 +#: application/controllers/Satellite.php:53 +#: application/controllers/Satellite.php:72 +#: application/controllers/Satellite.php:87 +#: application/controllers/Satellite.php:95 +#: application/controllers/Satellite.php:103 +#: application/controllers/Satellite.php:117 +#: application/controllers/Satellite.php:135 +#: application/controllers/Satellite.php:146 +#: application/controllers/Satellite.php:162 +#: application/controllers/Satellite.php:190 +#: application/controllers/Satellite.php:201 +#: application/controllers/Satellite.php:223 +#: application/controllers/Satellite.php:236 +#: application/controllers/Satellite.php:244 +#: application/controllers/Sattimers.php:9 +#: application/controllers/Search.php:13 +#: application/controllers/Simplefle.php:7 +#: application/controllers/Station.php:17 +#: application/controllers/Stationsetup.php:15 +#: application/controllers/Themes.php:17 +#: application/controllers/Timeline.php:10 +#: application/controllers/Timeplotter.php:11 +#: application/controllers/Update.php:24 application/controllers/Update.php:273 +#: application/controllers/Update.php:284 +#: application/controllers/Update.php:295 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 +#: application/controllers/User_options.php:9 +msgid "You're not allowed to do that!" +msgstr "" + +#: application/controllers/Accumulated.php:19 +#: application/views/interface_assets/header.php:152 msgid "Accumulated Statistics" msgstr "Statistiche cumulative" @@ -29,24 +124,26 @@ msgid "Activated Gridsquare Map" msgstr "Mappa locatori attivati" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:910 -#: application/controllers/Awards.php:942 +#: application/controllers/Awards.php:919 +#: application/controllers/Awards.php:951 #: application/controllers/Gridmap.php:31 -#: application/controllers/Visitor.php:374 -#: application/views/activators/index.php:101 +#: application/controllers/Visitor.php:385 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: application/views/visitor/layout/footer.php:22 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "Locatori" #: application/controllers/Activated_gridmap.php:32 #: application/controllers/Gridmap.php:32 -#: application/controllers/Visitor.php:375 +#: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "Locatori confermati" #: application/controllers/Activated_gridmap.php:33 #: application/controllers/Gridmap.php:33 -#: application/controllers/Visitor.php:376 +#: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "Locatori non confermati" @@ -55,12 +152,13 @@ msgid "Total gridsquares activated" msgstr "Locatori totali attivati" #: application/controllers/Activators.php:20 -#: application/views/activators/index.php:2 +#: application/views/activators/index.php:5 #: application/views/interface_assets/header.php:142 msgid "Gridsquare Activators" msgstr "Attivatori locatori" #: application/controllers/Activatorsmap.php:17 +#: application/views/activators/index.php:2 msgid "Activators Map" msgstr "Mappa attivatori" @@ -77,7 +175,7 @@ msgid "ADIF Export" msgstr "Esportazione ADIF" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:388 msgid "ADIF Import / Export" msgstr "Importa / Esporta ADIF" @@ -90,20 +188,25 @@ msgstr "Importa ADIF" msgid "Unsupported Filetype" msgstr "Tipo di file non supportato" -#: application/controllers/Adif.php:245 +#: application/controllers/Adif.php:240 +#: application/views/adif/import_failed.php:12 +msgid "ADIF Import failed!" +msgstr "" + +#: application/controllers/Adif.php:254 msgid "Station Profile not valid for User" msgstr "Il profilo di stazione non è valido per l'utente" -#: application/controllers/Adif.php:252 +#: application/controllers/Adif.php:261 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "ADIF importato" -#: application/controllers/Adif.php:263 +#: application/controllers/Adif.php:272 msgid "DCL Import" msgstr "Importa DCL" -#: application/controllers/Adif.php:319 +#: application/controllers/Adif.php:328 msgid "DCL Data Imported" msgstr "Dati DCL importati" @@ -133,25 +236,8 @@ msgstr "La descrizione per la chiave %s è stata aggiornata." msgid "API Key %s has been deleted" msgstr "La chiave %s è stata cancellata" -#: application/controllers/Api.php:118 -msgid "Key Disabled" -msgstr "Chiave disattivata" - -#: application/controllers/Api.php:118 -msgid "No Key Found" -msgstr "Nessuna chiave trovata" - -#: application/controllers/Api.php:120 -msgid "Key Invalid - either not found or disabled" -msgstr "Chiave invalida - disattivata o inesistente" - -#: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 -msgid "Valid" -msgstr "Valido" - #: application/controllers/Awards.php:22 -#: application/views/interface_assets/header.php:158 +#: application/views/interface_assets/header.php:160 #: application/views/qso/edit_ajax.php:35 msgid "Awards" msgstr "Premi" @@ -166,12 +252,13 @@ msgstr "Premi" #: application/controllers/Awards.php:652 #: application/controllers/Awards.php:714 #: application/controllers/Awards.php:776 -#: application/controllers/Awards.php:847 -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:930 -#: application/controllers/Awards.php:1125 -#: application/controllers/Awards.php:1615 -#: application/controllers/Awards.php:1755 +#: application/controllers/Awards.php:856 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:939 +#: application/controllers/Awards.php:1140 +#: application/controllers/Awards.php:1639 +#: application/controllers/Awards.php:1779 +#: application/controllers/Awards.php:1908 #, php-format msgid "Awards - %s" msgstr "Premi - %s" @@ -179,13 +266,13 @@ msgstr "Premi - %s" #: application/controllers/Awards.php:92 #: application/views/awards/dok/index.php:149 #: application/views/bands/index.php:47 -#: application/views/contesting/index.php:170 -#: application/views/interface_assets/header.php:194 -#: application/views/logbookadvanced/index.php:613 +#: application/views/contesting/index.php:53 +#: application/views/interface_assets/header.php:198 +#: application/views/logbookadvanced/index.php:641 #: application/views/logbookadvanced/useroptions.php:130 -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:264 -#: application/views/qso/index.php:508 application/views/user/edit.php:603 -#: application/views/view_log/qso.php:351 +#: application/views/qso/edit_ajax.php:388 application/views/qso/index.php:264 +#: application/views/qso/index.php:518 application/views/user/edit.php:603 +#: application/views/view_log/qso.php:354 msgid "DOK" msgstr "DOK" @@ -193,15 +280,15 @@ msgstr "DOK" #: application/views/bandmap/list.php:112 application/views/bands/index.php:48 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 -#: application/views/interface_assets/header.php:164 +#: application/views/interface_assets/header.php:166 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:145 -#: application/views/logbookadvanced/index.php:580 +#: application/views/logbookadvanced/index.php:156 +#: application/views/logbookadvanced/index.php:608 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 -#: application/views/lotw_views/index.php:40 +#: application/views/lotw_views/index.php:36 #: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 #: application/views/search/cqzones_result.php:15 #: application/views/search/result.php:27 @@ -216,12 +303,12 @@ msgid "Awards - WAJA" msgstr "Premi - WAJA" #: application/controllers/Awards.php:327 application/views/bands/index.php:51 -#: application/views/interface_assets/header.php:210 +#: application/views/interface_assets/header.php:214 msgid "JCC" msgstr "JCC" #: application/controllers/Awards.php:375 application/views/bands/index.php:57 -#: application/views/interface_assets/header.php:170 +#: application/views/interface_assets/header.php:172 msgid "VUCC" msgstr "VUCC" @@ -230,15 +317,20 @@ msgid "Log View - VUCC" msgstr "Visualizza log - VUCC" #: application/controllers/Awards.php:453 -#: application/controllers/Timeline.php:92 -#: application/controllers/Timeline.php:95 -#: application/controllers/Timeline.php:98 -#: application/controllers/Timeline.php:101 -#: application/controllers/Timeline.php:104 -#: application/controllers/Timeline.php:107 +#: application/controllers/Distancerecords.php:59 +#: application/controllers/Timeline.php:105 +#: application/controllers/Timeline.php:108 +#: application/controllers/Timeline.php:111 +#: application/controllers/Timeline.php:114 +#: application/controllers/Timeline.php:117 +#: application/controllers/Timeline.php:120 msgid "Log View" msgstr "Visualizza Log" +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr "" + #: application/controllers/Awards.php:457 msgid " and sat " msgstr " e satellite " @@ -260,12 +352,12 @@ msgid " and " msgstr " e " #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1289 #: application/views/awards/index.php:8 application/views/bands/index.php:55 #: application/views/dashboard/index.php:9 -#: application/views/interface_assets/header.php:178 -#: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:259 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -273,10 +365,10 @@ msgstr " e " #: application/views/qslcard/searchresult.php:49 #: application/views/qslcard/searchresult.php:65 #: application/views/qslcard/searchresult.php:81 -#: application/views/qso/components/previous_contacts.php:83 -#: application/views/qso/edit_ajax.php:336 +#: application/views/qso/components/previous_contacts.php:82 +#: application/views/qso/edit_ajax.php:363 #: application/views/search/search_result_ajax.php:9 -#: application/views/station_profile/edit.php:216 +#: application/views/station_profile/edit.php:243 #: application/views/user/edit.php:234 application/views/user/edit.php:256 #: application/views/user/edit.php:278 application/views/user/edit.php:300 #: application/views/user/edit.php:323 @@ -286,18 +378,18 @@ msgid "SOTA" msgstr "SOTA" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1290 #: application/views/bands/index.php:60 #: application/views/dashboard/index.php:10 -#: application/views/interface_assets/header.php:172 -#: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:279 +#: application/views/interface_assets/header.php:176 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/index.php:290 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 -#: application/views/qso/components/previous_contacts.php:84 -#: application/views/qso/edit_ajax.php:341 +#: application/views/qso/components/previous_contacts.php:83 +#: application/views/qso/edit_ajax.php:368 #: application/views/search/search_result_ajax.php:10 -#: application/views/station_profile/edit.php:229 +#: application/views/station_profile/edit.php:256 #: application/views/user/edit.php:235 application/views/user/edit.php:257 #: application/views/user/edit.php:279 application/views/user/edit.php:301 #: application/views/user/edit.php:324 @@ -306,18 +398,18 @@ msgid "WWFF" msgstr "WWFF" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1291 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 -#: application/views/interface_assets/header.php:182 +#: application/views/interface_assets/header.php:186 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:274 +#: application/views/logbookadvanced/index.php:623 #: application/views/logbookadvanced/useroptions.php:106 -#: application/views/qso/components/previous_contacts.php:85 -#: application/views/qso/edit_ajax.php:346 +#: application/views/qso/components/previous_contacts.php:84 +#: application/views/qso/edit_ajax.php:373 #: application/views/search/search_result_ajax.php:11 -#: application/views/station_profile/edit.php:242 +#: application/views/station_profile/edit.php:269 #: application/views/user/edit.php:236 application/views/user/edit.php:258 #: application/views/user/edit.php:280 application/views/user/edit.php:302 #: application/views/user/edit.php:325 @@ -336,7 +428,7 @@ msgid "Worked All States (WAS)" msgstr "Collegati tutti gli stati (WAS)" #: application/controllers/Awards.php:714 application/views/bands/index.php:53 -#: application/views/interface_assets/header.php:188 +#: application/views/interface_assets/header.php:192 msgid "RAC" msgstr "RAC" @@ -344,74 +436,80 @@ msgstr "RAC" msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:847 +#: application/controllers/Awards.php:856 msgid "IOTA (Island On The Air)" msgstr "IOTA (Isole in aria)" -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:872 -#: application/views/interface_assets/header.php:230 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 +#: application/views/interface_assets/header.php:234 msgid "US Counties" msgstr "Contee USA" -#: application/controllers/Awards.php:887 +#: application/controllers/Awards.php:896 msgid "Log View - Counties" msgstr "Visualizza log - Contee" -#: application/controllers/Awards.php:894 +#: application/controllers/Awards.php:903 msgid "Awards - " msgstr "Premi - " -#: application/controllers/Awards.php:911 -#: application/controllers/Awards.php:943 +#: application/controllers/Awards.php:920 +#: application/controllers/Awards.php:952 msgid "Gridsquares worked" msgstr "Locatori collegati" -#: application/controllers/Awards.php:912 -#: application/controllers/Awards.php:944 +#: application/controllers/Awards.php:921 +#: application/controllers/Awards.php:953 msgid "Gridsquares confirmed on LoTW" msgstr "Locatori confermati via LoTW" -#: application/controllers/Awards.php:913 -#: application/controllers/Awards.php:945 +#: application/controllers/Awards.php:922 +#: application/controllers/Awards.php:954 msgid "Gridsquares confirmed by paper QSL" msgstr "Locatori confermati via QSL cartacea" -#: application/controllers/Awards.php:930 +#: application/controllers/Awards.php:939 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Memoriale Fred Fish (FFMA)" -#: application/controllers/Awards.php:1125 -#: application/views/interface_assets/header.php:168 +#: application/controllers/Awards.php:1140 +#: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1143 +#: application/controllers/Awards.php:1158 msgid "Awards - SIG - " msgstr "Premi - SIG - " -#: application/controllers/Awards.php:1755 -#: application/views/awards/itu/index.php:18 +#: application/controllers/Awards.php:1779 +#: application/views/awards/itu/index.php:20 msgid "ITU Zones" msgstr "Zone ITU" +#: application/controllers/Awards.php:1908 +#: application/views/awards/wac/index.php:8 +#: application/views/interface_assets/header.php:174 +msgid "Worked All Continents (WAC)" +msgstr "" + #: application/controllers/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:284 msgid "Backup" msgstr "Backup" -#: application/controllers/Backup.php:48 +#: application/controllers/Backup.php:50 msgid "ADIF - Backup" msgstr "ADIF - Backup" -#: application/controllers/Backup.php:80 +#: application/controllers/Backup.php:84 msgid "Notes - Backup" msgstr "Note - Backup" #: application/controllers/Band.php:25 application/views/bands/index.php:28 #: application/views/bands/index.php:32 -#: application/views/interface_assets/header.php:379 +#: application/views/interface_assets/header.php:383 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -427,8 +525,8 @@ msgstr "Modifica banda" #: application/controllers/Bandmap.php:28 #: application/controllers/Bandmap.php:69 -#: application/controllers/Options.php:137 -#: application/controllers/Options.php:148 +#: application/controllers/Options.php:145 +#: application/controllers/Options.php:156 #: application/views/options/sidebar.php:10 msgid "DXCluster" msgstr "DXCluster" @@ -438,7 +536,7 @@ msgid "Export Cabrillo" msgstr "Esporta cabrillo" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:396 +#: application/views/interface_assets/header.php:402 msgid "CFD Export" msgstr "Esporta CFD" @@ -455,7 +553,7 @@ msgid "No user has configured Clublog." msgstr "Nessun utente ha configurato Clublog." #: application/controllers/Contestcalendar.php:19 -#: application/views/interface_assets/header.php:247 +#: application/views/interface_assets/header.php:251 msgid "Contest Calendar" msgstr "Calendario contest" @@ -464,38 +562,62 @@ msgstr "Calendario contest" msgid "Contest Logging" msgstr "Log per Contest" -#: application/controllers/Contesting.php:112 -#: application/views/interface_assets/header.php:274 +#: application/controllers/Contesting.php:113 +#: application/views/interface_assets/header.php:278 msgid "Contests" msgstr "Contest" -#: application/controllers/Contesting.php:126 +#: application/controllers/Contesting.php:127 msgid "Update Contest" msgstr "Aggiorna contest" #: application/controllers/Continents.php:25 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:57 -#: application/views/interface_assets/header.php:154 +#: application/views/interface_assets/header.php:156 msgid "Continents" msgstr "Continenti" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:284 +#: application/views/interface_assets/header.php:288 msgid "Cron Manager" msgstr "" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:154 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "" +#: application/controllers/Cron.php:274 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:278 +#, php-format +msgid "" +"Last run occurred more than %s seconds ago.%sPlease check your master cron! " +"It should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:281 +#, php-format +msgid "" +"Last run occurred more than %s minutes ago.%sSeems like your Mastercron " +"isn't running!%sIt should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:286 application/views/cron/index.php:29 +msgctxt "Master Cron" +msgid "Not running" +msgstr "" + #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:392 +#: application/views/interface_assets/header.php:396 msgid "SOTA CSV Export" msgstr "" -#: application/controllers/Dashboard.php:108 -#: application/controllers/Visitor.php:132 +#: application/controllers/Dashboard.php:123 +#: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "" @@ -542,6 +664,12 @@ msgstr "" msgid "File Migration failed. Please check the Error Log." msgstr "" +#: application/controllers/Distancerecords.php:42 +#: application/controllers/Distancerecords.php:59 +#: application/views/interface_assets/header.php:146 +msgid "Satellite Distance Records" +msgstr "" + #: application/controllers/Distances.php:17 #: application/views/distances/index.php:5 #: application/views/distances/index.php:8 @@ -549,27 +677,31 @@ msgstr "" msgid "Distances Worked" msgstr "" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 #: application/views/distances/index.php:15 msgid "QSOs with" msgstr "" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 msgid "and band" msgstr "" +#: application/controllers/Distances.php:83 +msgid "and propagation" +msgstr "" + #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:394 msgid "DX Atlas Gridsquare Export" msgstr "" #: application/controllers/Dxcalendar.php:10 -#: application/views/interface_assets/header.php:245 +#: application/views/interface_assets/header.php:249 msgid "DX Calendar" msgstr "" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:325 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -587,19 +719,19 @@ msgstr "" msgid "eQSL QSO Upload" msgstr "" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:424 msgid "eQSL Tools" msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid " / Errors: " msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid "Successfully downloaded: " msgstr "" -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:481 msgid "eQSL Card Image Download" msgstr "" @@ -609,7 +741,7 @@ msgid "Gridsquare Map" msgstr "" #: application/controllers/Gridmap.php:34 -#: application/controllers/Visitor.php:377 +#: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "" @@ -629,7 +761,7 @@ msgid "No QSOs found to upload." msgstr "" #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:392 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "" @@ -642,59 +774,59 @@ msgstr "" msgid "Create Label Type" msgstr "" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:402 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:406 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:403 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:407 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 #: application/views/labels/index.php:76 msgid "Paper Type" msgstr "" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:404 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:408 #: application/views/labels/index.php:42 application/views/labels/index.php:77 msgid "Measurement" msgstr "" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:405 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:409 msgid "Top Margin" msgstr "" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:406 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:410 msgid "Left Margin" msgstr "" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:407 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:411 msgid "QSLs Horizontally" msgstr "" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:408 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:412 msgid "QSLs Vertically" msgstr "" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:409 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:413 msgid "Horizontal Space" msgstr "" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:410 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:414 msgid "Vertical Space" msgstr "" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:411 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:415 msgid "Label width" msgstr "" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:412 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:416 msgid "Label height" msgstr "" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:413 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:417 msgid "Size of Font" msgstr "" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:414 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:418 msgid "Number of QSOs on label" msgstr "" @@ -703,22 +835,22 @@ msgid "Create Paper Type" msgstr "" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:461 +#: application/controllers/Labels.php:465 msgid "Paper Name" msgstr "" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:462 +#: application/controllers/Labels.php:466 msgid "Paper Width" msgstr "" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:463 +#: application/controllers/Labels.php:467 msgid "Paper Height" msgstr "" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:471 +#: application/controllers/Labels.php:475 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -745,27 +877,27 @@ msgstr "" msgid "0 QSOs found for print!" msgstr "" -#: application/controllers/Labels.php:391 +#: application/controllers/Labels.php:395 msgid "Edit Label" msgstr "" -#: application/controllers/Labels.php:420 +#: application/controllers/Labels.php:424 msgid "Label was saved." msgstr "" -#: application/controllers/Labels.php:428 +#: application/controllers/Labels.php:432 msgid "Label was deleted." msgstr "" -#: application/controllers/Labels.php:450 +#: application/controllers/Labels.php:454 msgid "Edit Paper" msgstr "" -#: application/controllers/Labels.php:475 +#: application/controllers/Labels.php:479 msgid "Paper was saved." msgstr "" -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "Paper was deleted." msgstr "" @@ -789,20 +921,20 @@ msgstr "" msgid "Logbook" msgstr "" -#: application/controllers/Logbook.php:653 -#: application/controllers/Logbook.php:668 +#: application/controllers/Logbook.php:657 +#: application/controllers/Logbook.php:672 #: application/views/activated_gridmap/index.php:58 #: application/views/awards/dok/index.php:55 #: application/views/awards/dxcc/index.php:61 -#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/helvetia/index.php:55 #: application/views/awards/jcc/index.php:52 -#: application/views/awards/rac/index.php:45 +#: application/views/awards/rac/index.php:47 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:72 -#: application/views/awards/waja/index.php:53 -#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:55 +#: application/views/awards/was/index.php:55 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:568 +#: application/views/logbookadvanced/index.php:596 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -815,20 +947,21 @@ msgstr "" msgid "QSL" msgstr "" -#: application/controllers/Logbook.php:656 +#: application/controllers/Logbook.php:660 #: application/views/activated_gridmap/index.php:66 -#: application/views/awards/cq/index.php:58 +#: application/views/awards/cq/index.php:60 #: application/views/awards/dok/index.php:59 #: application/views/awards/dxcc/index.php:65 -#: application/views/awards/helvetia/index.php:57 -#: application/views/awards/itu/index.php:58 +#: application/views/awards/helvetia/index.php:59 +#: application/views/awards/itu/index.php:60 #: application/views/awards/jcc/index.php:56 -#: application/views/awards/rac/index.php:49 +#: application/views/awards/rac/index.php:51 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:80 -#: application/views/awards/waja/index.php:57 -#: application/views/awards/was/index.php:57 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -836,28 +969,29 @@ msgstr "" #: application/views/qslprint/qsolist.php:21 #: application/views/qslprint/qsolist.php:167 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:384 +#: application/views/qso/edit_ajax.php:411 #: application/views/search/result_search.php:22 #: application/views/search/search_result_ajax.php:298 #: application/views/search/search_result_ajax.php:313 #: application/views/timeline/index.php:60 application/views/user/edit.php:563 -#: application/views/user/edit.php:659 application/views/view_log/qso.php:408 +#: application/views/user/edit.php:659 application/views/view_log/qso.php:411 msgid "LoTW" msgstr "" -#: application/controllers/Logbook.php:659 +#: application/controllers/Logbook.php:663 #: application/views/activated_gridmap/index.php:74 -#: application/views/awards/cq/index.php:62 +#: application/views/awards/cq/index.php:64 #: application/views/awards/dok/index.php:63 #: application/views/awards/dxcc/index.php:69 -#: application/views/awards/helvetia/index.php:61 -#: application/views/awards/itu/index.php:62 +#: application/views/awards/helvetia/index.php:63 +#: application/views/awards/itu/index.php:64 #: application/views/awards/jcc/index.php:60 -#: application/views/awards/rac/index.php:53 +#: application/views/awards/rac/index.php:55 #: application/views/awards/wab/index.php:88 -#: application/views/awards/waja/index.php:61 -#: application/views/awards/was/index.php:61 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:52 +#: application/views/awards/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:117 #: application/views/logbookadvanced/useroptions.php:70 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 @@ -865,63 +999,67 @@ msgstr "" #: application/views/qslprint/qsolist.php:18 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:151 -#: application/views/qso/edit_ajax.php:381 +#: application/views/qso/edit_ajax.php:408 #: application/views/search/result_search.php:16 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:273 -#: application/views/station_profile/edit.php:278 +#: application/views/station_profile/edit.php:305 #: application/views/timeline/index.php:64 application/views/user/edit.php:564 #: application/views/user/edit.php:667 application/views/user/edit.php:731 msgid "eQSL" msgstr "" -#: application/controllers/Logbook.php:665 +#: application/controllers/Logbook.php:669 #: application/views/awards/dok/index.php:71 #: application/views/awards/dxcc/index.php:77 #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 -#: application/views/awards/waja/index.php:69 +#: application/views/awards/waja/index.php:71 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 -#: application/views/station_profile/edit.php:325 +#: application/views/station_profile/edit.php:352 +#: application/views/timeline/index.php:68 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 -#: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/partial/log_ajax.php:85 +#: application/views/view_log/qso.php:426 msgid "Clublog" msgstr "" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1284 #: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:39 #: application/views/adif/dcl_success.php:33 -#: application/views/awards/cq/index.php:86 +#: application/views/awards/cq/index.php:88 #: application/views/awards/dok/index.php:91 #: application/views/awards/dxcc/index.php:162 -#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/helvetia/index.php:87 #: application/views/awards/iota/index.php:105 -#: application/views/awards/itu/index.php:86 +#: application/views/awards/itu/index.php:88 #: application/views/awards/jcc/index.php:88 -#: application/views/awards/rac/index.php:77 +#: application/views/awards/rac/index.php:79 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:53 -#: application/views/awards/waja/index.php:89 -#: application/views/awards/was/index.php:85 +#: application/views/awards/wac/index.php:110 +#: application/views/awards/waja/index.php:91 +#: application/views/awards/was/index.php:87 #: application/views/components/hamsat/table.php:30 -#: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:203 +#: application/views/contesting/index.php:108 +#: application/views/contesting/index.php:250 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 +#: 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/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:170 -#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/index.php:181 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -938,14 +1076,14 @@ msgstr "" #: application/views/qslcard/searchresult.php:76 #: application/views/qslprint/qslprint.php:24 #: application/views/qslprint/qsolist.php:9 -#: application/views/qso/components/previous_contacts.php:78 +#: application/views/qso/components/previous_contacts.php:77 #: application/views/qso/edit_ajax.php:119 application/views/qso/index.php:136 #: application/views/satellite/index.php:24 #: application/views/search/cqzones_result.php:10 #: application/views/search/lotw_unconfirmed_result.php:8 #: application/views/search/result_search.php:7 #: application/views/search/search_result_ajax.php:4 -#: application/views/simplefle/index.php:144 +#: application/views/simplefle/index.php:150 #: application/views/statistics/custom.php:60 #: application/views/statistics/custom_result.php:62 #: application/views/statistics/custom_result.php:88 @@ -957,17 +1095,17 @@ msgstr "" #: application/views/user/edit.php:295 application/views/user/edit.php:318 #: application/views/view_log/partial/log.php:9 #: application/views/view_log/partial/log_ajax.php:4 -#: application/views/view_log/qso.php:104 application/views/visitor/index.php:6 +#: application/views/view_log/qso.php:107 application/views/visitor/index.php:6 #: application/views/widgets/qsos.php:29 msgid "Mode" msgstr "Modo" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1285 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:111 -#: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:547 +#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:251 +#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -976,25 +1114,25 @@ msgstr "Modo" #: application/views/qslcard/searchresult.php:77 #: application/views/qslprint/qslprint.php:26 #: application/views/qslprint/qsolist.php:11 -#: application/views/qso/components/previous_contacts.php:79 +#: application/views/qso/components/previous_contacts.php:78 #: application/views/qso/edit_ajax.php:142 application/views/qso/index.php:177 #: application/views/search/search_result_ajax.php:5 -#: application/views/simplefle/index.php:145 +#: application/views/simplefle/index.php:151 #: application/views/user/edit.php:230 application/views/user/edit.php:252 #: application/views/user/edit.php:274 application/views/user/edit.php:296 #: application/views/user/edit.php:319 #: application/views/view_log/partial/log.php:10 #: application/views/view_log/partial/log_ajax.php:5 -#: application/views/view_log/qso.php:109 application/views/visitor/index.php:9 +#: application/views/view_log/qso.php:112 application/views/visitor/index.php:9 msgid "RST (S)" msgstr "RST (I)" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1286 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:550 +#: application/views/contesting/index.php:189 +#: application/views/contesting/index.php:252 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1003,51 +1141,50 @@ msgstr "RST (I)" #: application/views/qslcard/searchresult.php:78 #: application/views/qslprint/qslprint.php:27 #: application/views/qslprint/qsolist.php:12 -#: application/views/qso/components/previous_contacts.php:80 +#: application/views/qso/components/previous_contacts.php:79 #: application/views/qso/edit_ajax.php:147 application/views/qso/index.php:182 #: application/views/search/search_result_ajax.php:6 -#: application/views/simplefle/index.php:146 +#: application/views/simplefle/index.php:152 #: application/views/user/edit.php:231 application/views/user/edit.php:253 #: application/views/user/edit.php:275 application/views/user/edit.php:297 #: application/views/user/edit.php:320 #: application/views/view_log/partial/log.php:11 #: application/views/view_log/partial/log_ajax.php:6 -#: application/views/view_log/qso.php:114 +#: application/views/view_log/qso.php:117 #: application/views/visitor/index.php:12 msgid "RST (R)" msgstr "" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1287 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 #: application/views/qslcard/searchresult.php:47 #: application/views/qslcard/searchresult.php:63 #: application/views/qslcard/searchresult.php:79 -#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/components/previous_contacts.php:80 #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 -#: application/views/station_profile/index.php:43 #: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 -#: application/views/timeline/index.php:118 application/views/user/edit.php:232 +#: application/views/timeline/index.php:151 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 #: application/views/user/edit.php:298 application/views/user/edit.php:321 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:235 -#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:238 +#: application/views/view_log/qso.php:531 #: application/views/visitor/index.php:15 msgid "Country" msgstr "Paese" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1288 #: application/views/awards/iota/index.php:169 #: application/views/bands/index.php:50 application/views/dashboard/index.php:8 -#: application/views/interface_assets/header.php:180 +#: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1056,11 +1193,11 @@ msgstr "Paese" #: application/views/qslcard/searchresult.php:48 #: application/views/qslcard/searchresult.php:64 #: application/views/qslcard/searchresult.php:80 -#: application/views/qso/components/previous_contacts.php:82 -#: application/views/qso/edit_ajax.php:318 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 -#: application/views/timeline/index.php:202 application/views/user/edit.php:233 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:235 application/views/user/edit.php:233 #: application/views/user/edit.php:255 application/views/user/edit.php:277 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/view_log/partial/log_ajax.php:8 @@ -1068,17 +1205,17 @@ msgstr "Paese" msgid "IOTA" msgstr "" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1292 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:20 -#: application/views/awards/rac/index.php:141 -#: application/views/awards/was/index.php:149 -#: application/views/contesting/index.php:173 +#: application/views/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 +#: application/views/contesting/index.php:56 #: application/views/dashboard/index.php:12 -#: application/views/logbookadvanced/edit.php:20 -#: application/views/logbookadvanced/edit.php:64 -#: application/views/logbookadvanced/index.php:162 -#: application/views/logbookadvanced/index.php:583 +#: application/views/logbookadvanced/edit.php:21 +#: application/views/logbookadvanced/edit.php:66 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:611 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1086,9 +1223,9 @@ msgstr "" #: application/views/qslcard/searchresult.php:50 #: application/views/qslcard/searchresult.php:66 #: application/views/qslcard/searchresult.php:82 -#: application/views/qso/components/previous_contacts.php:86 +#: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 -#: application/views/timeline/index.php:177 application/views/user/edit.php:237 +#: application/views/timeline/index.php:210 application/views/user/edit.php:237 #: application/views/user/edit.php:259 application/views/user/edit.php:281 #: application/views/user/edit.php:303 application/views/user/edit.php:326 #: application/views/view_log/partial/log_ajax.php:12 @@ -1096,20 +1233,21 @@ msgstr "" msgid "State" msgstr "Stato" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1293 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:17 -#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:13 +#: application/views/distancerecords/index.php:20 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:166 -#: application/views/logbookadvanced/index.php:556 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1118,38 +1256,39 @@ msgstr "Stato" #: application/views/qslcard/searchresult.php:51 #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 -#: application/views/qso/components/previous_contacts.php:87 +#: application/views/qso/components/previous_contacts.php:86 #: application/views/qso/edit_ajax.php:156 application/views/qso/index.php:279 +#: application/views/satellite/pass.php:28 #: application/views/search/cqzones_result.php:12 #: application/views/search/result.php:33 #: application/views/search/search_result_ajax.php:13 -#: application/views/simplefle/index.php:147 -#: application/views/station_profile/index.php:44 +#: application/views/simplefle/index.php:153 #: application/views/stationsetup/stationsetup.php:125 -#: application/views/timeline/index.php:257 application/views/user/edit.php:130 +#: application/views/timeline/index.php:290 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 #: application/views/user/edit.php:327 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:518 #: application/views/visitor/index.php:27 msgid "Gridsquare" msgstr "" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1294 #: application/views/activated_gridmap/index.php:108 #: application/views/awards/ffma/index.php:36 #: application/views/awards/gridmaster/index.php:35 #: 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/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/index.php:12 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 #: application/views/qslcard/searchresult.php:52 #: application/views/qslcard/searchresult.php:68 #: application/views/qslcard/searchresult.php:84 -#: application/views/qso/components/previous_contacts.php:88 +#: application/views/qso/components/previous_contacts.php:87 #: application/views/search/search_result_ajax.php:14 #: application/views/user/edit.php:239 application/views/user/edit.php:261 #: application/views/user/edit.php:283 application/views/user/edit.php:305 @@ -1159,32 +1298,33 @@ msgstr "" msgid "Distance" msgstr "" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1295 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:8 -#: application/views/activators/index.php:7 +#: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 -#: application/views/awards/cq/index.php:72 +#: application/views/awards/cq/index.php:74 #: application/views/awards/dok/index.php:77 #: application/views/awards/dxcc/index.php:117 -#: application/views/awards/helvetia/index.php:71 +#: application/views/awards/helvetia/index.php:73 #: application/views/awards/iota/index.php:91 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:74 #: application/views/awards/jcc/index.php:74 #: application/views/awards/pota/index.php:35 -#: application/views/awards/rac/index.php:63 +#: application/views/awards/rac/index.php:65 #: application/views/awards/sig/qso_list.php:13 #: application/views/awards/sota/index.php:26 #: application/views/awards/vucc/index.php:21 #: application/views/awards/wab/index.php:22 -#: application/views/awards/waja/index.php:75 -#: application/views/awards/was/index.php:71 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/waja/index.php:77 +#: application/views/awards/was/index.php:73 #: application/views/awards/wwff/index.php:35 #: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:45 -#: application/views/contesting/index.php:70 -#: application/views/contesting/index.php:202 +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:249 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:549 application/views/dxatlas/index.php:31 @@ -1192,8 +1332,8 @@ msgstr "" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1211,13 +1351,13 @@ msgstr "" #: application/views/qslmanagement/index.php:24 #: application/views/qslprint/qslprint.php:25 #: application/views/qslprint/qsolist.php:10 -#: application/views/qso/components/previous_contacts.php:89 +#: application/views/qso/components/previous_contacts.php:88 #: application/views/qso/edit_ajax.php:83 application/views/qso/index.php:151 #: application/views/search/cqzones_result.php:11 #: application/views/search/lotw_unconfirmed_result.php:9 #: application/views/search/result_search.php:10 #: application/views/search/search_result_ajax.php:15 -#: application/views/simplefle/index.php:143 +#: application/views/simplefle/index.php:149 #: application/views/stationsetup/exportmapoptions.php:31 #: application/views/statistics/custom.php:53 #: application/views/statistics/custom_result.php:55 @@ -1235,72 +1375,71 @@ msgstr "" msgid "Band" msgstr "Banda" -#: application/controllers/Logbook.php:1285 +#: application/controllers/Logbook.php:1296 #: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 -#: application/views/contesting/index.php:87 +#: application/views/contesting/index.php:138 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 #: application/views/qslcard/searchresult.php:70 #: application/views/qslcard/searchresult.php:86 -#: application/views/qso/components/previous_contacts.php:90 +#: application/views/qso/components/previous_contacts.php:89 #: application/views/qso/edit_ajax.php:71 application/views/qso/index.php:169 #: application/views/search/search_result_ajax.php:16 #: application/views/user/edit.php:228 application/views/user/edit.php:250 #: application/views/user/edit.php:272 application/views/user/edit.php:294 #: application/views/user/edit.php:317 #: application/views/view_log/partial/log_ajax.php:16 -#: application/views/view_log/qso.php:93 application/views/visitor/index.php:36 +#: application/views/view_log/qso.php:94 application/views/visitor/index.php:36 msgid "Frequency" msgstr "Frequenza" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1297 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:283 -#: application/views/logbookadvanced/index.php:598 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:626 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 #: application/views/qslcard/searchresult.php:87 -#: application/views/qso/components/previous_contacts.php:91 +#: application/views/qso/components/previous_contacts.php:90 #: application/views/search/search_result_ajax.php:17 #: application/views/simplefle/index.php:112 #: application/views/user/edit.php:240 application/views/user/edit.php:262 #: application/views/user/edit.php:284 application/views/user/edit.php:306 #: application/views/user/edit.php:329 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:538 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "Operatore" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1318 #: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:669 +#: application/views/interface_assets/footer.php:675 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:154 +#: application/views/logbookadvanced/index.php:165 #: application/views/lookup/index.php:31 -#: application/views/lotw_views/index.php:56 +#: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 #: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 -#: application/views/station_profile/create.php:73 -#: application/views/station_profile/edit.php:78 -#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 #: application/views/stationsetup/stationsetup.php:150 -#: application/views/timeline/index.php:134 +#: application/views/timeline/index.php:167 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 -#: application/views/view_log/qso.php:236 -#: application/views/view_log/qso.php:529 +#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:532 msgid "Deleted DXCC" msgstr "" @@ -1314,7 +1453,7 @@ msgstr "" #: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83 #: application/controllers/Lotw.php:125 application/views/adif/import.php:27 -#: application/views/interface_assets/header.php:423 +#: application/views/interface_assets/header.php:429 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1322,28 +1461,55 @@ msgstr "" msgid "Logbook of the World" msgstr "" -#: application/controllers/Lotw.php:610 +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "" + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "" + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "" + +#: application/controllers/Lotw.php:413 +#, 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:617 msgid "LoTW ADIF Information" msgstr "" -#: application/controllers/Lotw.php:718 +#: application/controllers/Lotw.php:725 msgid "LoTW ADIF Import" msgstr "" -#: application/controllers/Lotw.php:830 +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "" + +#: application/controllers/Lotw.php:837 msgid "LoTW .TQ8 Upload" msgstr "" -#: application/controllers/Lotw.php:927 application/controllers/Lotw.php:932 +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "" + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 msgid "LoTW .TQ8 Sent" msgstr "" -#: application/controllers/Lotw.php:939 +#: application/controllers/Lotw.php:946 msgid "LoTW .TQ8 Not Sent" msgstr "" #: application/controllers/Mode.php:25 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:276 #: application/views/mode/index.php:15 msgid "Modes" msgstr "" @@ -1352,28 +1518,28 @@ msgstr "" msgid "Edit Mode" msgstr "" -#: application/controllers/Notes.php:19 +#: application/controllers/Notes.php:18 #: application/views/interface_assets/header.php:128 #: application/views/notes/add.php:9 application/views/notes/edit.php:10 #: application/views/notes/main.php:5 application/views/notes/main.php:8 #: application/views/notes/view.php:6 application/views/notes/view.php:9 #: application/views/qso/edit_ajax.php:36 -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:38 -#: application/views/qso/index.php:541 application/views/qso/index.php:586 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:590 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:38 +#: application/views/qso/index.php:563 application/views/qso/index.php:608 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:593 msgid "Notes" msgstr "Note" -#: application/controllers/Notes.php:38 +#: application/controllers/Notes.php:37 msgid "Add Notes" msgstr "" -#: application/controllers/Notes.php:58 +#: application/controllers/Notes.php:64 #: application/views/oqrs/showrequests.php:88 msgid "Note" msgstr "" -#: application/controllers/Notes.php:79 application/views/notes/edit.php:7 +#: application/controllers/Notes.php:92 application/views/notes/edit.php:7 #: application/views/notes/view.php:19 msgid "Edit Note" msgstr "Modifica Nota" @@ -1381,16 +1547,16 @@ msgstr "Modifica Nota" #: application/controllers/Options.php:31 #: application/controllers/Options.php:41 #: application/controllers/Options.php:56 -#: application/controllers/Options.php:136 -#: application/controllers/Options.php:147 -#: application/controllers/Options.php:184 -#: application/controllers/Options.php:195 -#: application/controllers/Options.php:228 -#: application/controllers/Options.php:239 -#: application/controllers/Options.php:309 -#: application/controllers/Options.php:319 -#: application/controllers/Options.php:387 -#: application/controllers/Options.php:397 +#: application/controllers/Options.php:144 +#: application/controllers/Options.php:155 +#: application/controllers/Options.php:192 +#: application/controllers/Options.php:203 +#: application/controllers/Options.php:236 +#: application/controllers/Options.php:247 +#: application/controllers/Options.php:317 +#: application/controllers/Options.php:327 +#: application/controllers/Options.php:395 +#: application/controllers/Options.php:405 msgid "Wavelog Options" msgstr "" @@ -1407,95 +1573,96 @@ msgstr "" #: application/controllers/Options.php:110 #: application/controllers/Options.php:118 #: application/controllers/Options.php:126 +#: application/controllers/Options.php:134 msgid "Options saved" msgstr "" -#: application/controllers/Options.php:165 +#: application/controllers/Options.php:173 msgid "de continent changed to " msgstr "" -#: application/controllers/Options.php:170 +#: application/controllers/Options.php:178 msgid "Maximum age of spots changed to " msgstr "" -#: application/controllers/Options.php:175 +#: application/controllers/Options.php:183 msgid "DXCluster Cache URL changed to " msgstr "" -#: application/controllers/Options.php:185 -#: application/controllers/Options.php:196 +#: application/controllers/Options.php:193 +#: application/controllers/Options.php:204 msgid "Radio Settings" msgstr "" -#: application/controllers/Options.php:217 +#: application/controllers/Options.php:225 msgid "Radio Timeout Warning changed to " msgstr "" -#: application/controllers/Options.php:229 -#: application/controllers/Options.php:240 +#: application/controllers/Options.php:237 +#: application/controllers/Options.php:248 #: application/views/options/sidebar.php:6 msgid "Email" msgstr "" -#: application/controllers/Options.php:297 +#: application/controllers/Options.php:305 msgid "The settings were saved successfully." msgstr "" -#: application/controllers/Options.php:299 +#: application/controllers/Options.php:307 msgid "Something went wrong with saving the settings. Try again." msgstr "" -#: application/controllers/Options.php:310 -#: application/controllers/Options.php:320 +#: application/controllers/Options.php:318 +#: application/controllers/Options.php:328 #: application/views/options/sidebar.php:8 msgid "OQRS Options" msgstr "" -#: application/controllers/Options.php:333 +#: application/controllers/Options.php:341 msgid "OQRS options have been saved." msgstr "" -#: application/controllers/Options.php:373 -#: application/controllers/Options.php:378 +#: application/controllers/Options.php:381 +#: application/controllers/Options.php:386 msgid "Testmail failed. Something went wrong." msgstr "" -#: application/controllers/Options.php:375 +#: application/controllers/Options.php:383 msgid "Testmail sent. Email settings seem to be correct." msgstr "" -#: application/controllers/Options.php:388 -#: application/controllers/Options.php:398 +#: application/controllers/Options.php:396 +#: application/controllers/Options.php:406 msgid "Version Info Settings" msgstr "" -#: application/controllers/Options.php:404 +#: application/controllers/Options.php:412 msgid "Version Info Header changed to" msgstr "" -#: application/controllers/Options.php:408 +#: application/controllers/Options.php:416 msgid "Version Info Mode changed to" msgstr "" -#: application/controllers/Options.php:413 +#: application/controllers/Options.php:421 msgid "Version Info Custom Text saved!" msgstr "" -#: application/controllers/Options.php:424 +#: application/controllers/Options.php:432 msgid "Version Info will be shown to all users again" msgstr "" -#: application/controllers/Options.php:432 +#: application/controllers/Options.php:440 msgid "Version Info will not be shown to any user" msgstr "" -#: application/controllers/Oqrs.php:22 application/controllers/Oqrs.php:61 -#: application/controllers/Oqrs.php:73 +#: application/controllers/Oqrs.php:46 application/controllers/Oqrs.php:85 +#: application/controllers/Oqrs.php:97 msgid "Log Search & OQRS" msgstr "" -#: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:413 +#: application/controllers/Oqrs.php:127 +#: application/views/interface_assets/header.php:419 msgid "OQRS Requests" msgstr "" @@ -1503,8 +1670,46 @@ msgstr "" msgid "QRB Calculator" msgstr "" +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "" + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" + #: application/controllers/Qrz.php:173 -#: application/views/interface_assets/header.php:426 +#: application/views/interface_assets/header.php:432 msgid "QRZ Logbook" msgstr "" @@ -1516,8 +1721,8 @@ msgstr "" msgid "QRZ ADIF Information" msgstr "" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:261 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:277 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1540,13 +1745,13 @@ msgid "Add QSO" msgstr "" #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Hardware Interfaces" msgstr "" #: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 +#: application/views/contesting/index.php:143 #: application/views/qso/index.php:312 msgid "Radio" msgstr "" @@ -1556,10 +1761,10 @@ msgid "Timestamp" msgstr "" #: application/controllers/Radio.php:52 -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 +#: application/views/logbookadvanced/index.php:550 +#: application/views/lotw_views/index.php:43 #: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 +#: application/views/simplefle/index.php:177 #: application/views/stationsetup/exportmapoptions.php:5 #: application/views/statistics/custom.php:31 #: application/views/statistics/custom_result.php:33 @@ -1567,7 +1772,7 @@ msgid "Options" msgstr "" #: application/controllers/Radio.php:90 -#: application/views/contesting/index.php:96 +#: application/views/contesting/index.php:147 #: application/views/qso/index.php:316 msgid "last updated" msgstr "" @@ -1583,26 +1788,24 @@ msgstr "" #: application/controllers/Radio.php:105 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2323 -#: application/views/interface_assets/footer.php:2341 -#: application/views/interface_assets/footer.php:2362 -#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2337 +#: application/views/interface_assets/footer.php:2355 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 #: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:514 -#: application/views/lotw_views/index.php:118 +#: application/views/logbookadvanced/index.php:542 +#: application/views/lotw_views/index.php:114 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 #: application/views/qslcard/index.php:65 #: application/views/satellite/edit.php:40 #: application/views/satellite/index.php:26 #: application/views/search/stored_queries.php:22 -#: application/views/station_profile/index.php:55 -#: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 #: application/views/stationsetup/stationsetup.php:137 #: application/views/stationsetup/stationsetup.php:192 -#: application/views/themes/index.php:107 application/views/user/main.php:54 -#: application/views/view_log/qso.php:613 +#: application/views/themes/index.php:107 application/views/user/index.php:57 +#: application/views/view_log/qso.php:616 msgid "Delete" msgstr "" @@ -1610,11 +1813,15 @@ msgstr "" msgid "No CAT interfaced radios found." msgstr "" -#: application/controllers/Satellite.php:37 +#: application/controllers/Reg1test.php:25 +msgid "Export EDI" +msgstr "" + +#: application/controllers/Satellite.php:39 msgid "Create Satellite" msgstr "" -#: application/controllers/Satellite.php:60 +#: application/controllers/Satellite.php:66 msgid "Edit Satellite" msgstr "" @@ -1627,10 +1834,7 @@ msgstr "" #: application/views/awards/counties/index.php:8 #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:19 -#: application/views/awards/was/index.php:21 -#: application/views/dashboard/index.php:64 -#: application/views/dashboard/index.php:73 -#: application/views/dashboard/index.php:82 +#: application/views/awards/was/index.php:23 #: application/views/simplefle/index.php:16 msgid "here" msgstr "" @@ -1642,9 +1846,10 @@ msgstr "" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:336 -#: application/views/interface_assets/header.php:343 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:340 +#: application/views/interface_assets/header.php:347 +#: application/views/logbookadvanced/index.php:538 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1658,8 +1863,8 @@ msgstr "" #: application/views/search/lotw_unconfirmed.php:37 #: application/views/search/main.php:4 application/views/search/main.php:12 #: application/views/search/main.php:33 -#: application/views/visitor/layout/header.php:99 -#: application/views/visitor/layout/header.php:100 +#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:98 msgid "Search" msgstr "" @@ -1677,15 +1882,23 @@ msgid "" "date" msgstr "" -#: application/controllers/Station.php:35 -#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/controllers/Station.php:36 +#: application/controllers/Stationsetup.php:226 +msgid "Create Station Location" +msgstr "" + +#: application/controllers/Station.php:51 +msgid "Edit Station Location: " +msgstr "" + +#: application/controllers/Station.php:59 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 -#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/edit.php:19 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:427 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 @@ -1693,22 +1906,13 @@ msgstr "" msgid "Station Location" msgstr "Luogo Stazione" -#: application/controllers/Station.php:55 -#: application/controllers/Stationsetup.php:226 -msgid "Create Station Location" -msgstr "" - -#: application/controllers/Station.php:70 -msgid "Edit Station Location: " -msgstr "" - -#: application/controllers/Station.php:92 +#: application/controllers/Station.php:73 msgid "Duplicate Station Location:" msgstr "" #: application/controllers/Stationsetup.php:35 -#: application/views/interface_assets/header.php:377 -#: application/views/interface_assets/header.php:488 +#: application/views/interface_assets/header.php:381 +#: application/views/interface_assets/header.php:494 msgid "Station Setup" msgstr "" @@ -1726,7 +1930,7 @@ msgstr "" #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 #: application/controllers/Stationsetup.php:436 -#: application/views/qso/index.php:608 +#: application/views/qso/index.php:630 msgid "Error" msgstr "" @@ -1758,9 +1962,10 @@ msgstr "" #: application/views/options/appearance.php:83 #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 +#: application/views/options/appearance.php:110 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:259 -#: application/views/station_profile/edit.php:312 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 msgid "Disabled" @@ -1772,7 +1977,7 @@ msgid "Set as Active Logbook" msgstr "" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:486 +#: application/views/interface_assets/header.php:492 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1795,20 +2000,17 @@ msgid "Are you sure you want to delete the public slug?" msgstr "" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "" "Are you sure you want to make the following station the active station: " msgstr "" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "" #: application/controllers/Stationsetup.php:351 -#: application/views/station_profile/index.php:71 #: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "" @@ -1817,54 +2019,45 @@ msgstr "" #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:28 -#: application/views/station_profile/index.php:76 #: application/views/stationsetup/stationsetup.php:161 -#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/user/index.php:90 application/views/user/index.php:92 msgid "QSO" msgstr "" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 -#: application/views/cron/index.php:56 -#: application/views/interface_assets/footer.php:535 -#: application/views/interface_assets/footer.php:544 +#: application/views/cron/index.php:58 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 #: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:541 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 -#: application/views/station_profile/index.php:46 -#: application/views/station_profile/index.php:79 #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 -#: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/views/themes/index.php:104 application/views/user/index.php:52 msgid "Edit" msgstr "" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:99 #: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:54 -#: application/views/station_profile/index.php:101 #: application/views/stationsetup/stationsetup.php:136 #: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "" #: application/controllers/Stationsetup.php:367 -#: application/views/station_profile/index.php:47 -#: application/views/station_profile/index.php:82 #: application/views/stationsetup/stationsetup.php:129 #: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "" #: application/controllers/Stationsetup.php:372 -#: application/views/station_profile/index.php:105 #: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "" @@ -1897,7 +2090,7 @@ msgid "QSL Statistics" msgstr "" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:282 msgid "Themes" msgstr "" @@ -1909,14 +2102,14 @@ msgstr "" msgid "Edit Theme" msgstr "" -#: application/controllers/Timeline.php:17 -#: application/views/interface_assets/header.php:148 +#: application/controllers/Timeline.php:15 +#: application/views/interface_assets/header.php:150 #: application/views/timeline/index.php:2 msgid "Timeline" msgstr "" #: application/controllers/Timeplotter.php:17 -#: application/views/interface_assets/header.php:152 +#: application/views/interface_assets/header.php:154 #: application/views/timeplotter/index.php:9 msgid "Timeplotter" msgstr "" @@ -1957,130 +2150,154 @@ msgstr "" msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:268 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:272 msgid "User Accounts" msgstr "" -#: application/controllers/User.php:52 +#: application/controllers/User.php:76 msgid "Add User" msgstr "" -#: application/controllers/User.php:166 +#: application/controllers/User.php:190 msgid "Users" msgstr "" -#: application/controllers/User.php:240 application/controllers/User.php:673 +#: application/controllers/User.php:264 application/controllers/User.php:697 msgid "Edit User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 -#: application/views/user/main.php:3 application/views/user/main.php:46 +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 msgid "User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 +#: application/controllers/User.php:689 application/controllers/User.php:692 msgid "edited" msgstr "" -#: application/controllers/User.php:722 +#: application/controllers/User.php:746 msgid "Profile" msgstr "" -#: application/controllers/User.php:779 +#: application/controllers/User.php:803 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "" -#: application/controllers/User.php:843 application/controllers/User.php:853 +#: application/controllers/User.php:867 application/controllers/User.php:877 msgid "Login failed. Try again." msgstr "" -#: application/controllers/User.php:860 -#: application/views/interface_assets/header.php:356 -#: application/views/user/login.php:89 -#: application/views/visitor/layout/header.php:88 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:360 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "" -#: application/controllers/User.php:868 -msgid "User logged in" -msgstr "" - -#: application/controllers/User.php:899 +#: application/controllers/User.php:922 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " "Only administrators are currently allowed to log in." msgstr "" -#: application/controllers/User.php:902 +#: application/controllers/User.php:925 msgid "Incorrect username or password!" msgstr "" -#: application/controllers/User.php:919 +#: application/controllers/User.php:942 #, php-format msgid "User %s logged out." msgstr "" -#: application/controllers/User.php:933 +#: application/controllers/User.php:956 msgid "Password Reset is disabled on the Demo!" msgstr "" -#: application/controllers/User.php:946 +#: application/controllers/User.php:969 msgid "Forgot Password" msgstr "" -#: application/controllers/User.php:996 application/views/user/main.php:8 +#: application/controllers/User.php:1019 application/views/user/index.php:8 msgid "Email settings are incorrect." msgstr "" -#: application/controllers/User.php:1000 application/controllers/User.php:1005 +#: application/controllers/User.php:1023 application/controllers/User.php:1028 msgid "Password Reset Processed." msgstr "" -#: application/controllers/User.php:1107 +#: application/controllers/User.php:1129 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "" +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "" + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "" + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "" + #: application/controllers/Visitor.php:50 -#: application/controllers/Visitor.php:79 -#: application/controllers/Visitor.php:142 -#: application/controllers/Visitor.php:169 -#: application/controllers/Visitor.php:199 -#: application/controllers/Visitor.php:478 +#: application/controllers/Visitor.php:81 +#: application/controllers/Visitor.php:148 +#: application/controllers/Visitor.php:175 +#: application/controllers/Visitor.php:210 +#: application/controllers/Visitor.php:472 #: application/controllers/Widgets.php:40 msgid "Unknown Public Page." msgstr "" -#: application/controllers/Visitor.php:74 -#: application/controllers/Visitor.php:165 -#: application/controllers/Visitor.php:195 -#: application/controllers/Visitor.php:474 +#: application/controllers/Visitor.php:76 +#: application/controllers/Visitor.php:171 +#: application/controllers/Visitor.php:206 +#: application/controllers/Visitor.php:468 #: application/controllers/Widgets.php:36 msgid "Empty Logbook" msgstr "" -#: application/controllers/Visitor.php:205 +#: application/controllers/Visitor.php:216 msgid "Satellite Gridsquare Map" msgstr "" -#: application/controllers/Visitor.php:411 +#: application/controllers/Visitor.php:405 #: application/views/stationsetup/stationsetup.php:35 msgid "Public Search" msgstr "" -#: application/controllers/Visitor.php:444 +#: application/controllers/Visitor.php:438 msgid "Export Map" msgstr "" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:427 +#: application/views/interface_assets/header.php:433 msgid "QO-100 Dx Club Upload" msgstr "" @@ -2092,6 +2309,84 @@ msgstr "" msgid "No stations found that are using Wavelog OQRS." msgstr "" +#: application/libraries/Subdivisions.php:31 +msgctxt "Division Name (States in various countries)." +msgid "Province" +msgstr "" + +#: application/libraries/Subdivisions.php:39 +msgctxt "Division Name (States in various countries)." +msgid "Oblast" +msgstr "" + +#: application/libraries/Subdivisions.php:41 +#: application/libraries/Subdivisions.php:47 +msgctxt "Division Name (States in various countries)." +msgid "Region" +msgstr "" + +#: application/libraries/Subdivisions.php:45 +msgctxt "Division Name (States in various countries)." +msgid "Department" +msgstr "" + +#: application/libraries/Subdivisions.php:49 +msgctxt "Division Name (States in various countries)." +msgid "Municipality" +msgstr "" + +#: application/libraries/Subdivisions.php:51 +msgctxt "Division Name (States in various countries)." +msgid "Federal State" +msgstr "" + +#: application/libraries/Subdivisions.php:56 +#: application/libraries/Subdivisions.php:94 +msgctxt "Division Name (States in various countries)." +msgid "County" +msgstr "" + +#: application/libraries/Subdivisions.php:60 +#: application/libraries/Subdivisions.php:85 +msgctxt "Division Name (States in various countries)." +msgid "District" +msgstr "" + +#: application/libraries/Subdivisions.php:62 +msgctxt "Division Name (States in various countries)." +msgid "Canton" +msgstr "" + +#: application/libraries/Subdivisions.php:64 +msgctxt "Division Name (States in various countries)." +msgid "US State" +msgstr "" + +#: application/libraries/Subdivisions.php:67 +msgctxt "Division Name (States in various countries)." +msgid "Prefecture" +msgstr "" + +#: application/libraries/Subdivisions.php:69 +msgctxt "Division Name (States in various countries)." +msgid "State" +msgstr "" + +#: application/libraries/Subdivisions.php:78 +msgctxt "Division Name (States in various countries)." +msgid "US County" +msgstr "" + +#: application/libraries/Subdivisions.php:90 +msgctxt "Division Name (States in various countries)." +msgid "DME" +msgstr "" + +#: application/libraries/Subdivisions.php:92 +msgctxt "Division Name (States in various countries)." +msgid "City / Ku / Gun" +msgstr "" + #: application/models/Eqslmethods_model.php:281 msgid "Your eQSL username and/or password is incorrect." msgstr "" @@ -2128,31 +2423,31 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4255 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4261 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4266 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4269 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4272 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4275 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4278 msgid "unknown" msgstr "" @@ -2181,7 +2476,7 @@ msgid "Accumulated number of WAJA worked" msgstr "" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:222 +#: application/views/dashboard/index.php:238 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2194,7 +2489,7 @@ msgid "Yearly" msgstr "" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:243 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Mese" @@ -2210,29 +2505,33 @@ msgstr "" #: application/views/accumulate/index.php:24 #: application/views/accumulate/index.php:34 +#: application/views/accumulate/index.php:83 #: application/views/activated_gridmap/index.php:10 #: application/views/activated_gridmap/index.php:22 #: application/views/activated_gridmap/index.php:32 #: application/views/activated_gridmap/index.php:41 -#: application/views/activators/index.php:10 -#: application/views/awards/cq/index.php:75 -#: application/views/awards/cq/index.php:89 +#: application/views/activators/index.php:13 +#: application/views/awards/cq/index.php:77 +#: application/views/awards/cq/index.php:91 #: application/views/awards/dok/index.php:94 #: application/views/awards/dxcc/index.php:134 #: application/views/awards/dxcc/index.php:150 #: application/views/awards/dxcc/index.php:165 -#: application/views/awards/helvetia/index.php:88 +#: application/views/awards/helvetia/index.php:90 #: application/views/awards/iota/index.php:108 -#: application/views/awards/itu/index.php:75 -#: application/views/awards/itu/index.php:89 +#: application/views/awards/itu/index.php:77 +#: application/views/awards/itu/index.php:91 #: application/views/awards/jcc/index.php:91 -#: application/views/awards/rac/index.php:80 +#: application/views/awards/rac/index.php:82 #: application/views/awards/wab/index.php:24 #: application/views/awards/wab/index.php:36 #: application/views/awards/wab/index.php:46 #: application/views/awards/wab/index.php:55 -#: application/views/awards/waja/index.php:92 -#: application/views/awards/was/index.php:88 +#: application/views/awards/wac/index.php:81 +#: application/views/awards/wac/index.php:97 +#: application/views/awards/wac/index.php:113 +#: application/views/awards/waja/index.php:94 +#: application/views/awards/was/index.php:90 #: application/views/bandmap/list.php:71 application/views/bandmap/list.php:78 #: application/views/bandmap/list.php:90 application/views/bands/index.php:117 #: application/views/cabrillo/index.php:65 @@ -2243,6 +2542,7 @@ msgstr "" #: application/views/csv/index.php:94 application/views/distances/index.php:21 #: application/views/distances/index.php:36 #: application/views/distances/index.php:46 +#: application/views/distances/index.php:56 #: application/views/dxatlas/index.php:21 #: application/views/dxatlas/index.php:33 #: application/views/dxatlas/index.php:44 @@ -2254,28 +2554,29 @@ msgstr "" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1435 -#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1448 +#: application/views/interface_assets/footer.php:1587 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:172 #: application/views/logbookadvanced/index.php:183 #: application/views/logbookadvanced/index.php:194 -#: application/views/logbookadvanced/index.php:203 -#: application/views/logbookadvanced/index.php:212 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:205 +#: application/views/logbookadvanced/index.php:214 +#: application/views/logbookadvanced/index.php:223 #: application/views/logbookadvanced/index.php:248 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:321 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:374 -#: application/views/logbookadvanced/index.php:385 -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:259 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:423 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2286,11 +2587,12 @@ msgstr "" #: application/views/stationsetup/exportmapoptions.php:33 #: application/views/timeline/index.php:10 #: application/views/timeline/index.php:22 +#: application/views/timeline/index.php:77 #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 #: application/views/user/edit.php:633 -#: application/views/visitor/layout/footer.php:169 +#: application/views/visitor/layout/footer.php:171 msgid "All" msgstr "" @@ -2328,29 +2630,254 @@ msgstr "" msgid "Period" msgstr "" -#: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: application/views/accumulate/index.php:80 +#: application/views/distances/index.php:53 +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/timeline/index.php:74 +msgid "Propagation" +msgstr "" + +#: application/views/accumulate/index.php:84 +#: application/views/distances/index.php:57 +#: application/views/timeline/index.php:78 +msgid "All but SAT" +msgstr "" + +#: application/views/accumulate/index.php:85 +#: application/views/distances/index.php:58 +#: application/views/gridmap/index.php:42 +#: application/views/logbookadvanced/edit.php:142 +#: application/views/logbookadvanced/index.php:307 +#: application/views/timeline/index.php:79 +msgid "None/Empty" +msgstr "" + +#: application/views/accumulate/index.php:86 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/logbookadvanced/index.php:225 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:414 +#: application/views/timeline/index.php:80 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/accumulate/index.php:87 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/logbookadvanced/index.php:226 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:415 +#: application/views/timeline/index.php:81 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/accumulate/index.php:88 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/logbookadvanced/index.php:227 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:416 +#: application/views/timeline/index.php:82 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/accumulate/index.php:89 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/logbookadvanced/index.php:228 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:417 +#: application/views/timeline/index.php:83 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/accumulate/index.php:90 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/logbookadvanced/index.php:229 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:418 +#: application/views/timeline/index.php:84 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/accumulate/index.php:91 +#: 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/logbookadvanced/index.php:230 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:419 +#: application/views/timeline/index.php:85 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/accumulate/index.php:92 +#: 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/logbookadvanced/index.php:231 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:420 +#: application/views/timeline/index.php:86 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/accumulate/index.php:93 +#: 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/logbookadvanced/index.php:232 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:421 +#: application/views/timeline/index.php:87 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/accumulate/index.php:94 +#: 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/logbookadvanced/index.php:233 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:422 +#: application/views/timeline/index.php:88 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/accumulate/index.php:95 +#: 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/logbookadvanced/index.php:234 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:423 +#: application/views/timeline/index.php:89 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/accumulate/index.php:96 +#: 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/logbookadvanced/index.php:235 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:424 +#: application/views/timeline/index.php:90 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/accumulate/index.php:97 +#: 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/logbookadvanced/index.php:236 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:425 +#: application/views/timeline/index.php:91 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/accumulate/index.php:98 +#: 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/logbookadvanced/index.php:237 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:426 +#: application/views/timeline/index.php:92 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/accumulate/index.php:99 +#: 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/logbookadvanced/index.php:238 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:427 +#: application/views/timeline/index.php:93 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/accumulate/index.php:100 +#: 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/logbookadvanced/index.php:239 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:428 +#: application/views/timeline/index.php:94 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/accumulate/index.php:101 +#: 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/logbookadvanced/index.php:240 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:429 +#: application/views/timeline/index.php:95 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "" + +#: application/views/accumulate/index.php:102 +#: 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/logbookadvanced/index.php:241 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:430 +#: application/views/timeline/index.php:96 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/accumulate/index.php:103 +#: 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/logbookadvanced/index.php:242 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:431 +#: application/views/timeline/index.php:97 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/accumulate/index.php:112 +#: application/views/activators/index.php:53 +#: application/views/awards/cq/index.php:113 #: application/views/awards/dok/index.php:127 #: application/views/awards/dxcc/index.php:187 -#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/helvetia/index.php:112 #: application/views/awards/iota/index.php:130 -#: application/views/awards/itu/index.php:111 +#: application/views/awards/itu/index.php:113 #: application/views/awards/jcc/index.php:113 -#: application/views/awards/rac/index.php:102 -#: application/views/awards/waja/index.php:114 -#: application/views/awards/was/index.php:110 -#: application/views/distances/index.php:53 +#: application/views/awards/rac/index.php:104 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:79 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 #: application/views/stationsetup/exportmapoptions.php:6 -#: application/views/timeline/index.php:72 -#: application/views/timeline/index.php:137 -#: application/views/timeline/index.php:164 -#: application/views/timeline/index.php:189 -#: application/views/timeline/index.php:218 -#: application/views/timeline/index.php:243 -#: application/views/timeline/index.php:270 +#: application/views/timeline/index.php:105 +#: application/views/timeline/index.php:170 +#: application/views/timeline/index.php:197 +#: application/views/timeline/index.php:222 +#: application/views/timeline/index.php:251 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:303 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "" @@ -2358,12 +2885,15 @@ msgstr "" #: application/views/activated_gridmap/index.php:20 #: application/views/awards/dxcc/index.php:131 #: application/views/awards/wab/index.php:34 +#: application/views/awards/wac/index.php:78 #: 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/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/edit.php:17 +#: application/views/logbookadvanced/index.php:203 #: application/views/satellite/flightpath.php:34 +#: application/views/satellite/passtable.php:5 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2372,9 +2902,10 @@ msgstr "" #: application/views/activated_gridmap/index.php:30 #: application/views/awards/dxcc/index.php:147 #: application/views/awards/wab/index.php:44 +#: application/views/awards/wac/index.php:94 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:212 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2389,16 +2920,17 @@ msgid "Confirmation" msgstr "" #: application/views/activated_gridmap/index.php:82 -#: application/views/awards/cq/index.php:66 +#: application/views/awards/cq/index.php:68 #: application/views/awards/dok/index.php:67 #: application/views/awards/dxcc/index.php:73 -#: application/views/awards/helvetia/index.php:65 -#: application/views/awards/itu/index.php:66 +#: application/views/awards/helvetia/index.php:67 +#: application/views/awards/itu/index.php:68 #: application/views/awards/jcc/index.php:64 -#: application/views/awards/rac/index.php:57 +#: application/views/awards/rac/index.php:59 #: application/views/awards/wab/index.php:96 -#: application/views/awards/waja/index.php:65 -#: application/views/awards/was/index.php:65 +#: application/views/awards/wac/index.php:56 +#: application/views/awards/waja/index.php:67 +#: application/views/awards/was/index.php:67 #: application/views/gridmap/index.php:125 application/views/user/edit.php:675 msgid "QRZ.com" msgstr "" @@ -2434,59 +2966,62 @@ msgstr "" #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:37 #: application/views/gridmap/index.php:156 -#: application/views/logbookadvanced/index.php:12 +#: application/views/logbookadvanced/index.php:13 msgid "Bearing" msgstr "" -#: application/views/activators/index.php:23 +#: application/views/activators/index.php:26 msgctxt "Orbiter LEO or GEO" msgid "Both" msgstr "" -#: application/views/activators/index.php:30 +#: application/views/activators/index.php:33 msgid "Minimum Count" msgstr "" -#: application/views/activators/index.php:77 +#: application/views/activators/index.php:76 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:46 -#: application/views/awards/cq/index.php:196 +#: application/views/awards/cq/index.php:198 #: application/views/awards/dok/index.php:196 #: application/views/awards/dxcc/index.php:280 -#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/helvetia/index.php:200 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:196 +#: application/views/awards/itu/index.php:198 #: application/views/awards/jcc/index.php:236 #: application/views/awards/pota/index.php:67 -#: application/views/awards/rac/index.php:190 +#: application/views/awards/rac/index.php:192 #: application/views/awards/sig/index.php:45 #: application/views/awards/sota/index.php:53 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:39 -#: application/views/awards/waja/index.php:200 -#: application/views/awards/was/index.php:198 +#: application/views/awards/wac/index.php:199 +#: application/views/awards/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 +#: application/views/distancerecords/index.php:50 #: application/views/public_search/empty.php:3 -#: application/views/qrz/export.php:64 application/views/timeline/index.php:102 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:135 msgid "Nothing found!" msgstr "" -#: application/views/activators/index.php:99 -#: application/views/adif/import.php:66 application/views/adif/import.php:172 -#: application/views/adif/import.php:217 +#: application/views/activators/index.php:98 +#: application/views/adif/import.php:66 application/views/adif/import.php:182 +#: application/views/adif/import.php:227 #: application/views/awards/pota/index.php:34 #: application/views/awards/sig/qso_list.php:11 #: application/views/awards/sota/index.php:25 #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:104 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:152 +#: application/views/contesting/index.php:156 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:168 +#: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 -#: application/views/lotw_views/index.php:39 +#: application/views/lotw_views/index.php:35 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 #: application/views/qslcard/index.php:28 @@ -2495,35 +3030,36 @@ msgstr "" #: application/views/qslprint/qslprint.php:21 #: application/views/qslprint/qsolist.php:6 #: application/views/qso/edit_ajax.php:62 application/views/qso/index.php:124 +#: application/views/reg1test/index.php:33 #: application/views/search/cqzones.php:32 #: application/views/search/cqzones_result.php:9 #: application/views/search/lotw_unconfirmed.php:33 #: application/views/search/lotw_unconfirmed_result.php:6 #: application/views/search/result.php:11 -#: application/views/simplefle/index.php:142 -#: application/views/station_profile/edit.php:36 +#: application/views/simplefle/index.php:148 +#: application/views/station_profile/edit.php:63 #: application/views/stationsetup/linkedlocations.php:17 -#: application/views/user/edit.php:123 application/views/user/main.php:4 -#: application/views/user/main.php:47 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:507 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 +#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:510 msgid "Callsign" msgstr "" -#: application/views/activators/index.php:100 +#: application/views/activators/index.php:99 msgid "Count" msgstr "" -#: application/views/activators/index.php:102 -#: application/views/timeline/index.php:121 -#: application/views/timeline/index.php:153 -#: application/views/timeline/index.php:178 -#: application/views/timeline/index.php:205 -#: application/views/timeline/index.php:232 -#: application/views/timeline/index.php:258 +#: application/views/activators/index.php:101 +#: application/views/timeline/index.php:154 +#: application/views/timeline/index.php:186 +#: application/views/timeline/index.php:211 +#: application/views/timeline/index.php:238 +#: application/views/timeline/index.php:265 +#: application/views/timeline/index.php:291 msgid "Show QSO's" msgstr "" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "" @@ -2564,10 +3100,12 @@ msgstr "" #: application/views/awards/wwff/index.php:32 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:25 -#: application/views/contesting/index.php:42 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36 +#: application/views/contesting/index.php:93 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:163 +#: application/views/debug/index.php:545 +#: application/views/distancerecords/index.php:16 +#: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2580,22 +3118,22 @@ msgstr "" #: application/views/qslcard/searchresult.php:4 #: application/views/qslprint/qslprint.php:22 #: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:64 -#: application/views/qso/index.php:100 +#: application/views/qso/index.php:100 application/views/satellite/pass.php:473 #: application/views/search/cqzones_result.php:7 #: application/views/search/result_search.php:4 #: application/views/search/search_result_ajax.php:89 -#: application/views/simplefle/index.php:140 +#: application/views/simplefle/index.php:146 #: application/views/statistics/custom.php:38 #: application/views/statistics/custom_result.php:40 #: application/views/statistics/custom_result.php:85 -#: application/views/timeline/index.php:116 -#: application/views/timeline/index.php:151 -#: application/views/timeline/index.php:176 -#: application/views/timeline/index.php:201 -#: application/views/timeline/index.php:230 -#: application/views/timeline/index.php:255 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:184 +#: application/views/timeline/index.php:209 +#: application/views/timeline/index.php:234 +#: application/views/timeline/index.php:263 +#: application/views/timeline/index.php:288 #: application/views/view_log/partial/log.php:4 -#: application/views/view_log/partial/log_ajax.php:57 +#: application/views/view_log/partial/log_ajax.php:59 #: application/views/visitor/index.php:147 #: application/views/widgets/qsos.php:24 msgid "Date" @@ -2606,10 +3144,12 @@ msgstr "Data" #: application/views/awards/wwff/index.php:33 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:26 -#: application/views/contesting/index.php:47 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37 +#: application/views/contesting/index.php:98 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:166 +#: application/views/debug/index.php:546 +#: application/views/distancerecords/index.php:17 +#: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2620,12 +3160,12 @@ msgstr "Data" #: application/views/search/cqzones_result.php:8 #: application/views/search/result_search.php:5 #: application/views/search/search_result_ajax.php:91 -#: application/views/simplefle/index.php:141 +#: application/views/simplefle/index.php:147 #: application/views/statistics/custom_result.php:86 -#: application/views/timeline/index.php:256 +#: application/views/timeline/index.php:289 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 -#: application/views/view_log/partial/log_ajax.php:59 +#: application/views/view_log/partial/log_ajax.php:61 #: application/views/visitor/index.php:150 #: application/views/widgets/qsos.php:26 msgid "Time" @@ -2634,7 +3174,7 @@ msgstr "Orario" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 -#: application/views/contesting/index.php:201 +#: application/views/contesting/index.php:248 #: application/views/debug/index.php:547 application/views/debug/index.php:582 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -2646,7 +3186,7 @@ msgstr "Orario" #: application/views/search/search_result_ajax.php:93 #: application/views/statistics/custom_result.php:87 #: application/views/view_log/partial/log.php:8 -#: application/views/view_log/partial/log_ajax.php:61 +#: application/views/view_log/partial/log_ajax.php:63 #: application/views/visitor/index.php:152 #: application/views/widgets/qsos.php:28 msgid "Call" @@ -2664,14 +3204,14 @@ msgstr "" msgid "DCL QSL Status" msgstr "" -#: application/views/adif/import.php:36 application/views/adif/import.php:242 +#: application/views/adif/import.php:36 application/views/adif/import.php:252 msgid "DARC DCL" msgstr "" #: application/views/adif/import.php:55 -#: application/views/dashboard/index.php:97 -#: application/views/dashboard/index.php:118 -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:112 +#: application/views/dashboard/index.php:133 +#: application/views/dashboard/index.php:139 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2681,29 +3221,29 @@ msgstr "Importante" msgid "Log Files must have the file type *.adi" msgstr "" -#: application/views/adif/import.php:56 application/views/view_log/qso.php:622 +#: application/views/adif/import.php:56 application/views/view_log/qso.php:625 msgid "Maximum file upload size is " msgstr "" -#: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:175 +#: application/views/adif/import.php:56 application/views/adif/import.php:230 +#: application/views/adif/import.php:268 application/views/debug/index.php:175 #: application/views/debug/index.php:192 application/views/debug/index.php:537 #: application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:34 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 -#: application/views/station_profile/index.php:31 #: application/views/stationsetup/stationsetup.php:111 -#: application/views/view_log/qso.php:622 +#: application/views/view_log/qso.php:625 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" msgstr "" #: application/views/adif/import.php:60 application/views/adif/import.php:62 -#: application/views/adif/import.php:168 application/views/adif/import.php:215 +#: application/views/adif/import.php:178 application/views/adif/import.php:225 #: application/views/eqsl/import.php:36 application/views/hrdlog/export.php:69 -#: application/views/qrz/export.php:89 application/views/webadif/export.php:89 +#: application/views/qrz/export.php:89 application/views/reg1test/index.php:30 +#: application/views/webadif/export.php:89 msgid "Select Station Location" msgstr "" @@ -2730,69 +3270,75 @@ msgstr "" #: application/views/adif/import.php:95 application/views/adif/import.php:105 #: application/views/adif/import.php:115 application/views/adif/import.php:125 +#: application/views/adif/import.php:135 msgid "Select if ADIF being imported does not contain this information." msgstr "" #: application/views/adif/import.php:103 -msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" +msgid "Mark imported QSOs as uploaded to eQSL Logbook" msgstr "" #: application/views/adif/import.php:113 -msgid "Mark imported QSOs as uploaded to QRZ Logbook" +msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" msgstr "" #: application/views/adif/import.php:123 -msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgid "Mark imported QSOs as uploaded to QRZ Logbook" msgstr "" #: application/views/adif/import.php:133 +msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgstr "" + +#: application/views/adif/import.php:143 msgid "Use DXCC information from ADIF" msgstr "" -#: application/views/adif/import.php:135 +#: application/views/adif/import.php:145 msgid "" "If not selected, Wavelog will attempt to determine DXCC information " "automatically." msgstr "" -#: application/views/adif/import.php:143 +#: application/views/adif/import.php:153 msgid "Always use login-callsign as operator-name on import" msgstr "" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:32 -#: application/views/interface_assets/footer.php:495 -#: application/views/interface_assets/footer.php:2119 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2133 msgid "DANGER" msgstr "" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 msgid "Ignore Stationcallsign on import" msgstr "" -#: application/views/adif/import.php:154 +#: application/views/adif/import.php:164 +#, php-format msgid "" -"If selected, Wavelog will try to import all QSO's of the ADIF, " +"If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " "regardless if they match to the chosen station-location." msgstr "" -#: application/views/adif/import.php:158 application/views/adif/import.php:273 +#: application/views/adif/import.php:168 application/views/adif/import.php:283 #: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 #: application/views/webadif/export.php:55 msgid "Upload" msgstr "" -#: application/views/adif/import.php:165 +#: application/views/adif/import.php:175 msgid "Take your logbook file anywhere!" msgstr "" -#: application/views/adif/import.php:166 +#: application/views/adif/import.php:176 msgid "" "Exporting ADIFs allows you to import contacts into third party applications " "like LoTW, Awards or just for keeping a backup." msgstr "" -#: application/views/adif/import.php:176 application/views/adif/import.php:222 +#: application/views/adif/import.php:186 application/views/adif/import.php:232 #: application/views/cfd/index.php:15 application/views/csv/index.php:118 #: application/views/dxatlas/index.php:118 #: application/views/hrdlog/export.php:77 application/views/kml/index.php:103 @@ -2801,7 +3347,7 @@ msgstr "" msgid "From date" msgstr "Dalla data" -#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/adif/import.php:189 application/views/adif/import.php:235 #: application/views/cfd/index.php:20 application/views/csv/index.php:123 #: application/views/dxatlas/index.php:123 #: application/views/hrdlog/export.php:82 application/views/kml/index.php:108 @@ -2810,40 +3356,40 @@ msgstr "Dalla data" msgid "To date" msgstr "" -#: application/views/adif/import.php:187 +#: application/views/adif/import.php:197 msgid "Mark exported QSOs as uploaded to LoTW" msgstr "" -#: application/views/adif/import.php:195 +#: application/views/adif/import.php:205 msgid "Export QSOs not uploaded to LoTW" msgstr "" -#: application/views/adif/import.php:200 +#: application/views/adif/import.php:210 msgid "Export QSO's" msgstr "" -#: application/views/adif/import.php:205 +#: application/views/adif/import.php:215 msgid "Export Satellite-Only QSOs" msgstr "" -#: application/views/adif/import.php:206 +#: application/views/adif/import.php:216 msgid "Export All Satellite QSOs" msgstr "" -#: application/views/adif/import.php:208 +#: application/views/adif/import.php:218 msgid "Export All Satellite QSOs Confirmed on LoTW" msgstr "" -#: application/views/adif/import.php:220 application/views/hrdlog/export.php:74 +#: application/views/adif/import.php:230 application/views/hrdlog/export.php:74 #: application/views/qrz/export.php:94 application/views/webadif/export.php:94 msgid "If a date range is not selected then all QSOs will be marked!" msgstr "" -#: application/views/adif/import.php:228 +#: application/views/adif/import.php:238 msgid "Mark QSOs as exported to LoTW" msgstr "" -#: application/views/adif/import.php:242 +#: application/views/adif/import.php:252 #, php-format msgid "" "Go to %s and export your logbook with confirmed DOKs. To speed up the " @@ -2852,36 +3398,47 @@ msgid "" "with DOK info." msgstr "" -#: application/views/adif/import.php:249 +#: application/views/adif/import.php:259 msgid "Only import DOK data from QSOs confirmed on DCL." msgstr "" -#: application/views/adif/import.php:251 +#: application/views/adif/import.php:261 msgid "" "Uncheck if you also want to update DOK with data from unconfirmed QSOs in " "DCL." msgstr "" -#: application/views/adif/import.php:258 +#: application/views/adif/import.php:268 msgid "Overwrites exisiting DOK in log by DCL (if different)." msgstr "" -#: application/views/adif/import.php:260 +#: application/views/adif/import.php:270 msgid "" "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " "log." msgstr "" -#: application/views/adif/import.php:267 +#: application/views/adif/import.php:277 msgid "Ignore QSOs that cannot be matched." msgstr "Ignore QSOs that cannot be matched" -#: application/views/adif/import.php:269 +#: application/views/adif/import.php:279 msgid "" "If unchecked, information about QSOs which could not be found in Wavelog " "will be displayed." msgstr "" +#: application/views/adif/import_failed.php:15 +msgid "The ADIF file could not be parsed correctly." +msgstr "" + +#: application/views/adif/import_failed.php:16 +msgid "" +"At least one of the ADIF fields could not be parsed and/or inserted into the " +"database. Please check the imported ADIF file. You can use an online ADIF " +"file checker. For example:" +msgstr "" + #: application/views/adif/import_success.php:15 msgid "Yay, its imported!" msgstr "" @@ -2934,24 +3491,22 @@ msgstr "" #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 -#: application/views/interface_assets/footer.php:43 -#: application/views/interface_assets/footer.php:530 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 -#: application/views/options/appearance.php:107 +#: application/views/options/appearance.php:116 #: application/views/options/dxcluster.php:67 #: application/views/options/email.php:112 #: application/views/options/oqrs.php:63 #: application/views/options/radios.php:45 #: application/views/options/version_dialog.php:78 -#: application/views/qso/components/winkeysettings.php:90 -#: application/views/qso/components/winkeysettings_results.php:90 #: application/views/satellite/create.php:70 #: application/views/simplefle/index.php:22 msgid "Save" msgstr "" #: application/views/api/help.php:14 -#: application/views/interface_assets/header.php:431 +#: application/views/interface_assets/header.php:437 msgid "API Keys" msgstr "" @@ -2975,7 +3530,7 @@ msgid "API URL" msgstr "" #: application/views/api/help.php:19 application/views/api/help.php:38 -#: application/views/cron/index.php:21 application/views/debug/index.php:36 +#: application/views/cron/index.php:22 application/views/debug/index.php:36 msgid "Copy to clipboard" msgstr "Copia" @@ -2984,14 +3539,15 @@ msgid "The API URL for this Wavelog instance is" msgstr "" #: application/views/api/help.php:20 application/views/dxcalendar/index.php:15 -#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:477 -#: application/views/qso/index.php:538 application/views/qso/index.php:583 +#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:504 +#: application/views/qso/index.php:560 application/views/qso/index.php:605 #: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 #: application/views/sattimers/index.php:73 #: application/views/sattimers/index.php:75 +#: application/views/sattimers/index.php:77 #: application/views/search/filter.php:69 msgid "Info" msgstr "" @@ -3007,7 +3563,7 @@ msgid "API Key" msgstr "" #: application/views/api/help.php:28 application/views/cron/edit.php:30 -#: application/views/cron/index.php:51 +#: application/views/cron/index.php:53 #: application/views/search/stored_queries.php:8 msgid "Description" msgstr "" @@ -3020,19 +3576,18 @@ msgstr "" msgid "Permissions" msgstr "" -#: application/views/api/help.php:31 application/views/cron/index.php:52 -#: application/views/lotw_views/index.php:45 +#: application/views/api/help.php:31 application/views/cron/index.php:54 +#: application/views/lotw_views/index.php:41 #: application/views/mode/index.php:31 #: application/views/oqrs/showrequests.php:91 #: application/views/sattimers/index.php:39 #: application/views/stationsetup/stationsetup.php:31 -#: application/views/timeline/index.php:119 -#: application/views/update/index.php:30 +#: application/views/timeline/index.php:152 msgid "Status" msgstr "Stato" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:519 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3068,6 +3623,7 @@ msgstr "" #: application/views/awards/counties/details.php:4 #: application/views/awards/details.php:1 #: application/views/awards/vucc/band.php:4 +#: application/views/distancerecords/details.php:1 #: application/views/timeline/details.php:2 msgid "Filtering on" msgstr "" @@ -3078,8 +3634,8 @@ msgstr "" #: application/views/awards/counties/index.php:6 #: application/views/awards/counties/index.php:13 -#: application/views/awards/cq/index.php:17 -#: application/views/awards/cq/index.php:24 +#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:26 #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:13 #: application/views/awards/dxcc/index.php:13 @@ -3088,12 +3644,12 @@ msgstr "" #: application/views/awards/ffma/index.php:14 #: application/views/awards/gridmaster/index.php:6 #: application/views/awards/gridmaster/index.php:13 -#: application/views/awards/helvetia/index.php:17 -#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:26 #: application/views/awards/iota/index.php:15 #: application/views/awards/iota/index.php:22 -#: application/views/awards/itu/index.php:17 -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:26 #: application/views/awards/jcc/index.php:15 #: application/views/awards/jcc/index.php:22 #: application/views/awards/pota/index.php:6 @@ -3106,10 +3662,12 @@ msgstr "" #: application/views/awards/vucc/index.php:13 #: application/views/awards/wab/index.php:11 #: application/views/awards/wab/index.php:18 -#: application/views/awards/waja/index.php:16 -#: application/views/awards/waja/index.php:23 -#: application/views/awards/was/index.php:17 -#: application/views/awards/was/index.php:24 +#: application/views/awards/wac/index.php:7 +#: application/views/awards/wac/index.php:14 +#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:25 +#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:26 #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:13 msgid "Award Info" @@ -3147,17 +3705,18 @@ msgid "Counties Confirmed" msgstr "" #: application/views/awards/counties/index.php:39 -#: application/views/awards/cq/index.php:174 +#: application/views/awards/cq/index.php:176 #: application/views/awards/dok/index.php:174 #: application/views/awards/dxcc/index.php:257 -#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/helvetia/index.php:179 #: application/views/awards/iota/index.php:201 -#: application/views/awards/itu/index.php:174 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:185 -#: application/views/awards/rac/index.php:169 -#: application/views/awards/waja/index.php:177 -#: application/views/awards/was/index.php:177 -#: application/views/dashboard/index.php:217 +#: application/views/awards/rac/index.php:171 +#: application/views/awards/wac/index.php:177 +#: application/views/awards/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:233 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3173,213 +3732,230 @@ msgstr "" msgid "Total" msgstr "" -#: application/views/awards/cq/index.php:18 +#: application/views/awards/cq/index.php:3 +#: application/views/awards/cq/index.php:150 application/views/csv/index.php:80 +#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/logbookadvanced/edit.php:6 +#: application/views/logbookadvanced/index.php:246 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:284 +#: application/views/qso/index.php:390 +#: application/views/search/cqzones_result.php:13 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:264 +#: application/views/timeplotter/index.php:44 +msgid "CQ Zone" +msgstr "Zona CQ" + +#: application/views/awards/cq/index.php:4 +#: application/views/awards/itu/index.php:4 +msgid "Hover over a zone" +msgstr "" + +#: application/views/awards/cq/index.php:20 msgid "CQ Magazine WAZ Award" msgstr "" -#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:21 msgid "" "The CQ Magazine is located in the US and one of the most popular amateur " "radio magazines in the world. The magazine first appeared in January 1945 " "and focuses on awards and the practical aspects of amateur radio." msgstr "" -#: application/views/awards/cq/index.php:20 +#: application/views/awards/cq/index.php:22 msgid "" "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to " "all 40 CQ Zones along with the corresponding confirmation." msgstr "" -#: application/views/awards/cq/index.php:21 +#: application/views/awards/cq/index.php:23 #, php-format msgctxt "uses 'CQ Magazine'" msgid "You can find all the information and rules on the Website of the %s." msgstr "" -#: application/views/awards/cq/index.php:23 +#: application/views/awards/cq/index.php:25 msgid "Awards - CQ Magazine WAZ" msgstr "" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 #: application/views/awards/wab/list.php:6 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:73 -#: application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:362 -#: application/views/interface_assets/footer.php:39 +#: application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:378 +#: application/views/interface_assets/footer.php:40 #: application/views/visitor/index.php:266 msgid "Confirmed" msgstr "Confermato" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:256 +#: application/views/dashboard/index.php:372 #: application/views/visitor/index.php:262 msgid "Worked" msgstr "Lavorato" -#: application/views/awards/cq/index.php:36 +#: application/views/awards/cq/index.php:38 #: application/views/awards/dok/index.php:41 #: application/views/awards/dxcc/index.php:43 -#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:43 -#: application/views/awards/itu/index.php:36 +#: application/views/awards/itu/index.php:38 #: application/views/awards/jcc/index.php:34 -#: application/views/awards/rac/index.php:27 -#: application/views/awards/waja/index.php:35 -#: application/views/awards/was/index.php:35 +#: application/views/awards/rac/index.php:29 +#: application/views/awards/wac/index.php:26 +#: application/views/awards/waja/index.php:37 +#: application/views/awards/was/index.php:37 msgid "Show worked" msgstr "" -#: application/views/awards/cq/index.php:40 +#: application/views/awards/cq/index.php:42 #: application/views/awards/dok/index.php:45 #: application/views/awards/dxcc/index.php:47 -#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:47 -#: application/views/awards/itu/index.php:40 +#: application/views/awards/itu/index.php:42 #: application/views/awards/jcc/index.php:38 -#: application/views/awards/rac/index.php:31 -#: application/views/awards/waja/index.php:39 -#: application/views/awards/was/index.php:39 +#: application/views/awards/rac/index.php:33 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/waja/index.php:41 +#: application/views/awards/was/index.php:41 msgid "Show confirmed" msgstr "" -#: application/views/awards/cq/index.php:44 +#: application/views/awards/cq/index.php:46 #: application/views/awards/dxcc/index.php:51 -#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:51 -#: application/views/awards/itu/index.php:44 +#: application/views/awards/itu/index.php:46 #: application/views/awards/jcc/index.php:42 -#: application/views/awards/rac/index.php:35 -#: application/views/awards/waja/index.php:43 -#: application/views/awards/was/index.php:43 +#: application/views/awards/rac/index.php:37 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/waja/index.php:45 +#: application/views/awards/was/index.php:45 msgid "Show not worked" msgstr "" -#: application/views/awards/cq/index.php:50 +#: application/views/awards/cq/index.php:52 #: application/views/awards/dok/index.php:51 #: application/views/awards/dxcc/index.php:57 -#: application/views/awards/helvetia/index.php:49 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/helvetia/index.php:51 +#: application/views/awards/itu/index.php:52 #: application/views/awards/jcc/index.php:48 -#: application/views/awards/rac/index.php:41 -#: application/views/awards/waja/index.php:49 -#: application/views/awards/was/index.php:49 +#: application/views/awards/rac/index.php:43 +#: application/views/awards/wac/index.php:40 +#: application/views/awards/waja/index.php:51 +#: application/views/awards/was/index.php:51 msgid "Show QSO with QSL Type" msgstr "" -#: application/views/awards/cq/index.php:54 -#: application/views/awards/itu/index.php:54 -#: application/views/interface_assets/footer.php:2098 -#: application/views/qso/edit_ajax.php:378 +#: application/views/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/awards/wac/index.php:44 +#: application/views/interface_assets/footer.php:2112 +#: application/views/qso/edit_ajax.php:405 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "Cartolina QSL" -#: application/views/awards/cq/index.php:110 +#: application/views/awards/cq/index.php:112 #: application/views/awards/dok/index.php:126 #: application/views/awards/dxcc/index.php:186 -#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/helvetia/index.php:111 #: application/views/awards/iota/index.php:129 -#: application/views/awards/itu/index.php:110 +#: application/views/awards/itu/index.php:112 #: application/views/awards/jcc/index.php:112 -#: application/views/awards/rac/index.php:101 -#: application/views/awards/waja/index.php:113 -#: application/views/awards/was/index.php:109 +#: application/views/awards/rac/index.php:103 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/waja/index.php:115 +#: application/views/awards/was/index.php:111 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:523 +#: application/views/logbookadvanced/index.php:551 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 msgid "Reset" msgstr "" -#: application/views/awards/cq/index.php:113 +#: application/views/awards/cq/index.php:115 msgid "Show CQ Zone Map" msgstr "" -#: application/views/awards/cq/index.php:122 +#: application/views/awards/cq/index.php:124 #: application/views/awards/dxcc/index.php:199 -#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/helvetia/index.php:124 #: application/views/awards/iota/index.php:142 -#: application/views/awards/itu/index.php:122 -#: application/views/awards/rac/index.php:114 -#: application/views/awards/waja/index.php:126 -#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:124 +#: application/views/awards/rac/index.php:116 +#: application/views/awards/waja/index.php:128 +#: application/views/awards/was/index.php:124 msgid "Table" msgstr "" -#: application/views/awards/cq/index.php:125 +#: application/views/awards/cq/index.php:127 #: application/views/awards/dok/index.php:128 #: application/views/awards/dxcc/index.php:202 -#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/helvetia/index.php:127 #: application/views/awards/iota/index.php:145 -#: application/views/awards/itu/index.php:125 +#: application/views/awards/itu/index.php:127 #: application/views/awards/jcc/index.php:129 -#: application/views/awards/rac/index.php:117 +#: application/views/awards/rac/index.php:119 #: application/views/awards/wab/index.php:108 -#: application/views/awards/waja/index.php:129 -#: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:516 +#: application/views/awards/waja/index.php:131 +#: application/views/awards/was/index.php:127 +#: application/views/logbookadvanced/index.php:544 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "" -#: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 -#: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:235 -#: application/views/logbookadvanced/index.php:586 -#: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:90 -#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 -#: application/views/qso/index.php:390 -#: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:106 -#: application/views/station_profile/edit.php:126 -#: application/views/timeline/index.php:231 -#: application/views/timeplotter/index.php:44 -msgid "CQ Zone" -msgstr "Zona CQ" - -#: application/views/awards/cq/index.php:165 +#: application/views/awards/cq/index.php:167 #: application/views/awards/dok/index.php:165 #: application/views/awards/dxcc/index.php:248 -#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/helvetia/index.php:170 #: application/views/awards/iota/index.php:192 -#: application/views/awards/itu/index.php:165 +#: application/views/awards/itu/index.php:167 #: application/views/awards/jcc/index.php:168 -#: application/views/awards/rac/index.php:160 -#: application/views/awards/waja/index.php:168 -#: application/views/awards/was/index.php:168 +#: application/views/awards/rac/index.php:162 +#: application/views/awards/wac/index.php:168 +#: application/views/awards/waja/index.php:170 +#: application/views/awards/was/index.php:170 msgid "Summary" msgstr "" -#: application/views/awards/cq/index.php:178 +#: application/views/awards/cq/index.php:180 #: application/views/awards/dok/index.php:178 #: application/views/awards/dxcc/index.php:262 -#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:206 -#: application/views/awards/itu/index.php:178 +#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:195 -#: application/views/awards/rac/index.php:173 -#: application/views/awards/waja/index.php:182 -#: application/views/awards/was/index.php:181 +#: application/views/awards/rac/index.php:175 +#: application/views/awards/wac/index.php:181 +#: application/views/awards/waja/index.php:184 +#: application/views/awards/was/index.php:183 msgid "Total worked" msgstr "" -#: application/views/awards/cq/index.php:185 +#: application/views/awards/cq/index.php:187 #: application/views/awards/dok/index.php:185 #: application/views/awards/dxcc/index.php:269 -#: application/views/awards/helvetia/index.php:188 +#: application/views/awards/helvetia/index.php:190 #: application/views/awards/iota/index.php:213 -#: application/views/awards/itu/index.php:185 +#: application/views/awards/itu/index.php:187 #: application/views/awards/jcc/index.php:214 -#: application/views/awards/rac/index.php:180 -#: application/views/awards/waja/index.php:189 -#: application/views/awards/was/index.php:188 +#: application/views/awards/rac/index.php:182 +#: application/views/awards/wac/index.php:188 +#: application/views/awards/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "" @@ -3427,23 +4003,24 @@ msgstr "" #: application/views/awards/dok/index.php:37 #: application/views/awards/dxcc/index.php:39 -#: application/views/awards/helvetia/index.php:31 +#: application/views/awards/helvetia/index.php:33 #: application/views/awards/iota/index.php:39 #: application/views/awards/jcc/index.php:30 -#: application/views/awards/rac/index.php:23 -#: application/views/awards/waja/index.php:31 -#: application/views/awards/was/index.php:31 +#: application/views/awards/rac/index.php:25 +#: application/views/awards/waja/index.php:33 +#: application/views/awards/was/index.php:33 msgid "Worked / Confirmed" msgstr "" #: application/views/awards/dok/index.php:80 #: application/views/awards/dxcc/index.php:120 -#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/helvetia/index.php:76 #: application/views/awards/iota/index.php:94 #: application/views/awards/jcc/index.php:77 -#: application/views/awards/rac/index.php:66 -#: application/views/awards/waja/index.php:78 -#: application/views/awards/was/index.php:74 +#: application/views/awards/rac/index.php:68 +#: application/views/awards/wac/index.php:66 +#: application/views/awards/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "" @@ -3464,10 +4041,12 @@ msgid "" msgstr "" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 msgid "ARRL website" msgstr "" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 #, php-format msgid "You can find all information about the DXCC Award on the %s." msgstr "" @@ -3489,63 +4068,77 @@ msgstr "" #: application/views/awards/dxcc/index.php:87 #: application/views/awards/iota/index.php:61 #: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/logbookadvanced/edit.php:144 +#: application/views/logbookadvanced/index.php:309 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 -#: application/views/view_log/qso.php:250 +#: application/views/view_log/qso.php:253 msgid "Antarctica" msgstr "" #: application/views/awards/dxcc/index.php:91 #: application/views/awards/iota/index.php:65 #: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/logbookadvanced/edit.php:143 +#: application/views/logbookadvanced/index.php:308 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 -#: application/views/view_log/qso.php:247 +#: application/views/view_log/qso.php:250 msgid "Africa" msgstr "" #: application/views/awards/dxcc/index.php:95 #: application/views/awards/iota/index.php:69 #: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/logbookadvanced/edit.php:146 +#: application/views/logbookadvanced/index.php:311 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 -#: application/views/view_log/qso.php:253 +#: application/views/view_log/qso.php:256 msgid "Asia" msgstr "" #: application/views/awards/dxcc/index.php:99 #: application/views/awards/iota/index.php:73 #: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/logbookadvanced/edit.php:147 +#: application/views/logbookadvanced/index.php:312 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 -#: application/views/view_log/qso.php:256 +#: application/views/view_log/qso.php:259 msgid "Europe" msgstr "" #: application/views/awards/dxcc/index.php:103 #: application/views/awards/iota/index.php:77 #: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/logbookadvanced/edit.php:145 +#: application/views/logbookadvanced/index.php:310 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 -#: application/views/view_log/qso.php:259 +#: application/views/view_log/qso.php:262 msgid "North America" msgstr "" #: application/views/awards/dxcc/index.php:107 #: application/views/awards/iota/index.php:81 #: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/logbookadvanced/edit.php:148 +#: application/views/logbookadvanced/index.php:313 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:265 +#: application/views/view_log/qso.php:268 msgid "South America" msgstr "" #: application/views/awards/dxcc/index.php:111 #: application/views/awards/iota/index.php:85 #: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/logbookadvanced/edit.php:149 +#: application/views/logbookadvanced/index.php:314 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 -#: application/views/view_log/qso.php:262 +#: application/views/view_log/qso.php:265 msgid "Oceania" msgstr "" @@ -3559,13 +4152,13 @@ msgstr "" #: application/views/awards/dxcc/index.php:226 #: application/views/awards/iota/index.php:170 -#: application/views/timeline/index.php:117 -#: application/views/timeline/index.php:204 +#: application/views/timeline/index.php:150 +#: application/views/timeline/index.php:237 msgid "Prefix" msgstr "" #: application/views/awards/ffma/index.php:8 -#: application/views/interface_assets/header.php:236 +#: application/views/interface_assets/header.php:240 msgid "Fred Fish Memorial Award" msgstr "" @@ -3620,11 +4213,20 @@ msgstr "" msgid "This map shows only QSOs worked on SAT." msgstr "" -#: application/views/awards/helvetia/index.php:18 +#: application/views/awards/helvetia/index.php:3 +msgctxt "Switzerland Canton" +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:4 +msgid "Hover over a canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:20 msgid "HELVETIA 26 | SWITZERLAND AWARD" msgstr "" -#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:21 msgid "" "The USKA (Union of Swiss Shortwave Amateurs) sponsors two awards, the " "HELVETIA 26 (H26) Award and the SWITZERLAND Award, aimed at promoting " @@ -3632,33 +4234,33 @@ msgid "" "as possible on multiple bands." msgstr "" -#: application/views/awards/helvetia/index.php:20 +#: application/views/awards/helvetia/index.php:22 msgid "" "These awards come in two versions: one for HF bands and the other for VHF " "(including SHF and UHF) bands. Valid connections for these awards date back " "to January 1, 1980" msgstr "" -#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/helvetia/index.php:23 #: application/views/awards/jcc/index.php:19 #: application/views/awards/sota/index.php:10 #: application/views/awards/wab/index.php:15 -#: application/views/awards/waja/index.php:20 +#: application/views/awards/waja/index.php:22 #: application/views/awards/wwff/index.php:10 #, php-format msgid "For more information, please visit: %s." msgstr "" -#: application/views/awards/helvetia/index.php:112 +#: application/views/awards/helvetia/index.php:114 msgid "Show Helvetia Map" msgstr "" -#: application/views/awards/helvetia/index.php:149 +#: application/views/awards/helvetia/index.php:151 msgid "Canton" msgstr "" #: application/views/awards/index.php:9 application/views/bands/index.php:46 -#: application/views/interface_assets/header.php:162 +#: application/views/interface_assets/header.php:164 msgid "CQ" msgstr "" @@ -3706,11 +4308,11 @@ msgstr "" #: application/views/awards/iota/index.php:171 #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 -#: application/views/contesting/index.php:153 -#: application/views/contesting/index.php:171 +#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:214 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:559 +#: application/views/logbookadvanced/index.php:587 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3720,12 +4322,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:19 #: application/views/stationsetup/stationsetup.php:30 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:203 application/views/user/edit.php:241 +#: application/views/timeline/index.php:236 application/views/user/edit.php:241 #: application/views/user/edit.php:263 application/views/user/edit.php:285 #: application/views/user/edit.php:307 application/views/user/edit.php:330 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:191 -#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:194 +#: application/views/view_log/qso.php:514 msgid "Name" msgstr "" @@ -3733,7 +4335,19 @@ msgstr "" msgid "Deleted" msgstr "" -#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:3 +#: application/views/awards/itu/index.php:150 +#: application/views/logbookadvanced/edit.php:10 +#: application/views/logbookadvanced/index.php:257 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:400 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 +msgid "ITU Zone" +msgstr "" + +#: application/views/awards/itu/index.php:21 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -3741,30 +4355,20 @@ msgid "" "(ITU)." msgstr "" -#: application/views/awards/itu/index.php:20 +#: application/views/awards/itu/index.php:22 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "" -#: application/views/awards/itu/index.php:23 +#: application/views/awards/itu/index.php:25 msgid "Awards - ITU Zones" msgstr "" -#: application/views/awards/itu/index.php:113 +#: application/views/awards/itu/index.php:115 msgid "Show ITU Zone Map" msgstr "" -#: application/views/awards/itu/index.php:148 -#: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:246 -#: application/views/logbookadvanced/index.php:589 -#: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:120 -#: application/views/station_profile/edit.php:143 -msgid "ITU Zone" -msgstr "" - #: application/views/awards/jcc/index.php:16 msgid "JCC - Japan Century Cities Award" msgstr "" @@ -3790,7 +4394,7 @@ msgstr "" #: application/views/awards/jcc/index.php:116 #: application/views/cabrillo/index.php:180 application/views/cfd/index.php:25 #: application/views/csv/index.php:128 application/views/dxatlas/index.php:128 -#: application/views/kml/index.php:113 +#: application/views/kml/index.php:113 application/views/reg1test/index.php:145 msgid "Export" msgstr "" @@ -3801,18 +4405,19 @@ msgid "Results" msgstr "" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 +#: application/views/distancerecords/index.php:13 msgid "Number" msgstr "" #: application/views/awards/jcc/index.php:152 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:524 msgid "City" msgstr "" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:368 #: application/views/distances/index.php:23 msgid "SAT" msgstr "" @@ -3844,15 +4449,24 @@ msgid "" msgstr "" #: application/views/awards/pota/index.php:31 -#: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:177 -#: application/views/station_profile/edit.php:245 -#: application/views/user/edit.php:595 application/views/view_log/qso.php:303 -#: application/views/view_log/qso.php:570 +#: application/views/qso/index.php:236 application/views/qso/index.php:492 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 +#: application/views/user/edit.php:595 application/views/view_log/qso.php:306 +#: application/views/view_log/qso.php:573 msgid "POTA Reference(s)" msgstr "Referenza POTA" -#: application/views/awards/rac/index.php:104 +#: application/views/awards/rac/index.php:3 +msgctxt "Canada Province" +msgid "Province" +msgstr "" + +#: application/views/awards/rac/index.php:4 +msgid "Hover over a province" +msgstr "" + +#: application/views/awards/rac/index.php:106 msgid "Show RAC Map" msgstr "" @@ -3902,7 +4516,7 @@ msgstr "" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:535 +#: application/views/logbookadvanced/index.php:563 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -3998,17 +4612,48 @@ msgstr "" msgid "WAB Square" msgstr "" -#: application/views/awards/waja/index.php:17 +#: application/views/awards/wac/index.php:9 +msgid "" +"Sponsored by the International Amateur Radio Union (IARU), the Worked All " +"Continents award is issued for working and confirming all six continents. " +"These are North America, South America, Oceania, Asia, Europe and Africa." +msgstr "" + +#: application/views/awards/wac/index.php:13 +msgid "Awards - Worked All Continents (WAC)" +msgstr "" + +#: application/views/awards/wac/index.php:151 +#: application/views/continents/index.php:62 +#: application/views/logbookadvanced/edit.php:25 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 +#: application/views/view_log/qso.php:245 +msgid "Continent" +msgstr "" + +#: application/views/awards/waja/index.php:3 +msgctxt "Japan Prefecture" +msgid "Prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:4 +msgid "Hover over a prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:19 msgid "WAJA - Worked All Japan prefectures Award" msgstr "" -#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:20 msgid "" "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " "radio operators to work all the prefectures in Japan." msgstr "" -#: application/views/awards/waja/index.php:19 +#: application/views/awards/waja/index.php:21 msgid "" "May be claimed for having contacted (heard) and received a QSL card from an " "amateur station located in each of the 47 prefectures of Japan. A list of " @@ -4016,20 +4661,29 @@ msgid "" "however names of prefectures may be omitted." msgstr "" -#: application/views/awards/waja/index.php:116 +#: application/views/awards/waja/index.php:118 msgid "Show WAJA Map" msgstr "" -#: application/views/awards/waja/index.php:152 -#: application/views/timeline/index.php:152 +#: application/views/awards/waja/index.php:154 +#: application/views/timeline/index.php:185 msgid "Prefecture" msgstr "" -#: application/views/awards/was/index.php:18 +#: application/views/awards/was/index.php:3 +msgctxt "USA State" +msgid "State" +msgstr "" + +#: application/views/awards/was/index.php:4 +msgid "Hover over a state" +msgstr "" + +#: application/views/awards/was/index.php:20 msgid "WAS Award" msgstr "" -#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:21 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -4037,7 +4691,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:20 +#: application/views/awards/was/index.php:22 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -4046,13 +4700,13 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:21 +#: application/views/awards/was/index.php:23 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:112 +#: application/views/awards/was/index.php:114 msgid "Show WAS Map" msgstr "" @@ -4075,11 +4729,11 @@ msgid "" msgstr "" #: application/views/awards/wwff/index.php:31 -#: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:171 -#: application/views/station_profile/edit.php:232 -#: application/views/user/edit.php:591 application/views/view_log/qso.php:296 -#: application/views/view_log/qso.php:563 +#: application/views/qso/index.php:224 application/views/qso/index.php:479 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 +#: application/views/user/edit.php:591 application/views/view_log/qso.php:299 +#: application/views/view_log/qso.php:566 msgid "WWFF Reference" msgstr "Referenza WWFF" @@ -4134,8 +4788,8 @@ msgstr "" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 #: application/views/contesting/index.php:15 -#: application/views/contesting/index.php:94 -#: application/views/contesting/index.php:169 +#: application/views/contesting/index.php:52 +#: application/views/contesting/index.php:145 #: application/views/qso/index.php:314 msgid "None" msgstr "" @@ -4215,25 +4869,25 @@ msgid "" "will be hidden and cannot be selected." msgstr "" -#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:351 -#: application/views/qso/index.php:248 application/views/qso/index.php:494 -#: application/views/user/edit.php:599 application/views/view_log/qso.php:325 -#: application/views/view_log/qso.php:577 +#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 +#: application/views/qso/index.php:248 application/views/qso/index.php:504 +#: application/views/user/edit.php:599 application/views/view_log/qso.php:328 +#: application/views/view_log/qso.php:580 msgid "Sig" msgstr "Seg" -#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:312 -#: application/views/qso/index.php:433 +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:339 +#: application/views/qso/index.php:443 msgid "USA County" msgstr "Contea USA" #: application/views/bands/index.php:58 -#: application/views/interface_assets/header.php:208 +#: application/views/interface_assets/header.php:212 msgid "WAJA" msgstr "" #: application/views/bands/index.php:59 -#: application/views/interface_assets/header.php:232 +#: application/views/interface_assets/header.php:236 msgid "WAS" msgstr "" @@ -4263,13 +4917,12 @@ msgstr "" #: application/views/bands/index.php:152 #: application/views/contesting/add.php:74 -#: application/views/interface_assets/footer.php:42 -#: application/views/qso/components/winkeysettings.php:91 -#: application/views/qso/components/winkeysettings_results.php:91 +#: application/views/contesting/index.php:83 +#: application/views/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" -msgstr "" +msgstr "Chiudi" #: application/views/bands/index.php:153 msgid "Warning! Are you sure you want to delete the following band: " @@ -4295,22 +4948,28 @@ msgstr "" #: application/views/cabrillo/index.php:2 #: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:59 +#: application/views/reg1test/index.php:2 +#: application/views/reg1test/index.php:36 msgid "Proceed" msgstr "" #: application/views/cabrillo/index.php:3 +#: application/views/reg1test/index.php:3 msgid "Select Year" msgstr "" #: application/views/cabrillo/index.php:4 +#: application/views/reg1test/index.php:4 msgid "Select Contest" msgstr "" #: application/views/cabrillo/index.php:5 +#: application/views/reg1test/index.php:5 msgid "Select Date Range" msgstr "" #: application/views/cabrillo/index.php:6 +#: application/views/reg1test/index.php:7 msgid "No contests were found for this station location!" msgstr "" @@ -4323,10 +4982,12 @@ msgid "Select Station Location:" msgstr "" #: application/views/cabrillo/index.php:44 +#: application/views/reg1test/index.php:53 msgid "Club" msgstr "" #: application/views/cabrillo/index.php:48 +#: application/views/reg1test/index.php:58 msgid "Category Operator" msgstr "" @@ -4367,10 +5028,12 @@ msgid "Category Overlay" msgstr "" #: application/views/cabrillo/index.php:150 +#: application/views/reg1test/index.php:70 msgid "Operators" msgstr "" #: application/views/cabrillo/index.php:155 +#: application/views/reg1test/index.php:139 msgid "Soapbox" msgstr "" @@ -4395,6 +5058,7 @@ msgid "Address Country" msgstr "" #: application/views/cabrillo/index.php:186 +#: application/views/reg1test/index.php:150 msgid "No contests were found in your log." msgstr "" @@ -4428,13 +5092,13 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:158 +#: application/views/contesting/index.php:219 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:629 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 -#: application/views/view_log/qso.php:199 +#: application/views/view_log/qso.php:202 msgid "Comment" msgstr "Commento" @@ -4466,9 +5130,9 @@ msgid "No Contests" msgstr "" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/edit.php:21 -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:635 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4496,10 +5160,11 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:38 -#: application/views/dashboard/index.php:262 -#: application/views/dashboard/index.php:289 -#: application/views/dashboard/index.php:310 -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:278 +#: application/views/dashboard/index.php:305 +#: application/views/dashboard/index.php:326 +#: application/views/dashboard/index.php:347 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "" @@ -4533,7 +5198,7 @@ msgstr "" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:466 +#: application/views/interface_assets/header.php:472 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:43 @@ -4588,15 +5253,15 @@ msgid "Name of Contest in ADIF-specification" msgstr "" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "" #: application/views/contesting/edit.php:31 -#: application/views/contesting/index.php:24 -#: application/views/qso/edit_ajax.php:548 -#: application/views/view_log/qso.php:275 +#: application/views/contesting/index.php:25 +#: application/views/qso/edit_ajax.php:575 +#: application/views/view_log/qso.php:278 msgid "Contest Name" msgstr "Nome Contest" @@ -4632,90 +5297,138 @@ msgstr "" msgid "Serial + Gridsquare" msgstr "" -#: application/views/contesting/index.php:34 +#: application/views/contesting/index.php:21 +msgid "Serial + Gridsquare + Exchange" +msgstr "" + +#: application/views/contesting/index.php:35 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:539 application/views/qso/index.php:352 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:352 msgid "Operator Callsign" msgstr "" -#: application/views/contesting/index.php:116 -#: application/views/contesting/index.php:208 -#: application/views/qso/edit_ajax.php:571 -msgid "Serial (S)" +#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:45 +msgid "More Settings" msgstr "" -#: application/views/contesting/index.php:121 -#: application/views/contesting/index.php:206 -msgid "Exch (S)" -msgstr "Scambio (I)" - -#: application/views/contesting/index.php:126 -msgid "Gridsquare (S)" -msgstr "" - -#: application/views/contesting/index.php:136 -#: application/views/contesting/index.php:209 -#: application/views/qso/edit_ajax.php:566 -msgid "Serial (R)" -msgstr "" - -#: application/views/contesting/index.php:141 -#: application/views/contesting/index.php:207 -msgid "Exch (R)" -msgstr "Scambio (R)" - -#: application/views/contesting/index.php:146 -msgid "Gridsquare (R)" -msgstr "" - -#: application/views/contesting/index.php:163 -msgid "Reset QSO" -msgstr "" - -#: application/views/contesting/index.php:164 -#: application/views/qso/index.php:607 -msgid "Save QSO" -msgstr "Salva QSO" - -#: application/views/contesting/index.php:166 +#: application/views/contesting/index.php:49 msgid "Copy received exchange to" msgstr "" -#: application/views/contesting/index.php:168 +#: application/views/contesting/index.php:51 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "" -#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:55 msgid "Age" msgstr "" -#: application/views/contesting/index.php:174 +#: application/views/contesting/index.php:57 msgid "RX Power (W)" msgstr "" -#: application/views/contesting/index.php:175 +#: application/views/contesting/index.php:58 msgid "Locator" msgstr "Locatore" -#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:59 +#: application/views/qso/edit_ajax.php:177 +msgid "QTH" +msgstr "" + +#: application/views/contesting/index.php:64 +msgid "Sequence of Exchanges" +msgstr "" + +#: application/views/contesting/index.php:67 +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 "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Grid" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Serial" +msgstr "" + +#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:255 +#: application/views/qso/edit_ajax.php:598 +msgid "Serial (S)" +msgstr "" + +#: application/views/contesting/index.php:177 +msgid "Gridsquare (S)" +msgstr "" + +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:253 +msgid "Exch (S)" +msgstr "Scambio (I)" + +#: application/views/contesting/index.php:196 +#: application/views/contesting/index.php:256 +#: application/views/qso/edit_ajax.php:593 +msgid "Serial (R)" +msgstr "" + +#: application/views/contesting/index.php:201 +msgid "Gridsquare (R)" +msgstr "" + +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:254 +msgid "Exch (R)" +msgstr "Scambio (R)" + +#: application/views/contesting/index.php:224 +msgid "Reset QSO" +msgstr "" + +#: application/views/contesting/index.php:225 +#: application/views/qso/index.php:629 +msgid "Save QSO" +msgstr "Salva QSO" + +#: application/views/contesting/index.php:234 msgid "Callsign Suggestions" msgstr "Suggerimenti Nominativi" -#: application/views/contesting/index.php:194 +#: application/views/contesting/index.php:241 msgid "Contest Logbook" msgstr "Log del Contest" -#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:258 #: application/views/qso/edit_ajax.php:164 msgid "VUCC Gridsquare" msgstr "" -#: application/views/continents/index.php:62 -#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 -#: application/views/view_log/qso.php:242 -msgid "Continent" -msgstr "" - #: application/views/continents/index.php:63 #: application/views/statistics/index.php:19 #: application/views/statistics/index.php:113 @@ -4733,14 +5446,15 @@ msgstr "" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:261 -#: application/views/station_profile/edit.php:314 +#: application/views/options/appearance.php:109 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 msgid "Enabled" msgstr "" -#: application/views/cron/edit.php:36 application/views/cron/index.php:53 +#: application/views/cron/edit.php:36 application/views/cron/index.php:55 msgid "Intervall" msgstr "" @@ -4790,6 +5504,7 @@ msgstr "" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "" @@ -4803,79 +5518,84 @@ msgid "" "requiring CLI access." msgstr "" -#: application/views/cron/index.php:18 +#: application/views/cron/index.php:19 msgid "" "To execute cron jobs based on the data below, remove all old cron jobs and " "create a new one:" msgstr "" -#: application/views/cron/index.php:27 application/views/cron/index.php:31 -msgid "Status Master-Cron" +#: application/views/cron/index.php:29 application/views/cron/index.php:33 +msgid "Status Master-Cron:" msgstr "" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgctxt "PHP Version" msgid "Min. Version is" msgstr "" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgid "PHP Version not supported." msgstr "" -#: application/views/cron/index.php:41 +#: application/views/cron/index.php:43 msgid "Cron List" msgstr "" -#: application/views/cron/index.php:50 +#: application/views/cron/index.php:52 #: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "" -#: application/views/cron/index.php:54 +#: application/views/cron/index.php:56 msgid "Last Run" msgstr "" -#: application/views/cron/index.php:55 +#: application/views/cron/index.php:57 msgid "Next Run" msgstr "" -#: application/views/cron/index.php:68 +#: application/views/cron/index.php:70 msgid "healthy" msgstr "" -#: application/views/cron/index.php:70 +#: application/views/cron/index.php:72 msgid "failed" msgstr "" -#: application/views/cron/index.php:75 +#: application/views/cron/index.php:74 +msgid "pending" +msgstr "" + +#: application/views/cron/index.php:79 msgid "disabled" msgstr "" -#: application/views/cron/index.php:79 application/views/cron/index.php:81 -#: application/views/cron/index.php:83 application/views/debug/index.php:494 +#: application/views/cron/index.php:83 application/views/cron/index.php:85 +#: application/views/cron/index.php:87 application/views/debug/index.php:494 #: application/views/debug/index.php:500 application/views/debug/index.php:505 #: application/views/debug/index.php:510 application/views/debug/index.php:515 #: application/views/debug/index.php:520 application/views/debug/index.php:525 +#: application/views/user/index.php:138 msgid "never" msgstr "" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:102 msgid "Your Mastercron isn't running." msgstr "" -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:103 msgid "" "Copy the cron above to a external cron service or into your server's cron to " "use this cron manager." msgstr "" -#: application/views/cron/index.php:100 +#: application/views/cron/index.php:104 msgid "" "On a basic linux server with shell access use this command to edit your " "crons:" msgstr "" -#: application/views/cron/index.php:107 +#: application/views/cron/index.php:111 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -4893,154 +5613,10 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:411 msgid "Propagation Mode" msgstr "Modo di Propagazione" -#: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:214 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 -msgctxt "Propagation Mode" -msgid "Aircraft Scatter" -msgstr "" - -#: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:215 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 -msgctxt "Propagation Mode" -msgid "Aurora" -msgstr "" - -#: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:216 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 -msgctxt "Propagation Mode" -msgid "Aurora-E" -msgstr "" - -#: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:217 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 -msgctxt "Propagation Mode" -msgid "Back scatter" -msgstr "" - -#: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:218 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 -msgctxt "Propagation Mode" -msgid "EchoLink" -msgstr "" - -#: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:219 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 -msgctxt "Propagation Mode" -msgid "Earth-Moon-Earth" -msgstr "" - -#: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:220 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 -msgctxt "Propagation Mode" -msgid "Sporadic E" -msgstr "" - -#: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:221 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 -msgctxt "Propagation Mode" -msgid "Field Aligned Irregularities" -msgstr "" - -#: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:222 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 -msgctxt "Propagation Mode" -msgid "F2 Reflection" -msgstr "" - -#: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:223 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 -msgctxt "Propagation Mode" -msgid "Internet-assisted" -msgstr "" - -#: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:224 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 -msgctxt "Propagation Mode" -msgid "Ionoscatter" -msgstr "" - -#: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:225 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 -msgctxt "Propagation Mode" -msgid "IRLP" -msgstr "" - -#: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:226 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 -msgctxt "Propagation Mode" -msgid "Meteor scatter" -msgstr "" - -#: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:227 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 -msgctxt "Propagation Mode" -msgid "Terrestrial or atmospheric repeater or transponder" -msgstr "" - -#: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:228 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 -msgctxt "Propagation Mode" -msgid "Rain scatter" -msgstr "" - -#: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:229 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 -msgctxt "Propagation Mode" -msgid "Satellite" -msgstr "" - -#: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:230 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 -msgctxt "Propagation Mode" -msgid "Trans-equatorial" -msgstr "" - -#: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:231 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 -msgctxt "Propagation Mode" -msgid "Tropospheric ducting" -msgstr "" - #: application/views/dashboard/index.php:5 msgid "RSTS" msgstr "" @@ -5049,85 +5625,99 @@ msgstr "" msgid "RSTR" msgstr "" -#: application/views/dashboard/index.php:56 +#: application/views/dashboard/index.php:58 msgid "" "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" msgstr "" -#: application/views/dashboard/index.php:63 +#: application/views/dashboard/index.php:65 #, php-format msgctxt "Dashboard Warning" -msgid "You need to update country files! Click %s to do it." +msgid "You need to update country files! Click %shere%s to do it." msgstr "" -#: application/views/dashboard/index.php:72 +#: application/views/dashboard/index.php:73 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station locations. Click %s to do it:" +msgid "You have no station locations. Click %shere%s to do it." msgstr "" #: application/views/dashboard/index.php:81 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station logbook. Click %s to do it:" +msgid "You have no station logbook. Click %shere%s to do it." msgstr "" -#: application/views/dashboard/index.php:91 +#: application/views/dashboard/index.php:89 +#, php-format +msgctxt "Dashboard Warning" +msgid "" +"Your active Station Location isn't linked to your Logbook. Click %shere%s to " +"do it." +msgstr "" + +#: application/views/dashboard/index.php:97 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station linked to your Logbook. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:106 #, php-format msgid "You have had %d QSO today" msgid_plural "You have had %d QSOs today" msgstr[0] "" msgstr[1] "" -#: application/views/dashboard/index.php:97 +#: application/views/dashboard/index.php:112 msgid "You have made no QSOs today; time to turn on the radio!" msgstr "Non hai fatto QSO oggi; è ora di accendere la radio!" -#: application/views/dashboard/index.php:104 +#: application/views/dashboard/index.php:119 msgid "Attention: you need to set an active station location." msgstr "Attenzione: devi impostare un luogo di stazione attiva." -#: application/views/dashboard/index.php:110 +#: application/views/dashboard/index.php:125 msgid "" "You have themes without defined theme mode. Please ask the admin to edit the " "themes." msgstr "" -#: application/views/dashboard/index.php:118 +#: application/views/dashboard/index.php:133 msgid "At least one of your LoTW certificates is expired!" msgstr "" -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:139 msgid "At least one of your LoTW certificates is about to expire!" msgstr "" -#: application/views/dashboard/index.php:213 +#: application/views/dashboard/index.php:229 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "Riepilogo QSO" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:252 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "Riepilogo Paesi" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:269 #: application/views/visitor/index.php:275 msgid "Needed" msgstr "Necessario" -#: application/views/dashboard/index.php:266 -#: application/views/dashboard/index.php:293 -#: application/views/dashboard/index.php:314 -#: application/views/dashboard/index.php:335 +#: application/views/dashboard/index.php:282 +#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:330 +#: application/views/dashboard/index.php:351 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:167 -#: application/views/qso/edit_ajax.php:390 -#: application/views/qso/edit_ajax.php:451 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:550 +#: application/views/qso/edit_ajax.php:417 +#: application/views/qso/edit_ajax.php:478 +#: application/views/qso/edit_ajax.php:518 application/views/qso/index.php:572 #: application/views/search/result_search.php:8 #: application/views/search/search_result_ajax.php:180 #: application/views/search/search_result_ajax.php:260 @@ -5135,91 +5725,91 @@ msgstr "Necessario" #: application/views/search/search_result_ajax.php:332 #: application/views/search/search_result_ajax.php:362 #: application/views/statistics/custom_result.php:89 -#: application/views/view_log/partial/log_ajax.php:140 -#: application/views/view_log/partial/log_ajax.php:217 -#: application/views/view_log/partial/log_ajax.php:237 -#: application/views/view_log/partial/log_ajax.php:287 -#: application/views/view_log/partial/log_ajax.php:295 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:289 +#: application/views/view_log/partial/log_ajax.php:297 #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 -#: src/QSLManager/QSO.php:371 src/QSLManager/QSO.php:423 -#: src/QSLManager/QSO.php:459 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:270 +#: src/QSLManager/QSO.php:373 src/QSLManager/QSO.php:425 +#: src/QSLManager/QSO.php:461 msgid "Sent" msgstr "Inviata" -#: application/views/dashboard/index.php:272 -#: application/views/dashboard/index.php:299 -#: application/views/dashboard/index.php:320 -#: application/views/dashboard/index.php:341 +#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:315 +#: application/views/dashboard/index.php:336 +#: application/views/dashboard/index.php:357 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 #: application/views/qslprint/qsolist.php:151 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:423 -#: application/views/qso/edit_ajax.php:464 -#: application/views/qso/edit_ajax.php:503 +#: application/views/qso/edit_ajax.php:450 +#: application/views/qso/edit_ajax.php:491 +#: application/views/qso/edit_ajax.php:530 #: application/views/search/search_result_ajax.php:222 #: application/views/search/search_result_ajax.php:273 #: application/views/search/search_result_ajax.php:313 #: application/views/search/search_result_ajax.php:345 #: application/views/search/search_result_ajax.php:375 -#: application/views/view_log/partial/log_ajax.php:178 -#: application/views/view_log/partial/log_ajax.php:218 -#: application/views/view_log/partial/log_ajax.php:263 -#: application/views/view_log/partial/log_ajax.php:288 -#: application/views/view_log/partial/log_ajax.php:296 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:265 +#: application/views/view_log/partial/log_ajax.php:290 +#: application/views/view_log/partial/log_ajax.php:298 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 -#: src/QSLManager/QSO.php:394 src/QSLManager/QSO.php:436 -#: src/QSLManager/QSO.php:472 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:315 +#: src/QSLManager/QSO.php:396 src/QSLManager/QSO.php:438 +#: src/QSLManager/QSO.php:474 msgid "Received" msgstr "Ricevuta" -#: application/views/dashboard/index.php:278 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:388 -#: application/views/logbookadvanced/index.php:399 +#: application/views/dashboard/index.php:294 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:415 +#: application/views/logbookadvanced/index.php:426 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 -#: application/views/qso/edit_ajax.php:395 -#: application/views/qso/edit_ajax.php:428 -#: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:469 +#: application/views/qso/edit_ajax.php:422 +#: application/views/qso/edit_ajax.php:455 +#: application/views/qso/edit_ajax.php:483 #: application/views/qso/edit_ajax.php:496 -#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:555 +#: application/views/qso/edit_ajax.php:523 +#: application/views/qso/edit_ajax.php:535 application/views/qso/index.php:577 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 -#: application/views/view_log/partial/log_ajax.php:146 -#: application/views/view_log/partial/log_ajax.php:184 -#: application/views/view_log/partial/log_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:273 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 -#: src/QSLManager/QSO.php:319 src/QSLManager/QSO.php:379 -#: src/QSLManager/QSO.php:402 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +#: application/views/view_log/partial/log_ajax.php:249 +#: application/views/view_log/partial/log_ajax.php:275 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:276 +#: src/QSLManager/QSO.php:321 src/QSLManager/QSO.php:381 +#: src/QSLManager/QSO.php:404 msgid "Requested" msgstr "Richiesta" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:304 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:351 +#: application/views/dashboard/index.php:367 msgid "VUCC-Grids" msgstr "" #: application/views/dayswithqso/index.php:2 -#: application/views/interface_assets/header.php:146 +#: application/views/interface_assets/header.php:148 msgid "Days with QSOs" msgstr "" @@ -5248,7 +5838,7 @@ msgstr "" #: application/views/dayswithqso/index.php:58 #: application/views/dayswithqso/index.php:86 #: application/views/dayswithqso/index.php:108 -#: application/views/timeline/index.php:120 +#: application/views/timeline/index.php:153 msgid "End Date" msgstr "" @@ -5282,11 +5872,11 @@ msgstr "" #: application/views/debug/index.php:27 msgid "Version" -msgstr "" +msgstr "Versione" #: application/views/debug/index.php:31 msgid "Language" -msgstr "" +msgstr "Lingua" #: application/views/debug/index.php:35 msgid "Base URL" @@ -5315,9 +5905,7 @@ msgstr "" #: application/views/debug/index.php:47 #, php-format -msgid "" -"Check this wiki article here for " -"more information." +msgid "Check this wiki article %shere%s for more information." msgstr "" #: application/views/debug/index.php:48 @@ -5376,13 +5964,13 @@ msgstr "" #: application/views/debug/index.php:134 application/views/debug/index.php:145 #: application/views/debug/index.php:157 msgid "Success" -msgstr "" +msgstr "Successo" #: application/views/debug/index.php:114 application/views/debug/index.php:125 #: application/views/debug/index.php:136 application/views/debug/index.php:147 #: application/views/debug/index.php:159 msgid "Failed" -msgstr "" +msgstr "Fallito" #: application/views/debug/index.php:169 msgid "Config Maintenance" @@ -5453,15 +6041,15 @@ msgstr "" #: application/views/debug/index.php:252 application/views/debug/index.php:263 #: application/views/debug/index.php:274 msgid "Installed" -msgstr "" +msgstr "Installato" #: application/views/debug/index.php:232 application/views/debug/index.php:243 #: application/views/debug/index.php:254 application/views/debug/index.php:265 #: application/views/debug/index.php:276 msgid "Not Installed" -msgstr "" +msgstr "Non installato" -#: application/views/debug/index.php:283 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:671 msgid "Settings" msgstr "" @@ -5518,7 +6106,7 @@ msgstr "" #: application/views/debug/index.php:506 application/views/debug/index.php:511 #: application/views/debug/index.php:516 application/views/debug/index.php:521 #: application/views/debug/index.php:526 -#: application/views/station_profile/edit.php:22 +#: application/views/station_profile/edit.php:49 msgid "Update" msgstr "" @@ -5560,9 +6148,8 @@ msgstr[1] "" #: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:57 -#: application/views/station_profile/edit.php:46 -#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" @@ -5590,67 +6177,91 @@ msgid "Everything ok" msgstr "" #: application/views/debug/index.php:629 -msgid "Bulgarian" -msgstr "" +msgid "Albanian" +msgstr "Albanese" #: application/views/debug/index.php:630 -msgid "Chinese (Simplified)" -msgstr "" +msgid "Bosnian" +msgstr "Bosniaco" #: application/views/debug/index.php:631 -msgid "Czech" -msgstr "" +msgid "Bulgarian" +msgstr "Bulgaro" #: application/views/debug/index.php:632 -msgid "Dutch" -msgstr "" +msgid "Chinese (Simplified)" +msgstr "Cinese (semplificato)" #: application/views/debug/index.php:633 -msgid "English" -msgstr "" +msgid "Croatian" +msgstr "Croato" #: application/views/debug/index.php:634 -msgid "Finnish" -msgstr "" +msgid "Czech" +msgstr "Ceco" #: application/views/debug/index.php:635 -msgid "French" -msgstr "" +msgid "Dutch" +msgstr "Olandese" #: application/views/debug/index.php:636 -msgid "German" -msgstr "" +msgid "English" +msgstr "Inglese" #: application/views/debug/index.php:637 -msgid "Greek" -msgstr "" +msgid "Finnish" +msgstr "Finlandese" #: application/views/debug/index.php:638 -msgid "Italian" -msgstr "" +msgid "French" +msgstr "Francese" #: application/views/debug/index.php:639 -msgid "Polish" -msgstr "" +msgid "German" +msgstr "Tedesco" #: application/views/debug/index.php:640 -msgid "Portuguese" -msgstr "" +msgid "Greek" +msgstr "Greco" #: application/views/debug/index.php:641 -msgid "Russian" -msgstr "" +msgid "Italian" +msgstr "Italiano" #: application/views/debug/index.php:642 -msgid "Spanish" -msgstr "" +msgid "Montenegrin" +msgstr "Montenegrino" #: application/views/debug/index.php:643 -msgid "Swedish" -msgstr "" +msgid "Polish" +msgstr "Polacco" #: application/views/debug/index.php:644 +msgid "Portuguese" +msgstr "Portoghese" + +#: application/views/debug/index.php:645 +msgid "Russian" +msgstr "Russo" + +#: application/views/debug/index.php:646 +msgid "Serbian" +msgstr "Serbo" + +#: application/views/debug/index.php:647 +msgid "Spanish" +msgstr "Spagnolo" + +#: application/views/debug/index.php:648 +msgid "Swedish" +msgstr "Svedese" + +#: application/views/debug/index.php:649 msgid "Turkish" +msgstr "Turco" + +#: application/views/distancerecords/index.php:4 +msgid "This page lists distance records per satellite based on gridsquares." msgstr "" #: application/views/distances/index.php:7 @@ -5660,7 +6271,8 @@ msgid "QSO Data" msgstr "" #: application/views/distances/index.php:9 -msgid "contacts were plotted.
Your furthest contact was with" +#, php-format +msgid "contacts were plotted.%s Your furthest contact was with" msgstr "" #: application/views/distances/index.php:10 @@ -5702,7 +6314,7 @@ msgid "Date to" msgstr "" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:366 +#: application/views/view_log/qso.php:369 msgid "QSL Info" msgstr "Info QSL" @@ -5728,7 +6340,7 @@ msgstr "" #: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 #: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 #: application/views/eqsl/tools.php:15 -#: application/views/interface_assets/header.php:243 +#: application/views/interface_assets/header.php:247 msgid "Tools" msgstr "" @@ -5868,27 +6480,15 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2324 -#: application/views/interface_assets/footer.php:2342 -#: application/views/interface_assets/footer.php:2363 -#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2338 +#: application/views/interface_assets/footer.php:2356 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 #: application/views/qslcard/index.php:66 -#: application/views/view_log/qso.php:614 +#: application/views/view_log/qso.php:617 msgid "View" msgstr "" -#: application/views/gridmap/index.php:38 -#: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:604 -#: application/views/logbookadvanced/useroptions.php:118 -msgid "Propagation" -msgstr "" - -#: application/views/gridmap/index.php:42 -msgid "None/Empty" -msgstr "" - #: application/views/gridmap/index.php:43 msgid "All except SAT" msgstr "" @@ -5984,8 +6584,8 @@ msgstr "" #: application/views/interface_assets/footer.php:31 #: application/views/search/search_result_ajax.php:404 #: application/views/view_log/partial/log.php:135 -#: application/views/view_log/partial/log_ajax.php:318 -#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log_ajax.php:320 +#: application/views/view_log/qso.php:437 msgid "Edit QSO" msgstr "Modifica QSO" @@ -5993,171 +6593,192 @@ msgstr "Modifica QSO" msgid "Attention" msgstr "" -#: application/views/interface_assets/footer.php:36 -msgid "OK" -msgstr "" - -#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/footer.php:38 msgid "Warning! Are you sure you want delete QSO with " msgstr "" -#: application/views/interface_assets/footer.php:38 +#: application/views/interface_assets/footer.php:39 #: application/views/user/edit.php:493 msgid "Colors" msgstr "" -#: application/views/interface_assets/footer.php:40 +#: application/views/interface_assets/footer.php:41 msgid "Worked not confirmed" msgstr "" -#: application/views/interface_assets/footer.php:41 +#: application/views/interface_assets/footer.php:42 msgid "Not worked" msgstr "" -#: application/views/interface_assets/footer.php:44 -#: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/interface_assets/footer.php:46 +#: application/views/qso/index.php:623 +#: application/views/visitor/layout/footer.php:246 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:47 #: application/views/qso/edit_ajax.php:211 -#: application/views/qso/edit_ajax.php:512 +#: application/views/qso/edit_ajax.php:539 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "" -#: application/views/interface_assets/footer.php:127 -#: application/views/interface_assets/header.php:434 +#: application/views/interface_assets/footer.php:48 +msgid "No states for this DXCC available" +msgstr "" + +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "" + +#: application/views/interface_assets/footer.php:132 +#: application/views/interface_assets/header.php:440 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:392 +#: application/views/interface_assets/footer.php:398 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:395 +#: application/views/interface_assets/footer.php:401 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:411 +#: application/views/interface_assets/footer.php:417 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:413 +#: application/views/interface_assets/footer.php:419 #: application/views/search/filter.php:46 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:415 +#: application/views/interface_assets/footer.php:421 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:420 +#: application/views/interface_assets/footer.php:426 #: application/views/search/filter.php:60 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:432 -#: application/views/interface_assets/footer.php:561 -#: application/views/interface_assets/footer.php:625 +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:437 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:458 -#: application/views/interface_assets/footer.php:589 +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 #: application/views/search/filter.php:79 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:496 +#: application/views/interface_assets/footer.php:502 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:516 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:519 +#: application/views/interface_assets/footer.php:525 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:545 +#: application/views/interface_assets/footer.php:551 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:549 +#: application/views/interface_assets/footer.php:555 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:678 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1156 -#, php-format -msgid "You're not logged it. Please login" +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:533 +msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:1362 -#: application/views/interface_assets/footer.php:1366 -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1506 -#: application/views/interface_assets/footer.php:1510 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:731 +msgid "Count: " +msgstr "" + +#: application/views/interface_assets/footer.php:732 +msgid "Grids: " +msgstr "" + +#: application/views/interface_assets/footer.php:1167 +#, php-format +msgid "You're not logged in. Please %slogin%s" +msgstr "" + +#: application/views/interface_assets/footer.php:1375 +#: application/views/interface_assets/footer.php:1379 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1523 +#: application/views/interface_assets/footer.php:1526 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1526 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2100 +#: application/views/interface_assets/footer.php:2114 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2120 +#: application/views/interface_assets/footer.php:2134 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2160 +#: application/views/interface_assets/footer.php:2174 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2162 +#: application/views/interface_assets/footer.php:2176 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2335 -#: application/views/interface_assets/footer.php:2374 -#: application/views/view_log/qso.php:604 +#: application/views/interface_assets/footer.php:2349 +#: application/views/interface_assets/footer.php:2388 +#: application/views/view_log/qso.php:607 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2354 +#: application/views/interface_assets/footer.php:2368 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2392 +#: application/views/interface_assets/footer.php:2406 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2403 -#: application/views/interface_assets/footer.php:2428 +#: application/views/interface_assets/footer.php:2417 +#: application/views/interface_assets/footer.php:2442 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2439 +#: application/views/interface_assets/footer.php:2453 msgid "Something went wrong. Please try again!" msgstr "" @@ -6213,91 +6834,91 @@ msgstr "" msgid "Activated Gridsquares" msgstr "" -#: application/views/interface_assets/header.php:160 +#: application/views/interface_assets/header.php:162 msgid "International" msgstr "" -#: application/views/interface_assets/header.php:166 +#: application/views/interface_assets/header.php:168 msgid "ITU" msgstr "" -#: application/views/interface_assets/header.php:186 +#: application/views/interface_assets/header.php:190 msgid "Canada" msgstr "" -#: application/views/interface_assets/header.php:192 +#: application/views/interface_assets/header.php:196 msgid "Germany" msgstr "" -#: application/views/interface_assets/header.php:196 +#: application/views/interface_assets/header.php:200 msgid "DL Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:200 +#: application/views/interface_assets/header.php:204 msgid "Great Britain" msgstr "" -#: application/views/interface_assets/header.php:202 +#: application/views/interface_assets/header.php:206 msgid "WAB" msgstr "" -#: application/views/interface_assets/header.php:206 +#: application/views/interface_assets/header.php:210 msgid "Japan" msgstr "" -#: application/views/interface_assets/header.php:212 +#: application/views/interface_assets/header.php:216 msgid "JA Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:216 +#: application/views/interface_assets/header.php:220 msgid "Luxemburg" msgstr "" -#: application/views/interface_assets/header.php:218 +#: application/views/interface_assets/header.php:222 msgid "LX Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:222 +#: application/views/interface_assets/header.php:226 msgid "Switzerland" msgstr "" -#: application/views/interface_assets/header.php:228 +#: application/views/interface_assets/header.php:232 msgid "USA" msgstr "" -#: application/views/interface_assets/header.php:234 +#: application/views/interface_assets/header.php:238 msgid "US Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:251 +#: application/views/interface_assets/header.php:255 msgid "Bandmap" msgstr "" -#: application/views/interface_assets/header.php:253 +#: application/views/interface_assets/header.php:257 msgid "SAT Timers" msgstr "" -#: application/views/interface_assets/header.php:256 +#: application/views/interface_assets/header.php:260 msgid "Satellite Flightpath" msgstr "" -#: application/views/interface_assets/header.php:258 +#: application/views/interface_assets/header.php:262 msgid "Satellite Pass" msgstr "" -#: application/views/interface_assets/header.php:265 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:269 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:274 msgid "Global Options" msgstr "" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:280 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:11 +#: application/views/satellite/pass.php:495 #: application/views/statistics/custom.php:20 #: application/views/statistics/custom_result.php:21 #: application/views/statistics/index.php:39 @@ -6305,79 +6926,83 @@ msgstr "" msgid "Satellites" msgstr "" -#: application/views/interface_assets/header.php:282 +#: application/views/interface_assets/header.php:286 msgid "Update Country Files" msgstr "" -#: application/views/interface_assets/header.php:286 +#: application/views/interface_assets/header.php:290 msgid "Debug Information" msgstr "" -#: application/views/interface_assets/header.php:333 +#: application/views/interface_assets/header.php:337 msgid "Add/Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:335 +#: application/views/interface_assets/header.php:339 msgid "Log" msgstr "" -#: application/views/interface_assets/header.php:342 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:346 +#: application/views/logbookadvanced/index.php:474 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:371 +#: application/views/interface_assets/header.php:375 #: application/views/user/edit.php:49 msgid "Account" msgstr "" -#: application/views/interface_assets/header.php:386 +#: application/views/interface_assets/header.php:390 msgid "Other Export Options" msgstr "" -#: application/views/interface_assets/header.php:394 +#: application/views/interface_assets/header.php:398 msgid "Cabrillo Export" msgstr "" -#: application/views/interface_assets/header.php:418 -msgid "QSL Queue" -msgstr "" - -#: application/views/interface_assets/header.php:419 -msgid "Labels" -msgstr "" - -#: application/views/interface_assets/header.php:421 -msgid "Third-Party Services" +#: application/views/interface_assets/header.php:400 +msgid "EDI Export" msgstr "" #: application/views/interface_assets/header.php:424 -msgid "eQSL Import / Export" +msgid "QSL Queue" msgstr "" #: application/views/interface_assets/header.php:425 +msgid "Labels" +msgstr "" + +#: application/views/interface_assets/header.php:427 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:430 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:431 msgid "HRDLog Logbook" msgstr "" -#: application/views/interface_assets/header.php:435 +#: application/views/interface_assets/header.php:441 msgid "Help" msgstr "" -#: application/views/interface_assets/header.php:436 +#: application/views/interface_assets/header.php:442 msgid "Forum" msgstr "" -#: application/views/interface_assets/header.php:438 +#: application/views/interface_assets/header.php:444 msgid "Logout" msgstr "" -#: application/views/interface_assets/header.php:446 +#: application/views/interface_assets/header.php:452 msgid "Select a Location" msgstr "" -#: application/views/interface_assets/header.php:525 +#: application/views/interface_assets/header.php:531 msgid "Extras" msgstr "" @@ -6648,86 +7273,122 @@ msgid "Start printing at?" msgstr "" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:405 -#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" -#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/edit.php:23 msgid "LoTW Sent" msgstr "" -#: application/views/logbookadvanced/edit.php:23 +#: application/views/logbookadvanced/edit.php:24 msgid "LoTW Received" msgstr "" -#: application/views/logbookadvanced/edit.php:73 +#: application/views/logbookadvanced/edit.php:75 msgid "SAT Mode" msgstr "" -#: application/views/logbookadvanced/edit.php:87 +#: application/views/logbookadvanced/edit.php:89 msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:174 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:144 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:148 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:152 +#: application/views/logbookadvanced/index.php:569 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:148 +#: application/views/logbookadvanced/index.php:159 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:224 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:540 +msgid "Invalid" +msgstr "" + +#: application/views/logbookadvanced/index.php:324 msgid "QSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:375 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:397 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:439 #: application/views/lookup/lotwuser.php:12 -#: application/views/qso/edit_ajax.php:394 -#: application/views/qso/edit_ajax.php:427 -#: application/views/qso/edit_ajax.php:455 -#: application/views/qso/edit_ajax.php:468 +#: application/views/qso/edit_ajax.php:421 +#: application/views/qso/edit_ajax.php:454 +#: application/views/qso/edit_ajax.php:482 #: application/views/qso/edit_ajax.php:495 -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 +#: application/views/qso/edit_ajax.php:522 +#: application/views/qso/edit_ajax.php:534 application/views/qso/index.php:576 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:209 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:236 -#: application/views/station_profile/create.php:275 -#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 #: application/views/station_profile/create.php:293 -#: application/views/station_profile/edit.php:330 -#: application/views/station_profile/edit.php:338 -#: application/views/station_profile/edit.php:364 -#: application/views/station_profile/edit.php:385 -#: application/views/station_profile/edit.php:403 -#: application/views/station_profile/edit.php:410 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 +#: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 #: application/views/user/edit.php:347 application/views/user/edit.php:358 #: application/views/user/edit.php:369 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:399 @@ -6737,35 +7398,35 @@ msgstr "" msgid "Yes" msgstr "Si" -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 -#: application/views/logbookadvanced/index.php:376 -#: application/views/logbookadvanced/index.php:387 -#: application/views/logbookadvanced/index.php:398 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:440 #: application/views/lookup/lotwuser.php:14 -#: application/views/qso/edit_ajax.php:393 -#: application/views/qso/edit_ajax.php:426 -#: application/views/qso/edit_ajax.php:454 -#: application/views/qso/edit_ajax.php:467 +#: application/views/qso/edit_ajax.php:420 +#: application/views/qso/edit_ajax.php:453 +#: application/views/qso/edit_ajax.php:481 #: application/views/qso/edit_ajax.php:494 -#: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 +#: application/views/qso/edit_ajax.php:521 +#: application/views/qso/edit_ajax.php:533 application/views/qso/index.php:575 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:210 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:237 -#: application/views/station_profile/create.php:276 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/create.php:292 -#: application/views/station_profile/edit.php:331 -#: application/views/station_profile/edit.php:339 -#: application/views/station_profile/edit.php:365 -#: application/views/station_profile/edit.php:386 -#: application/views/station_profile/edit.php:404 -#: application/views/station_profile/edit.php:411 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 #: application/views/user/edit.php:348 application/views/user/edit.php:359 #: application/views/user/edit.php:370 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:400 @@ -6776,32 +7437,32 @@ msgstr "Si" msgid "No" msgstr "" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 -#: application/views/logbookadvanced/index.php:389 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:416 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 -#: application/views/qso/edit_ajax.php:396 -#: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:497 application/views/qso/index.php:556 +#: application/views/qso/edit_ajax.php:423 +#: application/views/qso/edit_ajax.php:484 +#: application/views/qso/edit_ajax.php:524 application/views/qso/index.php:578 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:225 -#: application/views/view_log/partial/log_ajax.php:143 -#: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +#: src/QSLManager/QSO.php:273 src/QSLManager/QSO.php:318 msgid "Queued" msgstr "In coda" -#: application/views/logbookadvanced/index.php:304 -#: application/views/logbookadvanced/index.php:314 -#: application/views/logbookadvanced/index.php:346 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:368 -#: application/views/logbookadvanced/index.php:378 -#: application/views/logbookadvanced/index.php:390 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:373 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:417 +#: application/views/logbookadvanced/index.php:427 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6809,42 +7470,42 @@ msgstr "In coda" #: application/views/qslprint/qsolist.php:109 #: application/views/qslprint/qsolist.php:174 #: application/views/qslprint/qsolist.php:189 -#: application/views/qso/edit_ajax.php:397 -#: application/views/qso/edit_ajax.php:429 -#: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:470 -#: application/views/qso/edit_ajax.php:498 -#: application/views/qso/edit_ajax.php:509 application/views/qso/index.php:557 +#: application/views/qso/edit_ajax.php:424 +#: application/views/qso/edit_ajax.php:456 +#: application/views/qso/edit_ajax.php:485 +#: application/views/qso/edit_ajax.php:497 +#: application/views/qso/edit_ajax.php:525 +#: application/views/qso/edit_ajax.php:536 application/views/qso/index.php:579 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/search/search_result_ajax.php:305 #: application/views/search/search_result_ajax.php:320 -#: application/views/view_log/partial/log_ajax.php:149 -#: application/views/view_log/partial/log_ajax.php:187 -#: application/views/view_log/partial/log_ajax.php:242 -#: application/views/view_log/partial/log_ajax.php:268 -#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 -#: src/QSLManager/QSO.php:375 src/QSLManager/QSO.php:398 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +#: application/views/view_log/partial/log_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:270 +#: src/QSLManager/QSO.php:279 src/QSLManager/QSO.php:324 +#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:400 msgid "Invalid (Ignore)" msgstr "Invalido (Ignora)" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:335 msgid "QSL received" msgstr "" -#: application/views/logbookadvanced/index.php:315 -#: application/views/logbookadvanced/index.php:357 -#: application/views/logbookadvanced/index.php:379 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:428 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:346 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:359 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6853,268 +7514,264 @@ msgstr "" #: application/views/qslprint/qsolist.php:77 #: application/views/qslprint/qsolist.php:119 #: application/views/qslprint/qsolist.php:210 -#: application/views/qso/edit_ajax.php:408 -#: application/views/qso/edit_ajax.php:441 application/views/qso/index.php:568 +#: application/views/qso/edit_ajax.php:435 +#: application/views/qso/edit_ajax.php:468 application/views/qso/index.php:590 #: application/views/search/search_result_ajax.php:199 #: application/views/search/search_result_ajax.php:241 -#: application/views/view_log/partial/log_ajax.php:162 -#: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +#: src/QSLManager/QSO.php:296 src/QSLManager/QSO.php:339 msgid "Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:360 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 #: application/views/qslprint/qsolist.php:80 #: application/views/qslprint/qsolist.php:122 #: application/views/qslprint/qsolist.php:211 -#: application/views/qso/edit_ajax.php:407 -#: application/views/qso/edit_ajax.php:440 application/views/qso/index.php:567 +#: application/views/qso/edit_ajax.php:434 +#: application/views/qso/edit_ajax.php:467 application/views/qso/index.php:589 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 -#: application/views/view_log/partial/log_ajax.php:165 -#: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +#: src/QSLManager/QSO.php:299 src/QSLManager/QSO.php:342 msgid "Direct" msgstr "Diretta" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 #: application/views/qslprint/qsolist.php:86 #: application/views/qslprint/qsolist.php:128 #: application/views/qslprint/qsolist.php:212 -#: application/views/qso/edit_ajax.php:409 -#: application/views/qso/edit_ajax.php:442 application/views/qso/index.php:569 +#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:591 #: application/views/search/search_result_ajax.php:208 #: application/views/search/search_result_ajax.php:250 -#: application/views/view_log/partial/log_ajax.php:171 -#: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +#: src/QSLManager/QSO.php:305 src/QSLManager/QSO.php:348 msgid "Electronic" msgstr "Elettronica" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:362 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 -#: application/views/qso/edit_ajax.php:410 -#: application/views/qso/edit_ajax.php:443 application/views/qso/index.php:570 +#: application/views/qso/edit_ajax.php:437 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:592 #: application/views/search/search_result_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:206 +#: application/views/view_log/partial/log_ajax.php:208 msgid "Manager" msgstr "" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:356 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:366 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:377 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:388 msgid "Clublog sent" msgstr "" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:399 msgid "Clublog received" msgstr "" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:410 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:436 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:448 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" -#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:451 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:425 -#: application/views/qso/edit_ajax.php:595 +#: application/views/logbookadvanced/index.php:452 +#: application/views/qso/edit_ajax.php:622 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:453 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:454 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:456 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:457 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:459 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:460 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:462 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:463 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:465 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:466 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:472 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:477 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:480 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:486 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:492 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:495 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:498 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:501 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:507 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:516 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:518 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:527 #: application/views/qso/index.php:272 -#: application/views/station_profile/edit.php:65 +#: application/views/station_profile/edit.php:92 msgid "Location" msgstr "Luogo" -#: application/views/logbookadvanced/index.php:506 -msgid "Callsign: " -msgstr "" - -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:539 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:547 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:605 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:650 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -7142,41 +7799,15 @@ msgstr "" msgid "Column" msgstr "" -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/useroptions.php:152 msgctxt "Map Options" msgid "Layer" msgstr "" -#: application/views/logbookadvanced/useroptions.php:149 +#: application/views/logbookadvanced/useroptions.php:153 msgid "Default on" msgstr "" -#: application/views/logbookadvanced/useroptions.php:154 -#: application/views/stationsetup/exportmapoptions.php:23 -msgctxt "Map Options" -msgid "Path lines" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:158 -msgctxt "Map Options" -msgid "Gridsquares" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:162 -msgctxt "Map Options" -msgid "CQ Zones" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:166 -msgctxt "Map Options" -msgid "ITU Zones" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:170 -msgctxt "Map Options" -msgid "Night Shadow" -msgstr "" - #: application/views/lookup/index.php:8 msgid "US State" msgstr "" @@ -7280,58 +7911,62 @@ msgstr "Certificati Disponibili" msgid "Upload Certificate" msgstr "Carica Certificato" -#: application/views/lotw_views/index.php:41 +#: application/views/lotw_views/index.php:37 msgid "QSO Start Date" msgstr "Data di inizio QSO" -#: application/views/lotw_views/index.php:42 +#: application/views/lotw_views/index.php:38 msgid "QSO End Date" msgstr "Data di fine QSO" -#: application/views/lotw_views/index.php:43 +#: application/views/lotw_views/index.php:39 msgid "Date Created" msgstr "Data di Creazione" -#: application/views/lotw_views/index.php:44 +#: application/views/lotw_views/index.php:40 msgid "Date Expires" msgstr "Data di Scadenza" -#: application/views/lotw_views/index.php:46 -#: application/views/view_log/qso.php:404 +#: application/views/lotw_views/index.php:42 +#: application/views/view_log/qso.php:407 msgid "Last Upload" msgstr "Last upload" -#: application/views/lotw_views/index.php:91 +#: application/views/lotw_views/index.php:87 msgid "Expired" msgstr "Scaduto" -#: application/views/lotw_views/index.php:93 +#: application/views/lotw_views/index.php:89 msgid "Expiring" msgstr "" -#: application/views/lotw_views/index.php:105 +#: application/views/lotw_views/index.php:91 +msgid "Valid" +msgstr "Valido" + +#: application/views/lotw_views/index.php:101 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:108 +#: application/views/lotw_views/index.php:104 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:114 +#: application/views/lotw_views/index.php:110 msgid "Not Synced" msgstr "Non Sincronizzato" -#: application/views/lotw_views/index.php:129 +#: application/views/lotw_views/index.php:125 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:144 +#: application/views/lotw_views/index.php:140 msgid "Information" msgstr "Informazione" -#: application/views/lotw_views/index.php:149 +#: application/views/lotw_views/index.php:145 msgid "Manual Sync" msgstr "Sincronizzazione Manuale" @@ -7546,6 +8181,14 @@ msgstr "" msgid "This enables the button to Wavelog's Github page in the public view" msgstr "" +#: application/views/options/appearance.php:107 +msgid "Public Login Button" +msgstr "" + +#: application/views/options/appearance.php:112 +msgid "This enables the button to login to Wavelog in the public view" +msgstr "" + #: application/views/options/dxcluster.php:38 msgid "Provider of DXClusterCache" msgstr "" @@ -7843,7 +8486,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:64 #: application/views/oqrs/showrequests.php:87 -#: application/views/user/main.php:48 application/views/user/profile.php:24 +#: application/views/user/index.php:48 application/views/user/profile.php:24 msgid "E-mail" msgstr "" @@ -7866,21 +8509,21 @@ msgstr "" #: application/views/search/search_result_ajax.php:127 #: application/views/user/edit.php:478 #: application/views/view_log/partial/log.php:22 -#: application/views/view_log/partial/log_ajax.php:86 -#: application/views/view_log/qso.php:503 -#: application/views/view_log/qso.php:507 -#: application/views/view_log/qso.php:511 -#: application/views/view_log/qso.php:515 -#: application/views/view_log/qso.php:521 -#: application/views/view_log/qso.php:528 -#: application/views/view_log/qso.php:535 -#: application/views/view_log/qso.php:542 -#: application/views/view_log/qso.php:549 -#: application/views/view_log/qso.php:556 -#: application/views/view_log/qso.php:563 -#: application/views/view_log/qso.php:570 -#: application/views/view_log/qso.php:577 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log_ajax.php:88 +#: application/views/view_log/qso.php:506 +#: application/views/view_log/qso.php:510 +#: application/views/view_log/qso.php:514 +#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:531 +#: application/views/view_log/qso.php:538 +#: application/views/view_log/qso.php:545 +#: application/views/view_log/qso.php:552 +#: application/views/view_log/qso.php:559 +#: application/views/view_log/qso.php:566 +#: application/views/view_log/qso.php:573 +#: application/views/view_log/qso.php:580 +#: application/views/view_log/qso.php:585 msgid "Station" msgstr "Stazione" @@ -7888,10 +8531,10 @@ msgstr "Stazione" #: application/views/qslprint/qslprint.php:28 #: application/views/qslprint/qsolist.php:14 #: application/views/qslprint/qsolist.php:83 -#: application/views/qso/index.php:576 +#: application/views/qso/index.php:598 #: application/views/search/search_result_ajax.php:205 -#: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:300 +#: application/views/view_log/partial/log_ajax.php:170 +#: src/QSLManager/QSO.php:302 msgid "Via" msgstr "" @@ -8120,7 +8763,7 @@ msgid "Remove" msgstr "" #: application/views/qslprint/qslprint.php:33 -#: application/views/simplefle/index.php:133 +#: application/views/simplefle/index.php:139 msgid "QSO List" msgstr "" @@ -8166,35 +8809,20 @@ msgid "" "queue." msgstr "" -#: application/views/qso/components/winkeysettings.php:7 -#: application/views/qso/components/winkeysettings_results.php:7 -msgid "Winkey Macros" -msgstr "" - -#: application/views/qso/components/winkeysettings.php:12 -#: application/views/qso/components/winkeysettings.php:28 -#: application/views/qso/components/winkeysettings.php:44 -#: application/views/qso/components/winkeysettings.php:60 -#: application/views/qso/components/winkeysettings.php:76 -#: application/views/qso/components/winkeysettings_results.php:12 -#: application/views/qso/components/winkeysettings_results.php:28 -#: application/views/qso/components/winkeysettings_results.php:44 -#: application/views/qso/components/winkeysettings_results.php:60 -#: application/views/qso/components/winkeysettings_results.php:76 -#, php-format -msgid "Function %d - Name" -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:83 -#: application/views/qso/components/winkeysettings_results.php:19 -#: application/views/qso/components/winkeysettings_results.php:35 -#: application/views/qso/components/winkeysettings_results.php:51 -#: application/views/qso/components/winkeysettings_results.php:67 -#: application/views/qso/components/winkeysettings_results.php:83 +#, 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 #, php-format msgid "Function %d - Macro" msgstr "" @@ -8220,7 +8848,8 @@ msgid "RX Band" msgstr "" #: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:346 -#: application/views/view_log/qso.php:542 +#: application/views/reg1test/index.php:114 +#: application/views/view_log/qso.php:545 msgid "Transmit Power (W)" msgstr "Potenza di Trasmissione (W)" @@ -8232,10 +8861,6 @@ msgstr "Dare valore di potenza in Watt. Includere solo numeri nell input." msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:177 -msgid "QTH" -msgstr "" - #: application/views/qso/edit_ajax.php:258 msgid "Sat Name" msgstr "" @@ -8244,69 +8869,85 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:356 application/views/qso/index.php:255 -#: application/views/qso/index.php:500 application/views/user/edit.php:599 -#: application/views/view_log/qso.php:332 -#: application/views/view_log/qso.php:582 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:545 +msgid "Antenna Azimuth (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:547 +msgid "Antenna azimuth in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:274 application/views/qso/index.php:551 +msgid "Antenna Elevation (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:276 application/views/qso/index.php:553 +msgid "Antenna elevation in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:383 application/views/qso/index.php:255 +#: application/views/qso/index.php:510 application/views/user/edit.php:599 +#: application/views/view_log/qso.php:335 +#: application/views/view_log/qso.php:585 msgid "Sig Info" msgstr "Info Seg" -#: application/views/qso/edit_ajax.php:369 +#: application/views/qso/edit_ajax.php:396 msgid "Notes (for internal usage only)" msgstr "" -#: application/views/qso/edit_ajax.php:403 +#: application/views/qso/edit_ajax.php:430 msgid "Sent Method" msgstr "" -#: application/views/qso/edit_ajax.php:406 -#: application/views/qso/edit_ajax.php:439 application/views/qso/index.php:563 -#: application/views/qso/index.php:566 +#: application/views/qso/edit_ajax.php:433 +#: application/views/qso/edit_ajax.php:466 application/views/qso/index.php:585 +#: application/views/qso/index.php:588 msgid "Method" msgstr "Metodo" -#: application/views/qso/edit_ajax.php:416 +#: application/views/qso/edit_ajax.php:443 msgid "Sent Via" msgstr "" -#: application/views/qso/edit_ajax.php:430 -#: application/views/qso/edit_ajax.php:471 -#: application/views/qso/edit_ajax.php:510 +#: application/views/qso/edit_ajax.php:457 +#: application/views/qso/edit_ajax.php:498 +#: application/views/qso/edit_ajax.php:537 msgid "Verified (Match)" msgstr "" -#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:463 msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:477 application/views/qso/index.php:583 +#: application/views/qso/edit_ajax.php:504 application/views/qso/index.php:605 msgid "This note content is exported to QSL services like eqsl.cc." msgstr "Il contenuto di questa nota è esportato a servizi QSL come eqsl.cc." -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:586 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:608 msgid "Get the default message for eQSL, for this station." msgstr "" -#: application/views/qso/edit_ajax.php:530 +#: application/views/qso/edit_ajax.php:557 msgid "Change Station Profile" msgstr "" -#: application/views/qso/edit_ajax.php:576 +#: application/views/qso/edit_ajax.php:603 msgid "Exchange (R)" msgstr "" -#: application/views/qso/edit_ajax.php:581 +#: application/views/qso/edit_ajax.php:608 msgid "Exchange (S)" msgstr "" -#: application/views/qso/edit_ajax.php:593 +#: application/views/qso/edit_ajax.php:620 #: application/views/search/search_result_ajax.php:432 #: application/views/view_log/partial/log.php:156 -#: application/views/view_log/partial/log_ajax.php:346 +#: application/views/view_log/partial/log_ajax.php:348 msgid "Delete QSO" msgstr "Cancella QSO" -#: application/views/qso/edit_ajax.php:596 +#: application/views/qso/edit_ajax.php:623 msgid "Save changes" msgstr "" @@ -8314,7 +8955,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:5 application/views/qso/index.php:694 +#: application/views/qso/index.php:5 application/views/qso/index.php:718 msgid "Previous Contacts" msgstr "Contatti Precedenti" @@ -8354,23 +8995,23 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:149 -#: application/views/station_profile/edit.php:191 -#: application/views/user/edit.php:583 application/views/view_log/qso.php:282 -#: application/views/view_log/qso.php:549 +#: application/views/qso/index.php:196 application/views/qso/index.php:449 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 +#: application/views/user/edit.php:583 application/views/view_log/qso.php:285 +#: application/views/view_log/qso.php:552 msgid "IOTA Reference" msgstr "Referenza IOTA" -#: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:165 -#: application/views/station_profile/edit.php:219 -#: application/views/user/edit.php:587 application/views/view_log/qso.php:289 -#: application/views/view_log/qso.php:556 +#: application/views/qso/index.php:212 application/views/qso/index.php:466 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 +#: application/views/user/edit.php:587 application/views/view_log/qso.php:292 +#: application/views/view_log/qso.php:559 msgid "SOTA Reference" msgstr "Referenza SOTA" -#: application/views/qso/index.php:322 application/views/view_log/qso.php:98 +#: application/views/qso/index.php:322 application/views/view_log/qso.php:100 msgid "Frequency (RX)" msgstr "Frequenza (RX)" @@ -8378,39 +9019,39 @@ msgstr "Frequenza (RX)" msgid "Band (RX)" msgstr "Banda (RX)" -#: application/views/qso/index.php:458 +#: application/views/qso/index.php:468 msgid "For example: GM/NS-001." msgstr "Per esempio: GM/NS-001." -#: application/views/qso/index.php:471 +#: application/views/qso/index.php:481 msgid "For example: DLFF-0069." msgstr "Per esempio: DLFF-0069." -#: application/views/qso/index.php:484 +#: application/views/qso/index.php:494 msgid "For example: PA-0150. Multiple values allowed." msgstr "Per esempio: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:496 +#: application/views/qso/index.php:506 msgid "For example: GMA" msgstr "Per esempio: GMA" -#: application/views/qso/index.php:502 +#: application/views/qso/index.php:512 msgid "For example: DA/NW-357" msgstr "Per esempio: DA/NW-357" -#: application/views/qso/index.php:510 +#: application/views/qso/index.php:520 msgid "For example: Q03" msgstr "Per esempio: Q03" -#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +#: application/views/qso/index.php:529 application/views/view_log/qso.php:210 msgid "Satellite Name" msgstr "Nome Satellite" -#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +#: application/views/qso/index.php:537 application/views/view_log/qso.php:217 msgid "Satellite Mode" msgstr "Modo Satellite" -#: application/views/qso/index.php:538 +#: application/views/qso/index.php:560 msgid "" "Note content is used within Wavelog only and is not exported to other " "services." @@ -8418,27 +9059,47 @@ msgstr "" "Il contenuto della nota viene utilizzato solo all interno di Wavelog e non " "viene esportato in altri servizi." -#: application/views/qso/index.php:604 +#: application/views/qso/index.php:626 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:645 +#: application/views/qso/index.php:667 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:647 +#: application/views/qso/index.php:669 msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:678 +msgid "Stop" +msgstr "" + +#: application/views/qso/index.php:679 +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:680 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:686 +msgid "CW Speed" +msgstr "" + +#: application/views/qso/index.php:691 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:701 msgid "Suggestions" msgstr "Suggerimenti" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:708 msgid "Profile Picture" msgstr "Immagine Profilo" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:732 msgid "Max. 5 previous contacts are shown" msgstr "" @@ -8469,6 +9130,137 @@ msgstr "" msgid "Please wait..." msgstr "" +#: application/views/reg1test/index.php:6 +msgid "Select Band" +msgstr "" + +#: application/views/reg1test/index.php:8 +msgid "" +"Bands below 50Mhz are not valid for the EDI REG1TEST format and will produce " +"invalid files." +msgstr "" + +#: application/views/reg1test/index.php:18 +msgid "Export a contest to a REG1TEST EDI log" +msgstr "" + +#: application/views/reg1test/index.php:48 +msgid "Sent Exchange" +msgstr "" + +#: application/views/reg1test/index.php:50 +msgid "" +"The exchange which was sent during the contest. Can be any type of " +"information, e.g. Province, DOK, County, State, Power, Name. Max. length: 6 " +"characters." +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:66 +msgid "Callsign of responsible operator" +msgstr "" + +#: application/views/reg1test/index.php:72 +msgid "" +"List of all operators. Seperated with a semicolon ';'. The responsible " +"operator is not needed here." +msgstr "" + +#: application/views/reg1test/index.php:75 +msgid "Contest Address 1" +msgstr "" + +#: application/views/reg1test/index.php:77 +msgid "Address of the QTH used during the contest." +msgstr "" + +#: application/views/reg1test/index.php:80 +msgid "Contest Address 2" +msgstr "" + +#: application/views/reg1test/index.php:84 +msgid "Operator Address 1" +msgstr "" + +#: application/views/reg1test/index.php:86 +msgid "Address of the responsible operator." +msgstr "" + +#: application/views/reg1test/index.php:89 +msgid "Operator Address 2" +msgstr "" + +#: application/views/reg1test/index.php:93 +msgid "Operator Address Postalcode" +msgstr "" + +#: application/views/reg1test/index.php:97 +msgid "Operator Address City" +msgstr "" + +#: application/views/reg1test/index.php:101 +msgid "Operator Address Country" +msgstr "" + +#: application/views/reg1test/index.php:105 +msgid "Operator Phone Number" +msgstr "" + +#: application/views/reg1test/index.php:109 +msgid "Transmit Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:111 +msgid "Short description of the used equipment." +msgstr "" + +#: application/views/reg1test/index.php:116 +msgid "TX Power during the contest in Watt." +msgstr "" + +#: application/views/reg1test/index.php:119 +msgid "Receive Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:121 +msgid "If you used another gear for RX, then describe it here." +msgstr "" + +#: application/views/reg1test/index.php:124 +msgid "Antenna Description" +msgstr "" + +#: application/views/reg1test/index.php:126 +msgid "What kind of antenna was used." +msgstr "" + +#: application/views/reg1test/index.php:129 +msgid "Antenna Height Above Ground (m)" +msgstr "" + +#: application/views/reg1test/index.php:131 +msgid "Height of the antenna above the ground." +msgstr "" + +#: application/views/reg1test/index.php:134 +msgid "Band multiplicator" +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:141 +msgid "Any other remarks." +msgstr "" + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8558,10 +9350,71 @@ msgstr "" msgid "Satellite passes" msgstr "" -#: application/views/satellite/pass.php:548 +#: application/views/satellite/pass.php:8 +msgid "Min. Satellite Elevation" +msgstr "" + +#: application/views/satellite/pass.php:12 +msgid "Min. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:20 +msgid "Max. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:32 +msgid "Altitude (meters)" +msgstr "" + +#: application/views/satellite/pass.php:36 application/views/user/edit.php:179 +msgid "Timezone" +msgstr "" + +#: application/views/satellite/pass.php:479 +msgid "Min. time" +msgstr "" + +#: application/views/satellite/pass.php:487 +msgid "Max. time" +msgstr "" + +#: application/views/satellite/pass.php:504 msgid "Load predictions" msgstr "" +#: application/views/satellite/passtable.php:6 +msgid "AOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:7 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "" + +#: application/views/satellite/passtable.php:8 +msgid "AOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:9 +msgid "AOS El" +msgstr "" + +#: application/views/satellite/passtable.php:10 +msgid "Max El" +msgstr "" + +#: application/views/satellite/passtable.php:11 +msgid "LOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:12 +msgid "LOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:13 +msgid "LOS El" +msgstr "" + #: application/views/sattimers/index.php:15 #, php-format msgid "" @@ -8582,10 +9435,6 @@ msgstr "" msgid "Max Elevation" msgstr "" -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "" - #: application/views/search/cqzones.php:5 #: application/views/search/lotw_unconfirmed.php:5 #: application/views/search/main.php:5 @@ -8692,50 +9541,50 @@ msgstr "" #: application/views/search/search_result_ajax.php:409 #: application/views/view_log/partial/log.php:140 -#: application/views/view_log/partial/log_ajax.php:323 +#: application/views/view_log/partial/log_ajax.php:325 msgid "Mark QSL Sent (Bureau)" msgstr "Segna QSL Inviata (Bureau)" #: application/views/search/search_result_ajax.php:410 #: application/views/view_log/partial/log.php:141 -#: application/views/view_log/partial/log_ajax.php:324 +#: application/views/view_log/partial/log_ajax.php:326 msgid "Mark QSL Sent (Direct)" msgstr "Segna QSL Inviata (Direct)" #: application/views/search/search_result_ajax.php:417 #: application/views/view_log/partial/log.php:148 -#: application/views/view_log/partial/log_ajax.php:333 -#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log_ajax.php:335 +#: application/views/view_log/qso.php:655 msgid "Mark QSL Received (Bureau)" msgstr "Segna QSL Ricevuta (Bureau)" #: application/views/search/search_result_ajax.php:418 #: application/views/view_log/partial/log.php:149 -#: application/views/view_log/partial/log_ajax.php:334 -#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log_ajax.php:336 +#: application/views/view_log/qso.php:657 msgid "Mark QSL Received (Direct)" msgstr "Segna QSL Ricevuta (Diretta)" #: application/views/search/search_result_ajax.php:419 #: application/views/view_log/partial/log.php:150 -#: application/views/view_log/partial/log_ajax.php:325 +#: application/views/view_log/partial/log_ajax.php:327 msgid "Mark QSL Card Requested" msgstr "Segna QSL come richiesto" #: application/views/search/search_result_ajax.php:420 #: application/views/view_log/partial/log.php:151 -#: application/views/view_log/partial/log_ajax.php:326 -#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log_ajax.php:328 +#: application/views/view_log/qso.php:669 msgid "Mark QSL Card Not Required" msgstr "Segna QSL non come richiesto" #: application/views/search/search_result_ajax.php:426 -#: application/views/view_log/partial/log_ajax.php:340 +#: application/views/view_log/partial/log_ajax.php:342 msgid "Lookup on QRZ.com" msgstr "" #: application/views/search/search_result_ajax.php:428 -#: application/views/view_log/partial/log_ajax.php:342 +#: application/views/view_log/partial/log_ajax.php:344 msgid "Lookup on HamQTH" msgstr "" @@ -8770,7 +9619,7 @@ msgid "" msgstr "" #: application/views/simplefle/index.php:17 -#: application/views/simplefle/index.php:170 +#: application/views/simplefle/index.php:176 msgid "Syntax Help" msgstr "" @@ -8864,8 +9713,8 @@ msgstr "" #: application/views/simplefle/index.php:107 #, php-format msgid "" -"If you did operate from a new location, first create a new Station Location" +"If you did operate from a new location, first create a new %sStation " +"Location%s" msgstr "" #: application/views/simplefle/index.php:112 @@ -8880,24 +9729,24 @@ msgstr "" msgid "Enter the Data" msgstr "" -#: application/views/simplefle/index.php:148 +#: application/views/simplefle/index.php:154 msgid "Refs" msgstr "" -#: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +#: application/views/simplefle/index.php:166 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" msgstr "" -#: application/views/simplefle/index.php:167 +#: application/views/simplefle/index.php:173 msgid "Reload QSO List" msgstr "" -#: application/views/simplefle/index.php:168 +#: application/views/simplefle/index.php:174 msgid "Save in Wavelog" msgstr "" -#: application/views/simplefle/index.php:169 +#: application/views/simplefle/index.php:175 msgid "Clear Logging Session" msgstr "" @@ -8954,122 +9803,121 @@ msgstr "" #: application/views/simplefle/syntax_help.php:28 #, php-format -msgctxt "uses 'this article'" msgid "" -"A full summary of all commands and the necessary syntax can be found in %s " -"of our Wiki." +"A full summary of all commands and the necessary syntax can be found in " +"%sthis article%s of our Wiki." msgstr "" -#: application/views/station_profile/create.php:51 -#: application/views/station_profile/edit.php:40 +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:52 -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:59 -#: application/views/station_profile/edit.php:48 +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 msgid "Station callsign. For example: 4W7EST/P" msgstr "" -#: application/views/station_profile/create.php:63 -#: application/views/station_profile/edit.php:52 +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 msgid "Station Power (W)" msgstr "" -#: application/views/station_profile/create.php:65 -#: application/views/station_profile/edit.php:54 +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" -#: application/views/station_profile/create.php:68 -#: application/views/station_profile/edit.php:69 +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 msgid "Station DXCC" msgstr "" -#: application/views/station_profile/create.php:71 -#: application/views/station_profile/edit.php:72 +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 msgctxt "DXCC selection" msgid "None" msgstr "" -#: application/views/station_profile/create.php:78 -#: application/views/station_profile/edit.php:85 +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:83 -#: application/views/station_profile/edit.php:91 +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 msgid "Station City" msgstr "" -#: application/views/station_profile/create.php:85 -#: application/views/station_profile/edit.php:93 +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:94 -#: application/views/station_profile/edit.php:105 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 msgid "Station state. Applies to certain countries only." msgstr "" -#: application/views/station_profile/create.php:99 -#: application/views/station_profile/edit.php:110 +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 msgid "Station County" msgstr "" -#: application/views/station_profile/create.php:101 -#: application/views/station_profile/edit.php:112 +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/edit.php:138 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:138 -#: application/views/station_profile/edit.php:155 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 msgid "click here" msgstr "" -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/edit.php:155 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:135 -#: application/views/station_profile/edit.php:167 -#: application/views/station_profile/edit.php:170 +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 msgid "Station Gridsquare" msgstr "" -#: application/views/station_profile/create.php:140 -#: application/views/station_profile/edit.php:175 +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 msgid "Get Gridsquare" msgstr "" -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 #, php-format msgctxt "uses 'click here'" msgid "" @@ -9077,304 +9925,250 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:145 -#: application/views/station_profile/edit.php:180 +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" -#: application/views/station_profile/create.php:160 -#: application/views/station_profile/edit.php:205 +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 msgid "Station IOTA reference. For example: EU-005" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 #, php-format msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:183 -#: application/views/station_profile/edit.php:260 +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 msgid "Signature Name" msgstr "" -#: application/views/station_profile/create.php:185 -#: application/views/station_profile/edit.php:262 +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 msgid "Station Signature (e.g. GMA).." msgstr "" -#: application/views/station_profile/create.php:189 -#: application/views/station_profile/edit.php:266 +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 msgid "Signature Information" msgstr "" -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/edit.php:268 +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "" -#: application/views/station_profile/create.php:195 -#: application/views/station_profile/edit.php:281 +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:197 -#: application/views/station_profile/edit.php:283 +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "" -#: application/views/station_profile/create.php:201 -#: application/views/station_profile/edit.php:286 +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 msgid "Default QSLMSG" msgstr "" -#: application/views/station_profile/create.php:204 -#: application/views/station_profile/edit.php:289 +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "" -#: application/views/station_profile/create.php:207 -#: application/views/station_profile/edit.php:328 +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:212 -#: application/views/station_profile/edit.php:333 +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " "Clublog. If this is deactivated on it's own please check if the Call is " "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:215 -#: application/views/station_profile/edit.php:336 +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 msgid "ClubLog Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:224 -#: application/views/station_profile/edit.php:352 +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 msgid "HRDLog.net Username" msgstr "" -#: application/views/station_profile/create.php:226 -#: application/views/station_profile/edit.php:354 +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" -#: application/views/station_profile/create.php:229 -#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 msgid "HRDLog.net API Key" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:234 -#: application/views/station_profile/edit.php:362 +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 msgid "HRDLog.net Logbook Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:243 -#: application/views/station_profile/edit.php:297 +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 msgid "Subscription Required" msgstr "" -#: application/views/station_profile/create.php:248 +#: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/edit.php:310 +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 msgid "QRZ.com Logbook Upload" msgstr "" -#: application/views/station_profile/create.php:260 -#: application/views/station_profile/edit.php:313 +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:268 -#: application/views/station_profile/edit.php:378 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:273 -#: application/views/station_profile/edit.php:383 +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 msgid "QO-100 Dx Club Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:283 -#: application/views/station_profile/edit.php:401 +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 msgid "OQRS Enabled" msgstr "" -#: application/views/station_profile/create.php:290 -#: application/views/station_profile/edit.php:408 +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 msgid "OQRS Email alert" msgstr "" -#: application/views/station_profile/create.php:295 -#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 msgid "Make sure email is set up under admin and global options." msgstr "" -#: application/views/station_profile/create.php:298 -#: application/views/station_profile/edit.php:416 +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 msgid "OQRS Text" msgstr "" -#: application/views/station_profile/create.php:300 -#: application/views/station_profile/edit.php:418 +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 msgid "Some info you want to add regarding QSL'ing." msgstr "" -#: application/views/station_profile/edit.php:122 +#: application/views/station_profile/edit.php:149 msgid "Zones" msgstr "" -#: application/views/station_profile/edit.php:257 +#: application/views/station_profile/edit.php:284 msgid "Signature" msgstr "" -#: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:95 -msgid "" -"Station Locations define operating locations, such as your QTH, a friends " -"QTH, or a portable station." -msgstr "" - -#: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:96 -msgid "Similar to logbooks, a station profile keeps a set of QSOs together." -msgstr "" - -#: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:97 -msgid "" -"Only one station may be active at a time. In the table below this is shown " -"with the -Active Station- badge." -msgstr "" - -#: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:101 -msgid "Create a Station Location" -msgstr "" - -#: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:105 -msgid "" -"Attention: You need to set an active station location. Go to Callsign-" -">Station Location to select one." -msgstr "" - -#: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:111 -msgid "" -"Due to recent changes within Wavelog you need to reassign QSOs to your " -"station profiles." -msgstr "" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Maintenance" -msgstr "" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Please reassign them at " -msgstr "" - -#: application/views/station_profile/index.php:41 -#: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:122 -msgid "Profile Name" -msgstr "" - #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "" @@ -9422,6 +10216,11 @@ msgstr "" msgid "Link Location" msgstr "" +#: application/views/stationsetup/linkedlocations.php:31 +#: application/views/stationsetup/stationsetup.php:122 +msgid "Profile Name" +msgstr "" + #: application/views/stationsetup/linkedlocations.php:34 msgid "Unlink Station Location" msgstr "" @@ -9446,12 +10245,52 @@ msgstr "" msgid "Station Locations" msgstr "" +#: application/views/stationsetup/stationsetup.php:95 +msgid "" +"Station Locations define operating locations, such as your QTH, a friends " +"QTH, or a portable station." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:96 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:97 +msgid "" +"Only one station may be active at a time. In the table below this is shown " +"with the -Active Station- badge." +msgstr "" + #: application/views/stationsetup/stationsetup.php:98 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." msgstr "" +#: application/views/stationsetup/stationsetup.php:101 +msgid "Create a Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:105 +msgid "" +"Attention: You need to set an active station location. Go to Callsign-" +">Station Location to select one." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:111 +msgid "" +"Due to recent changes within Wavelog you need to reassign QSOs to your " +"station profiles." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Maintenance" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Please reassign them at " +msgstr "" + #: application/views/stationsetup/stationsetup.php:127 msgid "Linked" msgstr "" @@ -9668,9 +10507,10 @@ msgid "4. Step" msgstr "" #: application/views/themes/index.php:73 +#, php-format msgid "" "Click here on 'Add a Theme' and type in the necessary data. Type in the " -"filenames for the logos without the file extension '.png'" +"filenames for the logos %swithout%s the file extension '.png'" msgstr "" #: application/views/themes/index.php:83 @@ -9733,6 +10573,10 @@ msgstr "" msgid "Update DXCC Data" msgstr "" +#: application/views/update/index.php:30 +msgid "Status:" +msgstr "" + #: application/views/update/index.php:34 msgid "Apply DXCC Data to Logbook" msgstr "" @@ -9746,36 +10590,43 @@ msgid "" "\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." msgstr "" -#: application/views/update/index.php:40 +#: application/views/update/index.php:45 msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:54 application/views/update/index.php:95 msgid "Re-check all QSOs in logbook" msgstr "" -#: application/views/update/index.php:45 +#: application/views/update/index.php:59 msgid "Apply Continent Data to Logbook" msgstr "" -#: application/views/update/index.php:47 +#: application/views/update/index.php:61 msgid "" "This function can be used to update QSO continent information for all QSOs " "in Wavelog missing that information." msgstr "" -#: application/views/update/index.php:49 +#: application/views/update/index.php:68 msgid "Check QSOs missing continent data" msgstr "" -#: application/views/update/index.php:59 +#: application/views/update/index.php:80 msgid "Here you can update QSOs with missing distance information." msgstr "" -#: application/views/update/index.php:60 +#: application/views/update/index.php:86 msgid "Update distance data" msgstr "" +#: application/views/update/index.php:89 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" + #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "" @@ -9805,13 +10656,13 @@ msgid "General Information" msgstr "" #: application/views/user/edit.php:52 application/views/user/login.php:58 -#: application/views/user/login.php:67 application/views/user/login.php:68 +#: application/views/user/login.php:69 application/views/user/login.php:70 #: application/views/user/profile.php:14 msgid "Username" msgstr "" #: application/views/user/edit.php:64 application/views/user/login.php:59 -#: application/views/user/login.php:71 application/views/user/login.php:72 +#: application/views/user/login.php:73 application/views/user/login.php:74 #: application/views/user/reset_password.php:21 #: application/views/user/reset_password.php:23 #: application/views/user/reset_password.php:30 @@ -9854,10 +10705,6 @@ msgstr "" msgid "Choose Wavelog language." msgstr "" -#: application/views/user/edit.php:179 -msgid "Timezone" -msgstr "" - #: application/views/user/edit.php:187 msgid "Date Format" msgstr "" @@ -10191,6 +11038,122 @@ msgstr "" msgid "You can reset your password here." msgstr "" +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "" + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "" + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "" @@ -10205,96 +11168,17 @@ msgstr "" #: application/views/user/login.php:60 #, php-format -msgid "" -"More Information about Wavelog on Github." +msgid "More Information about Wavelog on %sGithub%s." msgstr "" -#: application/views/user/login.php:77 +#: application/views/user/login.php:79 msgid "Forgot your password?" msgstr "" -#: application/views/user/login.php:83 +#: application/views/user/login.php:85 msgid "Keep me logged in" msgstr "" -#: application/views/user/main.php:2 -msgid "Do you really want to send this user a password-reset link?" -msgstr "" - -#: application/views/user/main.php:6 -msgid "Please Wait ..." -msgstr "" - -#: application/views/user/main.php:9 -msgid "Password-reset e-mail sent to user:" -msgstr "" - -#: application/views/user/main.php:30 -msgid "User List" -msgstr "" - -#: application/views/user/main.php:33 -msgid "Wavelog needs at least one user configured in order to operate." -msgstr "" - -#: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" - -#: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "" - -#: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." -msgstr "" - -#: application/views/user/main.php:38 -msgid "Create user" -msgstr "" - -#: application/views/user/main.php:39 -msgid "Refresh List" -msgstr "" - -#: application/views/user/main.php:49 -msgid "Type" -msgstr "" - -#: application/views/user/main.php:50 -msgid "Last seen" -msgstr "" - -#: application/views/user/main.php:53 -msgid "Password Reset" -msgstr "" - -#: application/views/user/main.php:79 -msgid "Never" -msgstr "" - -#: application/views/user/main.php:83 -msgid "Locations" -msgstr "" - -#: application/views/user/main.php:85 -msgid "Logbooks" -msgstr "" - -#: application/views/user/main.php:87 -msgid "Last QSO:" -msgstr "" - -#: application/views/user/main.php:89 -msgid "No QSOs in Log" -msgstr "" - #: application/views/user/profile.php:19 msgid "Level" msgstr "" @@ -10344,118 +11228,118 @@ msgstr "Dettagli QSO" msgid "QSL Management" msgstr "Gestione QSL" -#: application/views/view_log/qso.php:128 +#: application/views/view_log/qso.php:131 msgid "Total Distance" msgstr "Distanza Totale" -#: application/views/view_log/qso.php:221 +#: application/views/view_log/qso.php:224 msgid "Antenna Azimuth" msgstr "" -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:231 msgid "Antenna Elevation" msgstr "" -#: application/views/view_log/qso.php:370 +#: application/views/view_log/qso.php:373 msgid "QSL Card has been sent via the bureau" msgstr "La cartolina QSL è stata inviata via bureau" -#: application/views/view_log/qso.php:372 +#: application/views/view_log/qso.php:375 msgid "QSL Card has been sent via direct" msgstr "La cartolina QSL è stata inviata via diretta" -#: application/views/view_log/qso.php:374 +#: application/views/view_log/qso.php:377 msgid "QSL Card has been sent electronically" msgstr "" -#: application/views/view_log/qso.php:376 +#: application/views/view_log/qso.php:379 msgid "QSL Card has been sent via manager" msgstr "" -#: application/views/view_log/qso.php:378 +#: application/views/view_log/qso.php:381 msgid "QSL Card has been sent" msgstr "" -#: application/views/view_log/qso.php:387 +#: application/views/view_log/qso.php:390 msgid "QSL Card has been received via the bureau" msgstr "La cartolina QSL è stata ricevuta via bureau" -#: application/views/view_log/qso.php:389 +#: application/views/view_log/qso.php:392 msgid "QSL Card has been received via direct" msgstr "La cartolina QSL è stata ricevuta via diretta" -#: application/views/view_log/qso.php:391 +#: application/views/view_log/qso.php:394 msgid "QSL Card has been received electronically" msgstr "" -#: application/views/view_log/qso.php:393 +#: application/views/view_log/qso.php:396 msgid "QSL Card has been received via manager" msgstr "" -#: application/views/view_log/qso.php:395 +#: application/views/view_log/qso.php:398 msgid "QSL Card has been received" msgstr "" -#: application/views/view_log/qso.php:404 +#: application/views/view_log/qso.php:407 msgid "This station uses LoTW." msgstr "" -#: application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:414 -#: application/views/view_log/qso.php:419 -#: application/views/view_log/qso.php:424 +#: application/views/view_log/qso.php:412 +#: application/views/view_log/qso.php:417 +#: application/views/view_log/qso.php:422 +#: application/views/view_log/qso.php:427 msgid "This QSO was confirmed on" msgstr "Questo QSO è stato confermato il" -#: application/views/view_log/qso.php:435 +#: application/views/view_log/qso.php:438 msgid "More QSOs" msgstr "" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:506 msgid "Details" msgstr "" -#: application/views/view_log/qso.php:630 +#: application/views/view_log/qso.php:633 msgid "Uploaded QSL Card front image" msgstr "Carica immagine fronte cartolina QSL" -#: application/views/view_log/qso.php:635 +#: application/views/view_log/qso.php:638 msgid "Upload QSL Card image" msgstr "Carica immagine cartolina QSL" -#: application/views/view_log/qso.php:640 +#: application/views/view_log/qso.php:643 msgid "Uploaded QSL Card back image" msgstr "Carica immagine retro cartolina QSL" -#: application/views/view_log/qso.php:656 +#: application/views/view_log/qso.php:659 msgid "Mark QSL Received (Electronic)" msgstr "Segna QSL Ricevuta (Elettronico)" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:665 msgid "Mark QSL Card Requested (Bureau)" msgstr "Segna QSL come richiesto (Bureau)" -#: application/views/view_log/qso.php:664 +#: application/views/view_log/qso.php:667 msgid "Mark QSL Card Requested (Direct)" msgstr "Segna QSL come richiesto (Diretta)" -#: application/views/view_log/qso.php:679 +#: application/views/view_log/qso.php:682 msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:242 msgid "CSV" msgstr "" -#: application/views/visitor/layout/header.php:75 +#: application/views/visitor/layout/header.php:74 msgid "OQRS" msgstr "" -#: application/views/visitor/layout/header.php:83 +#: application/views/visitor/layout/header.php:82 msgid "Visit Wavelog on Github" msgstr "" -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Please enter a callsign!" msgstr "" @@ -10544,6 +11428,15 @@ msgstr "" msgid "Submit Request" msgstr "" +#~ msgid "Key Disabled" +#~ msgstr "Chiave disattivata" + +#~ msgid "No Key Found" +#~ msgstr "Nessuna chiave trovata" + +#~ msgid "Key Invalid - either not found or disabled" +#~ msgstr "Chiave invalida - disattivata o inesistente" + #~ msgid "en-GB" #~ msgstr "it-IT" diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.mo b/application/locale/nl_NL/LC_MESSAGES/messages.mo index 05fd759b0..ac9726cb5 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 c04a60b15..729f17838 100644 --- a/application/locale/nl_NL/LC_MESSAGES/messages.po +++ b/application/locale/nl_NL/LC_MESSAGES/messages.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-09 07:24+0000\n" -"PO-Revision-Date: 2024-07-25 07:32+0000\n" -"Last-Translator: Casper van Lieburg \n" +"POT-Creation-Date: 2024-09-07 07:18+0000\n" +"PO-Revision-Date: 2024-08-17 10:47+0000\n" +"Last-Translator: Anonymous \n" "Language-Team: Dutch \n" "Language: nl_NL\n" @@ -18,8 +18,102 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.6.2\n" -#: application/controllers/Accumulated.php:21 -#: application/views/interface_assets/header.php:150 +#: application/controllers/Accumulated.php:12 +#: application/controllers/Activators.php:13 +#: application/controllers/Activatorsmap.php:13 +#: application/controllers/Adif.php:13 application/controllers/Awards.php:16 +#: application/controllers/Backup.php:13 application/controllers/Backup.php:26 +#: application/controllers/Backup.php:63 application/controllers/Band.php:15 +#: application/controllers/Bandmap.php:9 +#: application/controllers/Cabrillo.php:16 +#: application/controllers/Cabrillo.php:53 +#: application/controllers/Cabrillo.php:80 +#: application/controllers/Cabrillo.php:135 +#: application/controllers/Calltester.php:11 +#: application/controllers/Cfdexport.php:18 +#: application/controllers/Cfdexport.php:29 +#: application/controllers/Components.php:13 +#: application/controllers/Contestcalendar.php:15 +#: application/controllers/Contesting.php:14 +#: application/controllers/Cron.php:26 application/controllers/Cron.php:162 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: application/controllers/Distancerecords.php:11 +#: application/controllers/Distances.php:11 +#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29 +#: application/controllers/Dxatlas.php:51 +#: application/controllers/Dxatlas.php:108 +#: application/controllers/Dxcalendar.php:8 +#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23 +#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 +#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 +#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:353 +#: application/controllers/Eqsl.php:420 application/controllers/Eqsl.php:436 +#: application/controllers/Eqsl.php:497 application/controllers/Hamsat.php:13 +#: application/controllers/Kmlexport.php:18 +#: application/controllers/Kmlexport.php:33 +#: application/controllers/Labels.php:26 +#: application/controllers/Logbookadvanced.php:16 +#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 +#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 +#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 +#: application/controllers/Notes.php:10 application/controllers/Options.php:15 +#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 +#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 +#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 +#: application/controllers/Qso.php:9 application/controllers/Qso.php:19 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:600 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Reg1test.php:18 +#: application/controllers/Reg1test.php:63 +#: application/controllers/Reg1test.php:102 +#: application/controllers/Reg1test.php:130 +#: application/controllers/Reg1test.php:164 +#: application/controllers/Satellite.php:18 +#: application/controllers/Satellite.php:37 +#: application/controllers/Satellite.php:44 +#: application/controllers/Satellite.php:53 +#: application/controllers/Satellite.php:72 +#: application/controllers/Satellite.php:87 +#: application/controllers/Satellite.php:95 +#: application/controllers/Satellite.php:103 +#: application/controllers/Satellite.php:117 +#: application/controllers/Satellite.php:135 +#: application/controllers/Satellite.php:146 +#: application/controllers/Satellite.php:162 +#: application/controllers/Satellite.php:190 +#: application/controllers/Satellite.php:201 +#: application/controllers/Satellite.php:223 +#: application/controllers/Satellite.php:236 +#: application/controllers/Satellite.php:244 +#: application/controllers/Sattimers.php:9 +#: application/controllers/Search.php:13 +#: application/controllers/Simplefle.php:7 +#: application/controllers/Station.php:17 +#: application/controllers/Stationsetup.php:15 +#: application/controllers/Themes.php:17 +#: application/controllers/Timeline.php:10 +#: application/controllers/Timeplotter.php:11 +#: application/controllers/Update.php:24 application/controllers/Update.php:273 +#: application/controllers/Update.php:284 +#: application/controllers/Update.php:295 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 +#: application/controllers/User_options.php:9 +msgid "You're not allowed to do that!" +msgstr "" + +#: application/controllers/Accumulated.php:19 +#: application/views/interface_assets/header.php:152 msgid "Accumulated Statistics" msgstr "Opgetelde statistieken" @@ -29,24 +123,26 @@ msgid "Activated Gridsquare Map" msgstr "Geaktiveerde Gridsquare Kaart" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:910 -#: application/controllers/Awards.php:942 +#: application/controllers/Awards.php:919 +#: application/controllers/Awards.php:951 #: application/controllers/Gridmap.php:31 -#: application/controllers/Visitor.php:374 -#: application/views/activators/index.php:101 +#: application/controllers/Visitor.php:385 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: application/views/visitor/layout/footer.php:22 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "Gridsquares" #: application/controllers/Activated_gridmap.php:32 #: application/controllers/Gridmap.php:32 -#: application/controllers/Visitor.php:375 +#: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "Gridsquares bevestigd" #: application/controllers/Activated_gridmap.php:33 #: application/controllers/Gridmap.php:33 -#: application/controllers/Visitor.php:376 +#: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "Gridsquares niet bevestigd" @@ -55,12 +151,13 @@ msgid "Total gridsquares activated" msgstr "Totaal Gridsquares geactiveerd" #: application/controllers/Activators.php:20 -#: application/views/activators/index.php:2 +#: application/views/activators/index.php:5 #: application/views/interface_assets/header.php:142 msgid "Gridsquare Activators" msgstr "Gridsquares acticators" #: application/controllers/Activatorsmap.php:17 +#: application/views/activators/index.php:2 msgid "Activators Map" msgstr "Geactiveerde Kaart" @@ -77,7 +174,7 @@ msgid "ADIF Export" msgstr "ADIF Export" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:388 msgid "ADIF Import / Export" msgstr "ADIF Import / Export" @@ -90,20 +187,25 @@ msgstr "ADIF Import" msgid "Unsupported Filetype" msgstr "File soorten niet ondersteund" -#: application/controllers/Adif.php:245 +#: application/controllers/Adif.php:240 +#: application/views/adif/import_failed.php:12 +msgid "ADIF Import failed!" +msgstr "" + +#: application/controllers/Adif.php:254 msgid "Station Profile not valid for User" msgstr "Stations beschrijving niet gecontroleerd voor gebruiker" -#: application/controllers/Adif.php:252 +#: application/controllers/Adif.php:261 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "ADIF geimporteerd" -#: application/controllers/Adif.php:263 +#: application/controllers/Adif.php:272 msgid "DCL Import" msgstr "DCL import" -#: application/controllers/Adif.php:319 +#: application/controllers/Adif.php:328 msgid "DCL Data Imported" msgstr "DCL Data geimporteerd" @@ -133,25 +235,8 @@ msgstr "API leutel %s beschrijving is gewijzigd" msgid "API Key %s has been deleted" msgstr "" -#: application/controllers/Api.php:118 -msgid "Key Disabled" -msgstr "" - -#: application/controllers/Api.php:118 -msgid "No Key Found" -msgstr "" - -#: application/controllers/Api.php:120 -msgid "Key Invalid - either not found or disabled" -msgstr "" - -#: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 -msgid "Valid" -msgstr "" - #: application/controllers/Awards.php:22 -#: application/views/interface_assets/header.php:158 +#: application/views/interface_assets/header.php:160 #: application/views/qso/edit_ajax.php:35 msgid "Awards" msgstr "" @@ -166,12 +251,13 @@ msgstr "" #: application/controllers/Awards.php:652 #: application/controllers/Awards.php:714 #: application/controllers/Awards.php:776 -#: application/controllers/Awards.php:847 -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:930 -#: application/controllers/Awards.php:1125 -#: application/controllers/Awards.php:1615 -#: application/controllers/Awards.php:1755 +#: application/controllers/Awards.php:856 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:939 +#: application/controllers/Awards.php:1140 +#: application/controllers/Awards.php:1639 +#: application/controllers/Awards.php:1779 +#: application/controllers/Awards.php:1908 #, php-format msgid "Awards - %s" msgstr "" @@ -179,13 +265,13 @@ msgstr "" #: application/controllers/Awards.php:92 #: application/views/awards/dok/index.php:149 #: application/views/bands/index.php:47 -#: application/views/contesting/index.php:170 -#: application/views/interface_assets/header.php:194 -#: application/views/logbookadvanced/index.php:613 +#: application/views/contesting/index.php:53 +#: application/views/interface_assets/header.php:198 +#: application/views/logbookadvanced/index.php:641 #: application/views/logbookadvanced/useroptions.php:130 -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:264 -#: application/views/qso/index.php:508 application/views/user/edit.php:603 -#: application/views/view_log/qso.php:351 +#: application/views/qso/edit_ajax.php:388 application/views/qso/index.php:264 +#: application/views/qso/index.php:518 application/views/user/edit.php:603 +#: application/views/view_log/qso.php:354 msgid "DOK" msgstr "" @@ -193,15 +279,15 @@ msgstr "" #: application/views/bandmap/list.php:112 application/views/bands/index.php:48 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 -#: application/views/interface_assets/header.php:164 +#: application/views/interface_assets/header.php:166 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:145 -#: application/views/logbookadvanced/index.php:580 +#: application/views/logbookadvanced/index.php:156 +#: application/views/logbookadvanced/index.php:608 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 -#: application/views/lotw_views/index.php:40 +#: application/views/lotw_views/index.php:36 #: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 #: application/views/search/cqzones_result.php:15 #: application/views/search/result.php:27 @@ -216,12 +302,12 @@ msgid "Awards - WAJA" msgstr "" #: application/controllers/Awards.php:327 application/views/bands/index.php:51 -#: application/views/interface_assets/header.php:210 +#: application/views/interface_assets/header.php:214 msgid "JCC" msgstr "" #: application/controllers/Awards.php:375 application/views/bands/index.php:57 -#: application/views/interface_assets/header.php:170 +#: application/views/interface_assets/header.php:172 msgid "VUCC" msgstr "" @@ -230,15 +316,20 @@ msgid "Log View - VUCC" msgstr "" #: application/controllers/Awards.php:453 -#: application/controllers/Timeline.php:92 -#: application/controllers/Timeline.php:95 -#: application/controllers/Timeline.php:98 -#: application/controllers/Timeline.php:101 -#: application/controllers/Timeline.php:104 -#: application/controllers/Timeline.php:107 +#: application/controllers/Distancerecords.php:59 +#: application/controllers/Timeline.php:105 +#: application/controllers/Timeline.php:108 +#: application/controllers/Timeline.php:111 +#: application/controllers/Timeline.php:114 +#: application/controllers/Timeline.php:117 +#: application/controllers/Timeline.php:120 msgid "Log View" msgstr "" +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr "" + #: application/controllers/Awards.php:457 msgid " and sat " msgstr "" @@ -260,12 +351,12 @@ msgid " and " msgstr "" #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1289 #: application/views/awards/index.php:8 application/views/bands/index.php:55 #: application/views/dashboard/index.php:9 -#: application/views/interface_assets/header.php:178 -#: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:259 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -273,10 +364,10 @@ msgstr "" #: application/views/qslcard/searchresult.php:49 #: application/views/qslcard/searchresult.php:65 #: application/views/qslcard/searchresult.php:81 -#: application/views/qso/components/previous_contacts.php:83 -#: application/views/qso/edit_ajax.php:336 +#: application/views/qso/components/previous_contacts.php:82 +#: application/views/qso/edit_ajax.php:363 #: application/views/search/search_result_ajax.php:9 -#: application/views/station_profile/edit.php:216 +#: application/views/station_profile/edit.php:243 #: application/views/user/edit.php:234 application/views/user/edit.php:256 #: application/views/user/edit.php:278 application/views/user/edit.php:300 #: application/views/user/edit.php:323 @@ -286,18 +377,18 @@ msgid "SOTA" msgstr "" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1290 #: application/views/bands/index.php:60 #: application/views/dashboard/index.php:10 -#: application/views/interface_assets/header.php:172 -#: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:279 +#: application/views/interface_assets/header.php:176 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/index.php:290 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 -#: application/views/qso/components/previous_contacts.php:84 -#: application/views/qso/edit_ajax.php:341 +#: application/views/qso/components/previous_contacts.php:83 +#: application/views/qso/edit_ajax.php:368 #: application/views/search/search_result_ajax.php:10 -#: application/views/station_profile/edit.php:229 +#: application/views/station_profile/edit.php:256 #: application/views/user/edit.php:235 application/views/user/edit.php:257 #: application/views/user/edit.php:279 application/views/user/edit.php:301 #: application/views/user/edit.php:324 @@ -306,18 +397,18 @@ msgid "WWFF" msgstr "" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1291 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 -#: application/views/interface_assets/header.php:182 +#: application/views/interface_assets/header.php:186 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:274 +#: application/views/logbookadvanced/index.php:623 #: application/views/logbookadvanced/useroptions.php:106 -#: application/views/qso/components/previous_contacts.php:85 -#: application/views/qso/edit_ajax.php:346 +#: application/views/qso/components/previous_contacts.php:84 +#: application/views/qso/edit_ajax.php:373 #: application/views/search/search_result_ajax.php:11 -#: application/views/station_profile/edit.php:242 +#: application/views/station_profile/edit.php:269 #: application/views/user/edit.php:236 application/views/user/edit.php:258 #: application/views/user/edit.php:280 application/views/user/edit.php:302 #: application/views/user/edit.php:325 @@ -336,7 +427,7 @@ msgid "Worked All States (WAS)" msgstr "" #: application/controllers/Awards.php:714 application/views/bands/index.php:53 -#: application/views/interface_assets/header.php:188 +#: application/views/interface_assets/header.php:192 msgid "RAC" msgstr "" @@ -344,74 +435,80 @@ msgstr "" msgid "H26" msgstr "" -#: application/controllers/Awards.php:847 +#: application/controllers/Awards.php:856 msgid "IOTA (Island On The Air)" msgstr "" -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:872 -#: application/views/interface_assets/header.php:230 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 +#: application/views/interface_assets/header.php:234 msgid "US Counties" msgstr "" -#: application/controllers/Awards.php:887 +#: application/controllers/Awards.php:896 msgid "Log View - Counties" msgstr "" -#: application/controllers/Awards.php:894 +#: application/controllers/Awards.php:903 msgid "Awards - " msgstr "" -#: application/controllers/Awards.php:911 -#: application/controllers/Awards.php:943 +#: application/controllers/Awards.php:920 +#: application/controllers/Awards.php:952 msgid "Gridsquares worked" msgstr "" -#: application/controllers/Awards.php:912 -#: application/controllers/Awards.php:944 +#: application/controllers/Awards.php:921 +#: application/controllers/Awards.php:953 msgid "Gridsquares confirmed on LoTW" msgstr "" -#: application/controllers/Awards.php:913 -#: application/controllers/Awards.php:945 +#: application/controllers/Awards.php:922 +#: application/controllers/Awards.php:954 msgid "Gridsquares confirmed by paper QSL" msgstr "" -#: application/controllers/Awards.php:930 +#: application/controllers/Awards.php:939 msgid "Fred Fish Memorial Award (FFMA)" msgstr "" -#: application/controllers/Awards.php:1125 -#: application/views/interface_assets/header.php:168 +#: application/controllers/Awards.php:1140 +#: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "" -#: application/controllers/Awards.php:1143 +#: application/controllers/Awards.php:1158 msgid "Awards - SIG - " msgstr "" -#: application/controllers/Awards.php:1755 -#: application/views/awards/itu/index.php:18 +#: application/controllers/Awards.php:1779 +#: application/views/awards/itu/index.php:20 msgid "ITU Zones" msgstr "" +#: application/controllers/Awards.php:1908 +#: application/views/awards/wac/index.php:8 +#: application/views/interface_assets/header.php:174 +msgid "Worked All Continents (WAC)" +msgstr "" + #: application/controllers/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:284 msgid "Backup" msgstr "" -#: application/controllers/Backup.php:48 +#: application/controllers/Backup.php:50 msgid "ADIF - Backup" msgstr "" -#: application/controllers/Backup.php:80 +#: application/controllers/Backup.php:84 msgid "Notes - Backup" msgstr "" #: application/controllers/Band.php:25 application/views/bands/index.php:28 #: application/views/bands/index.php:32 -#: application/views/interface_assets/header.php:379 +#: application/views/interface_assets/header.php:383 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -427,8 +524,8 @@ msgstr "" #: application/controllers/Bandmap.php:28 #: application/controllers/Bandmap.php:69 -#: application/controllers/Options.php:137 -#: application/controllers/Options.php:148 +#: application/controllers/Options.php:145 +#: application/controllers/Options.php:156 #: application/views/options/sidebar.php:10 msgid "DXCluster" msgstr "" @@ -438,7 +535,7 @@ msgid "Export Cabrillo" msgstr "" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:396 +#: application/views/interface_assets/header.php:402 msgid "CFD Export" msgstr "" @@ -455,7 +552,7 @@ msgid "No user has configured Clublog." msgstr "" #: application/controllers/Contestcalendar.php:19 -#: application/views/interface_assets/header.php:247 +#: application/views/interface_assets/header.php:251 msgid "Contest Calendar" msgstr "" @@ -464,38 +561,62 @@ msgstr "" msgid "Contest Logging" msgstr "" -#: application/controllers/Contesting.php:112 -#: application/views/interface_assets/header.php:274 +#: application/controllers/Contesting.php:113 +#: application/views/interface_assets/header.php:278 msgid "Contests" msgstr "" -#: application/controllers/Contesting.php:126 +#: application/controllers/Contesting.php:127 msgid "Update Contest" msgstr "" #: application/controllers/Continents.php:25 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:57 -#: application/views/interface_assets/header.php:154 +#: application/views/interface_assets/header.php:156 msgid "Continents" msgstr "" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:284 +#: application/views/interface_assets/header.php:288 msgid "Cron Manager" msgstr "" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:154 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "" +#: application/controllers/Cron.php:274 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:278 +#, php-format +msgid "" +"Last run occurred more than %s seconds ago.%sPlease check your master cron! " +"It should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:281 +#, php-format +msgid "" +"Last run occurred more than %s minutes ago.%sSeems like your Mastercron " +"isn't running!%sIt should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:286 application/views/cron/index.php:29 +msgctxt "Master Cron" +msgid "Not running" +msgstr "" + #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:392 +#: application/views/interface_assets/header.php:396 msgid "SOTA CSV Export" msgstr "" -#: application/controllers/Dashboard.php:108 -#: application/controllers/Visitor.php:132 +#: application/controllers/Dashboard.php:123 +#: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "" @@ -542,6 +663,12 @@ msgstr "" msgid "File Migration failed. Please check the Error Log." msgstr "" +#: application/controllers/Distancerecords.php:42 +#: application/controllers/Distancerecords.php:59 +#: application/views/interface_assets/header.php:146 +msgid "Satellite Distance Records" +msgstr "" + #: application/controllers/Distances.php:17 #: application/views/distances/index.php:5 #: application/views/distances/index.php:8 @@ -549,27 +676,31 @@ msgstr "" msgid "Distances Worked" msgstr "" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 #: application/views/distances/index.php:15 msgid "QSOs with" msgstr "" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 msgid "and band" msgstr "" +#: application/controllers/Distances.php:83 +msgid "and propagation" +msgstr "" + #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:394 msgid "DX Atlas Gridsquare Export" msgstr "" #: application/controllers/Dxcalendar.php:10 -#: application/views/interface_assets/header.php:245 +#: application/views/interface_assets/header.php:249 msgid "DX Calendar" msgstr "" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:325 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -587,19 +718,19 @@ msgstr "" msgid "eQSL QSO Upload" msgstr "" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:424 msgid "eQSL Tools" msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid " / Errors: " msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid "Successfully downloaded: " msgstr "" -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:481 msgid "eQSL Card Image Download" msgstr "" @@ -609,7 +740,7 @@ msgid "Gridsquare Map" msgstr "" #: application/controllers/Gridmap.php:34 -#: application/controllers/Visitor.php:377 +#: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "" @@ -629,7 +760,7 @@ msgid "No QSOs found to upload." msgstr "" #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:392 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "" @@ -642,59 +773,59 @@ msgstr "" msgid "Create Label Type" msgstr "" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:402 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:406 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:403 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:407 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 #: application/views/labels/index.php:76 msgid "Paper Type" msgstr "" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:404 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:408 #: application/views/labels/index.php:42 application/views/labels/index.php:77 msgid "Measurement" msgstr "" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:405 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:409 msgid "Top Margin" msgstr "" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:406 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:410 msgid "Left Margin" msgstr "" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:407 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:411 msgid "QSLs Horizontally" msgstr "" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:408 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:412 msgid "QSLs Vertically" msgstr "" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:409 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:413 msgid "Horizontal Space" msgstr "" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:410 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:414 msgid "Vertical Space" msgstr "" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:411 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:415 msgid "Label width" msgstr "" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:412 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:416 msgid "Label height" msgstr "" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:413 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:417 msgid "Size of Font" msgstr "" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:414 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:418 msgid "Number of QSOs on label" msgstr "" @@ -703,22 +834,22 @@ msgid "Create Paper Type" msgstr "" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:461 +#: application/controllers/Labels.php:465 msgid "Paper Name" msgstr "" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:462 +#: application/controllers/Labels.php:466 msgid "Paper Width" msgstr "" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:463 +#: application/controllers/Labels.php:467 msgid "Paper Height" msgstr "" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:471 +#: application/controllers/Labels.php:475 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -745,27 +876,27 @@ msgstr "" msgid "0 QSOs found for print!" msgstr "" -#: application/controllers/Labels.php:391 +#: application/controllers/Labels.php:395 msgid "Edit Label" msgstr "" -#: application/controllers/Labels.php:420 +#: application/controllers/Labels.php:424 msgid "Label was saved." msgstr "" -#: application/controllers/Labels.php:428 +#: application/controllers/Labels.php:432 msgid "Label was deleted." msgstr "" -#: application/controllers/Labels.php:450 +#: application/controllers/Labels.php:454 msgid "Edit Paper" msgstr "" -#: application/controllers/Labels.php:475 +#: application/controllers/Labels.php:479 msgid "Paper was saved." msgstr "" -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "Paper was deleted." msgstr "" @@ -787,20 +918,20 @@ msgstr "" msgid "Logbook" msgstr "Logboek" -#: application/controllers/Logbook.php:653 -#: application/controllers/Logbook.php:668 +#: application/controllers/Logbook.php:657 +#: application/controllers/Logbook.php:672 #: application/views/activated_gridmap/index.php:58 #: application/views/awards/dok/index.php:55 #: application/views/awards/dxcc/index.php:61 -#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/helvetia/index.php:55 #: application/views/awards/jcc/index.php:52 -#: application/views/awards/rac/index.php:45 +#: application/views/awards/rac/index.php:47 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:72 -#: application/views/awards/waja/index.php:53 -#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:55 +#: application/views/awards/was/index.php:55 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:568 +#: application/views/logbookadvanced/index.php:596 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -813,20 +944,21 @@ msgstr "Logboek" msgid "QSL" msgstr "" -#: application/controllers/Logbook.php:656 +#: application/controllers/Logbook.php:660 #: application/views/activated_gridmap/index.php:66 -#: application/views/awards/cq/index.php:58 +#: application/views/awards/cq/index.php:60 #: application/views/awards/dok/index.php:59 #: application/views/awards/dxcc/index.php:65 -#: application/views/awards/helvetia/index.php:57 -#: application/views/awards/itu/index.php:58 +#: application/views/awards/helvetia/index.php:59 +#: application/views/awards/itu/index.php:60 #: application/views/awards/jcc/index.php:56 -#: application/views/awards/rac/index.php:49 +#: application/views/awards/rac/index.php:51 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:80 -#: application/views/awards/waja/index.php:57 -#: application/views/awards/was/index.php:57 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -834,28 +966,29 @@ msgstr "" #: application/views/qslprint/qsolist.php:21 #: application/views/qslprint/qsolist.php:167 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:384 +#: application/views/qso/edit_ajax.php:411 #: application/views/search/result_search.php:22 #: application/views/search/search_result_ajax.php:298 #: application/views/search/search_result_ajax.php:313 #: application/views/timeline/index.php:60 application/views/user/edit.php:563 -#: application/views/user/edit.php:659 application/views/view_log/qso.php:408 +#: application/views/user/edit.php:659 application/views/view_log/qso.php:411 msgid "LoTW" msgstr "" -#: application/controllers/Logbook.php:659 +#: application/controllers/Logbook.php:663 #: application/views/activated_gridmap/index.php:74 -#: application/views/awards/cq/index.php:62 +#: application/views/awards/cq/index.php:64 #: application/views/awards/dok/index.php:63 #: application/views/awards/dxcc/index.php:69 -#: application/views/awards/helvetia/index.php:61 -#: application/views/awards/itu/index.php:62 +#: application/views/awards/helvetia/index.php:63 +#: application/views/awards/itu/index.php:64 #: application/views/awards/jcc/index.php:60 -#: application/views/awards/rac/index.php:53 +#: application/views/awards/rac/index.php:55 #: application/views/awards/wab/index.php:88 -#: application/views/awards/waja/index.php:61 -#: application/views/awards/was/index.php:61 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:52 +#: application/views/awards/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:117 #: application/views/logbookadvanced/useroptions.php:70 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 @@ -863,63 +996,67 @@ msgstr "" #: application/views/qslprint/qsolist.php:18 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:151 -#: application/views/qso/edit_ajax.php:381 +#: application/views/qso/edit_ajax.php:408 #: application/views/search/result_search.php:16 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:273 -#: application/views/station_profile/edit.php:278 +#: application/views/station_profile/edit.php:305 #: application/views/timeline/index.php:64 application/views/user/edit.php:564 #: application/views/user/edit.php:667 application/views/user/edit.php:731 msgid "eQSL" msgstr "" -#: application/controllers/Logbook.php:665 +#: application/controllers/Logbook.php:669 #: application/views/awards/dok/index.php:71 #: application/views/awards/dxcc/index.php:77 #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 -#: application/views/awards/waja/index.php:69 +#: application/views/awards/waja/index.php:71 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 -#: application/views/station_profile/edit.php:325 +#: application/views/station_profile/edit.php:352 +#: application/views/timeline/index.php:68 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 -#: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/partial/log_ajax.php:85 +#: application/views/view_log/qso.php:426 msgid "Clublog" msgstr "" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1284 #: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:39 #: application/views/adif/dcl_success.php:33 -#: application/views/awards/cq/index.php:86 +#: application/views/awards/cq/index.php:88 #: application/views/awards/dok/index.php:91 #: application/views/awards/dxcc/index.php:162 -#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/helvetia/index.php:87 #: application/views/awards/iota/index.php:105 -#: application/views/awards/itu/index.php:86 +#: application/views/awards/itu/index.php:88 #: application/views/awards/jcc/index.php:88 -#: application/views/awards/rac/index.php:77 +#: application/views/awards/rac/index.php:79 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:53 -#: application/views/awards/waja/index.php:89 -#: application/views/awards/was/index.php:85 +#: application/views/awards/wac/index.php:110 +#: application/views/awards/waja/index.php:91 +#: application/views/awards/was/index.php:87 #: application/views/components/hamsat/table.php:30 -#: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:203 +#: application/views/contesting/index.php:108 +#: application/views/contesting/index.php:250 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 +#: 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/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:170 -#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/index.php:181 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -936,14 +1073,14 @@ msgstr "" #: application/views/qslcard/searchresult.php:76 #: application/views/qslprint/qslprint.php:24 #: application/views/qslprint/qsolist.php:9 -#: application/views/qso/components/previous_contacts.php:78 +#: application/views/qso/components/previous_contacts.php:77 #: application/views/qso/edit_ajax.php:119 application/views/qso/index.php:136 #: application/views/satellite/index.php:24 #: application/views/search/cqzones_result.php:10 #: application/views/search/lotw_unconfirmed_result.php:8 #: application/views/search/result_search.php:7 #: application/views/search/search_result_ajax.php:4 -#: application/views/simplefle/index.php:144 +#: application/views/simplefle/index.php:150 #: application/views/statistics/custom.php:60 #: application/views/statistics/custom_result.php:62 #: application/views/statistics/custom_result.php:88 @@ -955,17 +1092,17 @@ msgstr "" #: application/views/user/edit.php:295 application/views/user/edit.php:318 #: application/views/view_log/partial/log.php:9 #: application/views/view_log/partial/log_ajax.php:4 -#: application/views/view_log/qso.php:104 application/views/visitor/index.php:6 +#: application/views/view_log/qso.php:107 application/views/visitor/index.php:6 #: application/views/widgets/qsos.php:29 msgid "Mode" msgstr "" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1285 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:111 -#: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:547 +#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:251 +#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -974,25 +1111,25 @@ msgstr "" #: application/views/qslcard/searchresult.php:77 #: application/views/qslprint/qslprint.php:26 #: application/views/qslprint/qsolist.php:11 -#: application/views/qso/components/previous_contacts.php:79 +#: application/views/qso/components/previous_contacts.php:78 #: application/views/qso/edit_ajax.php:142 application/views/qso/index.php:177 #: application/views/search/search_result_ajax.php:5 -#: application/views/simplefle/index.php:145 +#: application/views/simplefle/index.php:151 #: application/views/user/edit.php:230 application/views/user/edit.php:252 #: application/views/user/edit.php:274 application/views/user/edit.php:296 #: application/views/user/edit.php:319 #: application/views/view_log/partial/log.php:10 #: application/views/view_log/partial/log_ajax.php:5 -#: application/views/view_log/qso.php:109 application/views/visitor/index.php:9 +#: application/views/view_log/qso.php:112 application/views/visitor/index.php:9 msgid "RST (S)" msgstr "" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1286 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:550 +#: application/views/contesting/index.php:189 +#: application/views/contesting/index.php:252 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1001,51 +1138,50 @@ msgstr "" #: application/views/qslcard/searchresult.php:78 #: application/views/qslprint/qslprint.php:27 #: application/views/qslprint/qsolist.php:12 -#: application/views/qso/components/previous_contacts.php:80 +#: application/views/qso/components/previous_contacts.php:79 #: application/views/qso/edit_ajax.php:147 application/views/qso/index.php:182 #: application/views/search/search_result_ajax.php:6 -#: application/views/simplefle/index.php:146 +#: application/views/simplefle/index.php:152 #: application/views/user/edit.php:231 application/views/user/edit.php:253 #: application/views/user/edit.php:275 application/views/user/edit.php:297 #: application/views/user/edit.php:320 #: application/views/view_log/partial/log.php:11 #: application/views/view_log/partial/log_ajax.php:6 -#: application/views/view_log/qso.php:114 +#: application/views/view_log/qso.php:117 #: application/views/visitor/index.php:12 msgid "RST (R)" msgstr "" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1287 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 #: application/views/qslcard/searchresult.php:47 #: application/views/qslcard/searchresult.php:63 #: application/views/qslcard/searchresult.php:79 -#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/components/previous_contacts.php:80 #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 -#: application/views/station_profile/index.php:43 #: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 -#: application/views/timeline/index.php:118 application/views/user/edit.php:232 +#: application/views/timeline/index.php:151 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 #: application/views/user/edit.php:298 application/views/user/edit.php:321 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:235 -#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:238 +#: application/views/view_log/qso.php:531 #: application/views/visitor/index.php:15 msgid "Country" msgstr "Land" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1288 #: application/views/awards/iota/index.php:169 #: application/views/bands/index.php:50 application/views/dashboard/index.php:8 -#: application/views/interface_assets/header.php:180 +#: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1054,11 +1190,11 @@ msgstr "Land" #: application/views/qslcard/searchresult.php:48 #: application/views/qslcard/searchresult.php:64 #: application/views/qslcard/searchresult.php:80 -#: application/views/qso/components/previous_contacts.php:82 -#: application/views/qso/edit_ajax.php:318 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 -#: application/views/timeline/index.php:202 application/views/user/edit.php:233 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:235 application/views/user/edit.php:233 #: application/views/user/edit.php:255 application/views/user/edit.php:277 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/view_log/partial/log_ajax.php:8 @@ -1066,17 +1202,17 @@ msgstr "Land" msgid "IOTA" msgstr "" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1292 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:20 -#: application/views/awards/rac/index.php:141 -#: application/views/awards/was/index.php:149 -#: application/views/contesting/index.php:173 +#: application/views/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 +#: application/views/contesting/index.php:56 #: application/views/dashboard/index.php:12 -#: application/views/logbookadvanced/edit.php:20 -#: application/views/logbookadvanced/edit.php:64 -#: application/views/logbookadvanced/index.php:162 -#: application/views/logbookadvanced/index.php:583 +#: application/views/logbookadvanced/edit.php:21 +#: application/views/logbookadvanced/edit.php:66 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:611 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1084,9 +1220,9 @@ msgstr "" #: application/views/qslcard/searchresult.php:50 #: application/views/qslcard/searchresult.php:66 #: application/views/qslcard/searchresult.php:82 -#: application/views/qso/components/previous_contacts.php:86 +#: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 -#: application/views/timeline/index.php:177 application/views/user/edit.php:237 +#: application/views/timeline/index.php:210 application/views/user/edit.php:237 #: application/views/user/edit.php:259 application/views/user/edit.php:281 #: application/views/user/edit.php:303 application/views/user/edit.php:326 #: application/views/view_log/partial/log_ajax.php:12 @@ -1094,20 +1230,21 @@ msgstr "" msgid "State" msgstr "" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1293 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:17 -#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:13 +#: application/views/distancerecords/index.php:20 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:166 -#: application/views/logbookadvanced/index.php:556 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1116,38 +1253,39 @@ msgstr "" #: application/views/qslcard/searchresult.php:51 #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 -#: application/views/qso/components/previous_contacts.php:87 +#: application/views/qso/components/previous_contacts.php:86 #: application/views/qso/edit_ajax.php:156 application/views/qso/index.php:279 +#: application/views/satellite/pass.php:28 #: application/views/search/cqzones_result.php:12 #: application/views/search/result.php:33 #: application/views/search/search_result_ajax.php:13 -#: application/views/simplefle/index.php:147 -#: application/views/station_profile/index.php:44 +#: application/views/simplefle/index.php:153 #: application/views/stationsetup/stationsetup.php:125 -#: application/views/timeline/index.php:257 application/views/user/edit.php:130 +#: application/views/timeline/index.php:290 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 #: application/views/user/edit.php:327 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:518 #: application/views/visitor/index.php:27 msgid "Gridsquare" msgstr "" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1294 #: application/views/activated_gridmap/index.php:108 #: application/views/awards/ffma/index.php:36 #: application/views/awards/gridmaster/index.php:35 #: 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/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/index.php:12 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 #: application/views/qslcard/searchresult.php:52 #: application/views/qslcard/searchresult.php:68 #: application/views/qslcard/searchresult.php:84 -#: application/views/qso/components/previous_contacts.php:88 +#: application/views/qso/components/previous_contacts.php:87 #: application/views/search/search_result_ajax.php:14 #: application/views/user/edit.php:239 application/views/user/edit.php:261 #: application/views/user/edit.php:283 application/views/user/edit.php:305 @@ -1157,32 +1295,33 @@ msgstr "" msgid "Distance" msgstr "" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1295 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:8 -#: application/views/activators/index.php:7 +#: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 -#: application/views/awards/cq/index.php:72 +#: application/views/awards/cq/index.php:74 #: application/views/awards/dok/index.php:77 #: application/views/awards/dxcc/index.php:117 -#: application/views/awards/helvetia/index.php:71 +#: application/views/awards/helvetia/index.php:73 #: application/views/awards/iota/index.php:91 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:74 #: application/views/awards/jcc/index.php:74 #: application/views/awards/pota/index.php:35 -#: application/views/awards/rac/index.php:63 +#: application/views/awards/rac/index.php:65 #: application/views/awards/sig/qso_list.php:13 #: application/views/awards/sota/index.php:26 #: application/views/awards/vucc/index.php:21 #: application/views/awards/wab/index.php:22 -#: application/views/awards/waja/index.php:75 -#: application/views/awards/was/index.php:71 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/waja/index.php:77 +#: application/views/awards/was/index.php:73 #: application/views/awards/wwff/index.php:35 #: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:45 -#: application/views/contesting/index.php:70 -#: application/views/contesting/index.php:202 +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:249 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:549 application/views/dxatlas/index.php:31 @@ -1190,8 +1329,8 @@ msgstr "" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1209,13 +1348,13 @@ msgstr "" #: application/views/qslmanagement/index.php:24 #: application/views/qslprint/qslprint.php:25 #: application/views/qslprint/qsolist.php:10 -#: application/views/qso/components/previous_contacts.php:89 +#: application/views/qso/components/previous_contacts.php:88 #: application/views/qso/edit_ajax.php:83 application/views/qso/index.php:151 #: application/views/search/cqzones_result.php:11 #: application/views/search/lotw_unconfirmed_result.php:9 #: application/views/search/result_search.php:10 #: application/views/search/search_result_ajax.php:15 -#: application/views/simplefle/index.php:143 +#: application/views/simplefle/index.php:149 #: application/views/stationsetup/exportmapoptions.php:31 #: application/views/statistics/custom.php:53 #: application/views/statistics/custom_result.php:55 @@ -1233,72 +1372,71 @@ msgstr "" msgid "Band" msgstr "" -#: application/controllers/Logbook.php:1285 +#: application/controllers/Logbook.php:1296 #: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 -#: application/views/contesting/index.php:87 +#: application/views/contesting/index.php:138 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 #: application/views/qslcard/searchresult.php:70 #: application/views/qslcard/searchresult.php:86 -#: application/views/qso/components/previous_contacts.php:90 +#: application/views/qso/components/previous_contacts.php:89 #: application/views/qso/edit_ajax.php:71 application/views/qso/index.php:169 #: application/views/search/search_result_ajax.php:16 #: application/views/user/edit.php:228 application/views/user/edit.php:250 #: application/views/user/edit.php:272 application/views/user/edit.php:294 #: application/views/user/edit.php:317 #: application/views/view_log/partial/log_ajax.php:16 -#: application/views/view_log/qso.php:93 application/views/visitor/index.php:36 +#: application/views/view_log/qso.php:94 application/views/visitor/index.php:36 msgid "Frequency" msgstr "Frequentie" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1297 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:283 -#: application/views/logbookadvanced/index.php:598 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:626 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 #: application/views/qslcard/searchresult.php:87 -#: application/views/qso/components/previous_contacts.php:91 +#: application/views/qso/components/previous_contacts.php:90 #: application/views/search/search_result_ajax.php:17 #: application/views/simplefle/index.php:112 #: application/views/user/edit.php:240 application/views/user/edit.php:262 #: application/views/user/edit.php:284 application/views/user/edit.php:306 #: application/views/user/edit.php:329 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:538 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1318 #: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:669 +#: application/views/interface_assets/footer.php:675 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:154 +#: application/views/logbookadvanced/index.php:165 #: application/views/lookup/index.php:31 -#: application/views/lotw_views/index.php:56 +#: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 #: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 -#: application/views/station_profile/create.php:73 -#: application/views/station_profile/edit.php:78 -#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 #: application/views/stationsetup/stationsetup.php:150 -#: application/views/timeline/index.php:134 +#: application/views/timeline/index.php:167 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 -#: application/views/view_log/qso.php:236 -#: application/views/view_log/qso.php:529 +#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:532 msgid "Deleted DXCC" msgstr "" @@ -1312,7 +1450,7 @@ msgstr "" #: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83 #: application/controllers/Lotw.php:125 application/views/adif/import.php:27 -#: application/views/interface_assets/header.php:423 +#: application/views/interface_assets/header.php:429 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1320,28 +1458,55 @@ msgstr "" msgid "Logbook of the World" msgstr "" -#: application/controllers/Lotw.php:610 +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "" + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "" + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "" + +#: application/controllers/Lotw.php:413 +#, 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:617 msgid "LoTW ADIF Information" msgstr "" -#: application/controllers/Lotw.php:718 +#: application/controllers/Lotw.php:725 msgid "LoTW ADIF Import" msgstr "" -#: application/controllers/Lotw.php:830 +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "" + +#: application/controllers/Lotw.php:837 msgid "LoTW .TQ8 Upload" msgstr "" -#: application/controllers/Lotw.php:927 application/controllers/Lotw.php:932 +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "" + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 msgid "LoTW .TQ8 Sent" msgstr "" -#: application/controllers/Lotw.php:939 +#: application/controllers/Lotw.php:946 msgid "LoTW .TQ8 Not Sent" msgstr "" #: application/controllers/Mode.php:25 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:276 #: application/views/mode/index.php:15 msgid "Modes" msgstr "" @@ -1350,28 +1515,28 @@ msgstr "" msgid "Edit Mode" msgstr "" -#: application/controllers/Notes.php:19 +#: application/controllers/Notes.php:18 #: application/views/interface_assets/header.php:128 #: application/views/notes/add.php:9 application/views/notes/edit.php:10 #: application/views/notes/main.php:5 application/views/notes/main.php:8 #: application/views/notes/view.php:6 application/views/notes/view.php:9 #: application/views/qso/edit_ajax.php:36 -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:38 -#: application/views/qso/index.php:541 application/views/qso/index.php:586 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:590 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:38 +#: application/views/qso/index.php:563 application/views/qso/index.php:608 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:593 msgid "Notes" msgstr "Aantekeningen" -#: application/controllers/Notes.php:38 +#: application/controllers/Notes.php:37 msgid "Add Notes" msgstr "" -#: application/controllers/Notes.php:58 +#: application/controllers/Notes.php:64 #: application/views/oqrs/showrequests.php:88 msgid "Note" msgstr "" -#: application/controllers/Notes.php:79 application/views/notes/edit.php:7 +#: application/controllers/Notes.php:92 application/views/notes/edit.php:7 #: application/views/notes/view.php:19 msgid "Edit Note" msgstr "" @@ -1379,16 +1544,16 @@ msgstr "" #: application/controllers/Options.php:31 #: application/controllers/Options.php:41 #: application/controllers/Options.php:56 -#: application/controllers/Options.php:136 -#: application/controllers/Options.php:147 -#: application/controllers/Options.php:184 -#: application/controllers/Options.php:195 -#: application/controllers/Options.php:228 -#: application/controllers/Options.php:239 -#: application/controllers/Options.php:309 -#: application/controllers/Options.php:319 -#: application/controllers/Options.php:387 -#: application/controllers/Options.php:397 +#: application/controllers/Options.php:144 +#: application/controllers/Options.php:155 +#: application/controllers/Options.php:192 +#: application/controllers/Options.php:203 +#: application/controllers/Options.php:236 +#: application/controllers/Options.php:247 +#: application/controllers/Options.php:317 +#: application/controllers/Options.php:327 +#: application/controllers/Options.php:395 +#: application/controllers/Options.php:405 msgid "Wavelog Options" msgstr "" @@ -1405,95 +1570,96 @@ msgstr "" #: application/controllers/Options.php:110 #: application/controllers/Options.php:118 #: application/controllers/Options.php:126 +#: application/controllers/Options.php:134 msgid "Options saved" msgstr "" -#: application/controllers/Options.php:165 +#: application/controllers/Options.php:173 msgid "de continent changed to " msgstr "" -#: application/controllers/Options.php:170 +#: application/controllers/Options.php:178 msgid "Maximum age of spots changed to " msgstr "" -#: application/controllers/Options.php:175 +#: application/controllers/Options.php:183 msgid "DXCluster Cache URL changed to " msgstr "" -#: application/controllers/Options.php:185 -#: application/controllers/Options.php:196 +#: application/controllers/Options.php:193 +#: application/controllers/Options.php:204 msgid "Radio Settings" msgstr "" -#: application/controllers/Options.php:217 +#: application/controllers/Options.php:225 msgid "Radio Timeout Warning changed to " msgstr "" -#: application/controllers/Options.php:229 -#: application/controllers/Options.php:240 +#: application/controllers/Options.php:237 +#: application/controllers/Options.php:248 #: application/views/options/sidebar.php:6 msgid "Email" msgstr "" -#: application/controllers/Options.php:297 +#: application/controllers/Options.php:305 msgid "The settings were saved successfully." msgstr "" -#: application/controllers/Options.php:299 +#: application/controllers/Options.php:307 msgid "Something went wrong with saving the settings. Try again." msgstr "" -#: application/controllers/Options.php:310 -#: application/controllers/Options.php:320 +#: application/controllers/Options.php:318 +#: application/controllers/Options.php:328 #: application/views/options/sidebar.php:8 msgid "OQRS Options" msgstr "" -#: application/controllers/Options.php:333 +#: application/controllers/Options.php:341 msgid "OQRS options have been saved." msgstr "" -#: application/controllers/Options.php:373 -#: application/controllers/Options.php:378 +#: application/controllers/Options.php:381 +#: application/controllers/Options.php:386 msgid "Testmail failed. Something went wrong." msgstr "" -#: application/controllers/Options.php:375 +#: application/controllers/Options.php:383 msgid "Testmail sent. Email settings seem to be correct." msgstr "" -#: application/controllers/Options.php:388 -#: application/controllers/Options.php:398 +#: application/controllers/Options.php:396 +#: application/controllers/Options.php:406 msgid "Version Info Settings" msgstr "" -#: application/controllers/Options.php:404 +#: application/controllers/Options.php:412 msgid "Version Info Header changed to" msgstr "" -#: application/controllers/Options.php:408 +#: application/controllers/Options.php:416 msgid "Version Info Mode changed to" msgstr "" -#: application/controllers/Options.php:413 +#: application/controllers/Options.php:421 msgid "Version Info Custom Text saved!" msgstr "" -#: application/controllers/Options.php:424 +#: application/controllers/Options.php:432 msgid "Version Info will be shown to all users again" msgstr "" -#: application/controllers/Options.php:432 +#: application/controllers/Options.php:440 msgid "Version Info will not be shown to any user" msgstr "" -#: application/controllers/Oqrs.php:22 application/controllers/Oqrs.php:61 -#: application/controllers/Oqrs.php:73 +#: application/controllers/Oqrs.php:46 application/controllers/Oqrs.php:85 +#: application/controllers/Oqrs.php:97 msgid "Log Search & OQRS" msgstr "" -#: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:413 +#: application/controllers/Oqrs.php:127 +#: application/views/interface_assets/header.php:419 msgid "OQRS Requests" msgstr "" @@ -1501,8 +1667,46 @@ msgstr "" msgid "QRB Calculator" msgstr "" +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "" + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" + #: application/controllers/Qrz.php:173 -#: application/views/interface_assets/header.php:426 +#: application/views/interface_assets/header.php:432 msgid "QRZ Logbook" msgstr "" @@ -1514,8 +1718,8 @@ msgstr "" msgid "QRZ ADIF Information" msgstr "" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:261 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:277 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1538,13 +1742,13 @@ msgid "Add QSO" msgstr "" #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Hardware Interfaces" msgstr "" #: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 +#: application/views/contesting/index.php:143 #: application/views/qso/index.php:312 msgid "Radio" msgstr "" @@ -1554,10 +1758,10 @@ msgid "Timestamp" msgstr "" #: application/controllers/Radio.php:52 -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 +#: application/views/logbookadvanced/index.php:550 +#: application/views/lotw_views/index.php:43 #: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 +#: application/views/simplefle/index.php:177 #: application/views/stationsetup/exportmapoptions.php:5 #: application/views/statistics/custom.php:31 #: application/views/statistics/custom_result.php:33 @@ -1565,7 +1769,7 @@ msgid "Options" msgstr "" #: application/controllers/Radio.php:90 -#: application/views/contesting/index.php:96 +#: application/views/contesting/index.php:147 #: application/views/qso/index.php:316 msgid "last updated" msgstr "" @@ -1581,26 +1785,24 @@ msgstr "" #: application/controllers/Radio.php:105 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2323 -#: application/views/interface_assets/footer.php:2341 -#: application/views/interface_assets/footer.php:2362 -#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2337 +#: application/views/interface_assets/footer.php:2355 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 #: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:514 -#: application/views/lotw_views/index.php:118 +#: application/views/logbookadvanced/index.php:542 +#: application/views/lotw_views/index.php:114 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 #: application/views/qslcard/index.php:65 #: application/views/satellite/edit.php:40 #: application/views/satellite/index.php:26 #: application/views/search/stored_queries.php:22 -#: application/views/station_profile/index.php:55 -#: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 #: application/views/stationsetup/stationsetup.php:137 #: application/views/stationsetup/stationsetup.php:192 -#: application/views/themes/index.php:107 application/views/user/main.php:54 -#: application/views/view_log/qso.php:613 +#: application/views/themes/index.php:107 application/views/user/index.php:57 +#: application/views/view_log/qso.php:616 msgid "Delete" msgstr "" @@ -1608,11 +1810,15 @@ msgstr "" msgid "No CAT interfaced radios found." msgstr "" -#: application/controllers/Satellite.php:37 +#: application/controllers/Reg1test.php:25 +msgid "Export EDI" +msgstr "" + +#: application/controllers/Satellite.php:39 msgid "Create Satellite" msgstr "" -#: application/controllers/Satellite.php:60 +#: application/controllers/Satellite.php:66 msgid "Edit Satellite" msgstr "" @@ -1625,10 +1831,7 @@ msgstr "" #: application/views/awards/counties/index.php:8 #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:19 -#: application/views/awards/was/index.php:21 -#: application/views/dashboard/index.php:64 -#: application/views/dashboard/index.php:73 -#: application/views/dashboard/index.php:82 +#: application/views/awards/was/index.php:23 #: application/views/simplefle/index.php:16 msgid "here" msgstr "" @@ -1640,9 +1843,10 @@ msgstr "" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:336 -#: application/views/interface_assets/header.php:343 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:340 +#: application/views/interface_assets/header.php:347 +#: application/views/logbookadvanced/index.php:538 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1656,8 +1860,8 @@ msgstr "" #: application/views/search/lotw_unconfirmed.php:37 #: application/views/search/main.php:4 application/views/search/main.php:12 #: application/views/search/main.php:33 -#: application/views/visitor/layout/header.php:99 -#: application/views/visitor/layout/header.php:100 +#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:98 msgid "Search" msgstr "" @@ -1675,15 +1879,23 @@ msgid "" "date" msgstr "" -#: application/controllers/Station.php:35 -#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/controllers/Station.php:36 +#: application/controllers/Stationsetup.php:226 +msgid "Create Station Location" +msgstr "" + +#: application/controllers/Station.php:51 +msgid "Edit Station Location: " +msgstr "" + +#: application/controllers/Station.php:59 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 -#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/edit.php:19 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:427 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 @@ -1691,22 +1903,13 @@ msgstr "" msgid "Station Location" msgstr "Station Profiel" -#: application/controllers/Station.php:55 -#: application/controllers/Stationsetup.php:226 -msgid "Create Station Location" -msgstr "" - -#: application/controllers/Station.php:70 -msgid "Edit Station Location: " -msgstr "" - -#: application/controllers/Station.php:92 +#: application/controllers/Station.php:73 msgid "Duplicate Station Location:" msgstr "" #: application/controllers/Stationsetup.php:35 -#: application/views/interface_assets/header.php:377 -#: application/views/interface_assets/header.php:488 +#: application/views/interface_assets/header.php:381 +#: application/views/interface_assets/header.php:494 msgid "Station Setup" msgstr "" @@ -1724,7 +1927,7 @@ msgstr "" #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 #: application/controllers/Stationsetup.php:436 -#: application/views/qso/index.php:608 +#: application/views/qso/index.php:630 msgid "Error" msgstr "" @@ -1756,9 +1959,10 @@ msgstr "" #: application/views/options/appearance.php:83 #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 +#: application/views/options/appearance.php:110 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:259 -#: application/views/station_profile/edit.php:312 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 msgid "Disabled" @@ -1770,7 +1974,7 @@ msgid "Set as Active Logbook" msgstr "" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:486 +#: application/views/interface_assets/header.php:492 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1793,20 +1997,17 @@ msgid "Are you sure you want to delete the public slug?" msgstr "" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "" "Are you sure you want to make the following station the active station: " msgstr "" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "" #: application/controllers/Stationsetup.php:351 -#: application/views/station_profile/index.php:71 #: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "" @@ -1815,54 +2016,45 @@ msgstr "" #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:28 -#: application/views/station_profile/index.php:76 #: application/views/stationsetup/stationsetup.php:161 -#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/user/index.php:90 application/views/user/index.php:92 msgid "QSO" msgstr "" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 -#: application/views/cron/index.php:56 -#: application/views/interface_assets/footer.php:535 -#: application/views/interface_assets/footer.php:544 +#: application/views/cron/index.php:58 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 #: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:541 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 -#: application/views/station_profile/index.php:46 -#: application/views/station_profile/index.php:79 #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 -#: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/views/themes/index.php:104 application/views/user/index.php:52 msgid "Edit" msgstr "" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:99 #: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:54 -#: application/views/station_profile/index.php:101 #: application/views/stationsetup/stationsetup.php:136 #: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "" #: application/controllers/Stationsetup.php:367 -#: application/views/station_profile/index.php:47 -#: application/views/station_profile/index.php:82 #: application/views/stationsetup/stationsetup.php:129 #: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "" #: application/controllers/Stationsetup.php:372 -#: application/views/station_profile/index.php:105 #: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "" @@ -1895,7 +2087,7 @@ msgid "QSL Statistics" msgstr "" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:282 msgid "Themes" msgstr "" @@ -1907,14 +2099,14 @@ msgstr "" msgid "Edit Theme" msgstr "" -#: application/controllers/Timeline.php:17 -#: application/views/interface_assets/header.php:148 +#: application/controllers/Timeline.php:15 +#: application/views/interface_assets/header.php:150 #: application/views/timeline/index.php:2 msgid "Timeline" msgstr "" #: application/controllers/Timeplotter.php:17 -#: application/views/interface_assets/header.php:152 +#: application/views/interface_assets/header.php:154 #: application/views/timeplotter/index.php:9 msgid "Timeplotter" msgstr "" @@ -1955,130 +2147,154 @@ msgstr "" msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:268 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:272 msgid "User Accounts" msgstr "" -#: application/controllers/User.php:52 +#: application/controllers/User.php:76 msgid "Add User" msgstr "" -#: application/controllers/User.php:166 +#: application/controllers/User.php:190 msgid "Users" msgstr "" -#: application/controllers/User.php:240 application/controllers/User.php:673 +#: application/controllers/User.php:264 application/controllers/User.php:697 msgid "Edit User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 -#: application/views/user/main.php:3 application/views/user/main.php:46 +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 msgid "User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 +#: application/controllers/User.php:689 application/controllers/User.php:692 msgid "edited" msgstr "" -#: application/controllers/User.php:722 +#: application/controllers/User.php:746 msgid "Profile" msgstr "" -#: application/controllers/User.php:779 +#: application/controllers/User.php:803 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "" -#: application/controllers/User.php:843 application/controllers/User.php:853 +#: application/controllers/User.php:867 application/controllers/User.php:877 msgid "Login failed. Try again." msgstr "" -#: application/controllers/User.php:860 -#: application/views/interface_assets/header.php:356 -#: application/views/user/login.php:89 -#: application/views/visitor/layout/header.php:88 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:360 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "" -#: application/controllers/User.php:868 -msgid "User logged in" -msgstr "" - -#: application/controllers/User.php:899 +#: application/controllers/User.php:922 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " "Only administrators are currently allowed to log in." msgstr "" -#: application/controllers/User.php:902 +#: application/controllers/User.php:925 msgid "Incorrect username or password!" msgstr "" -#: application/controllers/User.php:919 +#: application/controllers/User.php:942 #, php-format msgid "User %s logged out." msgstr "" -#: application/controllers/User.php:933 +#: application/controllers/User.php:956 msgid "Password Reset is disabled on the Demo!" msgstr "" -#: application/controllers/User.php:946 +#: application/controllers/User.php:969 msgid "Forgot Password" msgstr "" -#: application/controllers/User.php:996 application/views/user/main.php:8 +#: application/controllers/User.php:1019 application/views/user/index.php:8 msgid "Email settings are incorrect." msgstr "" -#: application/controllers/User.php:1000 application/controllers/User.php:1005 +#: application/controllers/User.php:1023 application/controllers/User.php:1028 msgid "Password Reset Processed." msgstr "" -#: application/controllers/User.php:1107 +#: application/controllers/User.php:1129 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "" +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "" + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "" + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "" + #: application/controllers/Visitor.php:50 -#: application/controllers/Visitor.php:79 -#: application/controllers/Visitor.php:142 -#: application/controllers/Visitor.php:169 -#: application/controllers/Visitor.php:199 -#: application/controllers/Visitor.php:478 +#: application/controllers/Visitor.php:81 +#: application/controllers/Visitor.php:148 +#: application/controllers/Visitor.php:175 +#: application/controllers/Visitor.php:210 +#: application/controllers/Visitor.php:472 #: application/controllers/Widgets.php:40 msgid "Unknown Public Page." msgstr "" -#: application/controllers/Visitor.php:74 -#: application/controllers/Visitor.php:165 -#: application/controllers/Visitor.php:195 -#: application/controllers/Visitor.php:474 +#: application/controllers/Visitor.php:76 +#: application/controllers/Visitor.php:171 +#: application/controllers/Visitor.php:206 +#: application/controllers/Visitor.php:468 #: application/controllers/Widgets.php:36 msgid "Empty Logbook" msgstr "" -#: application/controllers/Visitor.php:205 +#: application/controllers/Visitor.php:216 msgid "Satellite Gridsquare Map" msgstr "" -#: application/controllers/Visitor.php:411 +#: application/controllers/Visitor.php:405 #: application/views/stationsetup/stationsetup.php:35 msgid "Public Search" msgstr "" -#: application/controllers/Visitor.php:444 +#: application/controllers/Visitor.php:438 msgid "Export Map" msgstr "" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:427 +#: application/views/interface_assets/header.php:433 msgid "QO-100 Dx Club Upload" msgstr "" @@ -2090,6 +2306,84 @@ msgstr "" msgid "No stations found that are using Wavelog OQRS." msgstr "" +#: application/libraries/Subdivisions.php:31 +msgctxt "Division Name (States in various countries)." +msgid "Province" +msgstr "" + +#: application/libraries/Subdivisions.php:39 +msgctxt "Division Name (States in various countries)." +msgid "Oblast" +msgstr "" + +#: application/libraries/Subdivisions.php:41 +#: application/libraries/Subdivisions.php:47 +msgctxt "Division Name (States in various countries)." +msgid "Region" +msgstr "" + +#: application/libraries/Subdivisions.php:45 +msgctxt "Division Name (States in various countries)." +msgid "Department" +msgstr "" + +#: application/libraries/Subdivisions.php:49 +msgctxt "Division Name (States in various countries)." +msgid "Municipality" +msgstr "" + +#: application/libraries/Subdivisions.php:51 +msgctxt "Division Name (States in various countries)." +msgid "Federal State" +msgstr "" + +#: application/libraries/Subdivisions.php:56 +#: application/libraries/Subdivisions.php:94 +msgctxt "Division Name (States in various countries)." +msgid "County" +msgstr "" + +#: application/libraries/Subdivisions.php:60 +#: application/libraries/Subdivisions.php:85 +msgctxt "Division Name (States in various countries)." +msgid "District" +msgstr "" + +#: application/libraries/Subdivisions.php:62 +msgctxt "Division Name (States in various countries)." +msgid "Canton" +msgstr "" + +#: application/libraries/Subdivisions.php:64 +msgctxt "Division Name (States in various countries)." +msgid "US State" +msgstr "" + +#: application/libraries/Subdivisions.php:67 +msgctxt "Division Name (States in various countries)." +msgid "Prefecture" +msgstr "" + +#: application/libraries/Subdivisions.php:69 +msgctxt "Division Name (States in various countries)." +msgid "State" +msgstr "" + +#: application/libraries/Subdivisions.php:78 +msgctxt "Division Name (States in various countries)." +msgid "US County" +msgstr "" + +#: application/libraries/Subdivisions.php:90 +msgctxt "Division Name (States in various countries)." +msgid "DME" +msgstr "" + +#: application/libraries/Subdivisions.php:92 +msgctxt "Division Name (States in various countries)." +msgid "City / Ku / Gun" +msgstr "" + #: application/models/Eqslmethods_model.php:281 msgid "Your eQSL username and/or password is incorrect." msgstr "" @@ -2126,31 +2420,31 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4255 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4261 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4266 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4269 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4272 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4275 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4278 msgid "unknown" msgstr "" @@ -2179,7 +2473,7 @@ msgid "Accumulated number of WAJA worked" msgstr "" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:222 +#: application/views/dashboard/index.php:238 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2192,7 +2486,7 @@ msgid "Yearly" msgstr "" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:243 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Maand" @@ -2208,29 +2502,33 @@ msgstr "" #: application/views/accumulate/index.php:24 #: application/views/accumulate/index.php:34 +#: application/views/accumulate/index.php:83 #: application/views/activated_gridmap/index.php:10 #: application/views/activated_gridmap/index.php:22 #: application/views/activated_gridmap/index.php:32 #: application/views/activated_gridmap/index.php:41 -#: application/views/activators/index.php:10 -#: application/views/awards/cq/index.php:75 -#: application/views/awards/cq/index.php:89 +#: application/views/activators/index.php:13 +#: application/views/awards/cq/index.php:77 +#: application/views/awards/cq/index.php:91 #: application/views/awards/dok/index.php:94 #: application/views/awards/dxcc/index.php:134 #: application/views/awards/dxcc/index.php:150 #: application/views/awards/dxcc/index.php:165 -#: application/views/awards/helvetia/index.php:88 +#: application/views/awards/helvetia/index.php:90 #: application/views/awards/iota/index.php:108 -#: application/views/awards/itu/index.php:75 -#: application/views/awards/itu/index.php:89 +#: application/views/awards/itu/index.php:77 +#: application/views/awards/itu/index.php:91 #: application/views/awards/jcc/index.php:91 -#: application/views/awards/rac/index.php:80 +#: application/views/awards/rac/index.php:82 #: application/views/awards/wab/index.php:24 #: application/views/awards/wab/index.php:36 #: application/views/awards/wab/index.php:46 #: application/views/awards/wab/index.php:55 -#: application/views/awards/waja/index.php:92 -#: application/views/awards/was/index.php:88 +#: application/views/awards/wac/index.php:81 +#: application/views/awards/wac/index.php:97 +#: application/views/awards/wac/index.php:113 +#: application/views/awards/waja/index.php:94 +#: application/views/awards/was/index.php:90 #: application/views/bandmap/list.php:71 application/views/bandmap/list.php:78 #: application/views/bandmap/list.php:90 application/views/bands/index.php:117 #: application/views/cabrillo/index.php:65 @@ -2241,6 +2539,7 @@ msgstr "" #: application/views/csv/index.php:94 application/views/distances/index.php:21 #: application/views/distances/index.php:36 #: application/views/distances/index.php:46 +#: application/views/distances/index.php:56 #: application/views/dxatlas/index.php:21 #: application/views/dxatlas/index.php:33 #: application/views/dxatlas/index.php:44 @@ -2252,28 +2551,29 @@ msgstr "" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1435 -#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1448 +#: application/views/interface_assets/footer.php:1587 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:172 #: application/views/logbookadvanced/index.php:183 #: application/views/logbookadvanced/index.php:194 -#: application/views/logbookadvanced/index.php:203 -#: application/views/logbookadvanced/index.php:212 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:205 +#: application/views/logbookadvanced/index.php:214 +#: application/views/logbookadvanced/index.php:223 #: application/views/logbookadvanced/index.php:248 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:321 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:374 -#: application/views/logbookadvanced/index.php:385 -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:259 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:423 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2284,11 +2584,12 @@ msgstr "" #: application/views/stationsetup/exportmapoptions.php:33 #: application/views/timeline/index.php:10 #: application/views/timeline/index.php:22 +#: application/views/timeline/index.php:77 #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 #: application/views/user/edit.php:633 -#: application/views/visitor/layout/footer.php:169 +#: application/views/visitor/layout/footer.php:171 msgid "All" msgstr "" @@ -2326,29 +2627,254 @@ msgstr "" msgid "Period" msgstr "" -#: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: application/views/accumulate/index.php:80 +#: application/views/distances/index.php:53 +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/timeline/index.php:74 +msgid "Propagation" +msgstr "" + +#: application/views/accumulate/index.php:84 +#: application/views/distances/index.php:57 +#: application/views/timeline/index.php:78 +msgid "All but SAT" +msgstr "" + +#: application/views/accumulate/index.php:85 +#: application/views/distances/index.php:58 +#: application/views/gridmap/index.php:42 +#: application/views/logbookadvanced/edit.php:142 +#: application/views/logbookadvanced/index.php:307 +#: application/views/timeline/index.php:79 +msgid "None/Empty" +msgstr "" + +#: application/views/accumulate/index.php:86 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/logbookadvanced/index.php:225 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:414 +#: application/views/timeline/index.php:80 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/accumulate/index.php:87 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/logbookadvanced/index.php:226 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:415 +#: application/views/timeline/index.php:81 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/accumulate/index.php:88 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/logbookadvanced/index.php:227 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:416 +#: application/views/timeline/index.php:82 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/accumulate/index.php:89 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/logbookadvanced/index.php:228 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:417 +#: application/views/timeline/index.php:83 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/accumulate/index.php:90 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/logbookadvanced/index.php:229 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:418 +#: application/views/timeline/index.php:84 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/accumulate/index.php:91 +#: 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/logbookadvanced/index.php:230 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:419 +#: application/views/timeline/index.php:85 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/accumulate/index.php:92 +#: 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/logbookadvanced/index.php:231 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:420 +#: application/views/timeline/index.php:86 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/accumulate/index.php:93 +#: 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/logbookadvanced/index.php:232 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:421 +#: application/views/timeline/index.php:87 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/accumulate/index.php:94 +#: 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/logbookadvanced/index.php:233 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:422 +#: application/views/timeline/index.php:88 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/accumulate/index.php:95 +#: 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/logbookadvanced/index.php:234 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:423 +#: application/views/timeline/index.php:89 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/accumulate/index.php:96 +#: 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/logbookadvanced/index.php:235 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:424 +#: application/views/timeline/index.php:90 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/accumulate/index.php:97 +#: 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/logbookadvanced/index.php:236 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:425 +#: application/views/timeline/index.php:91 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/accumulate/index.php:98 +#: 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/logbookadvanced/index.php:237 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:426 +#: application/views/timeline/index.php:92 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/accumulate/index.php:99 +#: 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/logbookadvanced/index.php:238 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:427 +#: application/views/timeline/index.php:93 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/accumulate/index.php:100 +#: 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/logbookadvanced/index.php:239 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:428 +#: application/views/timeline/index.php:94 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/accumulate/index.php:101 +#: 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/logbookadvanced/index.php:240 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:429 +#: application/views/timeline/index.php:95 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Satelliet" + +#: application/views/accumulate/index.php:102 +#: 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/logbookadvanced/index.php:241 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:430 +#: application/views/timeline/index.php:96 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/accumulate/index.php:103 +#: 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/logbookadvanced/index.php:242 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:431 +#: application/views/timeline/index.php:97 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/accumulate/index.php:112 +#: application/views/activators/index.php:53 +#: application/views/awards/cq/index.php:113 #: application/views/awards/dok/index.php:127 #: application/views/awards/dxcc/index.php:187 -#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/helvetia/index.php:112 #: application/views/awards/iota/index.php:130 -#: application/views/awards/itu/index.php:111 +#: application/views/awards/itu/index.php:113 #: application/views/awards/jcc/index.php:113 -#: application/views/awards/rac/index.php:102 -#: application/views/awards/waja/index.php:114 -#: application/views/awards/was/index.php:110 -#: application/views/distances/index.php:53 +#: application/views/awards/rac/index.php:104 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:79 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 #: application/views/stationsetup/exportmapoptions.php:6 -#: application/views/timeline/index.php:72 -#: application/views/timeline/index.php:137 -#: application/views/timeline/index.php:164 -#: application/views/timeline/index.php:189 -#: application/views/timeline/index.php:218 -#: application/views/timeline/index.php:243 -#: application/views/timeline/index.php:270 +#: application/views/timeline/index.php:105 +#: application/views/timeline/index.php:170 +#: application/views/timeline/index.php:197 +#: application/views/timeline/index.php:222 +#: application/views/timeline/index.php:251 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:303 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "" @@ -2356,12 +2882,15 @@ msgstr "" #: application/views/activated_gridmap/index.php:20 #: application/views/awards/dxcc/index.php:131 #: application/views/awards/wab/index.php:34 +#: application/views/awards/wac/index.php:78 #: 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/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/edit.php:17 +#: application/views/logbookadvanced/index.php:203 #: application/views/satellite/flightpath.php:34 +#: application/views/satellite/passtable.php:5 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2370,9 +2899,10 @@ msgstr "Satelliet" #: application/views/activated_gridmap/index.php:30 #: application/views/awards/dxcc/index.php:147 #: application/views/awards/wab/index.php:44 +#: application/views/awards/wac/index.php:94 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:212 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2387,16 +2917,17 @@ msgid "Confirmation" msgstr "" #: application/views/activated_gridmap/index.php:82 -#: application/views/awards/cq/index.php:66 +#: application/views/awards/cq/index.php:68 #: application/views/awards/dok/index.php:67 #: application/views/awards/dxcc/index.php:73 -#: application/views/awards/helvetia/index.php:65 -#: application/views/awards/itu/index.php:66 +#: application/views/awards/helvetia/index.php:67 +#: application/views/awards/itu/index.php:68 #: application/views/awards/jcc/index.php:64 -#: application/views/awards/rac/index.php:57 +#: application/views/awards/rac/index.php:59 #: application/views/awards/wab/index.php:96 -#: application/views/awards/waja/index.php:65 -#: application/views/awards/was/index.php:65 +#: application/views/awards/wac/index.php:56 +#: application/views/awards/waja/index.php:67 +#: application/views/awards/was/index.php:67 #: application/views/gridmap/index.php:125 application/views/user/edit.php:675 msgid "QRZ.com" msgstr "" @@ -2432,59 +2963,62 @@ msgstr "" #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:37 #: application/views/gridmap/index.php:156 -#: application/views/logbookadvanced/index.php:12 +#: application/views/logbookadvanced/index.php:13 msgid "Bearing" msgstr "" -#: application/views/activators/index.php:23 +#: application/views/activators/index.php:26 msgctxt "Orbiter LEO or GEO" msgid "Both" msgstr "" -#: application/views/activators/index.php:30 +#: application/views/activators/index.php:33 msgid "Minimum Count" msgstr "" -#: application/views/activators/index.php:77 +#: application/views/activators/index.php:76 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:46 -#: application/views/awards/cq/index.php:196 +#: application/views/awards/cq/index.php:198 #: application/views/awards/dok/index.php:196 #: application/views/awards/dxcc/index.php:280 -#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/helvetia/index.php:200 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:196 +#: application/views/awards/itu/index.php:198 #: application/views/awards/jcc/index.php:236 #: application/views/awards/pota/index.php:67 -#: application/views/awards/rac/index.php:190 +#: application/views/awards/rac/index.php:192 #: application/views/awards/sig/index.php:45 #: application/views/awards/sota/index.php:53 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:39 -#: application/views/awards/waja/index.php:200 -#: application/views/awards/was/index.php:198 +#: application/views/awards/wac/index.php:199 +#: application/views/awards/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 +#: application/views/distancerecords/index.php:50 #: application/views/public_search/empty.php:3 -#: application/views/qrz/export.php:64 application/views/timeline/index.php:102 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:135 msgid "Nothing found!" msgstr "" -#: application/views/activators/index.php:99 -#: application/views/adif/import.php:66 application/views/adif/import.php:172 -#: application/views/adif/import.php:217 +#: application/views/activators/index.php:98 +#: application/views/adif/import.php:66 application/views/adif/import.php:182 +#: application/views/adif/import.php:227 #: application/views/awards/pota/index.php:34 #: application/views/awards/sig/qso_list.php:11 #: application/views/awards/sota/index.php:25 #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:104 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:152 +#: application/views/contesting/index.php:156 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:168 +#: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 -#: application/views/lotw_views/index.php:39 +#: application/views/lotw_views/index.php:35 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 #: application/views/qslcard/index.php:28 @@ -2493,35 +3027,36 @@ msgstr "" #: application/views/qslprint/qslprint.php:21 #: application/views/qslprint/qsolist.php:6 #: application/views/qso/edit_ajax.php:62 application/views/qso/index.php:124 +#: application/views/reg1test/index.php:33 #: application/views/search/cqzones.php:32 #: application/views/search/cqzones_result.php:9 #: application/views/search/lotw_unconfirmed.php:33 #: application/views/search/lotw_unconfirmed_result.php:6 #: application/views/search/result.php:11 -#: application/views/simplefle/index.php:142 -#: application/views/station_profile/edit.php:36 +#: application/views/simplefle/index.php:148 +#: application/views/station_profile/edit.php:63 #: application/views/stationsetup/linkedlocations.php:17 -#: application/views/user/edit.php:123 application/views/user/main.php:4 -#: application/views/user/main.php:47 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:507 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 +#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:510 msgid "Callsign" msgstr "" -#: application/views/activators/index.php:100 +#: application/views/activators/index.php:99 msgid "Count" msgstr "" -#: application/views/activators/index.php:102 -#: application/views/timeline/index.php:121 -#: application/views/timeline/index.php:153 -#: application/views/timeline/index.php:178 -#: application/views/timeline/index.php:205 -#: application/views/timeline/index.php:232 -#: application/views/timeline/index.php:258 +#: application/views/activators/index.php:101 +#: application/views/timeline/index.php:154 +#: application/views/timeline/index.php:186 +#: application/views/timeline/index.php:211 +#: application/views/timeline/index.php:238 +#: application/views/timeline/index.php:265 +#: application/views/timeline/index.php:291 msgid "Show QSO's" msgstr "" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "" @@ -2562,10 +3097,12 @@ msgstr "" #: application/views/awards/wwff/index.php:32 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:25 -#: application/views/contesting/index.php:42 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36 +#: application/views/contesting/index.php:93 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:163 +#: application/views/debug/index.php:545 +#: application/views/distancerecords/index.php:16 +#: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2578,22 +3115,22 @@ msgstr "" #: application/views/qslcard/searchresult.php:4 #: application/views/qslprint/qslprint.php:22 #: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:64 -#: application/views/qso/index.php:100 +#: application/views/qso/index.php:100 application/views/satellite/pass.php:473 #: application/views/search/cqzones_result.php:7 #: application/views/search/result_search.php:4 #: application/views/search/search_result_ajax.php:89 -#: application/views/simplefle/index.php:140 +#: application/views/simplefle/index.php:146 #: application/views/statistics/custom.php:38 #: application/views/statistics/custom_result.php:40 #: application/views/statistics/custom_result.php:85 -#: application/views/timeline/index.php:116 -#: application/views/timeline/index.php:151 -#: application/views/timeline/index.php:176 -#: application/views/timeline/index.php:201 -#: application/views/timeline/index.php:230 -#: application/views/timeline/index.php:255 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:184 +#: application/views/timeline/index.php:209 +#: application/views/timeline/index.php:234 +#: application/views/timeline/index.php:263 +#: application/views/timeline/index.php:288 #: application/views/view_log/partial/log.php:4 -#: application/views/view_log/partial/log_ajax.php:57 +#: application/views/view_log/partial/log_ajax.php:59 #: application/views/visitor/index.php:147 #: application/views/widgets/qsos.php:24 msgid "Date" @@ -2604,10 +3141,12 @@ msgstr "Datum" #: application/views/awards/wwff/index.php:33 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:26 -#: application/views/contesting/index.php:47 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37 +#: application/views/contesting/index.php:98 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:166 +#: application/views/debug/index.php:546 +#: application/views/distancerecords/index.php:17 +#: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2618,12 +3157,12 @@ msgstr "Datum" #: application/views/search/cqzones_result.php:8 #: application/views/search/result_search.php:5 #: application/views/search/search_result_ajax.php:91 -#: application/views/simplefle/index.php:141 +#: application/views/simplefle/index.php:147 #: application/views/statistics/custom_result.php:86 -#: application/views/timeline/index.php:256 +#: application/views/timeline/index.php:289 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 -#: application/views/view_log/partial/log_ajax.php:59 +#: application/views/view_log/partial/log_ajax.php:61 #: application/views/visitor/index.php:150 #: application/views/widgets/qsos.php:26 msgid "Time" @@ -2632,7 +3171,7 @@ msgstr "Tijd" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 -#: application/views/contesting/index.php:201 +#: application/views/contesting/index.php:248 #: application/views/debug/index.php:547 application/views/debug/index.php:582 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -2644,7 +3183,7 @@ msgstr "Tijd" #: application/views/search/search_result_ajax.php:93 #: application/views/statistics/custom_result.php:87 #: application/views/view_log/partial/log.php:8 -#: application/views/view_log/partial/log_ajax.php:61 +#: application/views/view_log/partial/log_ajax.php:63 #: application/views/visitor/index.php:152 #: application/views/widgets/qsos.php:28 msgid "Call" @@ -2662,14 +3201,14 @@ msgstr "" msgid "DCL QSL Status" msgstr "" -#: application/views/adif/import.php:36 application/views/adif/import.php:242 +#: application/views/adif/import.php:36 application/views/adif/import.php:252 msgid "DARC DCL" msgstr "" #: application/views/adif/import.php:55 -#: application/views/dashboard/index.php:97 -#: application/views/dashboard/index.php:118 -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:112 +#: application/views/dashboard/index.php:133 +#: application/views/dashboard/index.php:139 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2679,29 +3218,29 @@ msgstr "Belangrijk" msgid "Log Files must have the file type *.adi" msgstr "" -#: application/views/adif/import.php:56 application/views/view_log/qso.php:622 +#: application/views/adif/import.php:56 application/views/view_log/qso.php:625 msgid "Maximum file upload size is " msgstr "" -#: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:175 +#: application/views/adif/import.php:56 application/views/adif/import.php:230 +#: application/views/adif/import.php:268 application/views/debug/index.php:175 #: application/views/debug/index.php:192 application/views/debug/index.php:537 #: application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:34 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 -#: application/views/station_profile/index.php:31 #: application/views/stationsetup/stationsetup.php:111 -#: application/views/view_log/qso.php:622 +#: application/views/view_log/qso.php:625 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" msgstr "" #: application/views/adif/import.php:60 application/views/adif/import.php:62 -#: application/views/adif/import.php:168 application/views/adif/import.php:215 +#: application/views/adif/import.php:178 application/views/adif/import.php:225 #: application/views/eqsl/import.php:36 application/views/hrdlog/export.php:69 -#: application/views/qrz/export.php:89 application/views/webadif/export.php:89 +#: application/views/qrz/export.php:89 application/views/reg1test/index.php:30 +#: application/views/webadif/export.php:89 msgid "Select Station Location" msgstr "" @@ -2728,69 +3267,75 @@ msgstr "" #: application/views/adif/import.php:95 application/views/adif/import.php:105 #: application/views/adif/import.php:115 application/views/adif/import.php:125 +#: application/views/adif/import.php:135 msgid "Select if ADIF being imported does not contain this information." msgstr "" #: application/views/adif/import.php:103 -msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" +msgid "Mark imported QSOs as uploaded to eQSL Logbook" msgstr "" #: application/views/adif/import.php:113 -msgid "Mark imported QSOs as uploaded to QRZ Logbook" +msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" msgstr "" #: application/views/adif/import.php:123 -msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgid "Mark imported QSOs as uploaded to QRZ Logbook" msgstr "" #: application/views/adif/import.php:133 +msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgstr "" + +#: application/views/adif/import.php:143 msgid "Use DXCC information from ADIF" msgstr "" -#: application/views/adif/import.php:135 +#: application/views/adif/import.php:145 msgid "" "If not selected, Wavelog will attempt to determine DXCC information " "automatically." msgstr "" -#: application/views/adif/import.php:143 +#: application/views/adif/import.php:153 msgid "Always use login-callsign as operator-name on import" msgstr "" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:32 -#: application/views/interface_assets/footer.php:495 -#: application/views/interface_assets/footer.php:2119 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2133 msgid "DANGER" msgstr "" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 msgid "Ignore Stationcallsign on import" msgstr "" -#: application/views/adif/import.php:154 +#: application/views/adif/import.php:164 +#, php-format msgid "" -"If selected, Wavelog will try to import all QSO's of the ADIF, " +"If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " "regardless if they match to the chosen station-location." msgstr "" -#: application/views/adif/import.php:158 application/views/adif/import.php:273 +#: application/views/adif/import.php:168 application/views/adif/import.php:283 #: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 #: application/views/webadif/export.php:55 msgid "Upload" msgstr "" -#: application/views/adif/import.php:165 +#: application/views/adif/import.php:175 msgid "Take your logbook file anywhere!" msgstr "" -#: application/views/adif/import.php:166 +#: application/views/adif/import.php:176 msgid "" "Exporting ADIFs allows you to import contacts into third party applications " "like LoTW, Awards or just for keeping a backup." msgstr "" -#: application/views/adif/import.php:176 application/views/adif/import.php:222 +#: application/views/adif/import.php:186 application/views/adif/import.php:232 #: application/views/cfd/index.php:15 application/views/csv/index.php:118 #: application/views/dxatlas/index.php:118 #: application/views/hrdlog/export.php:77 application/views/kml/index.php:103 @@ -2799,7 +3344,7 @@ msgstr "" msgid "From date" msgstr "" -#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/adif/import.php:189 application/views/adif/import.php:235 #: application/views/cfd/index.php:20 application/views/csv/index.php:123 #: application/views/dxatlas/index.php:123 #: application/views/hrdlog/export.php:82 application/views/kml/index.php:108 @@ -2808,40 +3353,40 @@ msgstr "" msgid "To date" msgstr "" -#: application/views/adif/import.php:187 +#: application/views/adif/import.php:197 msgid "Mark exported QSOs as uploaded to LoTW" msgstr "" -#: application/views/adif/import.php:195 +#: application/views/adif/import.php:205 msgid "Export QSOs not uploaded to LoTW" msgstr "" -#: application/views/adif/import.php:200 +#: application/views/adif/import.php:210 msgid "Export QSO's" msgstr "" -#: application/views/adif/import.php:205 +#: application/views/adif/import.php:215 msgid "Export Satellite-Only QSOs" msgstr "" -#: application/views/adif/import.php:206 +#: application/views/adif/import.php:216 msgid "Export All Satellite QSOs" msgstr "" -#: application/views/adif/import.php:208 +#: application/views/adif/import.php:218 msgid "Export All Satellite QSOs Confirmed on LoTW" msgstr "" -#: application/views/adif/import.php:220 application/views/hrdlog/export.php:74 +#: application/views/adif/import.php:230 application/views/hrdlog/export.php:74 #: application/views/qrz/export.php:94 application/views/webadif/export.php:94 msgid "If a date range is not selected then all QSOs will be marked!" msgstr "" -#: application/views/adif/import.php:228 +#: application/views/adif/import.php:238 msgid "Mark QSOs as exported to LoTW" msgstr "" -#: application/views/adif/import.php:242 +#: application/views/adif/import.php:252 #, php-format msgid "" "Go to %s and export your logbook with confirmed DOKs. To speed up the " @@ -2850,36 +3395,47 @@ msgid "" "with DOK info." msgstr "" -#: application/views/adif/import.php:249 +#: application/views/adif/import.php:259 msgid "Only import DOK data from QSOs confirmed on DCL." msgstr "" -#: application/views/adif/import.php:251 +#: application/views/adif/import.php:261 msgid "" "Uncheck if you also want to update DOK with data from unconfirmed QSOs in " "DCL." msgstr "" -#: application/views/adif/import.php:258 +#: application/views/adif/import.php:268 msgid "Overwrites exisiting DOK in log by DCL (if different)." msgstr "" -#: application/views/adif/import.php:260 +#: application/views/adif/import.php:270 msgid "" "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " "log." msgstr "" -#: application/views/adif/import.php:267 +#: application/views/adif/import.php:277 msgid "Ignore QSOs that cannot be matched." -msgstr "Ignore QSOs that cannot be matched" +msgstr "Negeer QSOs die niet kunnen worden bevestigd" -#: application/views/adif/import.php:269 +#: application/views/adif/import.php:279 msgid "" "If unchecked, information about QSOs which could not be found in Wavelog " "will be displayed." msgstr "" +#: application/views/adif/import_failed.php:15 +msgid "The ADIF file could not be parsed correctly." +msgstr "" + +#: application/views/adif/import_failed.php:16 +msgid "" +"At least one of the ADIF fields could not be parsed and/or inserted into the " +"database. Please check the imported ADIF file. You can use an online ADIF " +"file checker. For example:" +msgstr "" + #: application/views/adif/import_success.php:15 msgid "Yay, its imported!" msgstr "" @@ -2932,24 +3488,22 @@ msgstr "" #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 -#: application/views/interface_assets/footer.php:43 -#: application/views/interface_assets/footer.php:530 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 -#: application/views/options/appearance.php:107 +#: application/views/options/appearance.php:116 #: application/views/options/dxcluster.php:67 #: application/views/options/email.php:112 #: application/views/options/oqrs.php:63 #: application/views/options/radios.php:45 #: application/views/options/version_dialog.php:78 -#: application/views/qso/components/winkeysettings.php:90 -#: application/views/qso/components/winkeysettings_results.php:90 #: application/views/satellite/create.php:70 #: application/views/simplefle/index.php:22 msgid "Save" msgstr "" #: application/views/api/help.php:14 -#: application/views/interface_assets/header.php:431 +#: application/views/interface_assets/header.php:437 msgid "API Keys" msgstr "" @@ -2973,7 +3527,7 @@ msgid "API URL" msgstr "" #: application/views/api/help.php:19 application/views/api/help.php:38 -#: application/views/cron/index.php:21 application/views/debug/index.php:36 +#: application/views/cron/index.php:22 application/views/debug/index.php:36 msgid "Copy to clipboard" msgstr "" @@ -2982,14 +3536,15 @@ msgid "The API URL for this Wavelog instance is" msgstr "" #: application/views/api/help.php:20 application/views/dxcalendar/index.php:15 -#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:477 -#: application/views/qso/index.php:538 application/views/qso/index.php:583 +#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:504 +#: application/views/qso/index.php:560 application/views/qso/index.php:605 #: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 #: application/views/sattimers/index.php:73 #: application/views/sattimers/index.php:75 +#: application/views/sattimers/index.php:77 #: application/views/search/filter.php:69 msgid "Info" msgstr "" @@ -3005,7 +3560,7 @@ msgid "API Key" msgstr "" #: application/views/api/help.php:28 application/views/cron/edit.php:30 -#: application/views/cron/index.php:51 +#: application/views/cron/index.php:53 #: application/views/search/stored_queries.php:8 msgid "Description" msgstr "" @@ -3018,19 +3573,18 @@ msgstr "" msgid "Permissions" msgstr "" -#: application/views/api/help.php:31 application/views/cron/index.php:52 -#: application/views/lotw_views/index.php:45 +#: application/views/api/help.php:31 application/views/cron/index.php:54 +#: application/views/lotw_views/index.php:41 #: application/views/mode/index.php:31 #: application/views/oqrs/showrequests.php:91 #: application/views/sattimers/index.php:39 #: application/views/stationsetup/stationsetup.php:31 -#: application/views/timeline/index.php:119 -#: application/views/update/index.php:30 +#: application/views/timeline/index.php:152 msgid "Status" msgstr "" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:519 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3066,6 +3620,7 @@ msgstr "" #: application/views/awards/counties/details.php:4 #: application/views/awards/details.php:1 #: application/views/awards/vucc/band.php:4 +#: application/views/distancerecords/details.php:1 #: application/views/timeline/details.php:2 msgid "Filtering on" msgstr "" @@ -3076,8 +3631,8 @@ msgstr "" #: application/views/awards/counties/index.php:6 #: application/views/awards/counties/index.php:13 -#: application/views/awards/cq/index.php:17 -#: application/views/awards/cq/index.php:24 +#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:26 #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:13 #: application/views/awards/dxcc/index.php:13 @@ -3086,12 +3641,12 @@ msgstr "" #: application/views/awards/ffma/index.php:14 #: application/views/awards/gridmaster/index.php:6 #: application/views/awards/gridmaster/index.php:13 -#: application/views/awards/helvetia/index.php:17 -#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:26 #: application/views/awards/iota/index.php:15 #: application/views/awards/iota/index.php:22 -#: application/views/awards/itu/index.php:17 -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:26 #: application/views/awards/jcc/index.php:15 #: application/views/awards/jcc/index.php:22 #: application/views/awards/pota/index.php:6 @@ -3104,10 +3659,12 @@ msgstr "" #: application/views/awards/vucc/index.php:13 #: application/views/awards/wab/index.php:11 #: application/views/awards/wab/index.php:18 -#: application/views/awards/waja/index.php:16 -#: application/views/awards/waja/index.php:23 -#: application/views/awards/was/index.php:17 -#: application/views/awards/was/index.php:24 +#: application/views/awards/wac/index.php:7 +#: application/views/awards/wac/index.php:14 +#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:25 +#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:26 #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:13 msgid "Award Info" @@ -3145,17 +3702,18 @@ msgid "Counties Confirmed" msgstr "" #: application/views/awards/counties/index.php:39 -#: application/views/awards/cq/index.php:174 +#: application/views/awards/cq/index.php:176 #: application/views/awards/dok/index.php:174 #: application/views/awards/dxcc/index.php:257 -#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/helvetia/index.php:179 #: application/views/awards/iota/index.php:201 -#: application/views/awards/itu/index.php:174 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:185 -#: application/views/awards/rac/index.php:169 -#: application/views/awards/waja/index.php:177 -#: application/views/awards/was/index.php:177 -#: application/views/dashboard/index.php:217 +#: application/views/awards/rac/index.php:171 +#: application/views/awards/wac/index.php:177 +#: application/views/awards/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:233 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3171,213 +3729,230 @@ msgstr "" msgid "Total" msgstr "" -#: application/views/awards/cq/index.php:18 +#: application/views/awards/cq/index.php:3 +#: application/views/awards/cq/index.php:150 application/views/csv/index.php:80 +#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/logbookadvanced/edit.php:6 +#: application/views/logbookadvanced/index.php:246 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:284 +#: application/views/qso/index.php:390 +#: application/views/search/cqzones_result.php:13 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:264 +#: application/views/timeplotter/index.php:44 +msgid "CQ Zone" +msgstr "" + +#: application/views/awards/cq/index.php:4 +#: application/views/awards/itu/index.php:4 +msgid "Hover over a zone" +msgstr "" + +#: application/views/awards/cq/index.php:20 msgid "CQ Magazine WAZ Award" msgstr "" -#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:21 msgid "" "The CQ Magazine is located in the US and one of the most popular amateur " "radio magazines in the world. The magazine first appeared in January 1945 " "and focuses on awards and the practical aspects of amateur radio." msgstr "" -#: application/views/awards/cq/index.php:20 +#: application/views/awards/cq/index.php:22 msgid "" "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to " "all 40 CQ Zones along with the corresponding confirmation." msgstr "" -#: application/views/awards/cq/index.php:21 +#: application/views/awards/cq/index.php:23 #, php-format msgctxt "uses 'CQ Magazine'" msgid "You can find all the information and rules on the Website of the %s." msgstr "" -#: application/views/awards/cq/index.php:23 +#: application/views/awards/cq/index.php:25 msgid "Awards - CQ Magazine WAZ" msgstr "" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 #: application/views/awards/wab/list.php:6 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:73 -#: application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:362 -#: application/views/interface_assets/footer.php:39 +#: application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:378 +#: application/views/interface_assets/footer.php:40 #: application/views/visitor/index.php:266 msgid "Confirmed" msgstr "Bevestigd" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:256 +#: application/views/dashboard/index.php:372 #: application/views/visitor/index.php:262 msgid "Worked" msgstr "Gewerkt" -#: application/views/awards/cq/index.php:36 +#: application/views/awards/cq/index.php:38 #: application/views/awards/dok/index.php:41 #: application/views/awards/dxcc/index.php:43 -#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:43 -#: application/views/awards/itu/index.php:36 +#: application/views/awards/itu/index.php:38 #: application/views/awards/jcc/index.php:34 -#: application/views/awards/rac/index.php:27 -#: application/views/awards/waja/index.php:35 -#: application/views/awards/was/index.php:35 +#: application/views/awards/rac/index.php:29 +#: application/views/awards/wac/index.php:26 +#: application/views/awards/waja/index.php:37 +#: application/views/awards/was/index.php:37 msgid "Show worked" msgstr "" -#: application/views/awards/cq/index.php:40 +#: application/views/awards/cq/index.php:42 #: application/views/awards/dok/index.php:45 #: application/views/awards/dxcc/index.php:47 -#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:47 -#: application/views/awards/itu/index.php:40 +#: application/views/awards/itu/index.php:42 #: application/views/awards/jcc/index.php:38 -#: application/views/awards/rac/index.php:31 -#: application/views/awards/waja/index.php:39 -#: application/views/awards/was/index.php:39 +#: application/views/awards/rac/index.php:33 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/waja/index.php:41 +#: application/views/awards/was/index.php:41 msgid "Show confirmed" msgstr "" -#: application/views/awards/cq/index.php:44 +#: application/views/awards/cq/index.php:46 #: application/views/awards/dxcc/index.php:51 -#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:51 -#: application/views/awards/itu/index.php:44 +#: application/views/awards/itu/index.php:46 #: application/views/awards/jcc/index.php:42 -#: application/views/awards/rac/index.php:35 -#: application/views/awards/waja/index.php:43 -#: application/views/awards/was/index.php:43 +#: application/views/awards/rac/index.php:37 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/waja/index.php:45 +#: application/views/awards/was/index.php:45 msgid "Show not worked" msgstr "" -#: application/views/awards/cq/index.php:50 +#: application/views/awards/cq/index.php:52 #: application/views/awards/dok/index.php:51 #: application/views/awards/dxcc/index.php:57 -#: application/views/awards/helvetia/index.php:49 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/helvetia/index.php:51 +#: application/views/awards/itu/index.php:52 #: application/views/awards/jcc/index.php:48 -#: application/views/awards/rac/index.php:41 -#: application/views/awards/waja/index.php:49 -#: application/views/awards/was/index.php:49 +#: application/views/awards/rac/index.php:43 +#: application/views/awards/wac/index.php:40 +#: application/views/awards/waja/index.php:51 +#: application/views/awards/was/index.php:51 msgid "Show QSO with QSL Type" msgstr "" -#: application/views/awards/cq/index.php:54 -#: application/views/awards/itu/index.php:54 -#: application/views/interface_assets/footer.php:2098 -#: application/views/qso/edit_ajax.php:378 +#: application/views/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/awards/wac/index.php:44 +#: application/views/interface_assets/footer.php:2112 +#: application/views/qso/edit_ajax.php:405 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "" -#: application/views/awards/cq/index.php:110 +#: application/views/awards/cq/index.php:112 #: application/views/awards/dok/index.php:126 #: application/views/awards/dxcc/index.php:186 -#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/helvetia/index.php:111 #: application/views/awards/iota/index.php:129 -#: application/views/awards/itu/index.php:110 +#: application/views/awards/itu/index.php:112 #: application/views/awards/jcc/index.php:112 -#: application/views/awards/rac/index.php:101 -#: application/views/awards/waja/index.php:113 -#: application/views/awards/was/index.php:109 +#: application/views/awards/rac/index.php:103 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/waja/index.php:115 +#: application/views/awards/was/index.php:111 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:523 +#: application/views/logbookadvanced/index.php:551 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 msgid "Reset" msgstr "" -#: application/views/awards/cq/index.php:113 +#: application/views/awards/cq/index.php:115 msgid "Show CQ Zone Map" msgstr "" -#: application/views/awards/cq/index.php:122 +#: application/views/awards/cq/index.php:124 #: application/views/awards/dxcc/index.php:199 -#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/helvetia/index.php:124 #: application/views/awards/iota/index.php:142 -#: application/views/awards/itu/index.php:122 -#: application/views/awards/rac/index.php:114 -#: application/views/awards/waja/index.php:126 -#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:124 +#: application/views/awards/rac/index.php:116 +#: application/views/awards/waja/index.php:128 +#: application/views/awards/was/index.php:124 msgid "Table" msgstr "" -#: application/views/awards/cq/index.php:125 +#: application/views/awards/cq/index.php:127 #: application/views/awards/dok/index.php:128 #: application/views/awards/dxcc/index.php:202 -#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/helvetia/index.php:127 #: application/views/awards/iota/index.php:145 -#: application/views/awards/itu/index.php:125 +#: application/views/awards/itu/index.php:127 #: application/views/awards/jcc/index.php:129 -#: application/views/awards/rac/index.php:117 +#: application/views/awards/rac/index.php:119 #: application/views/awards/wab/index.php:108 -#: application/views/awards/waja/index.php:129 -#: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:516 +#: application/views/awards/waja/index.php:131 +#: application/views/awards/was/index.php:127 +#: application/views/logbookadvanced/index.php:544 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "" -#: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 -#: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:235 -#: application/views/logbookadvanced/index.php:586 -#: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:90 -#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 -#: application/views/qso/index.php:390 -#: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:106 -#: application/views/station_profile/edit.php:126 -#: application/views/timeline/index.php:231 -#: application/views/timeplotter/index.php:44 -msgid "CQ Zone" -msgstr "" - -#: application/views/awards/cq/index.php:165 +#: application/views/awards/cq/index.php:167 #: application/views/awards/dok/index.php:165 #: application/views/awards/dxcc/index.php:248 -#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/helvetia/index.php:170 #: application/views/awards/iota/index.php:192 -#: application/views/awards/itu/index.php:165 +#: application/views/awards/itu/index.php:167 #: application/views/awards/jcc/index.php:168 -#: application/views/awards/rac/index.php:160 -#: application/views/awards/waja/index.php:168 -#: application/views/awards/was/index.php:168 +#: application/views/awards/rac/index.php:162 +#: application/views/awards/wac/index.php:168 +#: application/views/awards/waja/index.php:170 +#: application/views/awards/was/index.php:170 msgid "Summary" msgstr "" -#: application/views/awards/cq/index.php:178 +#: application/views/awards/cq/index.php:180 #: application/views/awards/dok/index.php:178 #: application/views/awards/dxcc/index.php:262 -#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:206 -#: application/views/awards/itu/index.php:178 +#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:195 -#: application/views/awards/rac/index.php:173 -#: application/views/awards/waja/index.php:182 -#: application/views/awards/was/index.php:181 +#: application/views/awards/rac/index.php:175 +#: application/views/awards/wac/index.php:181 +#: application/views/awards/waja/index.php:184 +#: application/views/awards/was/index.php:183 msgid "Total worked" msgstr "" -#: application/views/awards/cq/index.php:185 +#: application/views/awards/cq/index.php:187 #: application/views/awards/dok/index.php:185 #: application/views/awards/dxcc/index.php:269 -#: application/views/awards/helvetia/index.php:188 +#: application/views/awards/helvetia/index.php:190 #: application/views/awards/iota/index.php:213 -#: application/views/awards/itu/index.php:185 +#: application/views/awards/itu/index.php:187 #: application/views/awards/jcc/index.php:214 -#: application/views/awards/rac/index.php:180 -#: application/views/awards/waja/index.php:189 -#: application/views/awards/was/index.php:188 +#: application/views/awards/rac/index.php:182 +#: application/views/awards/wac/index.php:188 +#: application/views/awards/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "" @@ -3425,23 +4000,24 @@ msgstr "" #: application/views/awards/dok/index.php:37 #: application/views/awards/dxcc/index.php:39 -#: application/views/awards/helvetia/index.php:31 +#: application/views/awards/helvetia/index.php:33 #: application/views/awards/iota/index.php:39 #: application/views/awards/jcc/index.php:30 -#: application/views/awards/rac/index.php:23 -#: application/views/awards/waja/index.php:31 -#: application/views/awards/was/index.php:31 +#: application/views/awards/rac/index.php:25 +#: application/views/awards/waja/index.php:33 +#: application/views/awards/was/index.php:33 msgid "Worked / Confirmed" msgstr "" #: application/views/awards/dok/index.php:80 #: application/views/awards/dxcc/index.php:120 -#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/helvetia/index.php:76 #: application/views/awards/iota/index.php:94 #: application/views/awards/jcc/index.php:77 -#: application/views/awards/rac/index.php:66 -#: application/views/awards/waja/index.php:78 -#: application/views/awards/was/index.php:74 +#: application/views/awards/rac/index.php:68 +#: application/views/awards/wac/index.php:66 +#: application/views/awards/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "" @@ -3462,10 +4038,12 @@ msgid "" msgstr "" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 msgid "ARRL website" msgstr "" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 #, php-format msgid "You can find all information about the DXCC Award on the %s." msgstr "" @@ -3487,63 +4065,77 @@ msgstr "" #: application/views/awards/dxcc/index.php:87 #: application/views/awards/iota/index.php:61 #: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/logbookadvanced/edit.php:144 +#: application/views/logbookadvanced/index.php:309 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 -#: application/views/view_log/qso.php:250 +#: application/views/view_log/qso.php:253 msgid "Antarctica" msgstr "" #: application/views/awards/dxcc/index.php:91 #: application/views/awards/iota/index.php:65 #: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/logbookadvanced/edit.php:143 +#: application/views/logbookadvanced/index.php:308 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 -#: application/views/view_log/qso.php:247 +#: application/views/view_log/qso.php:250 msgid "Africa" msgstr "" #: application/views/awards/dxcc/index.php:95 #: application/views/awards/iota/index.php:69 #: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/logbookadvanced/edit.php:146 +#: application/views/logbookadvanced/index.php:311 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 -#: application/views/view_log/qso.php:253 +#: application/views/view_log/qso.php:256 msgid "Asia" msgstr "" #: application/views/awards/dxcc/index.php:99 #: application/views/awards/iota/index.php:73 #: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/logbookadvanced/edit.php:147 +#: application/views/logbookadvanced/index.php:312 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 -#: application/views/view_log/qso.php:256 +#: application/views/view_log/qso.php:259 msgid "Europe" msgstr "" #: application/views/awards/dxcc/index.php:103 #: application/views/awards/iota/index.php:77 #: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/logbookadvanced/edit.php:145 +#: application/views/logbookadvanced/index.php:310 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 -#: application/views/view_log/qso.php:259 +#: application/views/view_log/qso.php:262 msgid "North America" msgstr "" #: application/views/awards/dxcc/index.php:107 #: application/views/awards/iota/index.php:81 #: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/logbookadvanced/edit.php:148 +#: application/views/logbookadvanced/index.php:313 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:265 +#: application/views/view_log/qso.php:268 msgid "South America" msgstr "" #: application/views/awards/dxcc/index.php:111 #: application/views/awards/iota/index.php:85 #: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/logbookadvanced/edit.php:149 +#: application/views/logbookadvanced/index.php:314 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 -#: application/views/view_log/qso.php:262 +#: application/views/view_log/qso.php:265 msgid "Oceania" msgstr "" @@ -3557,13 +4149,13 @@ msgstr "" #: application/views/awards/dxcc/index.php:226 #: application/views/awards/iota/index.php:170 -#: application/views/timeline/index.php:117 -#: application/views/timeline/index.php:204 +#: application/views/timeline/index.php:150 +#: application/views/timeline/index.php:237 msgid "Prefix" msgstr "" #: application/views/awards/ffma/index.php:8 -#: application/views/interface_assets/header.php:236 +#: application/views/interface_assets/header.php:240 msgid "Fred Fish Memorial Award" msgstr "" @@ -3618,11 +4210,20 @@ msgstr "" msgid "This map shows only QSOs worked on SAT." msgstr "" -#: application/views/awards/helvetia/index.php:18 +#: application/views/awards/helvetia/index.php:3 +msgctxt "Switzerland Canton" +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:4 +msgid "Hover over a canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:20 msgid "HELVETIA 26 | SWITZERLAND AWARD" msgstr "" -#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:21 msgid "" "The USKA (Union of Swiss Shortwave Amateurs) sponsors two awards, the " "HELVETIA 26 (H26) Award and the SWITZERLAND Award, aimed at promoting " @@ -3630,33 +4231,33 @@ msgid "" "as possible on multiple bands." msgstr "" -#: application/views/awards/helvetia/index.php:20 +#: application/views/awards/helvetia/index.php:22 msgid "" "These awards come in two versions: one for HF bands and the other for VHF " "(including SHF and UHF) bands. Valid connections for these awards date back " "to January 1, 1980" msgstr "" -#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/helvetia/index.php:23 #: application/views/awards/jcc/index.php:19 #: application/views/awards/sota/index.php:10 #: application/views/awards/wab/index.php:15 -#: application/views/awards/waja/index.php:20 +#: application/views/awards/waja/index.php:22 #: application/views/awards/wwff/index.php:10 #, php-format msgid "For more information, please visit: %s." msgstr "" -#: application/views/awards/helvetia/index.php:112 +#: application/views/awards/helvetia/index.php:114 msgid "Show Helvetia Map" msgstr "" -#: application/views/awards/helvetia/index.php:149 +#: application/views/awards/helvetia/index.php:151 msgid "Canton" msgstr "" #: application/views/awards/index.php:9 application/views/bands/index.php:46 -#: application/views/interface_assets/header.php:162 +#: application/views/interface_assets/header.php:164 msgid "CQ" msgstr "" @@ -3704,11 +4305,11 @@ msgstr "" #: application/views/awards/iota/index.php:171 #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 -#: application/views/contesting/index.php:153 -#: application/views/contesting/index.php:171 +#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:214 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:559 +#: application/views/logbookadvanced/index.php:587 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3718,12 +4319,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:19 #: application/views/stationsetup/stationsetup.php:30 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:203 application/views/user/edit.php:241 +#: application/views/timeline/index.php:236 application/views/user/edit.php:241 #: application/views/user/edit.php:263 application/views/user/edit.php:285 #: application/views/user/edit.php:307 application/views/user/edit.php:330 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:191 -#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:194 +#: application/views/view_log/qso.php:514 msgid "Name" msgstr "" @@ -3731,7 +4332,19 @@ msgstr "" msgid "Deleted" msgstr "" -#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:3 +#: application/views/awards/itu/index.php:150 +#: application/views/logbookadvanced/edit.php:10 +#: application/views/logbookadvanced/index.php:257 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:400 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 +msgid "ITU Zone" +msgstr "" + +#: application/views/awards/itu/index.php:21 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -3739,30 +4352,20 @@ msgid "" "(ITU)." msgstr "" -#: application/views/awards/itu/index.php:20 +#: application/views/awards/itu/index.php:22 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "" -#: application/views/awards/itu/index.php:23 +#: application/views/awards/itu/index.php:25 msgid "Awards - ITU Zones" msgstr "" -#: application/views/awards/itu/index.php:113 +#: application/views/awards/itu/index.php:115 msgid "Show ITU Zone Map" msgstr "" -#: application/views/awards/itu/index.php:148 -#: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:246 -#: application/views/logbookadvanced/index.php:589 -#: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:120 -#: application/views/station_profile/edit.php:143 -msgid "ITU Zone" -msgstr "" - #: application/views/awards/jcc/index.php:16 msgid "JCC - Japan Century Cities Award" msgstr "" @@ -3788,7 +4391,7 @@ msgstr "" #: application/views/awards/jcc/index.php:116 #: application/views/cabrillo/index.php:180 application/views/cfd/index.php:25 #: application/views/csv/index.php:128 application/views/dxatlas/index.php:128 -#: application/views/kml/index.php:113 +#: application/views/kml/index.php:113 application/views/reg1test/index.php:145 msgid "Export" msgstr "" @@ -3799,18 +4402,19 @@ msgid "Results" msgstr "" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 +#: application/views/distancerecords/index.php:13 msgid "Number" msgstr "" #: application/views/awards/jcc/index.php:152 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:524 msgid "City" -msgstr "By" +msgstr "Staf" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:368 #: application/views/distances/index.php:23 msgid "SAT" msgstr "" @@ -3842,15 +4446,24 @@ msgid "" msgstr "" #: application/views/awards/pota/index.php:31 -#: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:177 -#: application/views/station_profile/edit.php:245 -#: application/views/user/edit.php:595 application/views/view_log/qso.php:303 -#: application/views/view_log/qso.php:570 +#: application/views/qso/index.php:236 application/views/qso/index.php:492 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 +#: application/views/user/edit.php:595 application/views/view_log/qso.php:306 +#: application/views/view_log/qso.php:573 msgid "POTA Reference(s)" msgstr "POTA Referentie" -#: application/views/awards/rac/index.php:104 +#: application/views/awards/rac/index.php:3 +msgctxt "Canada Province" +msgid "Province" +msgstr "" + +#: application/views/awards/rac/index.php:4 +msgid "Hover over a province" +msgstr "" + +#: application/views/awards/rac/index.php:106 msgid "Show RAC Map" msgstr "" @@ -3900,7 +4513,7 @@ msgstr "" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:535 +#: application/views/logbookadvanced/index.php:563 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -3996,17 +4609,48 @@ msgstr "" msgid "WAB Square" msgstr "" -#: application/views/awards/waja/index.php:17 +#: application/views/awards/wac/index.php:9 +msgid "" +"Sponsored by the International Amateur Radio Union (IARU), the Worked All " +"Continents award is issued for working and confirming all six continents. " +"These are North America, South America, Oceania, Asia, Europe and Africa." +msgstr "" + +#: application/views/awards/wac/index.php:13 +msgid "Awards - Worked All Continents (WAC)" +msgstr "" + +#: application/views/awards/wac/index.php:151 +#: application/views/continents/index.php:62 +#: application/views/logbookadvanced/edit.php:25 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 +#: application/views/view_log/qso.php:245 +msgid "Continent" +msgstr "" + +#: application/views/awards/waja/index.php:3 +msgctxt "Japan Prefecture" +msgid "Prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:4 +msgid "Hover over a prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:19 msgid "WAJA - Worked All Japan prefectures Award" msgstr "" -#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:20 msgid "" "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " "radio operators to work all the prefectures in Japan." msgstr "" -#: application/views/awards/waja/index.php:19 +#: application/views/awards/waja/index.php:21 msgid "" "May be claimed for having contacted (heard) and received a QSL card from an " "amateur station located in each of the 47 prefectures of Japan. A list of " @@ -4014,20 +4658,29 @@ msgid "" "however names of prefectures may be omitted." msgstr "" -#: application/views/awards/waja/index.php:116 +#: application/views/awards/waja/index.php:118 msgid "Show WAJA Map" msgstr "" -#: application/views/awards/waja/index.php:152 -#: application/views/timeline/index.php:152 +#: application/views/awards/waja/index.php:154 +#: application/views/timeline/index.php:185 msgid "Prefecture" msgstr "" -#: application/views/awards/was/index.php:18 +#: application/views/awards/was/index.php:3 +msgctxt "USA State" +msgid "State" +msgstr "" + +#: application/views/awards/was/index.php:4 +msgid "Hover over a state" +msgstr "" + +#: application/views/awards/was/index.php:20 msgid "WAS Award" msgstr "" -#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:21 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -4035,7 +4688,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:20 +#: application/views/awards/was/index.php:22 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -4044,13 +4697,13 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:21 +#: application/views/awards/was/index.php:23 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:112 +#: application/views/awards/was/index.php:114 msgid "Show WAS Map" msgstr "" @@ -4073,11 +4726,11 @@ msgid "" msgstr "" #: application/views/awards/wwff/index.php:31 -#: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:171 -#: application/views/station_profile/edit.php:232 -#: application/views/user/edit.php:591 application/views/view_log/qso.php:296 -#: application/views/view_log/qso.php:563 +#: application/views/qso/index.php:224 application/views/qso/index.php:479 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 +#: application/views/user/edit.php:591 application/views/view_log/qso.php:299 +#: application/views/view_log/qso.php:566 msgid "WWFF Reference" msgstr "WWFF Referentie" @@ -4132,8 +4785,8 @@ msgstr "" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 #: application/views/contesting/index.php:15 -#: application/views/contesting/index.php:94 -#: application/views/contesting/index.php:169 +#: application/views/contesting/index.php:52 +#: application/views/contesting/index.php:145 #: application/views/qso/index.php:314 msgid "None" msgstr "" @@ -4213,25 +4866,25 @@ msgid "" "will be hidden and cannot be selected." msgstr "" -#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:351 -#: application/views/qso/index.php:248 application/views/qso/index.php:494 -#: application/views/user/edit.php:599 application/views/view_log/qso.php:325 -#: application/views/view_log/qso.php:577 +#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 +#: application/views/qso/index.php:248 application/views/qso/index.php:504 +#: application/views/user/edit.php:599 application/views/view_log/qso.php:328 +#: application/views/view_log/qso.php:580 msgid "Sig" msgstr "" -#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:312 -#: application/views/qso/index.php:433 +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:339 +#: application/views/qso/index.php:443 msgid "USA County" msgstr "" #: application/views/bands/index.php:58 -#: application/views/interface_assets/header.php:208 +#: application/views/interface_assets/header.php:212 msgid "WAJA" msgstr "" #: application/views/bands/index.php:59 -#: application/views/interface_assets/header.php:232 +#: application/views/interface_assets/header.php:236 msgid "WAS" msgstr "" @@ -4261,9 +4914,8 @@ msgstr "" #: application/views/bands/index.php:152 #: application/views/contesting/add.php:74 -#: application/views/interface_assets/footer.php:42 -#: application/views/qso/components/winkeysettings.php:91 -#: application/views/qso/components/winkeysettings_results.php:91 +#: application/views/contesting/index.php:83 +#: application/views/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4293,22 +4945,28 @@ msgstr "" #: application/views/cabrillo/index.php:2 #: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:59 +#: application/views/reg1test/index.php:2 +#: application/views/reg1test/index.php:36 msgid "Proceed" msgstr "" #: application/views/cabrillo/index.php:3 +#: application/views/reg1test/index.php:3 msgid "Select Year" msgstr "" #: application/views/cabrillo/index.php:4 +#: application/views/reg1test/index.php:4 msgid "Select Contest" msgstr "" #: application/views/cabrillo/index.php:5 +#: application/views/reg1test/index.php:5 msgid "Select Date Range" msgstr "" #: application/views/cabrillo/index.php:6 +#: application/views/reg1test/index.php:7 msgid "No contests were found for this station location!" msgstr "" @@ -4321,10 +4979,12 @@ msgid "Select Station Location:" msgstr "" #: application/views/cabrillo/index.php:44 +#: application/views/reg1test/index.php:53 msgid "Club" msgstr "" #: application/views/cabrillo/index.php:48 +#: application/views/reg1test/index.php:58 msgid "Category Operator" msgstr "" @@ -4365,10 +5025,12 @@ msgid "Category Overlay" msgstr "" #: application/views/cabrillo/index.php:150 +#: application/views/reg1test/index.php:70 msgid "Operators" msgstr "" #: application/views/cabrillo/index.php:155 +#: application/views/reg1test/index.php:139 msgid "Soapbox" msgstr "" @@ -4393,6 +5055,7 @@ msgid "Address Country" msgstr "" #: application/views/cabrillo/index.php:186 +#: application/views/reg1test/index.php:150 msgid "No contests were found in your log." msgstr "" @@ -4426,13 +5089,13 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:158 +#: application/views/contesting/index.php:219 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:629 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 -#: application/views/view_log/qso.php:199 +#: application/views/view_log/qso.php:202 msgid "Comment" msgstr "Opmerking" @@ -4464,9 +5127,9 @@ msgid "No Contests" msgstr "" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/edit.php:21 -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:635 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4494,10 +5157,11 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:38 -#: application/views/dashboard/index.php:262 -#: application/views/dashboard/index.php:289 -#: application/views/dashboard/index.php:310 -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:278 +#: application/views/dashboard/index.php:305 +#: application/views/dashboard/index.php:326 +#: application/views/dashboard/index.php:347 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "" @@ -4531,7 +5195,7 @@ msgstr "" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:466 +#: application/views/interface_assets/header.php:472 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:43 @@ -4586,15 +5250,15 @@ msgid "Name of Contest in ADIF-specification" msgstr "" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "" #: application/views/contesting/edit.php:31 -#: application/views/contesting/index.php:24 -#: application/views/qso/edit_ajax.php:548 -#: application/views/view_log/qso.php:275 +#: application/views/contesting/index.php:25 +#: application/views/qso/edit_ajax.php:575 +#: application/views/view_log/qso.php:278 msgid "Contest Name" msgstr "Contest Naam" @@ -4630,90 +5294,138 @@ msgstr "" msgid "Serial + Gridsquare" msgstr "" -#: application/views/contesting/index.php:34 +#: application/views/contesting/index.php:21 +msgid "Serial + Gridsquare + Exchange" +msgstr "" + +#: application/views/contesting/index.php:35 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:539 application/views/qso/index.php:352 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:352 msgid "Operator Callsign" msgstr "" -#: application/views/contesting/index.php:116 -#: application/views/contesting/index.php:208 -#: application/views/qso/edit_ajax.php:571 -msgid "Serial (S)" +#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:45 +msgid "More Settings" msgstr "" -#: application/views/contesting/index.php:121 -#: application/views/contesting/index.php:206 -msgid "Exch (S)" -msgstr "Verz (S)" - -#: application/views/contesting/index.php:126 -msgid "Gridsquare (S)" -msgstr "" - -#: application/views/contesting/index.php:136 -#: application/views/contesting/index.php:209 -#: application/views/qso/edit_ajax.php:566 -msgid "Serial (R)" -msgstr "" - -#: application/views/contesting/index.php:141 -#: application/views/contesting/index.php:207 -msgid "Exch (R)" -msgstr "Ontv (R)" - -#: application/views/contesting/index.php:146 -msgid "Gridsquare (R)" -msgstr "" - -#: application/views/contesting/index.php:163 -msgid "Reset QSO" -msgstr "Wis QSO" - -#: application/views/contesting/index.php:164 -#: application/views/qso/index.php:607 -msgid "Save QSO" -msgstr "Bewaar QSO" - -#: application/views/contesting/index.php:166 +#: application/views/contesting/index.php:49 msgid "Copy received exchange to" msgstr "" -#: application/views/contesting/index.php:168 +#: application/views/contesting/index.php:51 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "" -#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:55 msgid "Age" msgstr "" -#: application/views/contesting/index.php:174 +#: application/views/contesting/index.php:57 msgid "RX Power (W)" msgstr "" -#: application/views/contesting/index.php:175 +#: application/views/contesting/index.php:58 msgid "Locator" msgstr "" -#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:59 +#: application/views/qso/edit_ajax.php:177 +msgid "QTH" +msgstr "" + +#: application/views/contesting/index.php:64 +msgid "Sequence of Exchanges" +msgstr "" + +#: application/views/contesting/index.php:67 +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 "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Grid" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Serial" +msgstr "" + +#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:255 +#: application/views/qso/edit_ajax.php:598 +msgid "Serial (S)" +msgstr "" + +#: application/views/contesting/index.php:177 +msgid "Gridsquare (S)" +msgstr "" + +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:253 +msgid "Exch (S)" +msgstr "Verz (S)" + +#: application/views/contesting/index.php:196 +#: application/views/contesting/index.php:256 +#: application/views/qso/edit_ajax.php:593 +msgid "Serial (R)" +msgstr "" + +#: application/views/contesting/index.php:201 +msgid "Gridsquare (R)" +msgstr "" + +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:254 +msgid "Exch (R)" +msgstr "Ontv (R)" + +#: application/views/contesting/index.php:224 +msgid "Reset QSO" +msgstr "Wis QSO" + +#: application/views/contesting/index.php:225 +#: application/views/qso/index.php:629 +msgid "Save QSO" +msgstr "Bewaar QSO" + +#: application/views/contesting/index.php:234 msgid "Callsign Suggestions" msgstr "Roepnaam suggesties" -#: application/views/contesting/index.php:194 +#: application/views/contesting/index.php:241 msgid "Contest Logbook" msgstr "Contest Logboek" -#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:258 #: application/views/qso/edit_ajax.php:164 msgid "VUCC Gridsquare" msgstr "" -#: application/views/continents/index.php:62 -#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 -#: application/views/view_log/qso.php:242 -msgid "Continent" -msgstr "" - #: application/views/continents/index.php:63 #: application/views/statistics/index.php:19 #: application/views/statistics/index.php:113 @@ -4731,14 +5443,15 @@ msgstr "" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:261 -#: application/views/station_profile/edit.php:314 +#: application/views/options/appearance.php:109 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 msgid "Enabled" msgstr "" -#: application/views/cron/edit.php:36 application/views/cron/index.php:53 +#: application/views/cron/edit.php:36 application/views/cron/index.php:55 msgid "Intervall" msgstr "" @@ -4788,6 +5501,7 @@ msgstr "" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "" @@ -4801,79 +5515,84 @@ msgid "" "requiring CLI access." msgstr "" -#: application/views/cron/index.php:18 +#: application/views/cron/index.php:19 msgid "" "To execute cron jobs based on the data below, remove all old cron jobs and " "create a new one:" msgstr "" -#: application/views/cron/index.php:27 application/views/cron/index.php:31 -msgid "Status Master-Cron" +#: application/views/cron/index.php:29 application/views/cron/index.php:33 +msgid "Status Master-Cron:" msgstr "" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgctxt "PHP Version" msgid "Min. Version is" msgstr "" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgid "PHP Version not supported." msgstr "" -#: application/views/cron/index.php:41 +#: application/views/cron/index.php:43 msgid "Cron List" msgstr "" -#: application/views/cron/index.php:50 +#: application/views/cron/index.php:52 #: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "" -#: application/views/cron/index.php:54 +#: application/views/cron/index.php:56 msgid "Last Run" msgstr "" -#: application/views/cron/index.php:55 +#: application/views/cron/index.php:57 msgid "Next Run" msgstr "" -#: application/views/cron/index.php:68 +#: application/views/cron/index.php:70 msgid "healthy" msgstr "" -#: application/views/cron/index.php:70 +#: application/views/cron/index.php:72 msgid "failed" msgstr "" -#: application/views/cron/index.php:75 +#: application/views/cron/index.php:74 +msgid "pending" +msgstr "" + +#: application/views/cron/index.php:79 msgid "disabled" msgstr "" -#: application/views/cron/index.php:79 application/views/cron/index.php:81 -#: application/views/cron/index.php:83 application/views/debug/index.php:494 +#: application/views/cron/index.php:83 application/views/cron/index.php:85 +#: application/views/cron/index.php:87 application/views/debug/index.php:494 #: application/views/debug/index.php:500 application/views/debug/index.php:505 #: application/views/debug/index.php:510 application/views/debug/index.php:515 #: application/views/debug/index.php:520 application/views/debug/index.php:525 +#: application/views/user/index.php:138 msgid "never" msgstr "" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:102 msgid "Your Mastercron isn't running." msgstr "" -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:103 msgid "" "Copy the cron above to a external cron service or into your server's cron to " "use this cron manager." msgstr "" -#: application/views/cron/index.php:100 +#: application/views/cron/index.php:104 msgid "" "On a basic linux server with shell access use this command to edit your " "crons:" msgstr "" -#: application/views/cron/index.php:107 +#: application/views/cron/index.php:111 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -4891,154 +5610,10 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:411 msgid "Propagation Mode" msgstr "Propagattie Mode" -#: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:214 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 -msgctxt "Propagation Mode" -msgid "Aircraft Scatter" -msgstr "" - -#: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:215 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 -msgctxt "Propagation Mode" -msgid "Aurora" -msgstr "" - -#: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:216 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 -msgctxt "Propagation Mode" -msgid "Aurora-E" -msgstr "" - -#: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:217 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 -msgctxt "Propagation Mode" -msgid "Back scatter" -msgstr "" - -#: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:218 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 -msgctxt "Propagation Mode" -msgid "EchoLink" -msgstr "" - -#: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:219 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 -msgctxt "Propagation Mode" -msgid "Earth-Moon-Earth" -msgstr "" - -#: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:220 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 -msgctxt "Propagation Mode" -msgid "Sporadic E" -msgstr "" - -#: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:221 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 -msgctxt "Propagation Mode" -msgid "Field Aligned Irregularities" -msgstr "" - -#: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:222 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 -msgctxt "Propagation Mode" -msgid "F2 Reflection" -msgstr "" - -#: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:223 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 -msgctxt "Propagation Mode" -msgid "Internet-assisted" -msgstr "" - -#: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:224 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 -msgctxt "Propagation Mode" -msgid "Ionoscatter" -msgstr "" - -#: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:225 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 -msgctxt "Propagation Mode" -msgid "IRLP" -msgstr "" - -#: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:226 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 -msgctxt "Propagation Mode" -msgid "Meteor scatter" -msgstr "" - -#: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:227 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 -msgctxt "Propagation Mode" -msgid "Terrestrial or atmospheric repeater or transponder" -msgstr "" - -#: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:228 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 -msgctxt "Propagation Mode" -msgid "Rain scatter" -msgstr "" - -#: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:229 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 -msgctxt "Propagation Mode" -msgid "Satellite" -msgstr "Satelliet" - -#: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:230 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 -msgctxt "Propagation Mode" -msgid "Trans-equatorial" -msgstr "" - -#: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:231 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 -msgctxt "Propagation Mode" -msgid "Tropospheric ducting" -msgstr "" - #: application/views/dashboard/index.php:5 msgid "RSTS" msgstr "" @@ -5047,85 +5622,99 @@ msgstr "" msgid "RSTR" msgstr "" -#: application/views/dashboard/index.php:56 +#: application/views/dashboard/index.php:58 msgid "" "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" msgstr "" -#: application/views/dashboard/index.php:63 +#: application/views/dashboard/index.php:65 #, php-format msgctxt "Dashboard Warning" -msgid "You need to update country files! Click %s to do it." +msgid "You need to update country files! Click %shere%s to do it." msgstr "" -#: application/views/dashboard/index.php:72 +#: application/views/dashboard/index.php:73 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station locations. Click %s to do it:" +msgid "You have no station locations. Click %shere%s to do it." msgstr "" #: application/views/dashboard/index.php:81 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station logbook. Click %s to do it:" +msgid "You have no station logbook. Click %shere%s to do it." msgstr "" -#: application/views/dashboard/index.php:91 +#: application/views/dashboard/index.php:89 +#, php-format +msgctxt "Dashboard Warning" +msgid "" +"Your active Station Location isn't linked to your Logbook. Click %shere%s to " +"do it." +msgstr "" + +#: application/views/dashboard/index.php:97 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station linked to your Logbook. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:106 #, php-format msgid "You have had %d QSO today" msgid_plural "You have had %d QSOs today" msgstr[0] "" msgstr[1] "" -#: application/views/dashboard/index.php:97 +#: application/views/dashboard/index.php:112 msgid "You have made no QSOs today; time to turn on the radio!" msgstr "Je hebt vandaag nog geen QSOs gemaakt. Tijd om de set aan te zetten!" -#: application/views/dashboard/index.php:104 +#: application/views/dashboard/index.php:119 msgid "Attention: you need to set an active station location." msgstr "Let op: Activeer een station profiel." -#: application/views/dashboard/index.php:110 +#: application/views/dashboard/index.php:125 msgid "" "You have themes without defined theme mode. Please ask the admin to edit the " "themes." msgstr "" -#: application/views/dashboard/index.php:118 +#: application/views/dashboard/index.php:133 msgid "At least one of your LoTW certificates is expired!" msgstr "" -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:139 msgid "At least one of your LoTW certificates is about to expire!" msgstr "" -#: application/views/dashboard/index.php:213 +#: application/views/dashboard/index.php:229 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "QSOs overzicht" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:252 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "Landen overzicht" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:269 #: application/views/visitor/index.php:275 msgid "Needed" msgstr "Nodig" -#: application/views/dashboard/index.php:266 -#: application/views/dashboard/index.php:293 -#: application/views/dashboard/index.php:314 -#: application/views/dashboard/index.php:335 +#: application/views/dashboard/index.php:282 +#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:330 +#: application/views/dashboard/index.php:351 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:167 -#: application/views/qso/edit_ajax.php:390 -#: application/views/qso/edit_ajax.php:451 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:550 +#: application/views/qso/edit_ajax.php:417 +#: application/views/qso/edit_ajax.php:478 +#: application/views/qso/edit_ajax.php:518 application/views/qso/index.php:572 #: application/views/search/result_search.php:8 #: application/views/search/search_result_ajax.php:180 #: application/views/search/search_result_ajax.php:260 @@ -5133,91 +5722,91 @@ msgstr "Nodig" #: application/views/search/search_result_ajax.php:332 #: application/views/search/search_result_ajax.php:362 #: application/views/statistics/custom_result.php:89 -#: application/views/view_log/partial/log_ajax.php:140 -#: application/views/view_log/partial/log_ajax.php:217 -#: application/views/view_log/partial/log_ajax.php:237 -#: application/views/view_log/partial/log_ajax.php:287 -#: application/views/view_log/partial/log_ajax.php:295 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:289 +#: application/views/view_log/partial/log_ajax.php:297 #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 -#: src/QSLManager/QSO.php:371 src/QSLManager/QSO.php:423 -#: src/QSLManager/QSO.php:459 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:270 +#: src/QSLManager/QSO.php:373 src/QSLManager/QSO.php:425 +#: src/QSLManager/QSO.php:461 msgid "Sent" msgstr "" -#: application/views/dashboard/index.php:272 -#: application/views/dashboard/index.php:299 -#: application/views/dashboard/index.php:320 -#: application/views/dashboard/index.php:341 +#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:315 +#: application/views/dashboard/index.php:336 +#: application/views/dashboard/index.php:357 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 #: application/views/qslprint/qsolist.php:151 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:423 -#: application/views/qso/edit_ajax.php:464 -#: application/views/qso/edit_ajax.php:503 +#: application/views/qso/edit_ajax.php:450 +#: application/views/qso/edit_ajax.php:491 +#: application/views/qso/edit_ajax.php:530 #: application/views/search/search_result_ajax.php:222 #: application/views/search/search_result_ajax.php:273 #: application/views/search/search_result_ajax.php:313 #: application/views/search/search_result_ajax.php:345 #: application/views/search/search_result_ajax.php:375 -#: application/views/view_log/partial/log_ajax.php:178 -#: application/views/view_log/partial/log_ajax.php:218 -#: application/views/view_log/partial/log_ajax.php:263 -#: application/views/view_log/partial/log_ajax.php:288 -#: application/views/view_log/partial/log_ajax.php:296 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:265 +#: application/views/view_log/partial/log_ajax.php:290 +#: application/views/view_log/partial/log_ajax.php:298 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 -#: src/QSLManager/QSO.php:394 src/QSLManager/QSO.php:436 -#: src/QSLManager/QSO.php:472 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:315 +#: src/QSLManager/QSO.php:396 src/QSLManager/QSO.php:438 +#: src/QSLManager/QSO.php:474 msgid "Received" msgstr "Ontvangen" -#: application/views/dashboard/index.php:278 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:388 -#: application/views/logbookadvanced/index.php:399 +#: application/views/dashboard/index.php:294 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:415 +#: application/views/logbookadvanced/index.php:426 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 -#: application/views/qso/edit_ajax.php:395 -#: application/views/qso/edit_ajax.php:428 -#: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:469 +#: application/views/qso/edit_ajax.php:422 +#: application/views/qso/edit_ajax.php:455 +#: application/views/qso/edit_ajax.php:483 #: application/views/qso/edit_ajax.php:496 -#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:555 +#: application/views/qso/edit_ajax.php:523 +#: application/views/qso/edit_ajax.php:535 application/views/qso/index.php:577 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 -#: application/views/view_log/partial/log_ajax.php:146 -#: application/views/view_log/partial/log_ajax.php:184 -#: application/views/view_log/partial/log_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:273 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 -#: src/QSLManager/QSO.php:319 src/QSLManager/QSO.php:379 -#: src/QSLManager/QSO.php:402 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +#: application/views/view_log/partial/log_ajax.php:249 +#: application/views/view_log/partial/log_ajax.php:275 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:276 +#: src/QSLManager/QSO.php:321 src/QSLManager/QSO.php:381 +#: src/QSLManager/QSO.php:404 msgid "Requested" msgstr "Aangevraagd" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:304 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:351 +#: application/views/dashboard/index.php:367 msgid "VUCC-Grids" msgstr "" #: application/views/dayswithqso/index.php:2 -#: application/views/interface_assets/header.php:146 +#: application/views/interface_assets/header.php:148 msgid "Days with QSOs" msgstr "" @@ -5246,7 +5835,7 @@ msgstr "" #: application/views/dayswithqso/index.php:58 #: application/views/dayswithqso/index.php:86 #: application/views/dayswithqso/index.php:108 -#: application/views/timeline/index.php:120 +#: application/views/timeline/index.php:153 msgid "End Date" msgstr "" @@ -5313,9 +5902,7 @@ msgstr "" #: application/views/debug/index.php:47 #, php-format -msgid "" -"Check this wiki article here for " -"more information." +msgid "Check this wiki article %shere%s for more information." msgstr "" #: application/views/debug/index.php:48 @@ -5459,7 +6046,7 @@ msgstr "" msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:283 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:671 msgid "Settings" msgstr "" @@ -5516,7 +6103,7 @@ msgstr "" #: application/views/debug/index.php:506 application/views/debug/index.php:511 #: application/views/debug/index.php:516 application/views/debug/index.php:521 #: application/views/debug/index.php:526 -#: application/views/station_profile/edit.php:22 +#: application/views/station_profile/edit.php:49 msgid "Update" msgstr "" @@ -5558,9 +6145,8 @@ msgstr[1] "" #: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:57 -#: application/views/station_profile/edit.php:46 -#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" @@ -5588,69 +6174,93 @@ msgid "Everything ok" msgstr "" #: application/views/debug/index.php:629 -msgid "Bulgarian" +msgid "Albanian" msgstr "" #: application/views/debug/index.php:630 -msgid "Chinese (Simplified)" +msgid "Bosnian" msgstr "" #: application/views/debug/index.php:631 -msgid "Czech" +msgid "Bulgarian" msgstr "" #: application/views/debug/index.php:632 -msgid "Dutch" +msgid "Chinese (Simplified)" msgstr "" #: application/views/debug/index.php:633 -msgid "English" +msgid "Croatian" msgstr "" #: application/views/debug/index.php:634 -msgid "Finnish" +msgid "Czech" msgstr "" #: application/views/debug/index.php:635 -msgid "French" +msgid "Dutch" msgstr "" #: application/views/debug/index.php:636 -msgid "German" +msgid "English" msgstr "" #: application/views/debug/index.php:637 -msgid "Greek" +msgid "Finnish" msgstr "" #: application/views/debug/index.php:638 -msgid "Italian" +msgid "French" msgstr "" #: application/views/debug/index.php:639 -msgid "Polish" +msgid "German" msgstr "" #: application/views/debug/index.php:640 -msgid "Portuguese" +msgid "Greek" msgstr "" #: application/views/debug/index.php:641 -msgid "Russian" +msgid "Italian" msgstr "" #: application/views/debug/index.php:642 -msgid "Spanish" +msgid "Montenegrin" msgstr "" #: application/views/debug/index.php:643 -msgid "Swedish" +msgid "Polish" msgstr "" #: application/views/debug/index.php:644 +msgid "Portuguese" +msgstr "" + +#: application/views/debug/index.php:645 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:646 +msgid "Serbian" +msgstr "" + +#: application/views/debug/index.php:647 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:648 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:649 msgid "Turkish" msgstr "" +#: application/views/distancerecords/index.php:4 +msgid "This page lists distance records per satellite based on gridsquares." +msgstr "" + #: application/views/distances/index.php:7 #: application/views/interface_assets/footer.php:30 #: application/views/simplefle/index.php:68 @@ -5658,7 +6268,8 @@ msgid "QSO Data" msgstr "" #: application/views/distances/index.php:9 -msgid "contacts were plotted.
Your furthest contact was with" +#, php-format +msgid "contacts were plotted.%s Your furthest contact was with" msgstr "" #: application/views/distances/index.php:10 @@ -5700,7 +6311,7 @@ msgid "Date to" msgstr "" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:366 +#: application/views/view_log/qso.php:369 msgid "QSL Info" msgstr "" @@ -5726,7 +6337,7 @@ msgstr "" #: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 #: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 #: application/views/eqsl/tools.php:15 -#: application/views/interface_assets/header.php:243 +#: application/views/interface_assets/header.php:247 msgid "Tools" msgstr "" @@ -5866,27 +6477,15 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2324 -#: application/views/interface_assets/footer.php:2342 -#: application/views/interface_assets/footer.php:2363 -#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2338 +#: application/views/interface_assets/footer.php:2356 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 #: application/views/qslcard/index.php:66 -#: application/views/view_log/qso.php:614 +#: application/views/view_log/qso.php:617 msgid "View" msgstr "" -#: application/views/gridmap/index.php:38 -#: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:604 -#: application/views/logbookadvanced/useroptions.php:118 -msgid "Propagation" -msgstr "" - -#: application/views/gridmap/index.php:42 -msgid "None/Empty" -msgstr "" - #: application/views/gridmap/index.php:43 msgid "All except SAT" msgstr "" @@ -5982,8 +6581,8 @@ msgstr "" #: application/views/interface_assets/footer.php:31 #: application/views/search/search_result_ajax.php:404 #: application/views/view_log/partial/log.php:135 -#: application/views/view_log/partial/log_ajax.php:318 -#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log_ajax.php:320 +#: application/views/view_log/qso.php:437 msgid "Edit QSO" msgstr "Wijzig QSO" @@ -5991,171 +6590,192 @@ msgstr "Wijzig QSO" msgid "Attention" msgstr "" -#: application/views/interface_assets/footer.php:36 -msgid "OK" -msgstr "" - -#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/footer.php:38 msgid "Warning! Are you sure you want delete QSO with " msgstr "" -#: application/views/interface_assets/footer.php:38 +#: application/views/interface_assets/footer.php:39 #: application/views/user/edit.php:493 msgid "Colors" msgstr "" -#: application/views/interface_assets/footer.php:40 +#: application/views/interface_assets/footer.php:41 msgid "Worked not confirmed" msgstr "" -#: application/views/interface_assets/footer.php:41 +#: application/views/interface_assets/footer.php:42 msgid "Not worked" msgstr "" -#: application/views/interface_assets/footer.php:44 -#: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/interface_assets/footer.php:46 +#: application/views/qso/index.php:623 +#: application/views/visitor/layout/footer.php:246 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:47 #: application/views/qso/edit_ajax.php:211 -#: application/views/qso/edit_ajax.php:512 +#: application/views/qso/edit_ajax.php:539 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "" -#: application/views/interface_assets/footer.php:127 -#: application/views/interface_assets/header.php:434 +#: application/views/interface_assets/footer.php:48 +msgid "No states for this DXCC available" +msgstr "" + +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "" + +#: application/views/interface_assets/footer.php:132 +#: application/views/interface_assets/header.php:440 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:392 +#: application/views/interface_assets/footer.php:398 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:395 +#: application/views/interface_assets/footer.php:401 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:411 +#: application/views/interface_assets/footer.php:417 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:413 +#: application/views/interface_assets/footer.php:419 #: application/views/search/filter.php:46 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:415 +#: application/views/interface_assets/footer.php:421 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:420 +#: application/views/interface_assets/footer.php:426 #: application/views/search/filter.php:60 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:432 -#: application/views/interface_assets/footer.php:561 -#: application/views/interface_assets/footer.php:625 +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:437 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:458 -#: application/views/interface_assets/footer.php:589 +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 #: application/views/search/filter.php:79 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:496 +#: application/views/interface_assets/footer.php:502 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:516 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:519 +#: application/views/interface_assets/footer.php:525 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:545 +#: application/views/interface_assets/footer.php:551 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:549 +#: application/views/interface_assets/footer.php:555 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:678 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1156 -#, php-format -msgid "You're not logged it. Please login" +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:533 +msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:1362 -#: application/views/interface_assets/footer.php:1366 -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1506 -#: application/views/interface_assets/footer.php:1510 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:731 +msgid "Count: " +msgstr "" + +#: application/views/interface_assets/footer.php:732 +msgid "Grids: " +msgstr "" + +#: application/views/interface_assets/footer.php:1167 +#, php-format +msgid "You're not logged in. Please %slogin%s" +msgstr "" + +#: application/views/interface_assets/footer.php:1375 +#: application/views/interface_assets/footer.php:1379 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1523 +#: application/views/interface_assets/footer.php:1526 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1526 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2100 +#: application/views/interface_assets/footer.php:2114 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2120 +#: application/views/interface_assets/footer.php:2134 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2160 +#: application/views/interface_assets/footer.php:2174 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2162 +#: application/views/interface_assets/footer.php:2176 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2335 -#: application/views/interface_assets/footer.php:2374 -#: application/views/view_log/qso.php:604 +#: application/views/interface_assets/footer.php:2349 +#: application/views/interface_assets/footer.php:2388 +#: application/views/view_log/qso.php:607 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2354 +#: application/views/interface_assets/footer.php:2368 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2392 +#: application/views/interface_assets/footer.php:2406 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2403 -#: application/views/interface_assets/footer.php:2428 +#: application/views/interface_assets/footer.php:2417 +#: application/views/interface_assets/footer.php:2442 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2439 +#: application/views/interface_assets/footer.php:2453 msgid "Something went wrong. Please try again!" msgstr "" @@ -6211,91 +6831,91 @@ msgstr "" msgid "Activated Gridsquares" msgstr "" -#: application/views/interface_assets/header.php:160 +#: application/views/interface_assets/header.php:162 msgid "International" msgstr "" -#: application/views/interface_assets/header.php:166 +#: application/views/interface_assets/header.php:168 msgid "ITU" msgstr "" -#: application/views/interface_assets/header.php:186 +#: application/views/interface_assets/header.php:190 msgid "Canada" msgstr "" -#: application/views/interface_assets/header.php:192 +#: application/views/interface_assets/header.php:196 msgid "Germany" msgstr "" -#: application/views/interface_assets/header.php:196 +#: application/views/interface_assets/header.php:200 msgid "DL Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:200 +#: application/views/interface_assets/header.php:204 msgid "Great Britain" msgstr "" -#: application/views/interface_assets/header.php:202 +#: application/views/interface_assets/header.php:206 msgid "WAB" msgstr "" -#: application/views/interface_assets/header.php:206 +#: application/views/interface_assets/header.php:210 msgid "Japan" msgstr "" -#: application/views/interface_assets/header.php:212 +#: application/views/interface_assets/header.php:216 msgid "JA Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:216 +#: application/views/interface_assets/header.php:220 msgid "Luxemburg" msgstr "" -#: application/views/interface_assets/header.php:218 +#: application/views/interface_assets/header.php:222 msgid "LX Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:222 +#: application/views/interface_assets/header.php:226 msgid "Switzerland" msgstr "" -#: application/views/interface_assets/header.php:228 +#: application/views/interface_assets/header.php:232 msgid "USA" msgstr "" -#: application/views/interface_assets/header.php:234 +#: application/views/interface_assets/header.php:238 msgid "US Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:251 +#: application/views/interface_assets/header.php:255 msgid "Bandmap" msgstr "" -#: application/views/interface_assets/header.php:253 +#: application/views/interface_assets/header.php:257 msgid "SAT Timers" msgstr "" -#: application/views/interface_assets/header.php:256 +#: application/views/interface_assets/header.php:260 msgid "Satellite Flightpath" msgstr "" -#: application/views/interface_assets/header.php:258 +#: application/views/interface_assets/header.php:262 msgid "Satellite Pass" msgstr "" -#: application/views/interface_assets/header.php:265 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:269 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:274 msgid "Global Options" msgstr "" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:280 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:11 +#: application/views/satellite/pass.php:495 #: application/views/statistics/custom.php:20 #: application/views/statistics/custom_result.php:21 #: application/views/statistics/index.php:39 @@ -6303,79 +6923,83 @@ msgstr "" msgid "Satellites" msgstr "" -#: application/views/interface_assets/header.php:282 +#: application/views/interface_assets/header.php:286 msgid "Update Country Files" msgstr "" -#: application/views/interface_assets/header.php:286 +#: application/views/interface_assets/header.php:290 msgid "Debug Information" msgstr "" -#: application/views/interface_assets/header.php:333 +#: application/views/interface_assets/header.php:337 msgid "Add/Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:335 +#: application/views/interface_assets/header.php:339 msgid "Log" msgstr "" -#: application/views/interface_assets/header.php:342 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:346 +#: application/views/logbookadvanced/index.php:474 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:371 +#: application/views/interface_assets/header.php:375 #: application/views/user/edit.php:49 msgid "Account" msgstr "" -#: application/views/interface_assets/header.php:386 +#: application/views/interface_assets/header.php:390 msgid "Other Export Options" msgstr "" -#: application/views/interface_assets/header.php:394 +#: application/views/interface_assets/header.php:398 msgid "Cabrillo Export" msgstr "" -#: application/views/interface_assets/header.php:418 -msgid "QSL Queue" -msgstr "" - -#: application/views/interface_assets/header.php:419 -msgid "Labels" -msgstr "" - -#: application/views/interface_assets/header.php:421 -msgid "Third-Party Services" +#: application/views/interface_assets/header.php:400 +msgid "EDI Export" msgstr "" #: application/views/interface_assets/header.php:424 -msgid "eQSL Import / Export" +msgid "QSL Queue" msgstr "" #: application/views/interface_assets/header.php:425 +msgid "Labels" +msgstr "" + +#: application/views/interface_assets/header.php:427 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:430 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:431 msgid "HRDLog Logbook" msgstr "" -#: application/views/interface_assets/header.php:435 +#: application/views/interface_assets/header.php:441 msgid "Help" msgstr "" -#: application/views/interface_assets/header.php:436 +#: application/views/interface_assets/header.php:442 msgid "Forum" msgstr "" -#: application/views/interface_assets/header.php:438 +#: application/views/interface_assets/header.php:444 msgid "Logout" msgstr "" -#: application/views/interface_assets/header.php:446 +#: application/views/interface_assets/header.php:452 msgid "Select a Location" msgstr "" -#: application/views/interface_assets/header.php:525 +#: application/views/interface_assets/header.php:531 msgid "Extras" msgstr "" @@ -6646,86 +7270,122 @@ msgid "Start printing at?" msgstr "" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:405 -#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" -#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/edit.php:23 msgid "LoTW Sent" msgstr "" -#: application/views/logbookadvanced/edit.php:23 +#: application/views/logbookadvanced/edit.php:24 msgid "LoTW Received" msgstr "" -#: application/views/logbookadvanced/edit.php:73 +#: application/views/logbookadvanced/edit.php:75 msgid "SAT Mode" msgstr "" -#: application/views/logbookadvanced/edit.php:87 +#: application/views/logbookadvanced/edit.php:89 msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:174 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:144 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:148 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:152 +#: application/views/logbookadvanced/index.php:569 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:148 +#: application/views/logbookadvanced/index.php:159 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:224 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:540 +msgid "Invalid" +msgstr "" + +#: application/views/logbookadvanced/index.php:324 msgid "QSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:375 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:397 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:439 #: application/views/lookup/lotwuser.php:12 -#: application/views/qso/edit_ajax.php:394 -#: application/views/qso/edit_ajax.php:427 -#: application/views/qso/edit_ajax.php:455 -#: application/views/qso/edit_ajax.php:468 +#: application/views/qso/edit_ajax.php:421 +#: application/views/qso/edit_ajax.php:454 +#: application/views/qso/edit_ajax.php:482 #: application/views/qso/edit_ajax.php:495 -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 +#: application/views/qso/edit_ajax.php:522 +#: application/views/qso/edit_ajax.php:534 application/views/qso/index.php:576 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:209 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:236 -#: application/views/station_profile/create.php:275 -#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 #: application/views/station_profile/create.php:293 -#: application/views/station_profile/edit.php:330 -#: application/views/station_profile/edit.php:338 -#: application/views/station_profile/edit.php:364 -#: application/views/station_profile/edit.php:385 -#: application/views/station_profile/edit.php:403 -#: application/views/station_profile/edit.php:410 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 +#: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 #: application/views/user/edit.php:347 application/views/user/edit.php:358 #: application/views/user/edit.php:369 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:399 @@ -6735,35 +7395,35 @@ msgstr "" msgid "Yes" msgstr "" -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 -#: application/views/logbookadvanced/index.php:376 -#: application/views/logbookadvanced/index.php:387 -#: application/views/logbookadvanced/index.php:398 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:440 #: application/views/lookup/lotwuser.php:14 -#: application/views/qso/edit_ajax.php:393 -#: application/views/qso/edit_ajax.php:426 -#: application/views/qso/edit_ajax.php:454 -#: application/views/qso/edit_ajax.php:467 +#: application/views/qso/edit_ajax.php:420 +#: application/views/qso/edit_ajax.php:453 +#: application/views/qso/edit_ajax.php:481 #: application/views/qso/edit_ajax.php:494 -#: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 +#: application/views/qso/edit_ajax.php:521 +#: application/views/qso/edit_ajax.php:533 application/views/qso/index.php:575 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:210 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:237 -#: application/views/station_profile/create.php:276 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/create.php:292 -#: application/views/station_profile/edit.php:331 -#: application/views/station_profile/edit.php:339 -#: application/views/station_profile/edit.php:365 -#: application/views/station_profile/edit.php:386 -#: application/views/station_profile/edit.php:404 -#: application/views/station_profile/edit.php:411 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 #: application/views/user/edit.php:348 application/views/user/edit.php:359 #: application/views/user/edit.php:370 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:400 @@ -6774,32 +7434,32 @@ msgstr "" msgid "No" msgstr "" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 -#: application/views/logbookadvanced/index.php:389 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:416 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 -#: application/views/qso/edit_ajax.php:396 -#: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:497 application/views/qso/index.php:556 +#: application/views/qso/edit_ajax.php:423 +#: application/views/qso/edit_ajax.php:484 +#: application/views/qso/edit_ajax.php:524 application/views/qso/index.php:578 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:225 -#: application/views/view_log/partial/log_ajax.php:143 -#: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +#: src/QSLManager/QSO.php:273 src/QSLManager/QSO.php:318 msgid "Queued" msgstr "" -#: application/views/logbookadvanced/index.php:304 -#: application/views/logbookadvanced/index.php:314 -#: application/views/logbookadvanced/index.php:346 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:368 -#: application/views/logbookadvanced/index.php:378 -#: application/views/logbookadvanced/index.php:390 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:373 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:417 +#: application/views/logbookadvanced/index.php:427 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6807,42 +7467,42 @@ msgstr "" #: application/views/qslprint/qsolist.php:109 #: application/views/qslprint/qsolist.php:174 #: application/views/qslprint/qsolist.php:189 -#: application/views/qso/edit_ajax.php:397 -#: application/views/qso/edit_ajax.php:429 -#: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:470 -#: application/views/qso/edit_ajax.php:498 -#: application/views/qso/edit_ajax.php:509 application/views/qso/index.php:557 +#: application/views/qso/edit_ajax.php:424 +#: application/views/qso/edit_ajax.php:456 +#: application/views/qso/edit_ajax.php:485 +#: application/views/qso/edit_ajax.php:497 +#: application/views/qso/edit_ajax.php:525 +#: application/views/qso/edit_ajax.php:536 application/views/qso/index.php:579 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/search/search_result_ajax.php:305 #: application/views/search/search_result_ajax.php:320 -#: application/views/view_log/partial/log_ajax.php:149 -#: application/views/view_log/partial/log_ajax.php:187 -#: application/views/view_log/partial/log_ajax.php:242 -#: application/views/view_log/partial/log_ajax.php:268 -#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 -#: src/QSLManager/QSO.php:375 src/QSLManager/QSO.php:398 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +#: application/views/view_log/partial/log_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:270 +#: src/QSLManager/QSO.php:279 src/QSLManager/QSO.php:324 +#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:400 msgid "Invalid (Ignore)" msgstr "" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:335 msgid "QSL received" msgstr "" -#: application/views/logbookadvanced/index.php:315 -#: application/views/logbookadvanced/index.php:357 -#: application/views/logbookadvanced/index.php:379 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:428 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:346 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:359 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6851,268 +7511,264 @@ msgstr "" #: application/views/qslprint/qsolist.php:77 #: application/views/qslprint/qsolist.php:119 #: application/views/qslprint/qsolist.php:210 -#: application/views/qso/edit_ajax.php:408 -#: application/views/qso/edit_ajax.php:441 application/views/qso/index.php:568 +#: application/views/qso/edit_ajax.php:435 +#: application/views/qso/edit_ajax.php:468 application/views/qso/index.php:590 #: application/views/search/search_result_ajax.php:199 #: application/views/search/search_result_ajax.php:241 -#: application/views/view_log/partial/log_ajax.php:162 -#: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +#: src/QSLManager/QSO.php:296 src/QSLManager/QSO.php:339 msgid "Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:360 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 #: application/views/qslprint/qsolist.php:80 #: application/views/qslprint/qsolist.php:122 #: application/views/qslprint/qsolist.php:211 -#: application/views/qso/edit_ajax.php:407 -#: application/views/qso/edit_ajax.php:440 application/views/qso/index.php:567 +#: application/views/qso/edit_ajax.php:434 +#: application/views/qso/edit_ajax.php:467 application/views/qso/index.php:589 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 -#: application/views/view_log/partial/log_ajax.php:165 -#: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +#: src/QSLManager/QSO.php:299 src/QSLManager/QSO.php:342 msgid "Direct" msgstr "" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 #: application/views/qslprint/qsolist.php:86 #: application/views/qslprint/qsolist.php:128 #: application/views/qslprint/qsolist.php:212 -#: application/views/qso/edit_ajax.php:409 -#: application/views/qso/edit_ajax.php:442 application/views/qso/index.php:569 +#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:591 #: application/views/search/search_result_ajax.php:208 #: application/views/search/search_result_ajax.php:250 -#: application/views/view_log/partial/log_ajax.php:171 -#: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +#: src/QSLManager/QSO.php:305 src/QSLManager/QSO.php:348 msgid "Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:362 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 -#: application/views/qso/edit_ajax.php:410 -#: application/views/qso/edit_ajax.php:443 application/views/qso/index.php:570 +#: application/views/qso/edit_ajax.php:437 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:592 #: application/views/search/search_result_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:206 +#: application/views/view_log/partial/log_ajax.php:208 msgid "Manager" msgstr "" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:356 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:366 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:377 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:388 msgid "Clublog sent" msgstr "" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:399 msgid "Clublog received" msgstr "" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:410 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:436 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:448 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" -#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:451 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:425 -#: application/views/qso/edit_ajax.php:595 +#: application/views/logbookadvanced/index.php:452 +#: application/views/qso/edit_ajax.php:622 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:453 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:454 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:456 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:457 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:459 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:460 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:462 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:463 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:465 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:466 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:472 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:477 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:480 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:486 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:492 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:495 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:498 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:501 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:507 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:516 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:518 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:527 #: application/views/qso/index.php:272 -#: application/views/station_profile/edit.php:65 +#: application/views/station_profile/edit.php:92 msgid "Location" msgstr "Locatie" -#: application/views/logbookadvanced/index.php:506 -msgid "Callsign: " -msgstr "" - -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:539 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:547 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:605 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:650 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -7140,41 +7796,15 @@ msgstr "" msgid "Column" msgstr "" -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/useroptions.php:152 msgctxt "Map Options" msgid "Layer" msgstr "" -#: application/views/logbookadvanced/useroptions.php:149 +#: application/views/logbookadvanced/useroptions.php:153 msgid "Default on" msgstr "" -#: application/views/logbookadvanced/useroptions.php:154 -#: application/views/stationsetup/exportmapoptions.php:23 -msgctxt "Map Options" -msgid "Path lines" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:158 -msgctxt "Map Options" -msgid "Gridsquares" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:162 -msgctxt "Map Options" -msgid "CQ Zones" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:166 -msgctxt "Map Options" -msgid "ITU Zones" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:170 -msgctxt "Map Options" -msgid "Night Shadow" -msgstr "" - #: application/views/lookup/index.php:8 msgid "US State" msgstr "" @@ -7274,58 +7904,62 @@ msgstr "" msgid "Upload Certificate" msgstr "" -#: application/views/lotw_views/index.php:41 +#: application/views/lotw_views/index.php:37 msgid "QSO Start Date" msgstr "" -#: application/views/lotw_views/index.php:42 +#: application/views/lotw_views/index.php:38 msgid "QSO End Date" msgstr "" -#: application/views/lotw_views/index.php:43 +#: application/views/lotw_views/index.php:39 msgid "Date Created" msgstr "" -#: application/views/lotw_views/index.php:44 +#: application/views/lotw_views/index.php:40 msgid "Date Expires" msgstr "" -#: application/views/lotw_views/index.php:46 -#: application/views/view_log/qso.php:404 +#: application/views/lotw_views/index.php:42 +#: application/views/view_log/qso.php:407 msgid "Last Upload" msgstr "Last upload" -#: application/views/lotw_views/index.php:91 +#: application/views/lotw_views/index.php:87 msgid "Expired" msgstr "" -#: application/views/lotw_views/index.php:93 +#: application/views/lotw_views/index.php:89 msgid "Expiring" msgstr "" -#: application/views/lotw_views/index.php:105 +#: application/views/lotw_views/index.php:91 +msgid "Valid" +msgstr "" + +#: application/views/lotw_views/index.php:101 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:108 +#: application/views/lotw_views/index.php:104 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:114 +#: application/views/lotw_views/index.php:110 msgid "Not Synced" msgstr "" -#: application/views/lotw_views/index.php:129 +#: application/views/lotw_views/index.php:125 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" -#: application/views/lotw_views/index.php:144 +#: application/views/lotw_views/index.php:140 msgid "Information" msgstr "" -#: application/views/lotw_views/index.php:149 +#: application/views/lotw_views/index.php:145 msgid "Manual Sync" msgstr "" @@ -7537,6 +8171,14 @@ msgstr "" msgid "This enables the button to Wavelog's Github page in the public view" msgstr "" +#: application/views/options/appearance.php:107 +msgid "Public Login Button" +msgstr "" + +#: application/views/options/appearance.php:112 +msgid "This enables the button to login to Wavelog in the public view" +msgstr "" + #: application/views/options/dxcluster.php:38 msgid "Provider of DXClusterCache" msgstr "" @@ -7834,7 +8476,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:64 #: application/views/oqrs/showrequests.php:87 -#: application/views/user/main.php:48 application/views/user/profile.php:24 +#: application/views/user/index.php:48 application/views/user/profile.php:24 msgid "E-mail" msgstr "" @@ -7857,21 +8499,21 @@ msgstr "" #: application/views/search/search_result_ajax.php:127 #: application/views/user/edit.php:478 #: application/views/view_log/partial/log.php:22 -#: application/views/view_log/partial/log_ajax.php:86 -#: application/views/view_log/qso.php:503 -#: application/views/view_log/qso.php:507 -#: application/views/view_log/qso.php:511 -#: application/views/view_log/qso.php:515 -#: application/views/view_log/qso.php:521 -#: application/views/view_log/qso.php:528 -#: application/views/view_log/qso.php:535 -#: application/views/view_log/qso.php:542 -#: application/views/view_log/qso.php:549 -#: application/views/view_log/qso.php:556 -#: application/views/view_log/qso.php:563 -#: application/views/view_log/qso.php:570 -#: application/views/view_log/qso.php:577 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log_ajax.php:88 +#: application/views/view_log/qso.php:506 +#: application/views/view_log/qso.php:510 +#: application/views/view_log/qso.php:514 +#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:531 +#: application/views/view_log/qso.php:538 +#: application/views/view_log/qso.php:545 +#: application/views/view_log/qso.php:552 +#: application/views/view_log/qso.php:559 +#: application/views/view_log/qso.php:566 +#: application/views/view_log/qso.php:573 +#: application/views/view_log/qso.php:580 +#: application/views/view_log/qso.php:585 msgid "Station" msgstr "" @@ -7879,10 +8521,10 @@ msgstr "" #: application/views/qslprint/qslprint.php:28 #: application/views/qslprint/qsolist.php:14 #: application/views/qslprint/qsolist.php:83 -#: application/views/qso/index.php:576 +#: application/views/qso/index.php:598 #: application/views/search/search_result_ajax.php:205 -#: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:300 +#: application/views/view_log/partial/log_ajax.php:170 +#: src/QSLManager/QSO.php:302 msgid "Via" msgstr "" @@ -8111,7 +8753,7 @@ msgid "Remove" msgstr "" #: application/views/qslprint/qslprint.php:33 -#: application/views/simplefle/index.php:133 +#: application/views/simplefle/index.php:139 msgid "QSO List" msgstr "" @@ -8157,35 +8799,20 @@ msgid "" "queue." msgstr "" -#: application/views/qso/components/winkeysettings.php:7 -#: application/views/qso/components/winkeysettings_results.php:7 -msgid "Winkey Macros" -msgstr "" - -#: application/views/qso/components/winkeysettings.php:12 -#: application/views/qso/components/winkeysettings.php:28 -#: application/views/qso/components/winkeysettings.php:44 -#: application/views/qso/components/winkeysettings.php:60 -#: application/views/qso/components/winkeysettings.php:76 -#: application/views/qso/components/winkeysettings_results.php:12 -#: application/views/qso/components/winkeysettings_results.php:28 -#: application/views/qso/components/winkeysettings_results.php:44 -#: application/views/qso/components/winkeysettings_results.php:60 -#: application/views/qso/components/winkeysettings_results.php:76 -#, php-format -msgid "Function %d - Name" -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:83 -#: application/views/qso/components/winkeysettings_results.php:19 -#: application/views/qso/components/winkeysettings_results.php:35 -#: application/views/qso/components/winkeysettings_results.php:51 -#: application/views/qso/components/winkeysettings_results.php:67 -#: application/views/qso/components/winkeysettings_results.php:83 +#, 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 #, php-format msgid "Function %d - Macro" msgstr "" @@ -8211,7 +8838,8 @@ msgid "RX Band" msgstr "" #: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:346 -#: application/views/view_log/qso.php:542 +#: application/views/reg1test/index.php:114 +#: application/views/view_log/qso.php:545 msgid "Transmit Power (W)" msgstr "Vermogen (W)" @@ -8223,10 +8851,6 @@ msgstr "Geef vermogen in Watt. Vermeld alleen cijfers." msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:177 -msgid "QTH" -msgstr "" - #: application/views/qso/edit_ajax.php:258 msgid "Sat Name" msgstr "" @@ -8235,69 +8859,85 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:356 application/views/qso/index.php:255 -#: application/views/qso/index.php:500 application/views/user/edit.php:599 -#: application/views/view_log/qso.php:332 -#: application/views/view_log/qso.php:582 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:545 +msgid "Antenna Azimuth (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:547 +msgid "Antenna azimuth in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:274 application/views/qso/index.php:551 +msgid "Antenna Elevation (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:276 application/views/qso/index.php:553 +msgid "Antenna elevation in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:383 application/views/qso/index.php:255 +#: application/views/qso/index.php:510 application/views/user/edit.php:599 +#: application/views/view_log/qso.php:335 +#: application/views/view_log/qso.php:585 msgid "Sig Info" msgstr "" -#: application/views/qso/edit_ajax.php:369 +#: application/views/qso/edit_ajax.php:396 msgid "Notes (for internal usage only)" msgstr "" -#: application/views/qso/edit_ajax.php:403 +#: application/views/qso/edit_ajax.php:430 msgid "Sent Method" msgstr "" -#: application/views/qso/edit_ajax.php:406 -#: application/views/qso/edit_ajax.php:439 application/views/qso/index.php:563 -#: application/views/qso/index.php:566 +#: application/views/qso/edit_ajax.php:433 +#: application/views/qso/edit_ajax.php:466 application/views/qso/index.php:585 +#: application/views/qso/index.php:588 msgid "Method" msgstr "" -#: application/views/qso/edit_ajax.php:416 +#: application/views/qso/edit_ajax.php:443 msgid "Sent Via" msgstr "" -#: application/views/qso/edit_ajax.php:430 -#: application/views/qso/edit_ajax.php:471 -#: application/views/qso/edit_ajax.php:510 +#: application/views/qso/edit_ajax.php:457 +#: application/views/qso/edit_ajax.php:498 +#: application/views/qso/edit_ajax.php:537 msgid "Verified (Match)" msgstr "" -#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:463 msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:477 application/views/qso/index.php:583 +#: application/views/qso/edit_ajax.php:504 application/views/qso/index.php:605 msgid "This note content is exported to QSL services like eqsl.cc." msgstr "" -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:586 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:608 msgid "Get the default message for eQSL, for this station." msgstr "" -#: application/views/qso/edit_ajax.php:530 +#: application/views/qso/edit_ajax.php:557 msgid "Change Station Profile" msgstr "" -#: application/views/qso/edit_ajax.php:576 +#: application/views/qso/edit_ajax.php:603 msgid "Exchange (R)" msgstr "" -#: application/views/qso/edit_ajax.php:581 +#: application/views/qso/edit_ajax.php:608 msgid "Exchange (S)" msgstr "" -#: application/views/qso/edit_ajax.php:593 +#: application/views/qso/edit_ajax.php:620 #: application/views/search/search_result_ajax.php:432 #: application/views/view_log/partial/log.php:156 -#: application/views/view_log/partial/log_ajax.php:346 +#: application/views/view_log/partial/log_ajax.php:348 msgid "Delete QSO" msgstr "Wis QSO" -#: application/views/qso/edit_ajax.php:596 +#: application/views/qso/edit_ajax.php:623 msgid "Save changes" msgstr "" @@ -8305,7 +8945,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:5 application/views/qso/index.php:694 +#: application/views/qso/index.php:5 application/views/qso/index.php:718 msgid "Previous Contacts" msgstr "Eerdere verbindingen" @@ -8345,23 +8985,23 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:149 -#: application/views/station_profile/edit.php:191 -#: application/views/user/edit.php:583 application/views/view_log/qso.php:282 -#: application/views/view_log/qso.php:549 +#: application/views/qso/index.php:196 application/views/qso/index.php:449 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 +#: application/views/user/edit.php:583 application/views/view_log/qso.php:285 +#: application/views/view_log/qso.php:552 msgid "IOTA Reference" msgstr "IOTA Referentie" -#: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:165 -#: application/views/station_profile/edit.php:219 -#: application/views/user/edit.php:587 application/views/view_log/qso.php:289 -#: application/views/view_log/qso.php:556 +#: application/views/qso/index.php:212 application/views/qso/index.php:466 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 +#: application/views/user/edit.php:587 application/views/view_log/qso.php:292 +#: application/views/view_log/qso.php:559 msgid "SOTA Reference" msgstr "SOTA Referentie" -#: application/views/qso/index.php:322 application/views/view_log/qso.php:98 +#: application/views/qso/index.php:322 application/views/view_log/qso.php:100 msgid "Frequency (RX)" msgstr "Frequentie (RX)" @@ -8369,39 +9009,39 @@ msgstr "Frequentie (RX)" msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:458 +#: application/views/qso/index.php:468 msgid "For example: GM/NS-001." msgstr "Bijvoorbeeld: GM/NS-001." -#: application/views/qso/index.php:471 +#: application/views/qso/index.php:481 msgid "For example: DLFF-0069." msgstr "Bijvoorbeeld: DLFF-0069." -#: application/views/qso/index.php:484 +#: application/views/qso/index.php:494 msgid "For example: PA-0150. Multiple values allowed." msgstr "Bijvoorbeeld: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:496 +#: application/views/qso/index.php:506 msgid "For example: GMA" msgstr "Bijvoorbeeld: GMA" -#: application/views/qso/index.php:502 +#: application/views/qso/index.php:512 msgid "For example: DA/NW-357" msgstr "Bijvoorbeeld: DA/NW-357" -#: application/views/qso/index.php:510 +#: application/views/qso/index.php:520 msgid "For example: Q03" msgstr "Bijvoorbeeld: Q03" -#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +#: application/views/qso/index.php:529 application/views/view_log/qso.php:210 msgid "Satellite Name" msgstr "Satelliet Naam" -#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +#: application/views/qso/index.php:537 application/views/view_log/qso.php:217 msgid "Satellite Mode" msgstr "Satelliet Mode" -#: application/views/qso/index.php:538 +#: application/views/qso/index.php:560 msgid "" "Note content is used within Wavelog only and is not exported to other " "services." @@ -8409,27 +9049,47 @@ msgstr "" "Notities worden alleen in Wavelog gebruikt en worden niet geexporteerd naar " "andere diensten." -#: application/views/qso/index.php:604 +#: application/views/qso/index.php:626 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:645 +#: application/views/qso/index.php:667 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:647 +#: application/views/qso/index.php:669 msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:678 +msgid "Stop" +msgstr "" + +#: application/views/qso/index.php:679 +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:680 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:686 +msgid "CW Speed" +msgstr "" + +#: application/views/qso/index.php:691 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:701 msgid "Suggestions" msgstr "Suggesties" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:708 msgid "Profile Picture" msgstr "" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:732 msgid "Max. 5 previous contacts are shown" msgstr "" @@ -8460,6 +9120,137 @@ msgstr "" msgid "Please wait..." msgstr "" +#: application/views/reg1test/index.php:6 +msgid "Select Band" +msgstr "" + +#: application/views/reg1test/index.php:8 +msgid "" +"Bands below 50Mhz are not valid for the EDI REG1TEST format and will produce " +"invalid files." +msgstr "" + +#: application/views/reg1test/index.php:18 +msgid "Export a contest to a REG1TEST EDI log" +msgstr "" + +#: application/views/reg1test/index.php:48 +msgid "Sent Exchange" +msgstr "" + +#: application/views/reg1test/index.php:50 +msgid "" +"The exchange which was sent during the contest. Can be any type of " +"information, e.g. Province, DOK, County, State, Power, Name. Max. length: 6 " +"characters." +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:66 +msgid "Callsign of responsible operator" +msgstr "" + +#: application/views/reg1test/index.php:72 +msgid "" +"List of all operators. Seperated with a semicolon ';'. The responsible " +"operator is not needed here." +msgstr "" + +#: application/views/reg1test/index.php:75 +msgid "Contest Address 1" +msgstr "" + +#: application/views/reg1test/index.php:77 +msgid "Address of the QTH used during the contest." +msgstr "" + +#: application/views/reg1test/index.php:80 +msgid "Contest Address 2" +msgstr "" + +#: application/views/reg1test/index.php:84 +msgid "Operator Address 1" +msgstr "" + +#: application/views/reg1test/index.php:86 +msgid "Address of the responsible operator." +msgstr "" + +#: application/views/reg1test/index.php:89 +msgid "Operator Address 2" +msgstr "" + +#: application/views/reg1test/index.php:93 +msgid "Operator Address Postalcode" +msgstr "" + +#: application/views/reg1test/index.php:97 +msgid "Operator Address City" +msgstr "" + +#: application/views/reg1test/index.php:101 +msgid "Operator Address Country" +msgstr "" + +#: application/views/reg1test/index.php:105 +msgid "Operator Phone Number" +msgstr "" + +#: application/views/reg1test/index.php:109 +msgid "Transmit Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:111 +msgid "Short description of the used equipment." +msgstr "" + +#: application/views/reg1test/index.php:116 +msgid "TX Power during the contest in Watt." +msgstr "" + +#: application/views/reg1test/index.php:119 +msgid "Receive Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:121 +msgid "If you used another gear for RX, then describe it here." +msgstr "" + +#: application/views/reg1test/index.php:124 +msgid "Antenna Description" +msgstr "" + +#: application/views/reg1test/index.php:126 +msgid "What kind of antenna was used." +msgstr "" + +#: application/views/reg1test/index.php:129 +msgid "Antenna Height Above Ground (m)" +msgstr "" + +#: application/views/reg1test/index.php:131 +msgid "Height of the antenna above the ground." +msgstr "" + +#: application/views/reg1test/index.php:134 +msgid "Band multiplicator" +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:141 +msgid "Any other remarks." +msgstr "" + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8549,10 +9340,71 @@ msgstr "" msgid "Satellite passes" msgstr "" -#: application/views/satellite/pass.php:548 +#: application/views/satellite/pass.php:8 +msgid "Min. Satellite Elevation" +msgstr "" + +#: application/views/satellite/pass.php:12 +msgid "Min. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:20 +msgid "Max. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:32 +msgid "Altitude (meters)" +msgstr "" + +#: application/views/satellite/pass.php:36 application/views/user/edit.php:179 +msgid "Timezone" +msgstr "" + +#: application/views/satellite/pass.php:479 +msgid "Min. time" +msgstr "" + +#: application/views/satellite/pass.php:487 +msgid "Max. time" +msgstr "" + +#: application/views/satellite/pass.php:504 msgid "Load predictions" msgstr "" +#: application/views/satellite/passtable.php:6 +msgid "AOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:7 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "" + +#: application/views/satellite/passtable.php:8 +msgid "AOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:9 +msgid "AOS El" +msgstr "" + +#: application/views/satellite/passtable.php:10 +msgid "Max El" +msgstr "" + +#: application/views/satellite/passtable.php:11 +msgid "LOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:12 +msgid "LOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:13 +msgid "LOS El" +msgstr "" + #: application/views/sattimers/index.php:15 #, php-format msgid "" @@ -8573,10 +9425,6 @@ msgstr "" msgid "Max Elevation" msgstr "" -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "" - #: application/views/search/cqzones.php:5 #: application/views/search/lotw_unconfirmed.php:5 #: application/views/search/main.php:5 @@ -8683,50 +9531,50 @@ msgstr "" #: application/views/search/search_result_ajax.php:409 #: application/views/view_log/partial/log.php:140 -#: application/views/view_log/partial/log_ajax.php:323 +#: application/views/view_log/partial/log_ajax.php:325 msgid "Mark QSL Sent (Bureau)" msgstr "Markeer QSL udsendt (Bureau)" #: application/views/search/search_result_ajax.php:410 #: application/views/view_log/partial/log.php:141 -#: application/views/view_log/partial/log_ajax.php:324 +#: application/views/view_log/partial/log_ajax.php:326 msgid "Mark QSL Sent (Direct)" msgstr "Markeer QSL udsendt (Direct)" #: application/views/search/search_result_ajax.php:417 #: application/views/view_log/partial/log.php:148 -#: application/views/view_log/partial/log_ajax.php:333 -#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log_ajax.php:335 +#: application/views/view_log/qso.php:655 msgid "Mark QSL Received (Bureau)" msgstr "Markeer QSL ontvangen (Bureau)" #: application/views/search/search_result_ajax.php:418 #: application/views/view_log/partial/log.php:149 -#: application/views/view_log/partial/log_ajax.php:334 -#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log_ajax.php:336 +#: application/views/view_log/qso.php:657 msgid "Mark QSL Received (Direct)" msgstr "Markeer QSL ontvangen (Direct)" #: application/views/search/search_result_ajax.php:419 #: application/views/view_log/partial/log.php:150 -#: application/views/view_log/partial/log_ajax.php:325 +#: application/views/view_log/partial/log_ajax.php:327 msgid "Mark QSL Card Requested" msgstr "Markeer QSL Kort anmodet om" #: application/views/search/search_result_ajax.php:420 #: application/views/view_log/partial/log.php:151 -#: application/views/view_log/partial/log_ajax.php:326 -#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log_ajax.php:328 +#: application/views/view_log/qso.php:669 msgid "Mark QSL Card Not Required" msgstr "Markeer QSL Kort ikke påkrævet" #: application/views/search/search_result_ajax.php:426 -#: application/views/view_log/partial/log_ajax.php:340 +#: application/views/view_log/partial/log_ajax.php:342 msgid "Lookup on QRZ.com" msgstr "" #: application/views/search/search_result_ajax.php:428 -#: application/views/view_log/partial/log_ajax.php:342 +#: application/views/view_log/partial/log_ajax.php:344 msgid "Lookup on HamQTH" msgstr "" @@ -8761,7 +9609,7 @@ msgid "" msgstr "" #: application/views/simplefle/index.php:17 -#: application/views/simplefle/index.php:170 +#: application/views/simplefle/index.php:176 msgid "Syntax Help" msgstr "" @@ -8855,8 +9703,8 @@ msgstr "" #: application/views/simplefle/index.php:107 #, php-format msgid "" -"If you did operate from a new location, first create a new Station Location" +"If you did operate from a new location, first create a new %sStation " +"Location%s" msgstr "" #: application/views/simplefle/index.php:112 @@ -8871,24 +9719,24 @@ msgstr "" msgid "Enter the Data" msgstr "" -#: application/views/simplefle/index.php:148 +#: application/views/simplefle/index.php:154 msgid "Refs" msgstr "" -#: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +#: application/views/simplefle/index.php:166 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" msgstr "" -#: application/views/simplefle/index.php:167 +#: application/views/simplefle/index.php:173 msgid "Reload QSO List" msgstr "" -#: application/views/simplefle/index.php:168 +#: application/views/simplefle/index.php:174 msgid "Save in Wavelog" msgstr "" -#: application/views/simplefle/index.php:169 +#: application/views/simplefle/index.php:175 msgid "Clear Logging Session" msgstr "" @@ -8945,122 +9793,121 @@ msgstr "" #: application/views/simplefle/syntax_help.php:28 #, php-format -msgctxt "uses 'this article'" msgid "" -"A full summary of all commands and the necessary syntax can be found in %s " -"of our Wiki." +"A full summary of all commands and the necessary syntax can be found in " +"%sthis article%s of our Wiki." msgstr "" -#: application/views/station_profile/create.php:51 -#: application/views/station_profile/edit.php:40 +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:52 -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:59 -#: application/views/station_profile/edit.php:48 +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 msgid "Station callsign. For example: 4W7EST/P" msgstr "" -#: application/views/station_profile/create.php:63 -#: application/views/station_profile/edit.php:52 +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 msgid "Station Power (W)" msgstr "" -#: application/views/station_profile/create.php:65 -#: application/views/station_profile/edit.php:54 +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" -#: application/views/station_profile/create.php:68 -#: application/views/station_profile/edit.php:69 +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 msgid "Station DXCC" msgstr "" -#: application/views/station_profile/create.php:71 -#: application/views/station_profile/edit.php:72 +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 msgctxt "DXCC selection" msgid "None" msgstr "" -#: application/views/station_profile/create.php:78 -#: application/views/station_profile/edit.php:85 +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:83 -#: application/views/station_profile/edit.php:91 +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 msgid "Station City" msgstr "" -#: application/views/station_profile/create.php:85 -#: application/views/station_profile/edit.php:93 +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:94 -#: application/views/station_profile/edit.php:105 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 msgid "Station state. Applies to certain countries only." msgstr "" -#: application/views/station_profile/create.php:99 -#: application/views/station_profile/edit.php:110 +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 msgid "Station County" msgstr "" -#: application/views/station_profile/create.php:101 -#: application/views/station_profile/edit.php:112 +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/edit.php:138 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:138 -#: application/views/station_profile/edit.php:155 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 msgid "click here" msgstr "" -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/edit.php:155 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:135 -#: application/views/station_profile/edit.php:167 -#: application/views/station_profile/edit.php:170 +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 msgid "Station Gridsquare" msgstr "" -#: application/views/station_profile/create.php:140 -#: application/views/station_profile/edit.php:175 +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 msgid "Get Gridsquare" msgstr "" -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 #, php-format msgctxt "uses 'click here'" msgid "" @@ -9068,304 +9915,250 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:145 -#: application/views/station_profile/edit.php:180 +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" -#: application/views/station_profile/create.php:160 -#: application/views/station_profile/edit.php:205 +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 msgid "Station IOTA reference. For example: EU-005" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 #, php-format msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:183 -#: application/views/station_profile/edit.php:260 +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 msgid "Signature Name" msgstr "" -#: application/views/station_profile/create.php:185 -#: application/views/station_profile/edit.php:262 +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 msgid "Station Signature (e.g. GMA).." msgstr "" -#: application/views/station_profile/create.php:189 -#: application/views/station_profile/edit.php:266 +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 msgid "Signature Information" msgstr "" -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/edit.php:268 +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "" -#: application/views/station_profile/create.php:195 -#: application/views/station_profile/edit.php:281 +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:197 -#: application/views/station_profile/edit.php:283 +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "" -#: application/views/station_profile/create.php:201 -#: application/views/station_profile/edit.php:286 +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 msgid "Default QSLMSG" msgstr "" -#: application/views/station_profile/create.php:204 -#: application/views/station_profile/edit.php:289 +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "" -#: application/views/station_profile/create.php:207 -#: application/views/station_profile/edit.php:328 +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:212 -#: application/views/station_profile/edit.php:333 +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " "Clublog. If this is deactivated on it's own please check if the Call is " "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:215 -#: application/views/station_profile/edit.php:336 +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 msgid "ClubLog Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:224 -#: application/views/station_profile/edit.php:352 +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 msgid "HRDLog.net Username" msgstr "" -#: application/views/station_profile/create.php:226 -#: application/views/station_profile/edit.php:354 +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" -#: application/views/station_profile/create.php:229 -#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 msgid "HRDLog.net API Key" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:234 -#: application/views/station_profile/edit.php:362 +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 msgid "HRDLog.net Logbook Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:243 -#: application/views/station_profile/edit.php:297 +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 msgid "Subscription Required" msgstr "" -#: application/views/station_profile/create.php:248 +#: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/edit.php:310 +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 msgid "QRZ.com Logbook Upload" msgstr "" -#: application/views/station_profile/create.php:260 -#: application/views/station_profile/edit.php:313 +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:268 -#: application/views/station_profile/edit.php:378 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:273 -#: application/views/station_profile/edit.php:383 +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 msgid "QO-100 Dx Club Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:283 -#: application/views/station_profile/edit.php:401 +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 msgid "OQRS Enabled" msgstr "" -#: application/views/station_profile/create.php:290 -#: application/views/station_profile/edit.php:408 +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 msgid "OQRS Email alert" msgstr "" -#: application/views/station_profile/create.php:295 -#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 msgid "Make sure email is set up under admin and global options." msgstr "" -#: application/views/station_profile/create.php:298 -#: application/views/station_profile/edit.php:416 +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 msgid "OQRS Text" msgstr "" -#: application/views/station_profile/create.php:300 -#: application/views/station_profile/edit.php:418 +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 msgid "Some info you want to add regarding QSL'ing." msgstr "" -#: application/views/station_profile/edit.php:122 +#: application/views/station_profile/edit.php:149 msgid "Zones" msgstr "" -#: application/views/station_profile/edit.php:257 +#: application/views/station_profile/edit.php:284 msgid "Signature" msgstr "" -#: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:95 -msgid "" -"Station Locations define operating locations, such as your QTH, a friends " -"QTH, or a portable station." -msgstr "" - -#: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:96 -msgid "Similar to logbooks, a station profile keeps a set of QSOs together." -msgstr "" - -#: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:97 -msgid "" -"Only one station may be active at a time. In the table below this is shown " -"with the -Active Station- badge." -msgstr "" - -#: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:101 -msgid "Create a Station Location" -msgstr "" - -#: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:105 -msgid "" -"Attention: You need to set an active station location. Go to Callsign-" -">Station Location to select one." -msgstr "" - -#: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:111 -msgid "" -"Due to recent changes within Wavelog you need to reassign QSOs to your " -"station profiles." -msgstr "" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Maintenance" -msgstr "" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Please reassign them at " -msgstr "" - -#: application/views/station_profile/index.php:41 -#: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:122 -msgid "Profile Name" -msgstr "" - #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "" @@ -9413,6 +10206,11 @@ msgstr "" msgid "Link Location" msgstr "" +#: application/views/stationsetup/linkedlocations.php:31 +#: application/views/stationsetup/stationsetup.php:122 +msgid "Profile Name" +msgstr "" + #: application/views/stationsetup/linkedlocations.php:34 msgid "Unlink Station Location" msgstr "" @@ -9437,12 +10235,52 @@ msgstr "" msgid "Station Locations" msgstr "" +#: application/views/stationsetup/stationsetup.php:95 +msgid "" +"Station Locations define operating locations, such as your QTH, a friends " +"QTH, or a portable station." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:96 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:97 +msgid "" +"Only one station may be active at a time. In the table below this is shown " +"with the -Active Station- badge." +msgstr "" + #: application/views/stationsetup/stationsetup.php:98 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." msgstr "" +#: application/views/stationsetup/stationsetup.php:101 +msgid "Create a Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:105 +msgid "" +"Attention: You need to set an active station location. Go to Callsign-" +">Station Location to select one." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:111 +msgid "" +"Due to recent changes within Wavelog you need to reassign QSOs to your " +"station profiles." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Maintenance" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Please reassign them at " +msgstr "" + #: application/views/stationsetup/stationsetup.php:127 msgid "Linked" msgstr "" @@ -9659,9 +10497,10 @@ msgid "4. Step" msgstr "" #: application/views/themes/index.php:73 +#, php-format msgid "" "Click here on 'Add a Theme' and type in the necessary data. Type in the " -"filenames for the logos without the file extension '.png'" +"filenames for the logos %swithout%s the file extension '.png'" msgstr "" #: application/views/themes/index.php:83 @@ -9724,6 +10563,10 @@ msgstr "" msgid "Update DXCC Data" msgstr "" +#: application/views/update/index.php:30 +msgid "Status:" +msgstr "" + #: application/views/update/index.php:34 msgid "Apply DXCC Data to Logbook" msgstr "" @@ -9737,36 +10580,43 @@ msgid "" "\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." msgstr "" -#: application/views/update/index.php:40 +#: application/views/update/index.php:45 msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:54 application/views/update/index.php:95 msgid "Re-check all QSOs in logbook" msgstr "" -#: application/views/update/index.php:45 +#: application/views/update/index.php:59 msgid "Apply Continent Data to Logbook" msgstr "" -#: application/views/update/index.php:47 +#: application/views/update/index.php:61 msgid "" "This function can be used to update QSO continent information for all QSOs " "in Wavelog missing that information." msgstr "" -#: application/views/update/index.php:49 +#: application/views/update/index.php:68 msgid "Check QSOs missing continent data" msgstr "" -#: application/views/update/index.php:59 +#: application/views/update/index.php:80 msgid "Here you can update QSOs with missing distance information." msgstr "" -#: application/views/update/index.php:60 +#: application/views/update/index.php:86 msgid "Update distance data" msgstr "" +#: application/views/update/index.php:89 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" + #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "" @@ -9796,13 +10646,13 @@ msgid "General Information" msgstr "" #: application/views/user/edit.php:52 application/views/user/login.php:58 -#: application/views/user/login.php:67 application/views/user/login.php:68 +#: application/views/user/login.php:69 application/views/user/login.php:70 #: application/views/user/profile.php:14 msgid "Username" msgstr "" #: application/views/user/edit.php:64 application/views/user/login.php:59 -#: application/views/user/login.php:71 application/views/user/login.php:72 +#: application/views/user/login.php:73 application/views/user/login.php:74 #: application/views/user/reset_password.php:21 #: application/views/user/reset_password.php:23 #: application/views/user/reset_password.php:30 @@ -9845,10 +10695,6 @@ msgstr "" msgid "Choose Wavelog language." msgstr "" -#: application/views/user/edit.php:179 -msgid "Timezone" -msgstr "" - #: application/views/user/edit.php:187 msgid "Date Format" msgstr "" @@ -10182,6 +11028,122 @@ msgstr "" msgid "You can reset your password here." msgstr "" +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "" + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "" + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "" @@ -10196,96 +11158,17 @@ msgstr "" #: application/views/user/login.php:60 #, php-format -msgid "" -"More Information about Wavelog on Github." +msgid "More Information about Wavelog on %sGithub%s." msgstr "" -#: application/views/user/login.php:77 +#: application/views/user/login.php:79 msgid "Forgot your password?" msgstr "" -#: application/views/user/login.php:83 +#: application/views/user/login.php:85 msgid "Keep me logged in" msgstr "" -#: application/views/user/main.php:2 -msgid "Do you really want to send this user a password-reset link?" -msgstr "" - -#: application/views/user/main.php:6 -msgid "Please Wait ..." -msgstr "" - -#: application/views/user/main.php:9 -msgid "Password-reset e-mail sent to user:" -msgstr "" - -#: application/views/user/main.php:30 -msgid "User List" -msgstr "" - -#: application/views/user/main.php:33 -msgid "Wavelog needs at least one user configured in order to operate." -msgstr "" - -#: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" - -#: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "" - -#: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." -msgstr "" - -#: application/views/user/main.php:38 -msgid "Create user" -msgstr "" - -#: application/views/user/main.php:39 -msgid "Refresh List" -msgstr "" - -#: application/views/user/main.php:49 -msgid "Type" -msgstr "" - -#: application/views/user/main.php:50 -msgid "Last seen" -msgstr "" - -#: application/views/user/main.php:53 -msgid "Password Reset" -msgstr "" - -#: application/views/user/main.php:79 -msgid "Never" -msgstr "" - -#: application/views/user/main.php:83 -msgid "Locations" -msgstr "" - -#: application/views/user/main.php:85 -msgid "Logbooks" -msgstr "" - -#: application/views/user/main.php:87 -msgid "Last QSO:" -msgstr "" - -#: application/views/user/main.php:89 -msgid "No QSOs in Log" -msgstr "" - #: application/views/user/profile.php:19 msgid "Level" msgstr "" @@ -10335,118 +11218,118 @@ msgstr "" msgid "QSL Management" msgstr "" -#: application/views/view_log/qso.php:128 +#: application/views/view_log/qso.php:131 msgid "Total Distance" msgstr "" -#: application/views/view_log/qso.php:221 +#: application/views/view_log/qso.php:224 msgid "Antenna Azimuth" msgstr "" -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:231 msgid "Antenna Elevation" msgstr "" -#: application/views/view_log/qso.php:370 +#: application/views/view_log/qso.php:373 msgid "QSL Card has been sent via the bureau" msgstr "" -#: application/views/view_log/qso.php:372 +#: application/views/view_log/qso.php:375 msgid "QSL Card has been sent via direct" msgstr "" -#: application/views/view_log/qso.php:374 +#: application/views/view_log/qso.php:377 msgid "QSL Card has been sent electronically" msgstr "" -#: application/views/view_log/qso.php:376 +#: application/views/view_log/qso.php:379 msgid "QSL Card has been sent via manager" msgstr "" -#: application/views/view_log/qso.php:378 +#: application/views/view_log/qso.php:381 msgid "QSL Card has been sent" msgstr "" -#: application/views/view_log/qso.php:387 +#: application/views/view_log/qso.php:390 msgid "QSL Card has been received via the bureau" msgstr "" -#: application/views/view_log/qso.php:389 +#: application/views/view_log/qso.php:392 msgid "QSL Card has been received via direct" msgstr "" -#: application/views/view_log/qso.php:391 +#: application/views/view_log/qso.php:394 msgid "QSL Card has been received electronically" msgstr "" -#: application/views/view_log/qso.php:393 +#: application/views/view_log/qso.php:396 msgid "QSL Card has been received via manager" msgstr "" -#: application/views/view_log/qso.php:395 +#: application/views/view_log/qso.php:398 msgid "QSL Card has been received" msgstr "" -#: application/views/view_log/qso.php:404 +#: application/views/view_log/qso.php:407 msgid "This station uses LoTW." msgstr "" -#: application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:414 -#: application/views/view_log/qso.php:419 -#: application/views/view_log/qso.php:424 +#: application/views/view_log/qso.php:412 +#: application/views/view_log/qso.php:417 +#: application/views/view_log/qso.php:422 +#: application/views/view_log/qso.php:427 msgid "This QSO was confirmed on" msgstr "" -#: application/views/view_log/qso.php:435 +#: application/views/view_log/qso.php:438 msgid "More QSOs" msgstr "" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:506 msgid "Details" msgstr "" -#: application/views/view_log/qso.php:630 +#: application/views/view_log/qso.php:633 msgid "Uploaded QSL Card front image" msgstr "" -#: application/views/view_log/qso.php:635 +#: application/views/view_log/qso.php:638 msgid "Upload QSL Card image" msgstr "" -#: application/views/view_log/qso.php:640 +#: application/views/view_log/qso.php:643 msgid "Uploaded QSL Card back image" msgstr "" -#: application/views/view_log/qso.php:656 +#: application/views/view_log/qso.php:659 msgid "Mark QSL Received (Electronic)" msgstr "Markeer QSL ontvangen (Electronic)" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:665 msgid "Mark QSL Card Requested (Bureau)" msgstr "Markeer QSL Kort anmodet om (Bureau)" -#: application/views/view_log/qso.php:664 +#: application/views/view_log/qso.php:667 msgid "Mark QSL Card Requested (Direct)" msgstr "Markeer QSL Kort anmodet om (Direct)" -#: application/views/view_log/qso.php:679 +#: application/views/view_log/qso.php:682 msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:242 msgid "CSV" msgstr "" -#: application/views/visitor/layout/header.php:75 +#: application/views/visitor/layout/header.php:74 msgid "OQRS" msgstr "" -#: application/views/visitor/layout/header.php:83 +#: application/views/visitor/layout/header.php:82 msgid "Visit Wavelog on Github" msgstr "" -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Please enter a callsign!" msgstr "" diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.mo b/application/locale/pl_PL/LC_MESSAGES/messages.mo index e37d4e347..5b12b6ebb 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 776f8a63b..3ebab11a0 100644 --- a/application/locale/pl_PL/LC_MESSAGES/messages.po +++ b/application/locale/pl_PL/LC_MESSAGES/messages.po @@ -2,12 +2,13 @@ # Copyright (c) 2024 Wavelog by DF2ET, DJ7NT, HB9HIL and LA8AJA. # This file is distributed under the MIT licence. # +# Maciej , 2024. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-09 07:24+0000\n" -"PO-Revision-Date: 2024-07-09 13:26+0000\n" -"Last-Translator: Anonymous \n" +"POT-Creation-Date: 2024-09-07 07:18+0000\n" +"PO-Revision-Date: 2024-08-30 05:57+0000\n" +"Last-Translator: Maciej \n" "Language-Team: Polish \n" "Language: pl_PL\n" @@ -16,10 +17,104 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 5.6\n" +"X-Generator: Weblate 5.7\n" -#: application/controllers/Accumulated.php:21 -#: application/views/interface_assets/header.php:150 +#: application/controllers/Accumulated.php:12 +#: application/controllers/Activators.php:13 +#: application/controllers/Activatorsmap.php:13 +#: application/controllers/Adif.php:13 application/controllers/Awards.php:16 +#: application/controllers/Backup.php:13 application/controllers/Backup.php:26 +#: application/controllers/Backup.php:63 application/controllers/Band.php:15 +#: application/controllers/Bandmap.php:9 +#: application/controllers/Cabrillo.php:16 +#: application/controllers/Cabrillo.php:53 +#: application/controllers/Cabrillo.php:80 +#: application/controllers/Cabrillo.php:135 +#: application/controllers/Calltester.php:11 +#: application/controllers/Cfdexport.php:18 +#: application/controllers/Cfdexport.php:29 +#: application/controllers/Components.php:13 +#: application/controllers/Contestcalendar.php:15 +#: application/controllers/Contesting.php:14 +#: application/controllers/Cron.php:26 application/controllers/Cron.php:162 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: application/controllers/Distancerecords.php:11 +#: application/controllers/Distances.php:11 +#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29 +#: application/controllers/Dxatlas.php:51 +#: application/controllers/Dxatlas.php:108 +#: application/controllers/Dxcalendar.php:8 +#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23 +#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 +#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 +#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:353 +#: application/controllers/Eqsl.php:420 application/controllers/Eqsl.php:436 +#: application/controllers/Eqsl.php:497 application/controllers/Hamsat.php:13 +#: application/controllers/Kmlexport.php:18 +#: application/controllers/Kmlexport.php:33 +#: application/controllers/Labels.php:26 +#: application/controllers/Logbookadvanced.php:16 +#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 +#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 +#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 +#: application/controllers/Notes.php:10 application/controllers/Options.php:15 +#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 +#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 +#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 +#: application/controllers/Qso.php:9 application/controllers/Qso.php:19 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:600 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Reg1test.php:18 +#: application/controllers/Reg1test.php:63 +#: application/controllers/Reg1test.php:102 +#: application/controllers/Reg1test.php:130 +#: application/controllers/Reg1test.php:164 +#: application/controllers/Satellite.php:18 +#: application/controllers/Satellite.php:37 +#: application/controllers/Satellite.php:44 +#: application/controllers/Satellite.php:53 +#: application/controllers/Satellite.php:72 +#: application/controllers/Satellite.php:87 +#: application/controllers/Satellite.php:95 +#: application/controllers/Satellite.php:103 +#: application/controllers/Satellite.php:117 +#: application/controllers/Satellite.php:135 +#: application/controllers/Satellite.php:146 +#: application/controllers/Satellite.php:162 +#: application/controllers/Satellite.php:190 +#: application/controllers/Satellite.php:201 +#: application/controllers/Satellite.php:223 +#: application/controllers/Satellite.php:236 +#: application/controllers/Satellite.php:244 +#: application/controllers/Sattimers.php:9 +#: application/controllers/Search.php:13 +#: application/controllers/Simplefle.php:7 +#: application/controllers/Station.php:17 +#: application/controllers/Stationsetup.php:15 +#: application/controllers/Themes.php:17 +#: application/controllers/Timeline.php:10 +#: application/controllers/Timeplotter.php:11 +#: application/controllers/Update.php:24 application/controllers/Update.php:273 +#: application/controllers/Update.php:284 +#: application/controllers/Update.php:295 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 +#: application/controllers/User_options.php:9 +msgid "You're not allowed to do that!" +msgstr "" + +#: application/controllers/Accumulated.php:19 +#: application/views/interface_assets/header.php:152 msgid "Accumulated Statistics" msgstr "" @@ -29,38 +124,41 @@ msgid "Activated Gridsquare Map" msgstr "" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:910 -#: application/controllers/Awards.php:942 +#: application/controllers/Awards.php:919 +#: application/controllers/Awards.php:951 #: application/controllers/Gridmap.php:31 -#: application/controllers/Visitor.php:374 -#: application/views/activators/index.php:101 +#: application/controllers/Visitor.php:385 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: application/views/visitor/layout/footer.php:22 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" -msgstr "" +msgstr "Lokatory" #: application/controllers/Activated_gridmap.php:32 #: application/controllers/Gridmap.php:32 -#: application/controllers/Visitor.php:375 +#: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" -msgstr "" +msgstr "Potwierdzone lokatory" #: application/controllers/Activated_gridmap.php:33 #: application/controllers/Gridmap.php:33 -#: application/controllers/Visitor.php:376 +#: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" -msgstr "" +msgstr "Niepotwierdzone lokatory" #: application/controllers/Activated_gridmap.php:34 msgid "Total gridsquares activated" msgstr "" #: application/controllers/Activators.php:20 -#: application/views/activators/index.php:2 +#: application/views/activators/index.php:5 #: application/views/interface_assets/header.php:142 msgid "Gridsquare Activators" msgstr "" #: application/controllers/Activatorsmap.php:17 +#: application/views/activators/index.php:2 msgid "Activators Map" msgstr "" @@ -70,46 +168,51 @@ msgstr "" #: application/controllers/Adif.php:20 msgid "date incorrect" -msgstr "" +msgstr "niepoprawna data" #: application/controllers/Adif.php:29 application/views/adif/import.php:24 msgid "ADIF Export" -msgstr "" +msgstr "Eksport ADIF" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:388 msgid "ADIF Import / Export" -msgstr "" +msgstr "Import / Eksport ADIF" #: application/controllers/Adif.php:169 application/views/adif/import.php:21 #: application/views/lotw/import.php:3 msgid "ADIF Import" -msgstr "" +msgstr "Import ADIF" #: application/controllers/Adif.php:209 msgid "Unsupported Filetype" -msgstr "" +msgstr "Niewspierany typ pliku" -#: application/controllers/Adif.php:245 +#: application/controllers/Adif.php:240 +#: application/views/adif/import_failed.php:12 +msgid "ADIF Import failed!" +msgstr "Błąd importu ADIF!" + +#: application/controllers/Adif.php:254 msgid "Station Profile not valid for User" msgstr "" -#: application/controllers/Adif.php:252 +#: application/controllers/Adif.php:261 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" -msgstr "" +msgstr "Zaimportowano ADIF" -#: application/controllers/Adif.php:263 +#: application/controllers/Adif.php:272 msgid "DCL Import" -msgstr "" +msgstr "Import DCL" -#: application/controllers/Adif.php:319 +#: application/controllers/Adif.php:328 msgid "DCL Data Imported" -msgstr "" +msgstr "Zaimportowano dane DCL" #: application/controllers/Api.php:26 msgid "API" -msgstr "" +msgstr "API" #: application/controllers/Api.php:50 application/views/api/description.php:26 msgid "API Description" @@ -131,30 +234,13 @@ msgstr "" #: application/controllers/Api.php:109 #, php-format msgid "API Key %s has been deleted" -msgstr "" - -#: application/controllers/Api.php:118 -msgid "Key Disabled" -msgstr "" - -#: application/controllers/Api.php:118 -msgid "No Key Found" -msgstr "" - -#: application/controllers/Api.php:120 -msgid "Key Invalid - either not found or disabled" -msgstr "" - -#: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 -msgid "Valid" -msgstr "Ważny" +msgstr "Klucz API %s został usunięty" #: application/controllers/Awards.php:22 -#: application/views/interface_assets/header.php:158 +#: application/views/interface_assets/header.php:160 #: application/views/qso/edit_ajax.php:35 msgid "Awards" -msgstr "" +msgstr "Nagrody" #: application/controllers/Awards.php:92 application/controllers/Awards.php:172 #: application/controllers/Awards.php:327 @@ -166,12 +252,13 @@ msgstr "" #: application/controllers/Awards.php:652 #: application/controllers/Awards.php:714 #: application/controllers/Awards.php:776 -#: application/controllers/Awards.php:847 -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:930 -#: application/controllers/Awards.php:1125 -#: application/controllers/Awards.php:1615 -#: application/controllers/Awards.php:1755 +#: application/controllers/Awards.php:856 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:939 +#: application/controllers/Awards.php:1140 +#: application/controllers/Awards.php:1639 +#: application/controllers/Awards.php:1779 +#: application/controllers/Awards.php:1908 #, php-format msgid "Awards - %s" msgstr "" @@ -179,13 +266,13 @@ msgstr "" #: application/controllers/Awards.php:92 #: application/views/awards/dok/index.php:149 #: application/views/bands/index.php:47 -#: application/views/contesting/index.php:170 -#: application/views/interface_assets/header.php:194 -#: application/views/logbookadvanced/index.php:613 +#: application/views/contesting/index.php:53 +#: application/views/interface_assets/header.php:198 +#: application/views/logbookadvanced/index.php:641 #: application/views/logbookadvanced/useroptions.php:130 -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:264 -#: application/views/qso/index.php:508 application/views/user/edit.php:603 -#: application/views/view_log/qso.php:351 +#: application/views/qso/edit_ajax.php:388 application/views/qso/index.php:264 +#: application/views/qso/index.php:518 application/views/user/edit.php:603 +#: application/views/view_log/qso.php:354 msgid "DOK" msgstr "" @@ -193,15 +280,15 @@ msgstr "" #: application/views/bandmap/list.php:112 application/views/bands/index.php:48 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 -#: application/views/interface_assets/header.php:164 +#: application/views/interface_assets/header.php:166 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:145 -#: application/views/logbookadvanced/index.php:580 +#: application/views/logbookadvanced/index.php:156 +#: application/views/logbookadvanced/index.php:608 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 -#: application/views/lotw_views/index.php:40 +#: application/views/lotw_views/index.php:36 #: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 #: application/views/search/cqzones_result.php:15 #: application/views/search/result.php:27 @@ -209,19 +296,19 @@ msgstr "" #: application/views/stationsetup/linkedlocations.php:33 #: application/views/timeplotter/index.php:24 msgid "DXCC" -msgstr "" +msgstr "DXCC" #: application/controllers/Awards.php:251 msgid "Awards - WAJA" -msgstr "" +msgstr "Nagrody - WAJA" #: application/controllers/Awards.php:327 application/views/bands/index.php:51 -#: application/views/interface_assets/header.php:210 +#: application/views/interface_assets/header.php:214 msgid "JCC" msgstr "" #: application/controllers/Awards.php:375 application/views/bands/index.php:57 -#: application/views/interface_assets/header.php:170 +#: application/views/interface_assets/header.php:172 msgid "VUCC" msgstr "" @@ -230,15 +317,20 @@ msgid "Log View - VUCC" msgstr "" #: application/controllers/Awards.php:453 -#: application/controllers/Timeline.php:92 -#: application/controllers/Timeline.php:95 -#: application/controllers/Timeline.php:98 -#: application/controllers/Timeline.php:101 -#: application/controllers/Timeline.php:104 -#: application/controllers/Timeline.php:107 +#: application/controllers/Distancerecords.php:59 +#: application/controllers/Timeline.php:105 +#: application/controllers/Timeline.php:108 +#: application/controllers/Timeline.php:111 +#: application/controllers/Timeline.php:114 +#: application/controllers/Timeline.php:117 +#: application/controllers/Timeline.php:120 msgid "Log View" msgstr "" +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr "" + #: application/controllers/Awards.php:457 msgid " and sat " msgstr "" @@ -260,12 +352,12 @@ msgid " and " msgstr "" #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1289 #: application/views/awards/index.php:8 application/views/bands/index.php:55 #: application/views/dashboard/index.php:9 -#: application/views/interface_assets/header.php:178 -#: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:259 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -273,31 +365,31 @@ msgstr "" #: application/views/qslcard/searchresult.php:49 #: application/views/qslcard/searchresult.php:65 #: application/views/qslcard/searchresult.php:81 -#: application/views/qso/components/previous_contacts.php:83 -#: application/views/qso/edit_ajax.php:336 +#: application/views/qso/components/previous_contacts.php:82 +#: application/views/qso/edit_ajax.php:363 #: application/views/search/search_result_ajax.php:9 -#: application/views/station_profile/edit.php:216 +#: application/views/station_profile/edit.php:243 #: application/views/user/edit.php:234 application/views/user/edit.php:256 #: application/views/user/edit.php:278 application/views/user/edit.php:300 #: application/views/user/edit.php:323 #: application/views/view_log/partial/log_ajax.php:9 #: application/views/visitor/index.php:21 msgid "SOTA" -msgstr "" +msgstr "SOTA" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1290 #: application/views/bands/index.php:60 #: application/views/dashboard/index.php:10 -#: application/views/interface_assets/header.php:172 -#: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:279 +#: application/views/interface_assets/header.php:176 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/index.php:290 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 -#: application/views/qso/components/previous_contacts.php:84 -#: application/views/qso/edit_ajax.php:341 +#: application/views/qso/components/previous_contacts.php:83 +#: application/views/qso/edit_ajax.php:368 #: application/views/search/search_result_ajax.php:10 -#: application/views/station_profile/edit.php:229 +#: application/views/station_profile/edit.php:256 #: application/views/user/edit.php:235 application/views/user/edit.php:257 #: application/views/user/edit.php:279 application/views/user/edit.php:301 #: application/views/user/edit.php:324 @@ -306,18 +398,18 @@ msgid "WWFF" msgstr "" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1291 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 -#: application/views/interface_assets/header.php:182 +#: application/views/interface_assets/header.php:186 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:274 +#: application/views/logbookadvanced/index.php:623 #: application/views/logbookadvanced/useroptions.php:106 -#: application/views/qso/components/previous_contacts.php:85 -#: application/views/qso/edit_ajax.php:346 +#: application/views/qso/components/previous_contacts.php:84 +#: application/views/qso/edit_ajax.php:373 #: application/views/search/search_result_ajax.php:11 -#: application/views/station_profile/edit.php:242 +#: application/views/station_profile/edit.php:269 #: application/views/user/edit.php:236 application/views/user/edit.php:258 #: application/views/user/edit.php:280 application/views/user/edit.php:302 #: application/views/user/edit.php:325 @@ -336,7 +428,7 @@ msgid "Worked All States (WAS)" msgstr "" #: application/controllers/Awards.php:714 application/views/bands/index.php:53 -#: application/views/interface_assets/header.php:188 +#: application/views/interface_assets/header.php:192 msgid "RAC" msgstr "" @@ -344,74 +436,80 @@ msgstr "" msgid "H26" msgstr "" -#: application/controllers/Awards.php:847 +#: application/controllers/Awards.php:856 msgid "IOTA (Island On The Air)" msgstr "" -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:872 -#: application/views/interface_assets/header.php:230 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 +#: application/views/interface_assets/header.php:234 msgid "US Counties" msgstr "" -#: application/controllers/Awards.php:887 +#: application/controllers/Awards.php:896 msgid "Log View - Counties" msgstr "" -#: application/controllers/Awards.php:894 +#: application/controllers/Awards.php:903 msgid "Awards - " msgstr "" -#: application/controllers/Awards.php:911 -#: application/controllers/Awards.php:943 +#: application/controllers/Awards.php:920 +#: application/controllers/Awards.php:952 msgid "Gridsquares worked" msgstr "" -#: application/controllers/Awards.php:912 -#: application/controllers/Awards.php:944 +#: application/controllers/Awards.php:921 +#: application/controllers/Awards.php:953 msgid "Gridsquares confirmed on LoTW" msgstr "" -#: application/controllers/Awards.php:913 -#: application/controllers/Awards.php:945 +#: application/controllers/Awards.php:922 +#: application/controllers/Awards.php:954 msgid "Gridsquares confirmed by paper QSL" msgstr "" -#: application/controllers/Awards.php:930 +#: application/controllers/Awards.php:939 msgid "Fred Fish Memorial Award (FFMA)" msgstr "" -#: application/controllers/Awards.php:1125 -#: application/views/interface_assets/header.php:168 +#: application/controllers/Awards.php:1140 +#: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "" -#: application/controllers/Awards.php:1143 +#: application/controllers/Awards.php:1158 msgid "Awards - SIG - " msgstr "" -#: application/controllers/Awards.php:1755 -#: application/views/awards/itu/index.php:18 +#: application/controllers/Awards.php:1779 +#: application/views/awards/itu/index.php:20 msgid "ITU Zones" +msgstr "Strefy ITU" + +#: application/controllers/Awards.php:1908 +#: application/views/awards/wac/index.php:8 +#: application/views/interface_assets/header.php:174 +msgid "Worked All Continents (WAC)" msgstr "" #: application/controllers/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:284 msgid "Backup" msgstr "" -#: application/controllers/Backup.php:48 +#: application/controllers/Backup.php:50 msgid "ADIF - Backup" msgstr "" -#: application/controllers/Backup.php:80 +#: application/controllers/Backup.php:84 msgid "Notes - Backup" msgstr "" #: application/controllers/Band.php:25 application/views/bands/index.php:28 #: application/views/bands/index.php:32 -#: application/views/interface_assets/header.php:379 +#: application/views/interface_assets/header.php:383 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -419,28 +517,28 @@ msgstr "" #: application/controllers/Band.php:40 application/controllers/Mode.php:41 msgid "Create Mode" -msgstr "" +msgstr "Dodaj emisję" #: application/controllers/Band.php:59 application/views/bands/index.php:150 msgid "Edit Band" -msgstr "" +msgstr "Edytuj pasmo" #: application/controllers/Bandmap.php:28 #: application/controllers/Bandmap.php:69 -#: application/controllers/Options.php:137 -#: application/controllers/Options.php:148 +#: application/controllers/Options.php:145 +#: application/controllers/Options.php:156 #: application/views/options/sidebar.php:10 msgid "DXCluster" -msgstr "" +msgstr "DXCluster" #: application/controllers/Cabrillo.php:20 msgid "Export Cabrillo" -msgstr "" +msgstr "Eksport Cabrillo" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:396 +#: application/views/interface_assets/header.php:402 msgid "CFD Export" -msgstr "" +msgstr "Eksport CFD" #: application/controllers/Clublog.php:15 application/controllers/Cron.php:12 #: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19 @@ -455,47 +553,71 @@ msgid "No user has configured Clublog." msgstr "" #: application/controllers/Contestcalendar.php:19 -#: application/views/interface_assets/header.php:247 +#: application/views/interface_assets/header.php:251 msgid "Contest Calendar" -msgstr "" +msgstr "Kalendarz zawodów" #: application/controllers/Contesting.php:47 #: application/views/contesting/index.php:3 msgid "Contest Logging" msgstr "Logowanie Zawodów" -#: application/controllers/Contesting.php:112 -#: application/views/interface_assets/header.php:274 +#: application/controllers/Contesting.php:113 +#: application/views/interface_assets/header.php:278 msgid "Contests" -msgstr "" +msgstr "Zawody" -#: application/controllers/Contesting.php:126 +#: application/controllers/Contesting.php:127 msgid "Update Contest" msgstr "" #: application/controllers/Continents.php:25 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:57 -#: application/views/interface_assets/header.php:154 +#: application/views/interface_assets/header.php:156 msgid "Continents" -msgstr "" +msgstr "Kontynenty" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:284 +#: application/views/interface_assets/header.php:288 msgid "Cron Manager" msgstr "" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:154 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "" -#: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:392 -msgid "SOTA CSV Export" +#: application/controllers/Cron.php:274 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "OK" + +#: application/controllers/Cron.php:278 +#, php-format +msgid "" +"Last run occurred more than %s seconds ago.%sPlease check your master cron! " +"It should run every minute (* * * * *)." msgstr "" -#: application/controllers/Dashboard.php:108 -#: application/controllers/Visitor.php:132 +#: application/controllers/Cron.php:281 +#, php-format +msgid "" +"Last run occurred more than %s minutes ago.%sSeems like your Mastercron " +"isn't running!%sIt should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:286 application/views/cron/index.php:29 +msgctxt "Master Cron" +msgid "Not running" +msgstr "" + +#: application/controllers/Csv.php:20 application/views/csv/index.php:3 +#: application/views/interface_assets/header.php:396 +msgid "SOTA CSV Export" +msgstr "Eksport CSV SOTA" + +#: application/controllers/Dashboard.php:123 +#: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "" @@ -525,7 +647,7 @@ msgstr "" #: application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" -msgstr "" +msgstr "Wavelog został zaktualizowany pomyślnie!" #: application/controllers/Debug.php:231 msgid "Selfupdate() not available. Check the Error Log." @@ -542,6 +664,12 @@ msgstr "" msgid "File Migration failed. Please check the Error Log." msgstr "" +#: application/controllers/Distancerecords.php:42 +#: application/controllers/Distancerecords.php:59 +#: application/views/interface_assets/header.php:146 +msgid "Satellite Distance Records" +msgstr "" + #: application/controllers/Distances.php:17 #: application/views/distances/index.php:5 #: application/views/distances/index.php:8 @@ -549,35 +677,39 @@ msgstr "" msgid "Distances Worked" msgstr "" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 #: application/views/distances/index.php:15 msgid "QSOs with" msgstr "" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 msgid "and band" msgstr "" +#: application/controllers/Distances.php:83 +msgid "and propagation" +msgstr "" + #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:394 msgid "DX Atlas Gridsquare Export" msgstr "" #: application/controllers/Dxcalendar.php:10 -#: application/views/interface_assets/header.php:245 +#: application/views/interface_assets/header.php:249 msgid "DX Calendar" -msgstr "" +msgstr "Kalendarz DX" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:325 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" -msgstr "" +msgstr "Karty eQSL" #: application/controllers/Eqsl.php:124 msgid "eQSL Import" -msgstr "" +msgstr "Import eQSL" #: application/controllers/Eqsl.php:134 msgid "eQSL Import Information" @@ -587,29 +719,29 @@ msgstr "" msgid "eQSL QSO Upload" msgstr "" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:424 msgid "eQSL Tools" -msgstr "" +msgstr "Narzędzia eQSL" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid " / Errors: " msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid "Successfully downloaded: " msgstr "" -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:481 msgid "eQSL Card Image Download" msgstr "" #: application/controllers/Gridmap.php:10 #: application/views/interface_assets/header.php:138 msgid "Gridsquare Map" -msgstr "" +msgstr "Mapa lokatorów" #: application/controllers/Gridmap.php:34 -#: application/controllers/Visitor.php:377 +#: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "" @@ -630,10 +762,10 @@ msgid "No QSOs found to upload." msgstr "" #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:392 #: application/views/kml/index.php:3 msgid "KML Export" -msgstr "" +msgstr "Eksport KML" #: application/controllers/Labels.php:40 application/views/labels/index.php:30 msgid "QSL Card Labels" @@ -643,59 +775,59 @@ msgstr "" msgid "Create Label Type" msgstr "" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:402 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:406 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:403 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:407 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 #: application/views/labels/index.php:76 msgid "Paper Type" msgstr "" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:404 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:408 #: application/views/labels/index.php:42 application/views/labels/index.php:77 msgid "Measurement" msgstr "" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:405 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:409 msgid "Top Margin" msgstr "" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:406 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:410 msgid "Left Margin" msgstr "" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:407 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:411 msgid "QSLs Horizontally" msgstr "" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:408 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:412 msgid "QSLs Vertically" msgstr "" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:409 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:413 msgid "Horizontal Space" msgstr "" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:410 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:414 msgid "Vertical Space" msgstr "" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:411 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:415 msgid "Label width" msgstr "" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:412 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:416 msgid "Label height" msgstr "" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:413 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:417 msgid "Size of Font" msgstr "" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:414 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:418 msgid "Number of QSOs on label" msgstr "" @@ -704,22 +836,22 @@ msgid "Create Paper Type" msgstr "" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:461 +#: application/controllers/Labels.php:465 msgid "Paper Name" msgstr "" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:462 +#: application/controllers/Labels.php:466 msgid "Paper Width" msgstr "" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:463 +#: application/controllers/Labels.php:467 msgid "Paper Height" msgstr "" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:471 +#: application/controllers/Labels.php:475 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -746,27 +878,27 @@ msgstr "" msgid "0 QSOs found for print!" msgstr "" -#: application/controllers/Labels.php:391 +#: application/controllers/Labels.php:395 msgid "Edit Label" msgstr "" -#: application/controllers/Labels.php:420 +#: application/controllers/Labels.php:424 msgid "Label was saved." msgstr "" -#: application/controllers/Labels.php:428 +#: application/controllers/Labels.php:432 msgid "Label was deleted." msgstr "" -#: application/controllers/Labels.php:450 +#: application/controllers/Labels.php:454 msgid "Edit Paper" msgstr "" -#: application/controllers/Labels.php:475 +#: application/controllers/Labels.php:479 msgid "Paper was saved." msgstr "" -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "Paper was deleted." msgstr "" @@ -779,7 +911,7 @@ msgstr "" #: application/controllers/Logbook.php:37 #: application/views/stationsetup/stationsetup.php:18 msgid "Station Logbooks" -msgstr "" +msgstr "Logi stacji" #: application/controllers/Logbook.php:60 #: application/views/interface_assets/header.php:97 @@ -788,20 +920,20 @@ msgstr "" msgid "Logbook" msgstr "Log" -#: application/controllers/Logbook.php:653 -#: application/controllers/Logbook.php:668 +#: application/controllers/Logbook.php:657 +#: application/controllers/Logbook.php:672 #: application/views/activated_gridmap/index.php:58 #: application/views/awards/dok/index.php:55 #: application/views/awards/dxcc/index.php:61 -#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/helvetia/index.php:55 #: application/views/awards/jcc/index.php:52 -#: application/views/awards/rac/index.php:45 +#: application/views/awards/rac/index.php:47 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:72 -#: application/views/awards/waja/index.php:53 -#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:55 +#: application/views/awards/was/index.php:55 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:568 +#: application/views/logbookadvanced/index.php:596 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -812,22 +944,23 @@ msgstr "Log" #: application/views/timeline/index.php:56 application/views/user/edit.php:562 #: application/views/user/edit.php:649 msgid "QSL" -msgstr "" +msgstr "QSL" -#: application/controllers/Logbook.php:656 +#: application/controllers/Logbook.php:660 #: application/views/activated_gridmap/index.php:66 -#: application/views/awards/cq/index.php:58 +#: application/views/awards/cq/index.php:60 #: application/views/awards/dok/index.php:59 #: application/views/awards/dxcc/index.php:65 -#: application/views/awards/helvetia/index.php:57 -#: application/views/awards/itu/index.php:58 +#: application/views/awards/helvetia/index.php:59 +#: application/views/awards/itu/index.php:60 #: application/views/awards/jcc/index.php:56 -#: application/views/awards/rac/index.php:49 +#: application/views/awards/rac/index.php:51 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:80 -#: application/views/awards/waja/index.php:57 -#: application/views/awards/was/index.php:57 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -835,28 +968,29 @@ msgstr "" #: application/views/qslprint/qsolist.php:21 #: application/views/qslprint/qsolist.php:167 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:384 +#: application/views/qso/edit_ajax.php:411 #: application/views/search/result_search.php:22 #: application/views/search/search_result_ajax.php:298 #: application/views/search/search_result_ajax.php:313 #: application/views/timeline/index.php:60 application/views/user/edit.php:563 -#: application/views/user/edit.php:659 application/views/view_log/qso.php:408 +#: application/views/user/edit.php:659 application/views/view_log/qso.php:411 msgid "LoTW" -msgstr "" +msgstr "LoTW" -#: application/controllers/Logbook.php:659 +#: application/controllers/Logbook.php:663 #: application/views/activated_gridmap/index.php:74 -#: application/views/awards/cq/index.php:62 +#: application/views/awards/cq/index.php:64 #: application/views/awards/dok/index.php:63 #: application/views/awards/dxcc/index.php:69 -#: application/views/awards/helvetia/index.php:61 -#: application/views/awards/itu/index.php:62 +#: application/views/awards/helvetia/index.php:63 +#: application/views/awards/itu/index.php:64 #: application/views/awards/jcc/index.php:60 -#: application/views/awards/rac/index.php:53 +#: application/views/awards/rac/index.php:55 #: application/views/awards/wab/index.php:88 -#: application/views/awards/waja/index.php:61 -#: application/views/awards/was/index.php:61 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:52 +#: application/views/awards/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:117 #: application/views/logbookadvanced/useroptions.php:70 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 @@ -864,63 +998,67 @@ msgstr "" #: application/views/qslprint/qsolist.php:18 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:151 -#: application/views/qso/edit_ajax.php:381 +#: application/views/qso/edit_ajax.php:408 #: application/views/search/result_search.php:16 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:273 -#: application/views/station_profile/edit.php:278 +#: application/views/station_profile/edit.php:305 #: application/views/timeline/index.php:64 application/views/user/edit.php:564 #: application/views/user/edit.php:667 application/views/user/edit.php:731 msgid "eQSL" -msgstr "" +msgstr "eQSL" -#: application/controllers/Logbook.php:665 +#: application/controllers/Logbook.php:669 #: application/views/awards/dok/index.php:71 #: application/views/awards/dxcc/index.php:77 #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 -#: application/views/awards/waja/index.php:69 +#: application/views/awards/waja/index.php:71 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 -#: application/views/station_profile/edit.php:325 +#: application/views/station_profile/edit.php:352 +#: application/views/timeline/index.php:68 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 -#: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/partial/log_ajax.php:85 +#: application/views/view_log/qso.php:426 msgid "Clublog" msgstr "" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1284 #: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:39 #: application/views/adif/dcl_success.php:33 -#: application/views/awards/cq/index.php:86 +#: application/views/awards/cq/index.php:88 #: application/views/awards/dok/index.php:91 #: application/views/awards/dxcc/index.php:162 -#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/helvetia/index.php:87 #: application/views/awards/iota/index.php:105 -#: application/views/awards/itu/index.php:86 +#: application/views/awards/itu/index.php:88 #: application/views/awards/jcc/index.php:88 -#: application/views/awards/rac/index.php:77 +#: application/views/awards/rac/index.php:79 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:53 -#: application/views/awards/waja/index.php:89 -#: application/views/awards/was/index.php:85 +#: application/views/awards/wac/index.php:110 +#: application/views/awards/waja/index.php:91 +#: application/views/awards/was/index.php:87 #: application/views/components/hamsat/table.php:30 -#: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:203 +#: application/views/contesting/index.php:108 +#: application/views/contesting/index.php:250 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 +#: 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/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:170 -#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/index.php:181 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -937,14 +1075,14 @@ msgstr "" #: application/views/qslcard/searchresult.php:76 #: application/views/qslprint/qslprint.php:24 #: application/views/qslprint/qsolist.php:9 -#: application/views/qso/components/previous_contacts.php:78 +#: application/views/qso/components/previous_contacts.php:77 #: application/views/qso/edit_ajax.php:119 application/views/qso/index.php:136 #: application/views/satellite/index.php:24 #: application/views/search/cqzones_result.php:10 #: application/views/search/lotw_unconfirmed_result.php:8 #: application/views/search/result_search.php:7 #: application/views/search/search_result_ajax.php:4 -#: application/views/simplefle/index.php:144 +#: application/views/simplefle/index.php:150 #: application/views/statistics/custom.php:60 #: application/views/statistics/custom_result.php:62 #: application/views/statistics/custom_result.php:88 @@ -956,17 +1094,17 @@ msgstr "" #: application/views/user/edit.php:295 application/views/user/edit.php:318 #: application/views/view_log/partial/log.php:9 #: application/views/view_log/partial/log_ajax.php:4 -#: application/views/view_log/qso.php:104 application/views/visitor/index.php:6 +#: application/views/view_log/qso.php:107 application/views/visitor/index.php:6 #: application/views/widgets/qsos.php:29 msgid "Mode" -msgstr "Modulacja" +msgstr "Emisja" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1285 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:111 -#: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:547 +#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:251 +#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -975,25 +1113,25 @@ msgstr "Modulacja" #: application/views/qslcard/searchresult.php:77 #: application/views/qslprint/qslprint.php:26 #: application/views/qslprint/qsolist.php:11 -#: application/views/qso/components/previous_contacts.php:79 +#: application/views/qso/components/previous_contacts.php:78 #: application/views/qso/edit_ajax.php:142 application/views/qso/index.php:177 #: application/views/search/search_result_ajax.php:5 -#: application/views/simplefle/index.php:145 +#: application/views/simplefle/index.php:151 #: application/views/user/edit.php:230 application/views/user/edit.php:252 #: application/views/user/edit.php:274 application/views/user/edit.php:296 #: application/views/user/edit.php:319 #: application/views/view_log/partial/log.php:10 #: application/views/view_log/partial/log_ajax.php:5 -#: application/views/view_log/qso.php:109 application/views/visitor/index.php:9 +#: application/views/view_log/qso.php:112 application/views/visitor/index.php:9 msgid "RST (S)" msgstr "" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1286 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:550 +#: application/views/contesting/index.php:189 +#: application/views/contesting/index.php:252 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1002,51 +1140,50 @@ msgstr "" #: application/views/qslcard/searchresult.php:78 #: application/views/qslprint/qslprint.php:27 #: application/views/qslprint/qsolist.php:12 -#: application/views/qso/components/previous_contacts.php:80 +#: application/views/qso/components/previous_contacts.php:79 #: application/views/qso/edit_ajax.php:147 application/views/qso/index.php:182 #: application/views/search/search_result_ajax.php:6 -#: application/views/simplefle/index.php:146 +#: application/views/simplefle/index.php:152 #: application/views/user/edit.php:231 application/views/user/edit.php:253 #: application/views/user/edit.php:275 application/views/user/edit.php:297 #: application/views/user/edit.php:320 #: application/views/view_log/partial/log.php:11 #: application/views/view_log/partial/log_ajax.php:6 -#: application/views/view_log/qso.php:114 +#: application/views/view_log/qso.php:117 #: application/views/visitor/index.php:12 msgid "RST (R)" msgstr "" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1287 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 #: application/views/qslcard/searchresult.php:47 #: application/views/qslcard/searchresult.php:63 #: application/views/qslcard/searchresult.php:79 -#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/components/previous_contacts.php:80 #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 -#: application/views/station_profile/index.php:43 #: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 -#: application/views/timeline/index.php:118 application/views/user/edit.php:232 +#: application/views/timeline/index.php:151 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 #: application/views/user/edit.php:298 application/views/user/edit.php:321 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:235 -#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:238 +#: application/views/view_log/qso.php:531 #: application/views/visitor/index.php:15 msgid "Country" msgstr "Kraj" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1288 #: application/views/awards/iota/index.php:169 #: application/views/bands/index.php:50 application/views/dashboard/index.php:8 -#: application/views/interface_assets/header.php:180 +#: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1055,29 +1192,29 @@ msgstr "Kraj" #: application/views/qslcard/searchresult.php:48 #: application/views/qslcard/searchresult.php:64 #: application/views/qslcard/searchresult.php:80 -#: application/views/qso/components/previous_contacts.php:82 -#: application/views/qso/edit_ajax.php:318 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 -#: application/views/timeline/index.php:202 application/views/user/edit.php:233 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:235 application/views/user/edit.php:233 #: application/views/user/edit.php:255 application/views/user/edit.php:277 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/view_log/partial/log_ajax.php:8 #: application/views/visitor/index.php:18 msgid "IOTA" -msgstr "" +msgstr "IOTA" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1292 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:20 -#: application/views/awards/rac/index.php:141 -#: application/views/awards/was/index.php:149 -#: application/views/contesting/index.php:173 +#: application/views/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 +#: application/views/contesting/index.php:56 #: application/views/dashboard/index.php:12 -#: application/views/logbookadvanced/edit.php:20 -#: application/views/logbookadvanced/edit.php:64 -#: application/views/logbookadvanced/index.php:162 -#: application/views/logbookadvanced/index.php:583 +#: application/views/logbookadvanced/edit.php:21 +#: application/views/logbookadvanced/edit.php:66 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:611 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1085,9 +1222,9 @@ msgstr "" #: application/views/qslcard/searchresult.php:50 #: application/views/qslcard/searchresult.php:66 #: application/views/qslcard/searchresult.php:82 -#: application/views/qso/components/previous_contacts.php:86 +#: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 -#: application/views/timeline/index.php:177 application/views/user/edit.php:237 +#: application/views/timeline/index.php:210 application/views/user/edit.php:237 #: application/views/user/edit.php:259 application/views/user/edit.php:281 #: application/views/user/edit.php:303 application/views/user/edit.php:326 #: application/views/view_log/partial/log_ajax.php:12 @@ -1095,20 +1232,21 @@ msgstr "" msgid "State" msgstr "Stan" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1293 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:17 -#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:13 +#: application/views/distancerecords/index.php:20 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:166 -#: application/views/logbookadvanced/index.php:556 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1117,38 +1255,39 @@ msgstr "Stan" #: application/views/qslcard/searchresult.php:51 #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 -#: application/views/qso/components/previous_contacts.php:87 +#: application/views/qso/components/previous_contacts.php:86 #: application/views/qso/edit_ajax.php:156 application/views/qso/index.php:279 +#: application/views/satellite/pass.php:28 #: application/views/search/cqzones_result.php:12 #: application/views/search/result.php:33 #: application/views/search/search_result_ajax.php:13 -#: application/views/simplefle/index.php:147 -#: application/views/station_profile/index.php:44 +#: application/views/simplefle/index.php:153 #: application/views/stationsetup/stationsetup.php:125 -#: application/views/timeline/index.php:257 application/views/user/edit.php:130 +#: application/views/timeline/index.php:290 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 #: application/views/user/edit.php:327 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:518 #: application/views/visitor/index.php:27 msgid "Gridsquare" -msgstr "" +msgstr "Lokator" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1294 #: application/views/activated_gridmap/index.php:108 #: application/views/awards/ffma/index.php:36 #: application/views/awards/gridmaster/index.php:35 #: 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/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/index.php:12 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 #: application/views/qslcard/searchresult.php:52 #: application/views/qslcard/searchresult.php:68 #: application/views/qslcard/searchresult.php:84 -#: application/views/qso/components/previous_contacts.php:88 +#: application/views/qso/components/previous_contacts.php:87 #: application/views/search/search_result_ajax.php:14 #: application/views/user/edit.php:239 application/views/user/edit.php:261 #: application/views/user/edit.php:283 application/views/user/edit.php:305 @@ -1156,34 +1295,35 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:14 #: application/views/visitor/index.php:30 msgid "Distance" -msgstr "" +msgstr "Odległość" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1295 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:8 -#: application/views/activators/index.php:7 +#: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 -#: application/views/awards/cq/index.php:72 +#: application/views/awards/cq/index.php:74 #: application/views/awards/dok/index.php:77 #: application/views/awards/dxcc/index.php:117 -#: application/views/awards/helvetia/index.php:71 +#: application/views/awards/helvetia/index.php:73 #: application/views/awards/iota/index.php:91 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:74 #: application/views/awards/jcc/index.php:74 #: application/views/awards/pota/index.php:35 -#: application/views/awards/rac/index.php:63 +#: application/views/awards/rac/index.php:65 #: application/views/awards/sig/qso_list.php:13 #: application/views/awards/sota/index.php:26 #: application/views/awards/vucc/index.php:21 #: application/views/awards/wab/index.php:22 -#: application/views/awards/waja/index.php:75 -#: application/views/awards/was/index.php:71 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/waja/index.php:77 +#: application/views/awards/was/index.php:73 #: application/views/awards/wwff/index.php:35 #: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:45 -#: application/views/contesting/index.php:70 -#: application/views/contesting/index.php:202 +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:249 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:549 application/views/dxatlas/index.php:31 @@ -1191,8 +1331,8 @@ msgstr "" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1210,13 +1350,13 @@ msgstr "" #: application/views/qslmanagement/index.php:24 #: application/views/qslprint/qslprint.php:25 #: application/views/qslprint/qsolist.php:10 -#: application/views/qso/components/previous_contacts.php:89 +#: application/views/qso/components/previous_contacts.php:88 #: application/views/qso/edit_ajax.php:83 application/views/qso/index.php:151 #: application/views/search/cqzones_result.php:11 #: application/views/search/lotw_unconfirmed_result.php:9 #: application/views/search/result_search.php:10 #: application/views/search/search_result_ajax.php:15 -#: application/views/simplefle/index.php:143 +#: application/views/simplefle/index.php:149 #: application/views/stationsetup/exportmapoptions.php:31 #: application/views/statistics/custom.php:53 #: application/views/statistics/custom_result.php:55 @@ -1234,72 +1374,71 @@ msgstr "" msgid "Band" msgstr "Pasmo" -#: application/controllers/Logbook.php:1285 +#: application/controllers/Logbook.php:1296 #: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 -#: application/views/contesting/index.php:87 +#: application/views/contesting/index.php:138 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 #: application/views/qslcard/searchresult.php:70 #: application/views/qslcard/searchresult.php:86 -#: application/views/qso/components/previous_contacts.php:90 +#: application/views/qso/components/previous_contacts.php:89 #: application/views/qso/edit_ajax.php:71 application/views/qso/index.php:169 #: application/views/search/search_result_ajax.php:16 #: application/views/user/edit.php:228 application/views/user/edit.php:250 #: application/views/user/edit.php:272 application/views/user/edit.php:294 #: application/views/user/edit.php:317 #: application/views/view_log/partial/log_ajax.php:16 -#: application/views/view_log/qso.php:93 application/views/visitor/index.php:36 +#: application/views/view_log/qso.php:94 application/views/visitor/index.php:36 msgid "Frequency" msgstr "Częstotliwość" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1297 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:283 -#: application/views/logbookadvanced/index.php:598 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:626 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 #: application/views/qslcard/searchresult.php:87 -#: application/views/qso/components/previous_contacts.php:91 +#: application/views/qso/components/previous_contacts.php:90 #: application/views/search/search_result_ajax.php:17 #: application/views/simplefle/index.php:112 #: application/views/user/edit.php:240 application/views/user/edit.php:262 #: application/views/user/edit.php:284 application/views/user/edit.php:306 #: application/views/user/edit.php:329 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:538 #: application/views/visitor/index.php:39 msgid "Operator" -msgstr "" +msgstr "Operator" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1318 #: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:669 +#: application/views/interface_assets/footer.php:675 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:154 +#: application/views/logbookadvanced/index.php:165 #: application/views/lookup/index.php:31 -#: application/views/lotw_views/index.php:56 +#: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 #: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 -#: application/views/station_profile/create.php:73 -#: application/views/station_profile/edit.php:78 -#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 #: application/views/stationsetup/stationsetup.php:150 -#: application/views/timeline/index.php:134 +#: application/views/timeline/index.php:167 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 -#: application/views/view_log/qso.php:236 -#: application/views/view_log/qso.php:529 +#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:532 msgid "Deleted DXCC" msgstr "" @@ -1313,7 +1452,7 @@ msgstr "" #: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83 #: application/controllers/Lotw.php:125 application/views/adif/import.php:27 -#: application/views/interface_assets/header.php:423 +#: application/views/interface_assets/header.php:429 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1321,58 +1460,85 @@ msgstr "" msgid "Logbook of the World" msgstr "" -#: application/controllers/Lotw.php:610 +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "" + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "" + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "" + +#: application/controllers/Lotw.php:413 +#, 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:617 msgid "LoTW ADIF Information" msgstr "" -#: application/controllers/Lotw.php:718 +#: application/controllers/Lotw.php:725 msgid "LoTW ADIF Import" msgstr "" -#: application/controllers/Lotw.php:830 +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "" + +#: application/controllers/Lotw.php:837 msgid "LoTW .TQ8 Upload" msgstr "" -#: application/controllers/Lotw.php:927 application/controllers/Lotw.php:932 +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "" + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 msgid "LoTW .TQ8 Sent" msgstr "" -#: application/controllers/Lotw.php:939 +#: application/controllers/Lotw.php:946 msgid "LoTW .TQ8 Not Sent" msgstr "" #: application/controllers/Mode.php:25 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:276 #: application/views/mode/index.php:15 msgid "Modes" -msgstr "" +msgstr "Emisje" #: application/controllers/Mode.php:62 msgid "Edit Mode" -msgstr "" +msgstr "Edytuj emisję" -#: application/controllers/Notes.php:19 +#: application/controllers/Notes.php:18 #: application/views/interface_assets/header.php:128 #: application/views/notes/add.php:9 application/views/notes/edit.php:10 #: application/views/notes/main.php:5 application/views/notes/main.php:8 #: application/views/notes/view.php:6 application/views/notes/view.php:9 #: application/views/qso/edit_ajax.php:36 -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:38 -#: application/views/qso/index.php:541 application/views/qso/index.php:586 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:590 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:38 +#: application/views/qso/index.php:563 application/views/qso/index.php:608 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:593 msgid "Notes" msgstr "Notatki" -#: application/controllers/Notes.php:38 +#: application/controllers/Notes.php:37 msgid "Add Notes" msgstr "" -#: application/controllers/Notes.php:58 +#: application/controllers/Notes.php:64 #: application/views/oqrs/showrequests.php:88 msgid "Note" msgstr "" -#: application/controllers/Notes.php:79 application/views/notes/edit.php:7 +#: application/controllers/Notes.php:92 application/views/notes/edit.php:7 #: application/views/notes/view.php:19 msgid "Edit Note" msgstr "Edytuj notatkę" @@ -1380,16 +1546,16 @@ msgstr "Edytuj notatkę" #: application/controllers/Options.php:31 #: application/controllers/Options.php:41 #: application/controllers/Options.php:56 -#: application/controllers/Options.php:136 -#: application/controllers/Options.php:147 -#: application/controllers/Options.php:184 -#: application/controllers/Options.php:195 -#: application/controllers/Options.php:228 -#: application/controllers/Options.php:239 -#: application/controllers/Options.php:309 -#: application/controllers/Options.php:319 -#: application/controllers/Options.php:387 -#: application/controllers/Options.php:397 +#: application/controllers/Options.php:144 +#: application/controllers/Options.php:155 +#: application/controllers/Options.php:192 +#: application/controllers/Options.php:203 +#: application/controllers/Options.php:236 +#: application/controllers/Options.php:247 +#: application/controllers/Options.php:317 +#: application/controllers/Options.php:327 +#: application/controllers/Options.php:395 +#: application/controllers/Options.php:405 msgid "Wavelog Options" msgstr "" @@ -1397,7 +1563,7 @@ msgstr "" #: application/controllers/Options.php:57 #: application/views/options/sidebar.php:4 msgid "Appearance" -msgstr "" +msgstr "Wygląd" #: application/controllers/Options.php:78 #: application/controllers/Options.php:86 @@ -1406,95 +1572,97 @@ msgstr "" #: application/controllers/Options.php:110 #: application/controllers/Options.php:118 #: application/controllers/Options.php:126 +#: application/controllers/Options.php:134 msgid "Options saved" msgstr "" -#: application/controllers/Options.php:165 +#: application/controllers/Options.php:173 msgid "de continent changed to " msgstr "" -#: application/controllers/Options.php:170 +#: application/controllers/Options.php:178 msgid "Maximum age of spots changed to " msgstr "" -#: application/controllers/Options.php:175 +#: application/controllers/Options.php:183 msgid "DXCluster Cache URL changed to " msgstr "" -#: application/controllers/Options.php:185 -#: application/controllers/Options.php:196 +#: application/controllers/Options.php:193 +#: application/controllers/Options.php:204 msgid "Radio Settings" msgstr "" -#: application/controllers/Options.php:217 +#: application/controllers/Options.php:225 msgid "Radio Timeout Warning changed to " msgstr "" -#: application/controllers/Options.php:229 -#: application/controllers/Options.php:240 +#: application/controllers/Options.php:237 +#: application/controllers/Options.php:248 #: application/views/options/sidebar.php:6 msgid "Email" msgstr "" -#: application/controllers/Options.php:297 +#: application/controllers/Options.php:305 msgid "The settings were saved successfully." msgstr "" -#: application/controllers/Options.php:299 +#: application/controllers/Options.php:307 msgid "Something went wrong with saving the settings. Try again." msgstr "" -#: application/controllers/Options.php:310 -#: application/controllers/Options.php:320 +#: application/controllers/Options.php:318 +#: application/controllers/Options.php:328 #: application/views/options/sidebar.php:8 msgid "OQRS Options" -msgstr "" +msgstr "Ustawienia OQRS" -#: application/controllers/Options.php:333 +#: application/controllers/Options.php:341 msgid "OQRS options have been saved." msgstr "" -#: application/controllers/Options.php:373 -#: application/controllers/Options.php:378 +#: application/controllers/Options.php:381 +#: application/controllers/Options.php:386 msgid "Testmail failed. Something went wrong." msgstr "" -#: application/controllers/Options.php:375 +#: application/controllers/Options.php:383 msgid "Testmail sent. Email settings seem to be correct." msgstr "" -#: application/controllers/Options.php:388 -#: application/controllers/Options.php:398 +#: application/controllers/Options.php:396 +#: application/controllers/Options.php:406 msgid "Version Info Settings" msgstr "" -#: application/controllers/Options.php:404 +#: application/controllers/Options.php:412 msgid "Version Info Header changed to" msgstr "" -#: application/controllers/Options.php:408 +#: application/controllers/Options.php:416 msgid "Version Info Mode changed to" msgstr "" -#: application/controllers/Options.php:413 +#: application/controllers/Options.php:421 msgid "Version Info Custom Text saved!" msgstr "" -#: application/controllers/Options.php:424 +#: application/controllers/Options.php:432 msgid "Version Info will be shown to all users again" msgstr "" +"Informacje o wersji zostaną ponownie wyświetlone wszystkim użytkownikom" -#: application/controllers/Options.php:432 +#: application/controllers/Options.php:440 msgid "Version Info will not be shown to any user" -msgstr "" +msgstr "Informacje o wersji nie będą wyświetlone żadnemu użytkownikowi" -#: application/controllers/Oqrs.php:22 application/controllers/Oqrs.php:61 -#: application/controllers/Oqrs.php:73 +#: application/controllers/Oqrs.php:46 application/controllers/Oqrs.php:85 +#: application/controllers/Oqrs.php:97 msgid "Log Search & OQRS" msgstr "" -#: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:413 +#: application/controllers/Oqrs.php:127 +#: application/views/interface_assets/header.php:419 msgid "OQRS Requests" msgstr "" @@ -1502,8 +1670,49 @@ msgstr "" msgid "QRB Calculator" msgstr "" +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "" + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" + #: application/controllers/Qrz.php:173 -#: application/views/interface_assets/header.php:426 +#: application/views/interface_assets/header.php:432 msgid "QRZ Logbook" msgstr "" @@ -1515,8 +1724,8 @@ msgstr "" msgid "QRZ ADIF Information" msgstr "" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:261 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:277 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1539,13 +1748,13 @@ msgid "Add QSO" msgstr "" #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Hardware Interfaces" msgstr "" #: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 +#: application/views/contesting/index.php:143 #: application/views/qso/index.php:312 msgid "Radio" msgstr "" @@ -1555,10 +1764,10 @@ msgid "Timestamp" msgstr "" #: application/controllers/Radio.php:52 -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 +#: application/views/logbookadvanced/index.php:550 +#: application/views/lotw_views/index.php:43 #: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 +#: application/views/simplefle/index.php:177 #: application/views/stationsetup/exportmapoptions.php:5 #: application/views/statistics/custom.php:31 #: application/views/statistics/custom_result.php:33 @@ -1566,7 +1775,7 @@ msgid "Options" msgstr "" #: application/controllers/Radio.php:90 -#: application/views/contesting/index.php:96 +#: application/views/contesting/index.php:147 #: application/views/qso/index.php:316 msgid "last updated" msgstr "" @@ -1582,26 +1791,24 @@ msgstr "" #: application/controllers/Radio.php:105 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2323 -#: application/views/interface_assets/footer.php:2341 -#: application/views/interface_assets/footer.php:2362 -#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2337 +#: application/views/interface_assets/footer.php:2355 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 #: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:514 -#: application/views/lotw_views/index.php:118 +#: application/views/logbookadvanced/index.php:542 +#: application/views/lotw_views/index.php:114 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 #: application/views/qslcard/index.php:65 #: application/views/satellite/edit.php:40 #: application/views/satellite/index.php:26 #: application/views/search/stored_queries.php:22 -#: application/views/station_profile/index.php:55 -#: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 #: application/views/stationsetup/stationsetup.php:137 #: application/views/stationsetup/stationsetup.php:192 -#: application/views/themes/index.php:107 application/views/user/main.php:54 -#: application/views/view_log/qso.php:613 +#: application/views/themes/index.php:107 application/views/user/index.php:57 +#: application/views/view_log/qso.php:616 msgid "Delete" msgstr "" @@ -1609,11 +1816,15 @@ msgstr "" msgid "No CAT interfaced radios found." msgstr "" -#: application/controllers/Satellite.php:37 +#: application/controllers/Reg1test.php:25 +msgid "Export EDI" +msgstr "Eksport EDI" + +#: application/controllers/Satellite.php:39 msgid "Create Satellite" msgstr "" -#: application/controllers/Satellite.php:60 +#: application/controllers/Satellite.php:66 msgid "Edit Satellite" msgstr "" @@ -1626,10 +1837,7 @@ msgstr "" #: application/views/awards/counties/index.php:8 #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:19 -#: application/views/awards/was/index.php:21 -#: application/views/dashboard/index.php:64 -#: application/views/dashboard/index.php:73 -#: application/views/dashboard/index.php:82 +#: application/views/awards/was/index.php:23 #: application/views/simplefle/index.php:16 msgid "here" msgstr "" @@ -1641,9 +1849,10 @@ msgstr "" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:336 -#: application/views/interface_assets/header.php:343 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:340 +#: application/views/interface_assets/header.php:347 +#: application/views/logbookadvanced/index.php:538 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1657,8 +1866,8 @@ msgstr "" #: application/views/search/lotw_unconfirmed.php:37 #: application/views/search/main.php:4 application/views/search/main.php:12 #: application/views/search/main.php:33 -#: application/views/visitor/layout/header.php:99 -#: application/views/visitor/layout/header.php:100 +#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:98 msgid "Search" msgstr "" @@ -1676,15 +1885,23 @@ msgid "" "date" msgstr "" -#: application/controllers/Station.php:35 -#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/controllers/Station.php:36 +#: application/controllers/Stationsetup.php:226 +msgid "Create Station Location" +msgstr "" + +#: application/controllers/Station.php:51 +msgid "Edit Station Location: " +msgstr "" + +#: application/controllers/Station.php:59 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 -#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/edit.php:19 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:427 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 @@ -1692,22 +1909,13 @@ msgstr "" msgid "Station Location" msgstr "Lokalizacja stacji" -#: application/controllers/Station.php:55 -#: application/controllers/Stationsetup.php:226 -msgid "Create Station Location" -msgstr "" - -#: application/controllers/Station.php:70 -msgid "Edit Station Location: " -msgstr "" - -#: application/controllers/Station.php:92 +#: application/controllers/Station.php:73 msgid "Duplicate Station Location:" msgstr "" #: application/controllers/Stationsetup.php:35 -#: application/views/interface_assets/header.php:377 -#: application/views/interface_assets/header.php:488 +#: application/views/interface_assets/header.php:381 +#: application/views/interface_assets/header.php:494 msgid "Station Setup" msgstr "" @@ -1725,7 +1933,7 @@ msgstr "" #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 #: application/controllers/Stationsetup.php:436 -#: application/views/qso/index.php:608 +#: application/views/qso/index.php:630 msgid "Error" msgstr "" @@ -1757,9 +1965,10 @@ msgstr "" #: application/views/options/appearance.php:83 #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 +#: application/views/options/appearance.php:110 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:259 -#: application/views/station_profile/edit.php:312 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 msgid "Disabled" @@ -1771,7 +1980,7 @@ msgid "Set as Active Logbook" msgstr "" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:486 +#: application/views/interface_assets/header.php:492 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1794,20 +2003,17 @@ msgid "Are you sure you want to delete the public slug?" msgstr "" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "" "Are you sure you want to make the following station the active station: " msgstr "" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "" #: application/controllers/Stationsetup.php:351 -#: application/views/station_profile/index.php:71 #: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "" @@ -1816,54 +2022,45 @@ msgstr "" #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:28 -#: application/views/station_profile/index.php:76 #: application/views/stationsetup/stationsetup.php:161 -#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/user/index.php:90 application/views/user/index.php:92 msgid "QSO" msgstr "" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 -#: application/views/cron/index.php:56 -#: application/views/interface_assets/footer.php:535 -#: application/views/interface_assets/footer.php:544 +#: application/views/cron/index.php:58 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 #: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:541 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 -#: application/views/station_profile/index.php:46 -#: application/views/station_profile/index.php:79 #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 -#: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/views/themes/index.php:104 application/views/user/index.php:52 msgid "Edit" msgstr "" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:99 #: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:54 -#: application/views/station_profile/index.php:101 #: application/views/stationsetup/stationsetup.php:136 #: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "" #: application/controllers/Stationsetup.php:367 -#: application/views/station_profile/index.php:47 -#: application/views/station_profile/index.php:82 #: application/views/stationsetup/stationsetup.php:129 #: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "" #: application/controllers/Stationsetup.php:372 -#: application/views/station_profile/index.php:105 #: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "" @@ -1883,7 +2080,7 @@ msgstr "" #: application/controllers/Statistics.php:27 #: application/views/interface_assets/header.php:134 msgid "Statistics" -msgstr "" +msgstr "Statystyki" #: application/controllers/Statistics.php:50 msgid "Custom Statistics" @@ -1893,29 +2090,29 @@ msgstr "" #: application/views/interface_assets/header.php:136 #: application/views/statistics/qsltable.php:5 msgid "QSL Statistics" -msgstr "" +msgstr "Statystyki QSL" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:282 msgid "Themes" -msgstr "" +msgstr "Motywy" #: application/controllers/Themes.php:46 msgid "Create Theme" -msgstr "" +msgstr "Dodaj motyw" #: application/controllers/Themes.php:65 msgid "Edit Theme" -msgstr "" +msgstr "Edytuj motyw" -#: application/controllers/Timeline.php:17 -#: application/views/interface_assets/header.php:148 +#: application/controllers/Timeline.php:15 +#: application/views/interface_assets/header.php:150 #: application/views/timeline/index.php:2 msgid "Timeline" msgstr "" #: application/controllers/Timeplotter.php:17 -#: application/views/interface_assets/header.php:152 +#: application/views/interface_assets/header.php:154 #: application/views/timeplotter/index.php:9 msgid "Timeplotter" msgstr "" @@ -1956,130 +2153,154 @@ msgstr "" msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:268 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:272 msgid "User Accounts" -msgstr "" +msgstr "Konta użytkowników" -#: application/controllers/User.php:52 +#: application/controllers/User.php:76 msgid "Add User" msgstr "" -#: application/controllers/User.php:166 +#: application/controllers/User.php:190 msgid "Users" msgstr "" -#: application/controllers/User.php:240 application/controllers/User.php:673 +#: application/controllers/User.php:264 application/controllers/User.php:697 msgid "Edit User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 -#: application/views/user/main.php:3 application/views/user/main.php:46 +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 msgid "User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 +#: application/controllers/User.php:689 application/controllers/User.php:692 msgid "edited" msgstr "" -#: application/controllers/User.php:722 +#: application/controllers/User.php:746 msgid "Profile" msgstr "" -#: application/controllers/User.php:779 +#: application/controllers/User.php:803 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "" -#: application/controllers/User.php:843 application/controllers/User.php:853 +#: application/controllers/User.php:867 application/controllers/User.php:877 msgid "Login failed. Try again." msgstr "" -#: application/controllers/User.php:860 -#: application/views/interface_assets/header.php:356 -#: application/views/user/login.php:89 -#: application/views/visitor/layout/header.php:88 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:360 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "" -#: application/controllers/User.php:868 -msgid "User logged in" -msgstr "" - -#: application/controllers/User.php:899 +#: application/controllers/User.php:922 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " "Only administrators are currently allowed to log in." msgstr "" -#: application/controllers/User.php:902 +#: application/controllers/User.php:925 msgid "Incorrect username or password!" msgstr "" -#: application/controllers/User.php:919 +#: application/controllers/User.php:942 #, php-format msgid "User %s logged out." msgstr "" -#: application/controllers/User.php:933 +#: application/controllers/User.php:956 msgid "Password Reset is disabled on the Demo!" msgstr "" -#: application/controllers/User.php:946 +#: application/controllers/User.php:969 msgid "Forgot Password" msgstr "" -#: application/controllers/User.php:996 application/views/user/main.php:8 +#: application/controllers/User.php:1019 application/views/user/index.php:8 msgid "Email settings are incorrect." msgstr "" -#: application/controllers/User.php:1000 application/controllers/User.php:1005 +#: application/controllers/User.php:1023 application/controllers/User.php:1028 msgid "Password Reset Processed." msgstr "" -#: application/controllers/User.php:1107 +#: application/controllers/User.php:1129 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" +msgstr "Resetuj hasło" + +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "" + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "" + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" msgstr "" #: application/controllers/Visitor.php:50 -#: application/controllers/Visitor.php:79 -#: application/controllers/Visitor.php:142 -#: application/controllers/Visitor.php:169 -#: application/controllers/Visitor.php:199 -#: application/controllers/Visitor.php:478 +#: application/controllers/Visitor.php:81 +#: application/controllers/Visitor.php:148 +#: application/controllers/Visitor.php:175 +#: application/controllers/Visitor.php:210 +#: application/controllers/Visitor.php:472 #: application/controllers/Widgets.php:40 msgid "Unknown Public Page." msgstr "" -#: application/controllers/Visitor.php:74 -#: application/controllers/Visitor.php:165 -#: application/controllers/Visitor.php:195 -#: application/controllers/Visitor.php:474 +#: application/controllers/Visitor.php:76 +#: application/controllers/Visitor.php:171 +#: application/controllers/Visitor.php:206 +#: application/controllers/Visitor.php:468 #: application/controllers/Widgets.php:36 msgid "Empty Logbook" msgstr "" -#: application/controllers/Visitor.php:205 +#: application/controllers/Visitor.php:216 msgid "Satellite Gridsquare Map" msgstr "" -#: application/controllers/Visitor.php:411 +#: application/controllers/Visitor.php:405 #: application/views/stationsetup/stationsetup.php:35 msgid "Public Search" msgstr "" -#: application/controllers/Visitor.php:444 +#: application/controllers/Visitor.php:438 msgid "Export Map" msgstr "" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:427 +#: application/views/interface_assets/header.php:433 msgid "QO-100 Dx Club Upload" msgstr "" @@ -2091,6 +2312,84 @@ msgstr "" msgid "No stations found that are using Wavelog OQRS." msgstr "" +#: application/libraries/Subdivisions.php:31 +msgctxt "Division Name (States in various countries)." +msgid "Province" +msgstr "" + +#: application/libraries/Subdivisions.php:39 +msgctxt "Division Name (States in various countries)." +msgid "Oblast" +msgstr "Obwód" + +#: application/libraries/Subdivisions.php:41 +#: application/libraries/Subdivisions.php:47 +msgctxt "Division Name (States in various countries)." +msgid "Region" +msgstr "" + +#: application/libraries/Subdivisions.php:45 +msgctxt "Division Name (States in various countries)." +msgid "Department" +msgstr "" + +#: application/libraries/Subdivisions.php:49 +msgctxt "Division Name (States in various countries)." +msgid "Municipality" +msgstr "" + +#: application/libraries/Subdivisions.php:51 +msgctxt "Division Name (States in various countries)." +msgid "Federal State" +msgstr "" + +#: application/libraries/Subdivisions.php:56 +#: application/libraries/Subdivisions.php:94 +msgctxt "Division Name (States in various countries)." +msgid "County" +msgstr "" + +#: application/libraries/Subdivisions.php:60 +#: application/libraries/Subdivisions.php:85 +msgctxt "Division Name (States in various countries)." +msgid "District" +msgstr "" + +#: application/libraries/Subdivisions.php:62 +msgctxt "Division Name (States in various countries)." +msgid "Canton" +msgstr "" + +#: application/libraries/Subdivisions.php:64 +msgctxt "Division Name (States in various countries)." +msgid "US State" +msgstr "" + +#: application/libraries/Subdivisions.php:67 +msgctxt "Division Name (States in various countries)." +msgid "Prefecture" +msgstr "Prefektura" + +#: application/libraries/Subdivisions.php:69 +msgctxt "Division Name (States in various countries)." +msgid "State" +msgstr "" + +#: application/libraries/Subdivisions.php:78 +msgctxt "Division Name (States in various countries)." +msgid "US County" +msgstr "" + +#: application/libraries/Subdivisions.php:90 +msgctxt "Division Name (States in various countries)." +msgid "DME" +msgstr "" + +#: application/libraries/Subdivisions.php:92 +msgctxt "Division Name (States in various countries)." +msgid "City / Ku / Gun" +msgstr "" + #: application/models/Eqslmethods_model.php:281 msgid "Your eQSL username and/or password is incorrect." msgstr "" @@ -2127,31 +2426,31 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4255 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4261 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4266 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4269 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4272 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4275 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4278 msgid "unknown" msgstr "" @@ -2180,7 +2479,7 @@ msgid "Accumulated number of WAJA worked" msgstr "" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:222 +#: application/views/dashboard/index.php:238 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2193,7 +2492,7 @@ msgid "Yearly" msgstr "" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:243 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Miesiąc" @@ -2209,29 +2508,33 @@ msgstr "" #: application/views/accumulate/index.php:24 #: application/views/accumulate/index.php:34 +#: application/views/accumulate/index.php:83 #: application/views/activated_gridmap/index.php:10 #: application/views/activated_gridmap/index.php:22 #: application/views/activated_gridmap/index.php:32 #: application/views/activated_gridmap/index.php:41 -#: application/views/activators/index.php:10 -#: application/views/awards/cq/index.php:75 -#: application/views/awards/cq/index.php:89 +#: application/views/activators/index.php:13 +#: application/views/awards/cq/index.php:77 +#: application/views/awards/cq/index.php:91 #: application/views/awards/dok/index.php:94 #: application/views/awards/dxcc/index.php:134 #: application/views/awards/dxcc/index.php:150 #: application/views/awards/dxcc/index.php:165 -#: application/views/awards/helvetia/index.php:88 +#: application/views/awards/helvetia/index.php:90 #: application/views/awards/iota/index.php:108 -#: application/views/awards/itu/index.php:75 -#: application/views/awards/itu/index.php:89 +#: application/views/awards/itu/index.php:77 +#: application/views/awards/itu/index.php:91 #: application/views/awards/jcc/index.php:91 -#: application/views/awards/rac/index.php:80 +#: application/views/awards/rac/index.php:82 #: application/views/awards/wab/index.php:24 #: application/views/awards/wab/index.php:36 #: application/views/awards/wab/index.php:46 #: application/views/awards/wab/index.php:55 -#: application/views/awards/waja/index.php:92 -#: application/views/awards/was/index.php:88 +#: application/views/awards/wac/index.php:81 +#: application/views/awards/wac/index.php:97 +#: application/views/awards/wac/index.php:113 +#: application/views/awards/waja/index.php:94 +#: application/views/awards/was/index.php:90 #: application/views/bandmap/list.php:71 application/views/bandmap/list.php:78 #: application/views/bandmap/list.php:90 application/views/bands/index.php:117 #: application/views/cabrillo/index.php:65 @@ -2242,6 +2545,7 @@ msgstr "" #: application/views/csv/index.php:94 application/views/distances/index.php:21 #: application/views/distances/index.php:36 #: application/views/distances/index.php:46 +#: application/views/distances/index.php:56 #: application/views/dxatlas/index.php:21 #: application/views/dxatlas/index.php:33 #: application/views/dxatlas/index.php:44 @@ -2253,28 +2557,29 @@ msgstr "" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1435 -#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1448 +#: application/views/interface_assets/footer.php:1587 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:172 #: application/views/logbookadvanced/index.php:183 #: application/views/logbookadvanced/index.php:194 -#: application/views/logbookadvanced/index.php:203 -#: application/views/logbookadvanced/index.php:212 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:205 +#: application/views/logbookadvanced/index.php:214 +#: application/views/logbookadvanced/index.php:223 #: application/views/logbookadvanced/index.php:248 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:321 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:374 -#: application/views/logbookadvanced/index.php:385 -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:259 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:423 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2285,11 +2590,12 @@ msgstr "" #: application/views/stationsetup/exportmapoptions.php:33 #: application/views/timeline/index.php:10 #: application/views/timeline/index.php:22 +#: application/views/timeline/index.php:77 #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 #: application/views/user/edit.php:633 -#: application/views/visitor/layout/footer.php:169 +#: application/views/visitor/layout/footer.php:171 msgid "All" msgstr "" @@ -2327,29 +2633,254 @@ msgstr "" msgid "Period" msgstr "" -#: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: application/views/accumulate/index.php:80 +#: application/views/distances/index.php:53 +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/timeline/index.php:74 +msgid "Propagation" +msgstr "" + +#: application/views/accumulate/index.php:84 +#: application/views/distances/index.php:57 +#: application/views/timeline/index.php:78 +msgid "All but SAT" +msgstr "" + +#: application/views/accumulate/index.php:85 +#: application/views/distances/index.php:58 +#: application/views/gridmap/index.php:42 +#: application/views/logbookadvanced/edit.php:142 +#: application/views/logbookadvanced/index.php:307 +#: application/views/timeline/index.php:79 +msgid "None/Empty" +msgstr "" + +#: application/views/accumulate/index.php:86 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/logbookadvanced/index.php:225 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:414 +#: application/views/timeline/index.php:80 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/accumulate/index.php:87 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/logbookadvanced/index.php:226 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:415 +#: application/views/timeline/index.php:81 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/accumulate/index.php:88 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/logbookadvanced/index.php:227 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:416 +#: application/views/timeline/index.php:82 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/accumulate/index.php:89 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/logbookadvanced/index.php:228 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:417 +#: application/views/timeline/index.php:83 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/accumulate/index.php:90 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/logbookadvanced/index.php:229 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:418 +#: application/views/timeline/index.php:84 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "EchoLink" + +#: application/views/accumulate/index.php:91 +#: 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/logbookadvanced/index.php:230 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:419 +#: application/views/timeline/index.php:85 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/accumulate/index.php:92 +#: 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/logbookadvanced/index.php:231 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:420 +#: application/views/timeline/index.php:86 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/accumulate/index.php:93 +#: 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/logbookadvanced/index.php:232 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:421 +#: application/views/timeline/index.php:87 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/accumulate/index.php:94 +#: 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/logbookadvanced/index.php:233 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:422 +#: application/views/timeline/index.php:88 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/accumulate/index.php:95 +#: 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/logbookadvanced/index.php:234 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:423 +#: application/views/timeline/index.php:89 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/accumulate/index.php:96 +#: 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/logbookadvanced/index.php:235 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:424 +#: application/views/timeline/index.php:90 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/accumulate/index.php:97 +#: 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/logbookadvanced/index.php:236 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:425 +#: application/views/timeline/index.php:91 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/accumulate/index.php:98 +#: 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/logbookadvanced/index.php:237 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:426 +#: application/views/timeline/index.php:92 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/accumulate/index.php:99 +#: 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/logbookadvanced/index.php:238 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:427 +#: application/views/timeline/index.php:93 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/accumulate/index.php:100 +#: 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/logbookadvanced/index.php:239 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:428 +#: application/views/timeline/index.php:94 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/accumulate/index.php:101 +#: 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/logbookadvanced/index.php:240 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:429 +#: application/views/timeline/index.php:95 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Satelita" + +#: application/views/accumulate/index.php:102 +#: 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/logbookadvanced/index.php:241 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:430 +#: application/views/timeline/index.php:96 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/accumulate/index.php:103 +#: 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/logbookadvanced/index.php:242 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:431 +#: application/views/timeline/index.php:97 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "Dukty troposferyczne" + +#: application/views/accumulate/index.php:112 +#: application/views/activators/index.php:53 +#: application/views/awards/cq/index.php:113 #: application/views/awards/dok/index.php:127 #: application/views/awards/dxcc/index.php:187 -#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/helvetia/index.php:112 #: application/views/awards/iota/index.php:130 -#: application/views/awards/itu/index.php:111 +#: application/views/awards/itu/index.php:113 #: application/views/awards/jcc/index.php:113 -#: application/views/awards/rac/index.php:102 -#: application/views/awards/waja/index.php:114 -#: application/views/awards/was/index.php:110 -#: application/views/distances/index.php:53 +#: application/views/awards/rac/index.php:104 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:79 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 #: application/views/stationsetup/exportmapoptions.php:6 -#: application/views/timeline/index.php:72 -#: application/views/timeline/index.php:137 -#: application/views/timeline/index.php:164 -#: application/views/timeline/index.php:189 -#: application/views/timeline/index.php:218 -#: application/views/timeline/index.php:243 -#: application/views/timeline/index.php:270 +#: application/views/timeline/index.php:105 +#: application/views/timeline/index.php:170 +#: application/views/timeline/index.php:197 +#: application/views/timeline/index.php:222 +#: application/views/timeline/index.php:251 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:303 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "" @@ -2357,12 +2888,15 @@ msgstr "" #: application/views/activated_gridmap/index.php:20 #: application/views/awards/dxcc/index.php:131 #: application/views/awards/wab/index.php:34 +#: application/views/awards/wac/index.php:78 #: 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/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/edit.php:17 +#: application/views/logbookadvanced/index.php:203 #: application/views/satellite/flightpath.php:34 +#: application/views/satellite/passtable.php:5 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2371,9 +2905,10 @@ msgstr "Satelita" #: application/views/activated_gridmap/index.php:30 #: application/views/awards/dxcc/index.php:147 #: application/views/awards/wab/index.php:44 +#: application/views/awards/wac/index.php:94 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:212 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2388,16 +2923,17 @@ msgid "Confirmation" msgstr "" #: application/views/activated_gridmap/index.php:82 -#: application/views/awards/cq/index.php:66 +#: application/views/awards/cq/index.php:68 #: application/views/awards/dok/index.php:67 #: application/views/awards/dxcc/index.php:73 -#: application/views/awards/helvetia/index.php:65 -#: application/views/awards/itu/index.php:66 +#: application/views/awards/helvetia/index.php:67 +#: application/views/awards/itu/index.php:68 #: application/views/awards/jcc/index.php:64 -#: application/views/awards/rac/index.php:57 +#: application/views/awards/rac/index.php:59 #: application/views/awards/wab/index.php:96 -#: application/views/awards/waja/index.php:65 -#: application/views/awards/was/index.php:65 +#: application/views/awards/wac/index.php:56 +#: application/views/awards/waja/index.php:67 +#: application/views/awards/was/index.php:67 #: application/views/gridmap/index.php:125 application/views/user/edit.php:675 msgid "QRZ.com" msgstr "" @@ -2433,59 +2969,62 @@ msgstr "" #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:37 #: application/views/gridmap/index.php:156 -#: application/views/logbookadvanced/index.php:12 +#: application/views/logbookadvanced/index.php:13 msgid "Bearing" msgstr "" -#: application/views/activators/index.php:23 +#: application/views/activators/index.php:26 msgctxt "Orbiter LEO or GEO" msgid "Both" msgstr "" -#: application/views/activators/index.php:30 +#: application/views/activators/index.php:33 msgid "Minimum Count" msgstr "" -#: application/views/activators/index.php:77 +#: application/views/activators/index.php:76 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:46 -#: application/views/awards/cq/index.php:196 +#: application/views/awards/cq/index.php:198 #: application/views/awards/dok/index.php:196 #: application/views/awards/dxcc/index.php:280 -#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/helvetia/index.php:200 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:196 +#: application/views/awards/itu/index.php:198 #: application/views/awards/jcc/index.php:236 #: application/views/awards/pota/index.php:67 -#: application/views/awards/rac/index.php:190 +#: application/views/awards/rac/index.php:192 #: application/views/awards/sig/index.php:45 #: application/views/awards/sota/index.php:53 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:39 -#: application/views/awards/waja/index.php:200 -#: application/views/awards/was/index.php:198 +#: application/views/awards/wac/index.php:199 +#: application/views/awards/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 +#: application/views/distancerecords/index.php:50 #: application/views/public_search/empty.php:3 -#: application/views/qrz/export.php:64 application/views/timeline/index.php:102 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:135 msgid "Nothing found!" msgstr "" -#: application/views/activators/index.php:99 -#: application/views/adif/import.php:66 application/views/adif/import.php:172 -#: application/views/adif/import.php:217 +#: application/views/activators/index.php:98 +#: application/views/adif/import.php:66 application/views/adif/import.php:182 +#: application/views/adif/import.php:227 #: application/views/awards/pota/index.php:34 #: application/views/awards/sig/qso_list.php:11 #: application/views/awards/sota/index.php:25 #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:104 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:152 +#: application/views/contesting/index.php:156 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:168 +#: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 -#: application/views/lotw_views/index.php:39 +#: application/views/lotw_views/index.php:35 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 #: application/views/qslcard/index.php:28 @@ -2494,35 +3033,36 @@ msgstr "" #: application/views/qslprint/qslprint.php:21 #: application/views/qslprint/qsolist.php:6 #: application/views/qso/edit_ajax.php:62 application/views/qso/index.php:124 +#: application/views/reg1test/index.php:33 #: application/views/search/cqzones.php:32 #: application/views/search/cqzones_result.php:9 #: application/views/search/lotw_unconfirmed.php:33 #: application/views/search/lotw_unconfirmed_result.php:6 #: application/views/search/result.php:11 -#: application/views/simplefle/index.php:142 -#: application/views/station_profile/edit.php:36 +#: application/views/simplefle/index.php:148 +#: application/views/station_profile/edit.php:63 #: application/views/stationsetup/linkedlocations.php:17 -#: application/views/user/edit.php:123 application/views/user/main.php:4 -#: application/views/user/main.php:47 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:507 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 +#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:510 msgid "Callsign" msgstr "" -#: application/views/activators/index.php:100 +#: application/views/activators/index.php:99 msgid "Count" msgstr "" -#: application/views/activators/index.php:102 -#: application/views/timeline/index.php:121 -#: application/views/timeline/index.php:153 -#: application/views/timeline/index.php:178 -#: application/views/timeline/index.php:205 -#: application/views/timeline/index.php:232 -#: application/views/timeline/index.php:258 +#: application/views/activators/index.php:101 +#: application/views/timeline/index.php:154 +#: application/views/timeline/index.php:186 +#: application/views/timeline/index.php:211 +#: application/views/timeline/index.php:238 +#: application/views/timeline/index.php:265 +#: application/views/timeline/index.php:291 msgid "Show QSO's" msgstr "" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "" @@ -2563,10 +3103,12 @@ msgstr "" #: application/views/awards/wwff/index.php:32 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:25 -#: application/views/contesting/index.php:42 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36 +#: application/views/contesting/index.php:93 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:163 +#: application/views/debug/index.php:545 +#: application/views/distancerecords/index.php:16 +#: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2579,22 +3121,22 @@ msgstr "" #: application/views/qslcard/searchresult.php:4 #: application/views/qslprint/qslprint.php:22 #: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:64 -#: application/views/qso/index.php:100 +#: application/views/qso/index.php:100 application/views/satellite/pass.php:473 #: application/views/search/cqzones_result.php:7 #: application/views/search/result_search.php:4 #: application/views/search/search_result_ajax.php:89 -#: application/views/simplefle/index.php:140 +#: application/views/simplefle/index.php:146 #: application/views/statistics/custom.php:38 #: application/views/statistics/custom_result.php:40 #: application/views/statistics/custom_result.php:85 -#: application/views/timeline/index.php:116 -#: application/views/timeline/index.php:151 -#: application/views/timeline/index.php:176 -#: application/views/timeline/index.php:201 -#: application/views/timeline/index.php:230 -#: application/views/timeline/index.php:255 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:184 +#: application/views/timeline/index.php:209 +#: application/views/timeline/index.php:234 +#: application/views/timeline/index.php:263 +#: application/views/timeline/index.php:288 #: application/views/view_log/partial/log.php:4 -#: application/views/view_log/partial/log_ajax.php:57 +#: application/views/view_log/partial/log_ajax.php:59 #: application/views/visitor/index.php:147 #: application/views/widgets/qsos.php:24 msgid "Date" @@ -2605,10 +3147,12 @@ msgstr "Data" #: application/views/awards/wwff/index.php:33 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:26 -#: application/views/contesting/index.php:47 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37 +#: application/views/contesting/index.php:98 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:166 +#: application/views/debug/index.php:546 +#: application/views/distancerecords/index.php:17 +#: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2619,12 +3163,12 @@ msgstr "Data" #: application/views/search/cqzones_result.php:8 #: application/views/search/result_search.php:5 #: application/views/search/search_result_ajax.php:91 -#: application/views/simplefle/index.php:141 +#: application/views/simplefle/index.php:147 #: application/views/statistics/custom_result.php:86 -#: application/views/timeline/index.php:256 +#: application/views/timeline/index.php:289 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 -#: application/views/view_log/partial/log_ajax.php:59 +#: application/views/view_log/partial/log_ajax.php:61 #: application/views/visitor/index.php:150 #: application/views/widgets/qsos.php:26 msgid "Time" @@ -2633,7 +3177,7 @@ msgstr "Godzina" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 -#: application/views/contesting/index.php:201 +#: application/views/contesting/index.php:248 #: application/views/debug/index.php:547 application/views/debug/index.php:582 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -2645,7 +3189,7 @@ msgstr "Godzina" #: application/views/search/search_result_ajax.php:93 #: application/views/statistics/custom_result.php:87 #: application/views/view_log/partial/log.php:8 -#: application/views/view_log/partial/log_ajax.php:61 +#: application/views/view_log/partial/log_ajax.php:63 #: application/views/visitor/index.php:152 #: application/views/widgets/qsos.php:28 msgid "Call" @@ -2663,14 +3207,14 @@ msgstr "" msgid "DCL QSL Status" msgstr "" -#: application/views/adif/import.php:36 application/views/adif/import.php:242 +#: application/views/adif/import.php:36 application/views/adif/import.php:252 msgid "DARC DCL" msgstr "" #: application/views/adif/import.php:55 -#: application/views/dashboard/index.php:97 -#: application/views/dashboard/index.php:118 -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:112 +#: application/views/dashboard/index.php:133 +#: application/views/dashboard/index.php:139 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2680,29 +3224,29 @@ msgstr "Ważne" msgid "Log Files must have the file type *.adi" msgstr "" -#: application/views/adif/import.php:56 application/views/view_log/qso.php:622 +#: application/views/adif/import.php:56 application/views/view_log/qso.php:625 msgid "Maximum file upload size is " msgstr "" -#: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:175 +#: application/views/adif/import.php:56 application/views/adif/import.php:230 +#: application/views/adif/import.php:268 application/views/debug/index.php:175 #: application/views/debug/index.php:192 application/views/debug/index.php:537 #: application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:34 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 -#: application/views/station_profile/index.php:31 #: application/views/stationsetup/stationsetup.php:111 -#: application/views/view_log/qso.php:622 +#: application/views/view_log/qso.php:625 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" msgstr "" #: application/views/adif/import.php:60 application/views/adif/import.php:62 -#: application/views/adif/import.php:168 application/views/adif/import.php:215 +#: application/views/adif/import.php:178 application/views/adif/import.php:225 #: application/views/eqsl/import.php:36 application/views/hrdlog/export.php:69 -#: application/views/qrz/export.php:89 application/views/webadif/export.php:89 +#: application/views/qrz/export.php:89 application/views/reg1test/index.php:30 +#: application/views/webadif/export.php:89 msgid "Select Station Location" msgstr "" @@ -2729,69 +3273,75 @@ msgstr "" #: application/views/adif/import.php:95 application/views/adif/import.php:105 #: application/views/adif/import.php:115 application/views/adif/import.php:125 +#: application/views/adif/import.php:135 msgid "Select if ADIF being imported does not contain this information." msgstr "" #: application/views/adif/import.php:103 -msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" +msgid "Mark imported QSOs as uploaded to eQSL Logbook" msgstr "" #: application/views/adif/import.php:113 -msgid "Mark imported QSOs as uploaded to QRZ Logbook" +msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" msgstr "" #: application/views/adif/import.php:123 -msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgid "Mark imported QSOs as uploaded to QRZ Logbook" msgstr "" #: application/views/adif/import.php:133 +msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgstr "" + +#: application/views/adif/import.php:143 msgid "Use DXCC information from ADIF" msgstr "" -#: application/views/adif/import.php:135 +#: application/views/adif/import.php:145 msgid "" "If not selected, Wavelog will attempt to determine DXCC information " "automatically." msgstr "" -#: application/views/adif/import.php:143 +#: application/views/adif/import.php:153 msgid "Always use login-callsign as operator-name on import" msgstr "" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:32 -#: application/views/interface_assets/footer.php:495 -#: application/views/interface_assets/footer.php:2119 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2133 msgid "DANGER" msgstr "" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 msgid "Ignore Stationcallsign on import" msgstr "" -#: application/views/adif/import.php:154 +#: application/views/adif/import.php:164 +#, php-format msgid "" -"If selected, Wavelog will try to import all QSO's of the ADIF, " +"If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " "regardless if they match to the chosen station-location." msgstr "" -#: application/views/adif/import.php:158 application/views/adif/import.php:273 +#: application/views/adif/import.php:168 application/views/adif/import.php:283 #: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 #: application/views/webadif/export.php:55 msgid "Upload" msgstr "" -#: application/views/adif/import.php:165 +#: application/views/adif/import.php:175 msgid "Take your logbook file anywhere!" msgstr "" -#: application/views/adif/import.php:166 +#: application/views/adif/import.php:176 msgid "" "Exporting ADIFs allows you to import contacts into third party applications " "like LoTW, Awards or just for keeping a backup." msgstr "" -#: application/views/adif/import.php:176 application/views/adif/import.php:222 +#: application/views/adif/import.php:186 application/views/adif/import.php:232 #: application/views/cfd/index.php:15 application/views/csv/index.php:118 #: application/views/dxatlas/index.php:118 #: application/views/hrdlog/export.php:77 application/views/kml/index.php:103 @@ -2800,7 +3350,7 @@ msgstr "" msgid "From date" msgstr "Od daty" -#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/adif/import.php:189 application/views/adif/import.php:235 #: application/views/cfd/index.php:20 application/views/csv/index.php:123 #: application/views/dxatlas/index.php:123 #: application/views/hrdlog/export.php:82 application/views/kml/index.php:108 @@ -2809,40 +3359,40 @@ msgstr "Od daty" msgid "To date" msgstr "" -#: application/views/adif/import.php:187 +#: application/views/adif/import.php:197 msgid "Mark exported QSOs as uploaded to LoTW" msgstr "" -#: application/views/adif/import.php:195 +#: application/views/adif/import.php:205 msgid "Export QSOs not uploaded to LoTW" msgstr "" -#: application/views/adif/import.php:200 +#: application/views/adif/import.php:210 msgid "Export QSO's" msgstr "" -#: application/views/adif/import.php:205 +#: application/views/adif/import.php:215 msgid "Export Satellite-Only QSOs" msgstr "" -#: application/views/adif/import.php:206 +#: application/views/adif/import.php:216 msgid "Export All Satellite QSOs" msgstr "" -#: application/views/adif/import.php:208 +#: application/views/adif/import.php:218 msgid "Export All Satellite QSOs Confirmed on LoTW" msgstr "" -#: application/views/adif/import.php:220 application/views/hrdlog/export.php:74 +#: application/views/adif/import.php:230 application/views/hrdlog/export.php:74 #: application/views/qrz/export.php:94 application/views/webadif/export.php:94 msgid "If a date range is not selected then all QSOs will be marked!" msgstr "" -#: application/views/adif/import.php:228 +#: application/views/adif/import.php:238 msgid "Mark QSOs as exported to LoTW" msgstr "" -#: application/views/adif/import.php:242 +#: application/views/adif/import.php:252 #, php-format msgid "" "Go to %s and export your logbook with confirmed DOKs. To speed up the " @@ -2851,36 +3401,47 @@ msgid "" "with DOK info." msgstr "" -#: application/views/adif/import.php:249 +#: application/views/adif/import.php:259 msgid "Only import DOK data from QSOs confirmed on DCL." msgstr "" -#: application/views/adif/import.php:251 +#: application/views/adif/import.php:261 msgid "" "Uncheck if you also want to update DOK with data from unconfirmed QSOs in " "DCL." msgstr "" -#: application/views/adif/import.php:258 +#: application/views/adif/import.php:268 msgid "Overwrites exisiting DOK in log by DCL (if different)." msgstr "" -#: application/views/adif/import.php:260 +#: application/views/adif/import.php:270 msgid "" "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " "log." msgstr "" -#: application/views/adif/import.php:267 +#: application/views/adif/import.php:277 msgid "Ignore QSOs that cannot be matched." msgstr "Ignore QSOs that cannot be matched" -#: application/views/adif/import.php:269 +#: application/views/adif/import.php:279 msgid "" "If unchecked, information about QSOs which could not be found in Wavelog " "will be displayed." msgstr "" +#: application/views/adif/import_failed.php:15 +msgid "The ADIF file could not be parsed correctly." +msgstr "" + +#: application/views/adif/import_failed.php:16 +msgid "" +"At least one of the ADIF fields could not be parsed and/or inserted into the " +"database. Please check the imported ADIF file. You can use an online ADIF " +"file checker. For example:" +msgstr "" + #: application/views/adif/import_success.php:15 msgid "Yay, its imported!" msgstr "" @@ -2933,24 +3494,22 @@ msgstr "" #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 -#: application/views/interface_assets/footer.php:43 -#: application/views/interface_assets/footer.php:530 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 -#: application/views/options/appearance.php:107 +#: application/views/options/appearance.php:116 #: application/views/options/dxcluster.php:67 #: application/views/options/email.php:112 #: application/views/options/oqrs.php:63 #: application/views/options/radios.php:45 #: application/views/options/version_dialog.php:78 -#: application/views/qso/components/winkeysettings.php:90 -#: application/views/qso/components/winkeysettings_results.php:90 #: application/views/satellite/create.php:70 #: application/views/simplefle/index.php:22 msgid "Save" msgstr "" #: application/views/api/help.php:14 -#: application/views/interface_assets/header.php:431 +#: application/views/interface_assets/header.php:437 msgid "API Keys" msgstr "" @@ -2974,7 +3533,7 @@ msgid "API URL" msgstr "" #: application/views/api/help.php:19 application/views/api/help.php:38 -#: application/views/cron/index.php:21 application/views/debug/index.php:36 +#: application/views/cron/index.php:22 application/views/debug/index.php:36 msgid "Copy to clipboard" msgstr "" @@ -2983,14 +3542,15 @@ msgid "The API URL for this Wavelog instance is" msgstr "" #: application/views/api/help.php:20 application/views/dxcalendar/index.php:15 -#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:477 -#: application/views/qso/index.php:538 application/views/qso/index.php:583 +#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:504 +#: application/views/qso/index.php:560 application/views/qso/index.php:605 #: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 #: application/views/sattimers/index.php:73 #: application/views/sattimers/index.php:75 +#: application/views/sattimers/index.php:77 #: application/views/search/filter.php:69 msgid "Info" msgstr "Informacja" @@ -3006,7 +3566,7 @@ msgid "API Key" msgstr "" #: application/views/api/help.php:28 application/views/cron/edit.php:30 -#: application/views/cron/index.php:51 +#: application/views/cron/index.php:53 #: application/views/search/stored_queries.php:8 msgid "Description" msgstr "" @@ -3019,19 +3579,18 @@ msgstr "" msgid "Permissions" msgstr "" -#: application/views/api/help.php:31 application/views/cron/index.php:52 -#: application/views/lotw_views/index.php:45 +#: application/views/api/help.php:31 application/views/cron/index.php:54 +#: application/views/lotw_views/index.php:41 #: application/views/mode/index.php:31 #: application/views/oqrs/showrequests.php:91 #: application/views/sattimers/index.php:39 #: application/views/stationsetup/stationsetup.php:31 -#: application/views/timeline/index.php:119 -#: application/views/update/index.php:30 +#: application/views/timeline/index.php:152 msgid "Status" msgstr "" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:519 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3067,6 +3626,7 @@ msgstr "" #: application/views/awards/counties/details.php:4 #: application/views/awards/details.php:1 #: application/views/awards/vucc/band.php:4 +#: application/views/distancerecords/details.php:1 #: application/views/timeline/details.php:2 msgid "Filtering on" msgstr "" @@ -3077,8 +3637,8 @@ msgstr "" #: application/views/awards/counties/index.php:6 #: application/views/awards/counties/index.php:13 -#: application/views/awards/cq/index.php:17 -#: application/views/awards/cq/index.php:24 +#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:26 #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:13 #: application/views/awards/dxcc/index.php:13 @@ -3087,12 +3647,12 @@ msgstr "" #: application/views/awards/ffma/index.php:14 #: application/views/awards/gridmaster/index.php:6 #: application/views/awards/gridmaster/index.php:13 -#: application/views/awards/helvetia/index.php:17 -#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:26 #: application/views/awards/iota/index.php:15 #: application/views/awards/iota/index.php:22 -#: application/views/awards/itu/index.php:17 -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:26 #: application/views/awards/jcc/index.php:15 #: application/views/awards/jcc/index.php:22 #: application/views/awards/pota/index.php:6 @@ -3105,10 +3665,12 @@ msgstr "" #: application/views/awards/vucc/index.php:13 #: application/views/awards/wab/index.php:11 #: application/views/awards/wab/index.php:18 -#: application/views/awards/waja/index.php:16 -#: application/views/awards/waja/index.php:23 -#: application/views/awards/was/index.php:17 -#: application/views/awards/was/index.php:24 +#: application/views/awards/wac/index.php:7 +#: application/views/awards/wac/index.php:14 +#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:25 +#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:26 #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:13 msgid "Award Info" @@ -3146,17 +3708,18 @@ msgid "Counties Confirmed" msgstr "" #: application/views/awards/counties/index.php:39 -#: application/views/awards/cq/index.php:174 +#: application/views/awards/cq/index.php:176 #: application/views/awards/dok/index.php:174 #: application/views/awards/dxcc/index.php:257 -#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/helvetia/index.php:179 #: application/views/awards/iota/index.php:201 -#: application/views/awards/itu/index.php:174 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:185 -#: application/views/awards/rac/index.php:169 -#: application/views/awards/waja/index.php:177 -#: application/views/awards/was/index.php:177 -#: application/views/dashboard/index.php:217 +#: application/views/awards/rac/index.php:171 +#: application/views/awards/wac/index.php:177 +#: application/views/awards/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:233 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3170,215 +3733,232 @@ msgstr "" #: application/views/statistics/uniquetable.php:23 #: application/views/visitor/index.php:241 msgid "Total" +msgstr "Razem" + +#: application/views/awards/cq/index.php:3 +#: application/views/awards/cq/index.php:150 application/views/csv/index.php:80 +#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/logbookadvanced/edit.php:6 +#: application/views/logbookadvanced/index.php:246 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:284 +#: application/views/qso/index.php:390 +#: application/views/search/cqzones_result.php:13 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:264 +#: application/views/timeplotter/index.php:44 +msgid "CQ Zone" +msgstr "Strefa CQ" + +#: application/views/awards/cq/index.php:4 +#: application/views/awards/itu/index.php:4 +msgid "Hover over a zone" msgstr "" -#: application/views/awards/cq/index.php:18 +#: application/views/awards/cq/index.php:20 msgid "CQ Magazine WAZ Award" msgstr "" -#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:21 msgid "" "The CQ Magazine is located in the US and one of the most popular amateur " "radio magazines in the world. The magazine first appeared in January 1945 " "and focuses on awards and the practical aspects of amateur radio." msgstr "" -#: application/views/awards/cq/index.php:20 +#: application/views/awards/cq/index.php:22 msgid "" "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to " "all 40 CQ Zones along with the corresponding confirmation." msgstr "" -#: application/views/awards/cq/index.php:21 +#: application/views/awards/cq/index.php:23 #, php-format msgctxt "uses 'CQ Magazine'" msgid "You can find all the information and rules on the Website of the %s." msgstr "" -#: application/views/awards/cq/index.php:23 +#: application/views/awards/cq/index.php:25 msgid "Awards - CQ Magazine WAZ" msgstr "" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 #: application/views/awards/wab/list.php:6 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:73 -#: application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:362 -#: application/views/interface_assets/footer.php:39 +#: application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:378 +#: application/views/interface_assets/footer.php:40 #: application/views/visitor/index.php:266 msgid "Confirmed" msgstr "Potwierdzone" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:256 +#: application/views/dashboard/index.php:372 #: application/views/visitor/index.php:262 msgid "Worked" msgstr "Pracowane" -#: application/views/awards/cq/index.php:36 +#: application/views/awards/cq/index.php:38 #: application/views/awards/dok/index.php:41 #: application/views/awards/dxcc/index.php:43 -#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:43 -#: application/views/awards/itu/index.php:36 +#: application/views/awards/itu/index.php:38 #: application/views/awards/jcc/index.php:34 -#: application/views/awards/rac/index.php:27 -#: application/views/awards/waja/index.php:35 -#: application/views/awards/was/index.php:35 +#: application/views/awards/rac/index.php:29 +#: application/views/awards/wac/index.php:26 +#: application/views/awards/waja/index.php:37 +#: application/views/awards/was/index.php:37 msgid "Show worked" msgstr "" -#: application/views/awards/cq/index.php:40 +#: application/views/awards/cq/index.php:42 #: application/views/awards/dok/index.php:45 #: application/views/awards/dxcc/index.php:47 -#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:47 -#: application/views/awards/itu/index.php:40 +#: application/views/awards/itu/index.php:42 #: application/views/awards/jcc/index.php:38 -#: application/views/awards/rac/index.php:31 -#: application/views/awards/waja/index.php:39 -#: application/views/awards/was/index.php:39 +#: application/views/awards/rac/index.php:33 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/waja/index.php:41 +#: application/views/awards/was/index.php:41 msgid "Show confirmed" msgstr "" -#: application/views/awards/cq/index.php:44 +#: application/views/awards/cq/index.php:46 #: application/views/awards/dxcc/index.php:51 -#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:51 -#: application/views/awards/itu/index.php:44 +#: application/views/awards/itu/index.php:46 #: application/views/awards/jcc/index.php:42 -#: application/views/awards/rac/index.php:35 -#: application/views/awards/waja/index.php:43 -#: application/views/awards/was/index.php:43 +#: application/views/awards/rac/index.php:37 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/waja/index.php:45 +#: application/views/awards/was/index.php:45 msgid "Show not worked" msgstr "" -#: application/views/awards/cq/index.php:50 +#: application/views/awards/cq/index.php:52 #: application/views/awards/dok/index.php:51 #: application/views/awards/dxcc/index.php:57 -#: application/views/awards/helvetia/index.php:49 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/helvetia/index.php:51 +#: application/views/awards/itu/index.php:52 #: application/views/awards/jcc/index.php:48 -#: application/views/awards/rac/index.php:41 -#: application/views/awards/waja/index.php:49 -#: application/views/awards/was/index.php:49 +#: application/views/awards/rac/index.php:43 +#: application/views/awards/wac/index.php:40 +#: application/views/awards/waja/index.php:51 +#: application/views/awards/was/index.php:51 msgid "Show QSO with QSL Type" msgstr "" -#: application/views/awards/cq/index.php:54 -#: application/views/awards/itu/index.php:54 -#: application/views/interface_assets/footer.php:2098 -#: application/views/qso/edit_ajax.php:378 +#: application/views/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/awards/wac/index.php:44 +#: application/views/interface_assets/footer.php:2112 +#: application/views/qso/edit_ajax.php:405 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "Karta QSL" -#: application/views/awards/cq/index.php:110 +#: application/views/awards/cq/index.php:112 #: application/views/awards/dok/index.php:126 #: application/views/awards/dxcc/index.php:186 -#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/helvetia/index.php:111 #: application/views/awards/iota/index.php:129 -#: application/views/awards/itu/index.php:110 +#: application/views/awards/itu/index.php:112 #: application/views/awards/jcc/index.php:112 -#: application/views/awards/rac/index.php:101 -#: application/views/awards/waja/index.php:113 -#: application/views/awards/was/index.php:109 +#: application/views/awards/rac/index.php:103 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/waja/index.php:115 +#: application/views/awards/was/index.php:111 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:523 +#: application/views/logbookadvanced/index.php:551 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 msgid "Reset" msgstr "" -#: application/views/awards/cq/index.php:113 +#: application/views/awards/cq/index.php:115 msgid "Show CQ Zone Map" msgstr "" -#: application/views/awards/cq/index.php:122 +#: application/views/awards/cq/index.php:124 #: application/views/awards/dxcc/index.php:199 -#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/helvetia/index.php:124 #: application/views/awards/iota/index.php:142 -#: application/views/awards/itu/index.php:122 -#: application/views/awards/rac/index.php:114 -#: application/views/awards/waja/index.php:126 -#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:124 +#: application/views/awards/rac/index.php:116 +#: application/views/awards/waja/index.php:128 +#: application/views/awards/was/index.php:124 msgid "Table" msgstr "" -#: application/views/awards/cq/index.php:125 +#: application/views/awards/cq/index.php:127 #: application/views/awards/dok/index.php:128 #: application/views/awards/dxcc/index.php:202 -#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/helvetia/index.php:127 #: application/views/awards/iota/index.php:145 -#: application/views/awards/itu/index.php:125 +#: application/views/awards/itu/index.php:127 #: application/views/awards/jcc/index.php:129 -#: application/views/awards/rac/index.php:117 +#: application/views/awards/rac/index.php:119 #: application/views/awards/wab/index.php:108 -#: application/views/awards/waja/index.php:129 -#: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:516 +#: application/views/awards/waja/index.php:131 +#: application/views/awards/was/index.php:127 +#: application/views/logbookadvanced/index.php:544 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "" -#: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 -#: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:235 -#: application/views/logbookadvanced/index.php:586 -#: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:90 -#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 -#: application/views/qso/index.php:390 -#: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:106 -#: application/views/station_profile/edit.php:126 -#: application/views/timeline/index.php:231 -#: application/views/timeplotter/index.php:44 -msgid "CQ Zone" -msgstr "Strefa CQ" - -#: application/views/awards/cq/index.php:165 +#: application/views/awards/cq/index.php:167 #: application/views/awards/dok/index.php:165 #: application/views/awards/dxcc/index.php:248 -#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/helvetia/index.php:170 #: application/views/awards/iota/index.php:192 -#: application/views/awards/itu/index.php:165 +#: application/views/awards/itu/index.php:167 #: application/views/awards/jcc/index.php:168 -#: application/views/awards/rac/index.php:160 -#: application/views/awards/waja/index.php:168 -#: application/views/awards/was/index.php:168 +#: application/views/awards/rac/index.php:162 +#: application/views/awards/wac/index.php:168 +#: application/views/awards/waja/index.php:170 +#: application/views/awards/was/index.php:170 msgid "Summary" msgstr "" -#: application/views/awards/cq/index.php:178 +#: application/views/awards/cq/index.php:180 #: application/views/awards/dok/index.php:178 #: application/views/awards/dxcc/index.php:262 -#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:206 -#: application/views/awards/itu/index.php:178 +#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:195 -#: application/views/awards/rac/index.php:173 -#: application/views/awards/waja/index.php:182 -#: application/views/awards/was/index.php:181 +#: application/views/awards/rac/index.php:175 +#: application/views/awards/wac/index.php:181 +#: application/views/awards/waja/index.php:184 +#: application/views/awards/was/index.php:183 msgid "Total worked" msgstr "" -#: application/views/awards/cq/index.php:185 +#: application/views/awards/cq/index.php:187 #: application/views/awards/dok/index.php:185 #: application/views/awards/dxcc/index.php:269 -#: application/views/awards/helvetia/index.php:188 +#: application/views/awards/helvetia/index.php:190 #: application/views/awards/iota/index.php:213 -#: application/views/awards/itu/index.php:185 +#: application/views/awards/itu/index.php:187 #: application/views/awards/jcc/index.php:214 -#: application/views/awards/rac/index.php:180 -#: application/views/awards/waja/index.php:189 -#: application/views/awards/was/index.php:188 +#: application/views/awards/rac/index.php:182 +#: application/views/awards/wac/index.php:188 +#: application/views/awards/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "" @@ -3426,23 +4006,24 @@ msgstr "" #: application/views/awards/dok/index.php:37 #: application/views/awards/dxcc/index.php:39 -#: application/views/awards/helvetia/index.php:31 +#: application/views/awards/helvetia/index.php:33 #: application/views/awards/iota/index.php:39 #: application/views/awards/jcc/index.php:30 -#: application/views/awards/rac/index.php:23 -#: application/views/awards/waja/index.php:31 -#: application/views/awards/was/index.php:31 +#: application/views/awards/rac/index.php:25 +#: application/views/awards/waja/index.php:33 +#: application/views/awards/was/index.php:33 msgid "Worked / Confirmed" msgstr "" #: application/views/awards/dok/index.php:80 #: application/views/awards/dxcc/index.php:120 -#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/helvetia/index.php:76 #: application/views/awards/iota/index.php:94 #: application/views/awards/jcc/index.php:77 -#: application/views/awards/rac/index.php:66 -#: application/views/awards/waja/index.php:78 -#: application/views/awards/was/index.php:74 +#: application/views/awards/rac/index.php:68 +#: application/views/awards/wac/index.php:66 +#: application/views/awards/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "" @@ -3463,10 +4044,12 @@ msgid "" msgstr "" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 msgid "ARRL website" msgstr "" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 #, php-format msgid "You can find all information about the DXCC Award on the %s." msgstr "" @@ -3488,63 +4071,77 @@ msgstr "" #: application/views/awards/dxcc/index.php:87 #: application/views/awards/iota/index.php:61 #: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/logbookadvanced/edit.php:144 +#: application/views/logbookadvanced/index.php:309 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 -#: application/views/view_log/qso.php:250 +#: application/views/view_log/qso.php:253 msgid "Antarctica" msgstr "" #: application/views/awards/dxcc/index.php:91 #: application/views/awards/iota/index.php:65 #: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/logbookadvanced/edit.php:143 +#: application/views/logbookadvanced/index.php:308 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 -#: application/views/view_log/qso.php:247 +#: application/views/view_log/qso.php:250 msgid "Africa" msgstr "" #: application/views/awards/dxcc/index.php:95 #: application/views/awards/iota/index.php:69 #: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/logbookadvanced/edit.php:146 +#: application/views/logbookadvanced/index.php:311 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 -#: application/views/view_log/qso.php:253 +#: application/views/view_log/qso.php:256 msgid "Asia" msgstr "" #: application/views/awards/dxcc/index.php:99 #: application/views/awards/iota/index.php:73 #: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/logbookadvanced/edit.php:147 +#: application/views/logbookadvanced/index.php:312 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 -#: application/views/view_log/qso.php:256 +#: application/views/view_log/qso.php:259 msgid "Europe" msgstr "" #: application/views/awards/dxcc/index.php:103 #: application/views/awards/iota/index.php:77 #: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/logbookadvanced/edit.php:145 +#: application/views/logbookadvanced/index.php:310 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 -#: application/views/view_log/qso.php:259 +#: application/views/view_log/qso.php:262 msgid "North America" msgstr "" #: application/views/awards/dxcc/index.php:107 #: application/views/awards/iota/index.php:81 #: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/logbookadvanced/edit.php:148 +#: application/views/logbookadvanced/index.php:313 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:265 +#: application/views/view_log/qso.php:268 msgid "South America" msgstr "" #: application/views/awards/dxcc/index.php:111 #: application/views/awards/iota/index.php:85 #: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/logbookadvanced/edit.php:149 +#: application/views/logbookadvanced/index.php:314 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 -#: application/views/view_log/qso.php:262 +#: application/views/view_log/qso.php:265 msgid "Oceania" msgstr "" @@ -3558,13 +4155,13 @@ msgstr "" #: application/views/awards/dxcc/index.php:226 #: application/views/awards/iota/index.php:170 -#: application/views/timeline/index.php:117 -#: application/views/timeline/index.php:204 +#: application/views/timeline/index.php:150 +#: application/views/timeline/index.php:237 msgid "Prefix" msgstr "" #: application/views/awards/ffma/index.php:8 -#: application/views/interface_assets/header.php:236 +#: application/views/interface_assets/header.php:240 msgid "Fred Fish Memorial Award" msgstr "" @@ -3619,11 +4216,20 @@ msgstr "" msgid "This map shows only QSOs worked on SAT." msgstr "" -#: application/views/awards/helvetia/index.php:18 +#: application/views/awards/helvetia/index.php:3 +msgctxt "Switzerland Canton" +msgid "Canton" +msgstr "Kanton" + +#: application/views/awards/helvetia/index.php:4 +msgid "Hover over a canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:20 msgid "HELVETIA 26 | SWITZERLAND AWARD" msgstr "" -#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:21 msgid "" "The USKA (Union of Swiss Shortwave Amateurs) sponsors two awards, the " "HELVETIA 26 (H26) Award and the SWITZERLAND Award, aimed at promoting " @@ -3631,33 +4237,33 @@ msgid "" "as possible on multiple bands." msgstr "" -#: application/views/awards/helvetia/index.php:20 +#: application/views/awards/helvetia/index.php:22 msgid "" "These awards come in two versions: one for HF bands and the other for VHF " "(including SHF and UHF) bands. Valid connections for these awards date back " "to January 1, 1980" msgstr "" -#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/helvetia/index.php:23 #: application/views/awards/jcc/index.php:19 #: application/views/awards/sota/index.php:10 #: application/views/awards/wab/index.php:15 -#: application/views/awards/waja/index.php:20 +#: application/views/awards/waja/index.php:22 #: application/views/awards/wwff/index.php:10 #, php-format msgid "For more information, please visit: %s." msgstr "" -#: application/views/awards/helvetia/index.php:112 +#: application/views/awards/helvetia/index.php:114 msgid "Show Helvetia Map" msgstr "" -#: application/views/awards/helvetia/index.php:149 +#: application/views/awards/helvetia/index.php:151 msgid "Canton" msgstr "" #: application/views/awards/index.php:9 application/views/bands/index.php:46 -#: application/views/interface_assets/header.php:162 +#: application/views/interface_assets/header.php:164 msgid "CQ" msgstr "" @@ -3705,11 +4311,11 @@ msgstr "" #: application/views/awards/iota/index.php:171 #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 -#: application/views/contesting/index.php:153 -#: application/views/contesting/index.php:171 +#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:214 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:559 +#: application/views/logbookadvanced/index.php:587 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3719,12 +4325,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:19 #: application/views/stationsetup/stationsetup.php:30 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:203 application/views/user/edit.php:241 +#: application/views/timeline/index.php:236 application/views/user/edit.php:241 #: application/views/user/edit.php:263 application/views/user/edit.php:285 #: application/views/user/edit.php:307 application/views/user/edit.php:330 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:191 -#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:194 +#: application/views/view_log/qso.php:514 msgid "Name" msgstr "" @@ -3732,7 +4338,19 @@ msgstr "" msgid "Deleted" msgstr "" -#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:3 +#: application/views/awards/itu/index.php:150 +#: application/views/logbookadvanced/edit.php:10 +#: application/views/logbookadvanced/index.php:257 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:400 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 +msgid "ITU Zone" +msgstr "Strefa ITU" + +#: application/views/awards/itu/index.php:21 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -3740,30 +4358,20 @@ msgid "" "(ITU)." msgstr "" -#: application/views/awards/itu/index.php:20 +#: application/views/awards/itu/index.php:22 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "" -#: application/views/awards/itu/index.php:23 +#: application/views/awards/itu/index.php:25 msgid "Awards - ITU Zones" msgstr "" -#: application/views/awards/itu/index.php:113 +#: application/views/awards/itu/index.php:115 msgid "Show ITU Zone Map" msgstr "" -#: application/views/awards/itu/index.php:148 -#: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:246 -#: application/views/logbookadvanced/index.php:589 -#: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:120 -#: application/views/station_profile/edit.php:143 -msgid "ITU Zone" -msgstr "Strefa ITU" - #: application/views/awards/jcc/index.php:16 msgid "JCC - Japan Century Cities Award" msgstr "" @@ -3789,9 +4397,9 @@ msgstr "" #: application/views/awards/jcc/index.php:116 #: application/views/cabrillo/index.php:180 application/views/cfd/index.php:25 #: application/views/csv/index.php:128 application/views/dxatlas/index.php:128 -#: application/views/kml/index.php:113 +#: application/views/kml/index.php:113 application/views/reg1test/index.php:145 msgid "Export" -msgstr "" +msgstr "Eksport" #: application/views/awards/jcc/index.php:126 #: application/views/public_search/empty.php:2 @@ -3800,18 +4408,19 @@ msgid "Results" msgstr "" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 +#: application/views/distancerecords/index.php:13 msgid "Number" msgstr "" #: application/views/awards/jcc/index.php:152 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:524 msgid "City" msgstr "" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:368 #: application/views/distances/index.php:23 msgid "SAT" msgstr "" @@ -3843,15 +4452,24 @@ msgid "" msgstr "" #: application/views/awards/pota/index.php:31 -#: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:177 -#: application/views/station_profile/edit.php:245 -#: application/views/user/edit.php:595 application/views/view_log/qso.php:303 -#: application/views/view_log/qso.php:570 +#: application/views/qso/index.php:236 application/views/qso/index.php:492 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 +#: application/views/user/edit.php:595 application/views/view_log/qso.php:306 +#: application/views/view_log/qso.php:573 msgid "POTA Reference(s)" msgstr "" -#: application/views/awards/rac/index.php:104 +#: application/views/awards/rac/index.php:3 +msgctxt "Canada Province" +msgid "Province" +msgstr "" + +#: application/views/awards/rac/index.php:4 +msgid "Hover over a province" +msgstr "" + +#: application/views/awards/rac/index.php:106 msgid "Show RAC Map" msgstr "" @@ -3901,7 +4519,7 @@ msgstr "" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:535 +#: application/views/logbookadvanced/index.php:563 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -3997,17 +4615,48 @@ msgstr "" msgid "WAB Square" msgstr "" -#: application/views/awards/waja/index.php:17 +#: application/views/awards/wac/index.php:9 +msgid "" +"Sponsored by the International Amateur Radio Union (IARU), the Worked All " +"Continents award is issued for working and confirming all six continents. " +"These are North America, South America, Oceania, Asia, Europe and Africa." +msgstr "" + +#: application/views/awards/wac/index.php:13 +msgid "Awards - Worked All Continents (WAC)" +msgstr "" + +#: application/views/awards/wac/index.php:151 +#: application/views/continents/index.php:62 +#: application/views/logbookadvanced/edit.php:25 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 +#: application/views/view_log/qso.php:245 +msgid "Continent" +msgstr "" + +#: application/views/awards/waja/index.php:3 +msgctxt "Japan Prefecture" +msgid "Prefecture" +msgstr "Prefektura" + +#: application/views/awards/waja/index.php:4 +msgid "Hover over a prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:19 msgid "WAJA - Worked All Japan prefectures Award" msgstr "" -#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:20 msgid "" "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " "radio operators to work all the prefectures in Japan." msgstr "" -#: application/views/awards/waja/index.php:19 +#: application/views/awards/waja/index.php:21 msgid "" "May be claimed for having contacted (heard) and received a QSL card from an " "amateur station located in each of the 47 prefectures of Japan. A list of " @@ -4015,20 +4664,29 @@ msgid "" "however names of prefectures may be omitted." msgstr "" -#: application/views/awards/waja/index.php:116 +#: application/views/awards/waja/index.php:118 msgid "Show WAJA Map" msgstr "" -#: application/views/awards/waja/index.php:152 -#: application/views/timeline/index.php:152 +#: application/views/awards/waja/index.php:154 +#: application/views/timeline/index.php:185 msgid "Prefecture" msgstr "" -#: application/views/awards/was/index.php:18 +#: application/views/awards/was/index.php:3 +msgctxt "USA State" +msgid "State" +msgstr "" + +#: application/views/awards/was/index.php:4 +msgid "Hover over a state" +msgstr "" + +#: application/views/awards/was/index.php:20 msgid "WAS Award" msgstr "" -#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:21 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -4036,7 +4694,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:20 +#: application/views/awards/was/index.php:22 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -4045,13 +4703,13 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:21 +#: application/views/awards/was/index.php:23 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:112 +#: application/views/awards/was/index.php:114 msgid "Show WAS Map" msgstr "" @@ -4074,11 +4732,11 @@ msgid "" msgstr "" #: application/views/awards/wwff/index.php:31 -#: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:171 -#: application/views/station_profile/edit.php:232 -#: application/views/user/edit.php:591 application/views/view_log/qso.php:296 -#: application/views/view_log/qso.php:563 +#: application/views/qso/index.php:224 application/views/qso/index.php:479 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 +#: application/views/user/edit.php:591 application/views/view_log/qso.php:299 +#: application/views/view_log/qso.php:566 msgid "WWFF Reference" msgstr "Podmiot WWFF" @@ -4133,8 +4791,8 @@ msgstr "" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 #: application/views/contesting/index.php:15 -#: application/views/contesting/index.php:94 -#: application/views/contesting/index.php:169 +#: application/views/contesting/index.php:52 +#: application/views/contesting/index.php:145 #: application/views/qso/index.php:314 msgid "None" msgstr "" @@ -4214,25 +4872,25 @@ msgid "" "will be hidden and cannot be selected." msgstr "" -#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:351 -#: application/views/qso/index.php:248 application/views/qso/index.php:494 -#: application/views/user/edit.php:599 application/views/view_log/qso.php:325 -#: application/views/view_log/qso.php:577 +#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 +#: application/views/qso/index.php:248 application/views/qso/index.php:504 +#: application/views/user/edit.php:599 application/views/view_log/qso.php:328 +#: application/views/view_log/qso.php:580 msgid "Sig" msgstr "" -#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:312 -#: application/views/qso/index.php:433 +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:339 +#: application/views/qso/index.php:443 msgid "USA County" msgstr "Hrabstwo USA" #: application/views/bands/index.php:58 -#: application/views/interface_assets/header.php:208 +#: application/views/interface_assets/header.php:212 msgid "WAJA" msgstr "" #: application/views/bands/index.php:59 -#: application/views/interface_assets/header.php:232 +#: application/views/interface_assets/header.php:236 msgid "WAS" msgstr "" @@ -4262,9 +4920,8 @@ msgstr "" #: application/views/bands/index.php:152 #: application/views/contesting/add.php:74 -#: application/views/interface_assets/footer.php:42 -#: application/views/qso/components/winkeysettings.php:91 -#: application/views/qso/components/winkeysettings_results.php:91 +#: application/views/contesting/index.php:83 +#: application/views/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4294,38 +4951,46 @@ msgstr "" #: application/views/cabrillo/index.php:2 #: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:59 +#: application/views/reg1test/index.php:2 +#: application/views/reg1test/index.php:36 msgid "Proceed" msgstr "" #: application/views/cabrillo/index.php:3 +#: application/views/reg1test/index.php:3 msgid "Select Year" msgstr "" #: application/views/cabrillo/index.php:4 +#: application/views/reg1test/index.php:4 msgid "Select Contest" msgstr "" #: application/views/cabrillo/index.php:5 +#: application/views/reg1test/index.php:5 msgid "Select Date Range" msgstr "" #: application/views/cabrillo/index.php:6 +#: application/views/reg1test/index.php:7 msgid "No contests were found for this station location!" msgstr "" #: application/views/cabrillo/index.php:16 msgid "Export a contest to a Cabrillo log" -msgstr "" +msgstr "Eksportuj zawody do logu Cabrillo" #: application/views/cabrillo/index.php:28 msgid "Select Station Location:" msgstr "" #: application/views/cabrillo/index.php:44 +#: application/views/reg1test/index.php:53 msgid "Club" msgstr "" #: application/views/cabrillo/index.php:48 +#: application/views/reg1test/index.php:58 msgid "Category Operator" msgstr "" @@ -4366,10 +5031,12 @@ msgid "Category Overlay" msgstr "" #: application/views/cabrillo/index.php:150 +#: application/views/reg1test/index.php:70 msgid "Operators" msgstr "" #: application/views/cabrillo/index.php:155 +#: application/views/reg1test/index.php:139 msgid "Soapbox" msgstr "" @@ -4394,6 +5061,7 @@ msgid "Address Country" msgstr "" #: application/views/cabrillo/index.php:186 +#: application/views/reg1test/index.php:150 msgid "No contests were found in your log." msgstr "" @@ -4427,13 +5095,13 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:158 +#: application/views/contesting/index.php:219 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:629 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 -#: application/views/view_log/qso.php:199 +#: application/views/view_log/qso.php:202 msgid "Comment" msgstr "Komentarz" @@ -4465,9 +5133,9 @@ msgid "No Contests" msgstr "" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/edit.php:21 -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:635 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4495,10 +5163,11 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:38 -#: application/views/dashboard/index.php:262 -#: application/views/dashboard/index.php:289 -#: application/views/dashboard/index.php:310 -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:278 +#: application/views/dashboard/index.php:305 +#: application/views/dashboard/index.php:326 +#: application/views/dashboard/index.php:347 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "" @@ -4532,7 +5201,7 @@ msgstr "" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:466 +#: application/views/interface_assets/header.php:472 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:43 @@ -4587,15 +5256,15 @@ msgid "Name of Contest in ADIF-specification" msgstr "" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "" #: application/views/contesting/edit.php:31 -#: application/views/contesting/index.php:24 -#: application/views/qso/edit_ajax.php:548 -#: application/views/view_log/qso.php:275 +#: application/views/contesting/index.php:25 +#: application/views/qso/edit_ajax.php:575 +#: application/views/view_log/qso.php:278 msgid "Contest Name" msgstr "Nazwa Zawodów" @@ -4631,90 +5300,138 @@ msgstr "" msgid "Serial + Gridsquare" msgstr "" -#: application/views/contesting/index.php:34 +#: application/views/contesting/index.php:21 +msgid "Serial + Gridsquare + Exchange" +msgstr "" + +#: application/views/contesting/index.php:35 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:539 application/views/qso/index.php:352 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:352 msgid "Operator Callsign" +msgstr "Znak wywoławczy operatora" + +#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:45 +msgid "More Settings" msgstr "" -#: application/views/contesting/index.php:116 -#: application/views/contesting/index.php:208 -#: application/views/qso/edit_ajax.php:571 -msgid "Serial (S)" -msgstr "" - -#: application/views/contesting/index.php:121 -#: application/views/contesting/index.php:206 -msgid "Exch (S)" -msgstr "Wymiana (S)" - -#: application/views/contesting/index.php:126 -msgid "Gridsquare (S)" -msgstr "" - -#: application/views/contesting/index.php:136 -#: application/views/contesting/index.php:209 -#: application/views/qso/edit_ajax.php:566 -msgid "Serial (R)" -msgstr "" - -#: application/views/contesting/index.php:141 -#: application/views/contesting/index.php:207 -msgid "Exch (R)" -msgstr "Wymiana (R)" - -#: application/views/contesting/index.php:146 -msgid "Gridsquare (R)" -msgstr "" - -#: application/views/contesting/index.php:163 -msgid "Reset QSO" -msgstr "Wyczyść łączność" - -#: application/views/contesting/index.php:164 -#: application/views/qso/index.php:607 -msgid "Save QSO" -msgstr "Zapisz łączność" - -#: application/views/contesting/index.php:166 +#: application/views/contesting/index.php:49 msgid "Copy received exchange to" msgstr "" -#: application/views/contesting/index.php:168 +#: application/views/contesting/index.php:51 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "" -#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:55 msgid "Age" msgstr "" -#: application/views/contesting/index.php:174 +#: application/views/contesting/index.php:57 msgid "RX Power (W)" msgstr "" -#: application/views/contesting/index.php:175 +#: application/views/contesting/index.php:58 msgid "Locator" msgstr "Lokator" -#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:59 +#: application/views/qso/edit_ajax.php:177 +msgid "QTH" +msgstr "" + +#: application/views/contesting/index.php:64 +msgid "Sequence of Exchanges" +msgstr "" + +#: application/views/contesting/index.php:67 +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 "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Grid" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Serial" +msgstr "" + +#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:255 +#: application/views/qso/edit_ajax.php:598 +msgid "Serial (S)" +msgstr "" + +#: application/views/contesting/index.php:177 +msgid "Gridsquare (S)" +msgstr "" + +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:253 +msgid "Exch (S)" +msgstr "Wymiana (S)" + +#: application/views/contesting/index.php:196 +#: application/views/contesting/index.php:256 +#: application/views/qso/edit_ajax.php:593 +msgid "Serial (R)" +msgstr "" + +#: application/views/contesting/index.php:201 +msgid "Gridsquare (R)" +msgstr "" + +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:254 +msgid "Exch (R)" +msgstr "Wymiana (R)" + +#: application/views/contesting/index.php:224 +msgid "Reset QSO" +msgstr "Wyczyść łączność" + +#: application/views/contesting/index.php:225 +#: application/views/qso/index.php:629 +msgid "Save QSO" +msgstr "Zapisz łączność" + +#: application/views/contesting/index.php:234 msgid "Callsign Suggestions" msgstr "Podpowiadanie znaków" -#: application/views/contesting/index.php:194 +#: application/views/contesting/index.php:241 msgid "Contest Logbook" msgstr "Log zawodów" -#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:258 #: application/views/qso/edit_ajax.php:164 msgid "VUCC Gridsquare" msgstr "" -#: application/views/continents/index.php:62 -#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 -#: application/views/view_log/qso.php:242 -msgid "Continent" -msgstr "" - #: application/views/continents/index.php:63 #: application/views/statistics/index.php:19 #: application/views/statistics/index.php:113 @@ -4732,14 +5449,15 @@ msgstr "" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:261 -#: application/views/station_profile/edit.php:314 +#: application/views/options/appearance.php:109 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 msgid "Enabled" msgstr "" -#: application/views/cron/edit.php:36 application/views/cron/index.php:53 +#: application/views/cron/edit.php:36 application/views/cron/index.php:55 msgid "Intervall" msgstr "" @@ -4789,6 +5507,7 @@ msgstr "" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "" @@ -4802,79 +5521,84 @@ msgid "" "requiring CLI access." msgstr "" -#: application/views/cron/index.php:18 +#: application/views/cron/index.php:19 msgid "" "To execute cron jobs based on the data below, remove all old cron jobs and " "create a new one:" msgstr "" -#: application/views/cron/index.php:27 application/views/cron/index.php:31 -msgid "Status Master-Cron" +#: application/views/cron/index.php:29 application/views/cron/index.php:33 +msgid "Status Master-Cron:" msgstr "" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgctxt "PHP Version" msgid "Min. Version is" msgstr "" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgid "PHP Version not supported." msgstr "" -#: application/views/cron/index.php:41 +#: application/views/cron/index.php:43 msgid "Cron List" msgstr "" -#: application/views/cron/index.php:50 +#: application/views/cron/index.php:52 #: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "" -#: application/views/cron/index.php:54 +#: application/views/cron/index.php:56 msgid "Last Run" msgstr "" -#: application/views/cron/index.php:55 +#: application/views/cron/index.php:57 msgid "Next Run" msgstr "" -#: application/views/cron/index.php:68 +#: application/views/cron/index.php:70 msgid "healthy" msgstr "" -#: application/views/cron/index.php:70 +#: application/views/cron/index.php:72 msgid "failed" msgstr "" -#: application/views/cron/index.php:75 +#: application/views/cron/index.php:74 +msgid "pending" +msgstr "" + +#: application/views/cron/index.php:79 msgid "disabled" msgstr "" -#: application/views/cron/index.php:79 application/views/cron/index.php:81 -#: application/views/cron/index.php:83 application/views/debug/index.php:494 +#: application/views/cron/index.php:83 application/views/cron/index.php:85 +#: application/views/cron/index.php:87 application/views/debug/index.php:494 #: application/views/debug/index.php:500 application/views/debug/index.php:505 #: application/views/debug/index.php:510 application/views/debug/index.php:515 #: application/views/debug/index.php:520 application/views/debug/index.php:525 +#: application/views/user/index.php:138 msgid "never" msgstr "" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:102 msgid "Your Mastercron isn't running." msgstr "" -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:103 msgid "" "Copy the cron above to a external cron service or into your server's cron to " "use this cron manager." msgstr "" -#: application/views/cron/index.php:100 +#: application/views/cron/index.php:104 msgid "" "On a basic linux server with shell access use this command to edit your " "crons:" msgstr "" -#: application/views/cron/index.php:107 +#: application/views/cron/index.php:111 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -4892,154 +5616,10 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:411 msgid "Propagation Mode" msgstr "Typ propagacji" -#: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:214 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 -msgctxt "Propagation Mode" -msgid "Aircraft Scatter" -msgstr "" - -#: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:215 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 -msgctxt "Propagation Mode" -msgid "Aurora" -msgstr "" - -#: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:216 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 -msgctxt "Propagation Mode" -msgid "Aurora-E" -msgstr "" - -#: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:217 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 -msgctxt "Propagation Mode" -msgid "Back scatter" -msgstr "" - -#: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:218 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 -msgctxt "Propagation Mode" -msgid "EchoLink" -msgstr "" - -#: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:219 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 -msgctxt "Propagation Mode" -msgid "Earth-Moon-Earth" -msgstr "" - -#: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:220 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 -msgctxt "Propagation Mode" -msgid "Sporadic E" -msgstr "" - -#: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:221 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 -msgctxt "Propagation Mode" -msgid "Field Aligned Irregularities" -msgstr "" - -#: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:222 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 -msgctxt "Propagation Mode" -msgid "F2 Reflection" -msgstr "" - -#: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:223 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 -msgctxt "Propagation Mode" -msgid "Internet-assisted" -msgstr "" - -#: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:224 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 -msgctxt "Propagation Mode" -msgid "Ionoscatter" -msgstr "" - -#: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:225 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 -msgctxt "Propagation Mode" -msgid "IRLP" -msgstr "" - -#: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:226 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 -msgctxt "Propagation Mode" -msgid "Meteor scatter" -msgstr "" - -#: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:227 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 -msgctxt "Propagation Mode" -msgid "Terrestrial or atmospheric repeater or transponder" -msgstr "" - -#: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:228 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 -msgctxt "Propagation Mode" -msgid "Rain scatter" -msgstr "" - -#: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:229 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 -msgctxt "Propagation Mode" -msgid "Satellite" -msgstr "Satelita" - -#: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:230 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 -msgctxt "Propagation Mode" -msgid "Trans-equatorial" -msgstr "" - -#: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:231 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 -msgctxt "Propagation Mode" -msgid "Tropospheric ducting" -msgstr "" - #: application/views/dashboard/index.php:5 msgid "RSTS" msgstr "" @@ -5048,30 +5628,44 @@ msgstr "" msgid "RSTR" msgstr "" -#: application/views/dashboard/index.php:56 +#: application/views/dashboard/index.php:58 msgid "" "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" msgstr "" -#: application/views/dashboard/index.php:63 +#: application/views/dashboard/index.php:65 #, php-format msgctxt "Dashboard Warning" -msgid "You need to update country files! Click %s to do it." +msgid "You need to update country files! Click %shere%s to do it." msgstr "" -#: application/views/dashboard/index.php:72 +#: application/views/dashboard/index.php:73 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station locations. Click %s to do it:" +msgid "You have no station locations. Click %shere%s to do it." msgstr "" #: application/views/dashboard/index.php:81 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station logbook. Click %s to do it:" +msgid "You have no station logbook. Click %shere%s to do it." msgstr "" -#: application/views/dashboard/index.php:91 +#: application/views/dashboard/index.php:89 +#, php-format +msgctxt "Dashboard Warning" +msgid "" +"Your active Station Location isn't linked to your Logbook. Click %shere%s to " +"do it." +msgstr "" + +#: application/views/dashboard/index.php:97 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station linked to your Logbook. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:106 #, php-format msgid "You have had %d QSO today" msgid_plural "You have had %d QSOs today" @@ -5079,55 +5673,55 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: application/views/dashboard/index.php:97 +#: application/views/dashboard/index.php:112 msgid "You have made no QSOs today; time to turn on the radio!" -msgstr "Nie zrobiłeś dziś łączności; czas włączyć radio!" +msgstr "Nie zrobiłeś dziś żadnego QSO; czas włączyć radio!" -#: application/views/dashboard/index.php:104 +#: application/views/dashboard/index.php:119 msgid "Attention: you need to set an active station location." msgstr "Uwaga: musisz ustawić aktywną lokalizacje stacji." -#: application/views/dashboard/index.php:110 +#: application/views/dashboard/index.php:125 msgid "" "You have themes without defined theme mode. Please ask the admin to edit the " "themes." msgstr "" -#: application/views/dashboard/index.php:118 +#: application/views/dashboard/index.php:133 msgid "At least one of your LoTW certificates is expired!" msgstr "" -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:139 msgid "At least one of your LoTW certificates is about to expire!" msgstr "" -#: application/views/dashboard/index.php:213 +#: application/views/dashboard/index.php:229 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "Rozkład QSO" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:252 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "Rozkład na kraje" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:269 #: application/views/visitor/index.php:275 msgid "Needed" msgstr "Wymagane" -#: application/views/dashboard/index.php:266 -#: application/views/dashboard/index.php:293 -#: application/views/dashboard/index.php:314 -#: application/views/dashboard/index.php:335 +#: application/views/dashboard/index.php:282 +#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:330 +#: application/views/dashboard/index.php:351 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:167 -#: application/views/qso/edit_ajax.php:390 -#: application/views/qso/edit_ajax.php:451 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:550 +#: application/views/qso/edit_ajax.php:417 +#: application/views/qso/edit_ajax.php:478 +#: application/views/qso/edit_ajax.php:518 application/views/qso/index.php:572 #: application/views/search/result_search.php:8 #: application/views/search/search_result_ajax.php:180 #: application/views/search/search_result_ajax.php:260 @@ -5135,91 +5729,91 @@ msgstr "Wymagane" #: application/views/search/search_result_ajax.php:332 #: application/views/search/search_result_ajax.php:362 #: application/views/statistics/custom_result.php:89 -#: application/views/view_log/partial/log_ajax.php:140 -#: application/views/view_log/partial/log_ajax.php:217 -#: application/views/view_log/partial/log_ajax.php:237 -#: application/views/view_log/partial/log_ajax.php:287 -#: application/views/view_log/partial/log_ajax.php:295 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:289 +#: application/views/view_log/partial/log_ajax.php:297 #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 -#: src/QSLManager/QSO.php:371 src/QSLManager/QSO.php:423 -#: src/QSLManager/QSO.php:459 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:270 +#: src/QSLManager/QSO.php:373 src/QSLManager/QSO.php:425 +#: src/QSLManager/QSO.php:461 msgid "Sent" msgstr "Wysłane" -#: application/views/dashboard/index.php:272 -#: application/views/dashboard/index.php:299 -#: application/views/dashboard/index.php:320 -#: application/views/dashboard/index.php:341 +#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:315 +#: application/views/dashboard/index.php:336 +#: application/views/dashboard/index.php:357 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 #: application/views/qslprint/qsolist.php:151 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:423 -#: application/views/qso/edit_ajax.php:464 -#: application/views/qso/edit_ajax.php:503 +#: application/views/qso/edit_ajax.php:450 +#: application/views/qso/edit_ajax.php:491 +#: application/views/qso/edit_ajax.php:530 #: application/views/search/search_result_ajax.php:222 #: application/views/search/search_result_ajax.php:273 #: application/views/search/search_result_ajax.php:313 #: application/views/search/search_result_ajax.php:345 #: application/views/search/search_result_ajax.php:375 -#: application/views/view_log/partial/log_ajax.php:178 -#: application/views/view_log/partial/log_ajax.php:218 -#: application/views/view_log/partial/log_ajax.php:263 -#: application/views/view_log/partial/log_ajax.php:288 -#: application/views/view_log/partial/log_ajax.php:296 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:265 +#: application/views/view_log/partial/log_ajax.php:290 +#: application/views/view_log/partial/log_ajax.php:298 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 -#: src/QSLManager/QSO.php:394 src/QSLManager/QSO.php:436 -#: src/QSLManager/QSO.php:472 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:315 +#: src/QSLManager/QSO.php:396 src/QSLManager/QSO.php:438 +#: src/QSLManager/QSO.php:474 msgid "Received" msgstr "Odebrane" -#: application/views/dashboard/index.php:278 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:388 -#: application/views/logbookadvanced/index.php:399 +#: application/views/dashboard/index.php:294 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:415 +#: application/views/logbookadvanced/index.php:426 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 -#: application/views/qso/edit_ajax.php:395 -#: application/views/qso/edit_ajax.php:428 -#: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:469 +#: application/views/qso/edit_ajax.php:422 +#: application/views/qso/edit_ajax.php:455 +#: application/views/qso/edit_ajax.php:483 #: application/views/qso/edit_ajax.php:496 -#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:555 +#: application/views/qso/edit_ajax.php:523 +#: application/views/qso/edit_ajax.php:535 application/views/qso/index.php:577 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 -#: application/views/view_log/partial/log_ajax.php:146 -#: application/views/view_log/partial/log_ajax.php:184 -#: application/views/view_log/partial/log_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:273 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 -#: src/QSLManager/QSO.php:319 src/QSLManager/QSO.php:379 -#: src/QSLManager/QSO.php:402 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +#: application/views/view_log/partial/log_ajax.php:249 +#: application/views/view_log/partial/log_ajax.php:275 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:276 +#: src/QSLManager/QSO.php:321 src/QSLManager/QSO.php:381 +#: src/QSLManager/QSO.php:404 msgid "Requested" msgstr "Poproszone" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:304 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:351 +#: application/views/dashboard/index.php:367 msgid "VUCC-Grids" msgstr "" #: application/views/dayswithqso/index.php:2 -#: application/views/interface_assets/header.php:146 +#: application/views/interface_assets/header.php:148 msgid "Days with QSOs" msgstr "" @@ -5248,7 +5842,7 @@ msgstr "" #: application/views/dayswithqso/index.php:58 #: application/views/dayswithqso/index.php:86 #: application/views/dayswithqso/index.php:108 -#: application/views/timeline/index.php:120 +#: application/views/timeline/index.php:153 msgid "End Date" msgstr "" @@ -5315,9 +5909,7 @@ msgstr "" #: application/views/debug/index.php:47 #, php-format -msgid "" -"Check this wiki article here for " -"more information." +msgid "Check this wiki article %shere%s for more information." msgstr "" #: application/views/debug/index.php:48 @@ -5336,7 +5928,7 @@ msgstr "" #: application/views/debug/index.php:62 msgid "Total QSO on this instance" -msgstr "" +msgstr "Łącznie QSO na tej instancji" #: application/views/debug/index.php:70 msgid "Server Information" @@ -5391,6 +5983,7 @@ msgstr "" #: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" +"Twoja metoda uwierzytelniania jest przestarzała i może nie być bezpieczna" #: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format @@ -5410,7 +6003,7 @@ msgstr "" #: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" -msgstr "" +msgstr "Metoda uwierzytelniania jest ustawiona prawidłowo" #: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" @@ -5461,7 +6054,7 @@ msgstr "" msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:283 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:671 msgid "Settings" msgstr "" @@ -5518,7 +6111,7 @@ msgstr "" #: application/views/debug/index.php:506 application/views/debug/index.php:511 #: application/views/debug/index.php:516 application/views/debug/index.php:521 #: application/views/debug/index.php:526 -#: application/views/station_profile/edit.php:22 +#: application/views/station_profile/edit.php:49 msgid "Update" msgstr "" @@ -5561,9 +6154,8 @@ msgstr[2] "" #: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:57 -#: application/views/station_profile/edit.php:46 -#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" @@ -5591,69 +6183,93 @@ msgid "Everything ok" msgstr "" #: application/views/debug/index.php:629 -msgid "Bulgarian" +msgid "Albanian" msgstr "" #: application/views/debug/index.php:630 -msgid "Chinese (Simplified)" +msgid "Bosnian" msgstr "" #: application/views/debug/index.php:631 -msgid "Czech" +msgid "Bulgarian" msgstr "" #: application/views/debug/index.php:632 -msgid "Dutch" +msgid "Chinese (Simplified)" msgstr "" #: application/views/debug/index.php:633 -msgid "English" +msgid "Croatian" msgstr "" #: application/views/debug/index.php:634 -msgid "Finnish" +msgid "Czech" msgstr "" #: application/views/debug/index.php:635 -msgid "French" +msgid "Dutch" msgstr "" #: application/views/debug/index.php:636 -msgid "German" +msgid "English" msgstr "" #: application/views/debug/index.php:637 -msgid "Greek" +msgid "Finnish" msgstr "" #: application/views/debug/index.php:638 -msgid "Italian" +msgid "French" msgstr "" #: application/views/debug/index.php:639 -msgid "Polish" +msgid "German" msgstr "" #: application/views/debug/index.php:640 -msgid "Portuguese" +msgid "Greek" msgstr "" #: application/views/debug/index.php:641 -msgid "Russian" +msgid "Italian" msgstr "" #: application/views/debug/index.php:642 -msgid "Spanish" +msgid "Montenegrin" msgstr "" #: application/views/debug/index.php:643 -msgid "Swedish" +msgid "Polish" msgstr "" #: application/views/debug/index.php:644 +msgid "Portuguese" +msgstr "" + +#: application/views/debug/index.php:645 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:646 +msgid "Serbian" +msgstr "" + +#: application/views/debug/index.php:647 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:648 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:649 msgid "Turkish" msgstr "" +#: application/views/distancerecords/index.php:4 +msgid "This page lists distance records per satellite based on gridsquares." +msgstr "" + #: application/views/distances/index.php:7 #: application/views/interface_assets/footer.php:30 #: application/views/simplefle/index.php:68 @@ -5661,7 +6277,8 @@ msgid "QSO Data" msgstr "" #: application/views/distances/index.php:9 -msgid "contacts were plotted.
Your furthest contact was with" +#, php-format +msgid "contacts were plotted.%s Your furthest contact was with" msgstr "" #: application/views/distances/index.php:10 @@ -5682,7 +6299,7 @@ msgstr "" #: application/views/dxatlas/index.php:3 msgid "DX Atlas Export" -msgstr "" +msgstr "Eksport DX Atlas" #: application/views/dxatlas/index.php:7 msgid "" @@ -5692,7 +6309,7 @@ msgstr "" #: application/views/dxatlas/index.php:11 application/views/kml/index.php:11 msgid "Only QSOs with a gridsquare defined will be exported!" -msgstr "" +msgstr "Tylko QSO ze zdefiniowanym lokatorem zostaną wyeksportowane!" #: application/views/dxcalendar/index.php:9 msgid "Date from" @@ -5703,7 +6320,7 @@ msgid "Date to" msgstr "" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:366 +#: application/views/view_log/qso.php:369 msgid "QSL Info" msgstr "" @@ -5729,7 +6346,7 @@ msgstr "" #: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 #: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 #: application/views/eqsl/tools.php:15 -#: application/views/interface_assets/header.php:243 +#: application/views/interface_assets/header.php:247 msgid "Tools" msgstr "" @@ -5869,27 +6486,15 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2324 -#: application/views/interface_assets/footer.php:2342 -#: application/views/interface_assets/footer.php:2363 -#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2338 +#: application/views/interface_assets/footer.php:2356 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 #: application/views/qslcard/index.php:66 -#: application/views/view_log/qso.php:614 +#: application/views/view_log/qso.php:617 msgid "View" msgstr "" -#: application/views/gridmap/index.php:38 -#: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:604 -#: application/views/logbookadvanced/useroptions.php:118 -msgid "Propagation" -msgstr "" - -#: application/views/gridmap/index.php:42 -msgid "None/Empty" -msgstr "" - #: application/views/gridmap/index.php:43 msgid "All except SAT" msgstr "" @@ -5985,8 +6590,8 @@ msgstr "" #: application/views/interface_assets/footer.php:31 #: application/views/search/search_result_ajax.php:404 #: application/views/view_log/partial/log.php:135 -#: application/views/view_log/partial/log_ajax.php:318 -#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log_ajax.php:320 +#: application/views/view_log/qso.php:437 msgid "Edit QSO" msgstr "Edytuj QSO" @@ -5994,171 +6599,192 @@ msgstr "Edytuj QSO" msgid "Attention" msgstr "" -#: application/views/interface_assets/footer.php:36 -msgid "OK" -msgstr "" - -#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/footer.php:38 msgid "Warning! Are you sure you want delete QSO with " msgstr "" -#: application/views/interface_assets/footer.php:38 +#: application/views/interface_assets/footer.php:39 #: application/views/user/edit.php:493 msgid "Colors" msgstr "" -#: application/views/interface_assets/footer.php:40 +#: application/views/interface_assets/footer.php:41 msgid "Worked not confirmed" msgstr "" -#: application/views/interface_assets/footer.php:41 +#: application/views/interface_assets/footer.php:42 msgid "Not worked" msgstr "" -#: application/views/interface_assets/footer.php:44 -#: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/interface_assets/footer.php:46 +#: application/views/qso/index.php:623 +#: application/views/visitor/layout/footer.php:246 msgid "Clear" -msgstr "" +msgstr "Wyczyść" -#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:47 #: application/views/qso/edit_ajax.php:211 -#: application/views/qso/edit_ajax.php:512 +#: application/views/qso/edit_ajax.php:539 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "" -#: application/views/interface_assets/footer.php:127 -#: application/views/interface_assets/header.php:434 -#: application/views/options/sidebar.php:11 -msgid "Version Info" +#: application/views/interface_assets/footer.php:48 +msgid "No states for this DXCC available" msgstr "" -#: application/views/interface_assets/footer.php:392 +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "" + +#: application/views/interface_assets/footer.php:132 +#: application/views/interface_assets/header.php:440 +#: application/views/options/sidebar.php:11 +msgid "Version Info" +msgstr "Informacje o wersji" + +#: application/views/interface_assets/footer.php:398 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:395 +#: application/views/interface_assets/footer.php:401 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:411 +#: application/views/interface_assets/footer.php:417 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:413 +#: application/views/interface_assets/footer.php:419 #: application/views/search/filter.php:46 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:415 +#: application/views/interface_assets/footer.php:421 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:420 +#: application/views/interface_assets/footer.php:426 #: application/views/search/filter.php:60 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:432 -#: application/views/interface_assets/footer.php:561 -#: application/views/interface_assets/footer.php:625 +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:437 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:458 -#: application/views/interface_assets/footer.php:589 +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 #: application/views/search/filter.php:79 msgid "Export to ADIF" -msgstr "" +msgstr "Eksport do ADIF" -#: application/views/interface_assets/footer.php:496 +#: application/views/interface_assets/footer.php:502 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:516 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:519 +#: application/views/interface_assets/footer.php:525 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:545 +#: application/views/interface_assets/footer.php:551 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:549 +#: application/views/interface_assets/footer.php:555 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:678 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1156 -#, php-format -msgid "You're not logged it. Please login" +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:533 +msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:1362 -#: application/views/interface_assets/footer.php:1366 -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1506 -#: application/views/interface_assets/footer.php:1510 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:731 +msgid "Count: " +msgstr "" + +#: application/views/interface_assets/footer.php:732 +msgid "Grids: " +msgstr "" + +#: application/views/interface_assets/footer.php:1167 +#, php-format +msgid "You're not logged in. Please %slogin%s" +msgstr "" + +#: application/views/interface_assets/footer.php:1375 +#: application/views/interface_assets/footer.php:1379 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1523 +#: application/views/interface_assets/footer.php:1526 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1526 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2100 +#: application/views/interface_assets/footer.php:2114 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2120 +#: application/views/interface_assets/footer.php:2134 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2160 +#: application/views/interface_assets/footer.php:2174 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2162 +#: application/views/interface_assets/footer.php:2176 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2335 -#: application/views/interface_assets/footer.php:2374 -#: application/views/view_log/qso.php:604 +#: application/views/interface_assets/footer.php:2349 +#: application/views/interface_assets/footer.php:2388 +#: application/views/view_log/qso.php:607 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2354 +#: application/views/interface_assets/footer.php:2368 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2392 +#: application/views/interface_assets/footer.php:2406 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2403 -#: application/views/interface_assets/footer.php:2428 +#: application/views/interface_assets/footer.php:2417 +#: application/views/interface_assets/footer.php:2442 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2439 +#: application/views/interface_assets/footer.php:2453 msgid "Something went wrong. Please try again!" msgstr "" @@ -6176,15 +6802,15 @@ msgstr "" #: application/views/interface_assets/header.php:101 msgid "Advanced" -msgstr "" +msgstr "Zaawansowane" #: application/views/interface_assets/header.php:104 msgid "View QSL Cards" -msgstr "" +msgstr "Wyświetl karty QSL" #: application/views/interface_assets/header.php:107 msgid "View eQSL Cards" -msgstr "" +msgstr "Wyświetl karty eQSL" #: application/views/interface_assets/header.php:115 msgid "Live QSO" @@ -6214,91 +6840,91 @@ msgstr "" msgid "Activated Gridsquares" msgstr "" -#: application/views/interface_assets/header.php:160 +#: application/views/interface_assets/header.php:162 msgid "International" -msgstr "" +msgstr "Międzynarodowe" -#: application/views/interface_assets/header.php:166 +#: application/views/interface_assets/header.php:168 msgid "ITU" msgstr "" -#: application/views/interface_assets/header.php:186 +#: application/views/interface_assets/header.php:190 msgid "Canada" -msgstr "" - -#: application/views/interface_assets/header.php:192 -msgid "Germany" -msgstr "" +msgstr "Kanada" #: application/views/interface_assets/header.php:196 +msgid "Germany" +msgstr "Niemcy" + +#: application/views/interface_assets/header.php:200 msgid "DL Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:200 +#: application/views/interface_assets/header.php:204 msgid "Great Britain" -msgstr "" +msgstr "Wielka Brytania" -#: application/views/interface_assets/header.php:202 +#: application/views/interface_assets/header.php:206 msgid "WAB" msgstr "" -#: application/views/interface_assets/header.php:206 +#: application/views/interface_assets/header.php:210 msgid "Japan" -msgstr "" +msgstr "Japonia" -#: application/views/interface_assets/header.php:212 +#: application/views/interface_assets/header.php:216 msgid "JA Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:216 +#: application/views/interface_assets/header.php:220 msgid "Luxemburg" -msgstr "" +msgstr "Luksemburg" -#: application/views/interface_assets/header.php:218 +#: application/views/interface_assets/header.php:222 msgid "LX Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:222 +#: application/views/interface_assets/header.php:226 msgid "Switzerland" -msgstr "" +msgstr "Szwajcaria" -#: application/views/interface_assets/header.php:228 +#: application/views/interface_assets/header.php:232 msgid "USA" -msgstr "" +msgstr "USA" -#: application/views/interface_assets/header.php:234 +#: application/views/interface_assets/header.php:238 msgid "US Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:251 +#: application/views/interface_assets/header.php:255 msgid "Bandmap" msgstr "" -#: application/views/interface_assets/header.php:253 +#: application/views/interface_assets/header.php:257 msgid "SAT Timers" msgstr "" -#: application/views/interface_assets/header.php:256 +#: application/views/interface_assets/header.php:260 msgid "Satellite Flightpath" msgstr "" -#: application/views/interface_assets/header.php:258 +#: application/views/interface_assets/header.php:262 msgid "Satellite Pass" msgstr "" -#: application/views/interface_assets/header.php:265 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:269 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:274 msgid "Global Options" -msgstr "" +msgstr "Ustawienia globalne" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:280 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:11 +#: application/views/satellite/pass.php:495 #: application/views/statistics/custom.php:20 #: application/views/statistics/custom_result.php:21 #: application/views/statistics/index.php:39 @@ -6306,85 +6932,89 @@ msgstr "" msgid "Satellites" msgstr "" -#: application/views/interface_assets/header.php:282 +#: application/views/interface_assets/header.php:286 msgid "Update Country Files" msgstr "" -#: application/views/interface_assets/header.php:286 +#: application/views/interface_assets/header.php:290 msgid "Debug Information" msgstr "" -#: application/views/interface_assets/header.php:333 +#: application/views/interface_assets/header.php:337 msgid "Add/Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:335 +#: application/views/interface_assets/header.php:339 msgid "Log" msgstr "" -#: application/views/interface_assets/header.php:342 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:346 +#: application/views/logbookadvanced/index.php:474 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Search Callsign" -msgstr "" +msgstr "Wyszukaj znak wywoławczy" -#: application/views/interface_assets/header.php:371 +#: application/views/interface_assets/header.php:375 #: application/views/user/edit.php:49 msgid "Account" msgstr "" -#: application/views/interface_assets/header.php:386 +#: application/views/interface_assets/header.php:390 msgid "Other Export Options" -msgstr "" +msgstr "Inne opcje eksportu" -#: application/views/interface_assets/header.php:394 +#: application/views/interface_assets/header.php:398 msgid "Cabrillo Export" -msgstr "" +msgstr "Eksport Cabrillo" -#: application/views/interface_assets/header.php:418 +#: application/views/interface_assets/header.php:400 +msgid "EDI Export" +msgstr "Eksport EDI" + +#: application/views/interface_assets/header.php:424 msgid "QSL Queue" msgstr "" -#: application/views/interface_assets/header.php:419 +#: application/views/interface_assets/header.php:425 msgid "Labels" msgstr "" -#: application/views/interface_assets/header.php:421 +#: application/views/interface_assets/header.php:427 msgid "Third-Party Services" msgstr "" -#: application/views/interface_assets/header.php:424 +#: application/views/interface_assets/header.php:430 msgid "eQSL Import / Export" -msgstr "" +msgstr "Import / Eksport eQSL" -#: application/views/interface_assets/header.php:425 +#: application/views/interface_assets/header.php:431 msgid "HRDLog Logbook" msgstr "" -#: application/views/interface_assets/header.php:435 +#: application/views/interface_assets/header.php:441 msgid "Help" -msgstr "" +msgstr "Pomoc" -#: application/views/interface_assets/header.php:436 +#: application/views/interface_assets/header.php:442 msgid "Forum" msgstr "" -#: application/views/interface_assets/header.php:438 +#: application/views/interface_assets/header.php:444 msgid "Logout" -msgstr "" +msgstr "Wyloguj się" -#: application/views/interface_assets/header.php:446 +#: application/views/interface_assets/header.php:452 msgid "Select a Location" msgstr "" -#: application/views/interface_assets/header.php:525 +#: application/views/interface_assets/header.php:531 msgid "Extras" msgstr "" #: application/views/kml/index.php:7 msgid "Export your logbook to a KML file for use in Google Earth." -msgstr "" +msgstr "Eksportuj log do pliku KML do użycia w Google Earth." #: application/views/labels/create.php:24 msgid "" @@ -6649,86 +7279,122 @@ msgid "Start printing at?" msgstr "" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:405 -#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" -#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/edit.php:23 msgid "LoTW Sent" msgstr "" -#: application/views/logbookadvanced/edit.php:23 +#: application/views/logbookadvanced/edit.php:24 msgid "LoTW Received" msgstr "" -#: application/views/logbookadvanced/edit.php:73 +#: application/views/logbookadvanced/edit.php:75 msgid "SAT Mode" msgstr "" -#: application/views/logbookadvanced/edit.php:87 +#: application/views/logbookadvanced/edit.php:89 msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:174 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:144 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:148 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:152 +#: application/views/logbookadvanced/index.php:569 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:148 +#: application/views/logbookadvanced/index.php:159 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:224 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:540 +msgid "Invalid" +msgstr "" + +#: application/views/logbookadvanced/index.php:324 msgid "QSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:375 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:397 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:439 #: application/views/lookup/lotwuser.php:12 -#: application/views/qso/edit_ajax.php:394 -#: application/views/qso/edit_ajax.php:427 -#: application/views/qso/edit_ajax.php:455 -#: application/views/qso/edit_ajax.php:468 +#: application/views/qso/edit_ajax.php:421 +#: application/views/qso/edit_ajax.php:454 +#: application/views/qso/edit_ajax.php:482 #: application/views/qso/edit_ajax.php:495 -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 +#: application/views/qso/edit_ajax.php:522 +#: application/views/qso/edit_ajax.php:534 application/views/qso/index.php:576 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:209 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:236 -#: application/views/station_profile/create.php:275 -#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 #: application/views/station_profile/create.php:293 -#: application/views/station_profile/edit.php:330 -#: application/views/station_profile/edit.php:338 -#: application/views/station_profile/edit.php:364 -#: application/views/station_profile/edit.php:385 -#: application/views/station_profile/edit.php:403 -#: application/views/station_profile/edit.php:410 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 +#: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 #: application/views/user/edit.php:347 application/views/user/edit.php:358 #: application/views/user/edit.php:369 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:399 @@ -6738,35 +7404,35 @@ msgstr "" msgid "Yes" msgstr "Tak" -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 -#: application/views/logbookadvanced/index.php:376 -#: application/views/logbookadvanced/index.php:387 -#: application/views/logbookadvanced/index.php:398 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:440 #: application/views/lookup/lotwuser.php:14 -#: application/views/qso/edit_ajax.php:393 -#: application/views/qso/edit_ajax.php:426 -#: application/views/qso/edit_ajax.php:454 -#: application/views/qso/edit_ajax.php:467 +#: application/views/qso/edit_ajax.php:420 +#: application/views/qso/edit_ajax.php:453 +#: application/views/qso/edit_ajax.php:481 #: application/views/qso/edit_ajax.php:494 -#: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 +#: application/views/qso/edit_ajax.php:521 +#: application/views/qso/edit_ajax.php:533 application/views/qso/index.php:575 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:210 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:237 -#: application/views/station_profile/create.php:276 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/create.php:292 -#: application/views/station_profile/edit.php:331 -#: application/views/station_profile/edit.php:339 -#: application/views/station_profile/edit.php:365 -#: application/views/station_profile/edit.php:386 -#: application/views/station_profile/edit.php:404 -#: application/views/station_profile/edit.php:411 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 #: application/views/user/edit.php:348 application/views/user/edit.php:359 #: application/views/user/edit.php:370 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:400 @@ -6777,32 +7443,32 @@ msgstr "Tak" msgid "No" msgstr "Nie" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 -#: application/views/logbookadvanced/index.php:389 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:416 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 -#: application/views/qso/edit_ajax.php:396 -#: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:497 application/views/qso/index.php:556 +#: application/views/qso/edit_ajax.php:423 +#: application/views/qso/edit_ajax.php:484 +#: application/views/qso/edit_ajax.php:524 application/views/qso/index.php:578 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:225 -#: application/views/view_log/partial/log_ajax.php:143 -#: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +#: src/QSLManager/QSO.php:273 src/QSLManager/QSO.php:318 msgid "Queued" msgstr "" -#: application/views/logbookadvanced/index.php:304 -#: application/views/logbookadvanced/index.php:314 -#: application/views/logbookadvanced/index.php:346 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:368 -#: application/views/logbookadvanced/index.php:378 -#: application/views/logbookadvanced/index.php:390 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:373 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:417 +#: application/views/logbookadvanced/index.php:427 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6810,42 +7476,42 @@ msgstr "" #: application/views/qslprint/qsolist.php:109 #: application/views/qslprint/qsolist.php:174 #: application/views/qslprint/qsolist.php:189 -#: application/views/qso/edit_ajax.php:397 -#: application/views/qso/edit_ajax.php:429 -#: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:470 -#: application/views/qso/edit_ajax.php:498 -#: application/views/qso/edit_ajax.php:509 application/views/qso/index.php:557 +#: application/views/qso/edit_ajax.php:424 +#: application/views/qso/edit_ajax.php:456 +#: application/views/qso/edit_ajax.php:485 +#: application/views/qso/edit_ajax.php:497 +#: application/views/qso/edit_ajax.php:525 +#: application/views/qso/edit_ajax.php:536 application/views/qso/index.php:579 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/search/search_result_ajax.php:305 #: application/views/search/search_result_ajax.php:320 -#: application/views/view_log/partial/log_ajax.php:149 -#: application/views/view_log/partial/log_ajax.php:187 -#: application/views/view_log/partial/log_ajax.php:242 -#: application/views/view_log/partial/log_ajax.php:268 -#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 -#: src/QSLManager/QSO.php:375 src/QSLManager/QSO.php:398 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +#: application/views/view_log/partial/log_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:270 +#: src/QSLManager/QSO.php:279 src/QSLManager/QSO.php:324 +#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:400 msgid "Invalid (Ignore)" msgstr "" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:335 msgid "QSL received" msgstr "" -#: application/views/logbookadvanced/index.php:315 -#: application/views/logbookadvanced/index.php:357 -#: application/views/logbookadvanced/index.php:379 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:428 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:346 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:359 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6854,268 +7520,264 @@ msgstr "" #: application/views/qslprint/qsolist.php:77 #: application/views/qslprint/qsolist.php:119 #: application/views/qslprint/qsolist.php:210 -#: application/views/qso/edit_ajax.php:408 -#: application/views/qso/edit_ajax.php:441 application/views/qso/index.php:568 +#: application/views/qso/edit_ajax.php:435 +#: application/views/qso/edit_ajax.php:468 application/views/qso/index.php:590 #: application/views/search/search_result_ajax.php:199 #: application/views/search/search_result_ajax.php:241 -#: application/views/view_log/partial/log_ajax.php:162 -#: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +#: src/QSLManager/QSO.php:296 src/QSLManager/QSO.php:339 msgid "Bureau" msgstr "Biuro" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:360 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 #: application/views/qslprint/qsolist.php:80 #: application/views/qslprint/qsolist.php:122 #: application/views/qslprint/qsolist.php:211 -#: application/views/qso/edit_ajax.php:407 -#: application/views/qso/edit_ajax.php:440 application/views/qso/index.php:567 +#: application/views/qso/edit_ajax.php:434 +#: application/views/qso/edit_ajax.php:467 application/views/qso/index.php:589 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 -#: application/views/view_log/partial/log_ajax.php:165 -#: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +#: src/QSLManager/QSO.php:299 src/QSLManager/QSO.php:342 msgid "Direct" msgstr "" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 #: application/views/qslprint/qsolist.php:86 #: application/views/qslprint/qsolist.php:128 #: application/views/qslprint/qsolist.php:212 -#: application/views/qso/edit_ajax.php:409 -#: application/views/qso/edit_ajax.php:442 application/views/qso/index.php:569 +#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:591 #: application/views/search/search_result_ajax.php:208 #: application/views/search/search_result_ajax.php:250 -#: application/views/view_log/partial/log_ajax.php:171 -#: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +#: src/QSLManager/QSO.php:305 src/QSLManager/QSO.php:348 msgid "Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:362 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 -#: application/views/qso/edit_ajax.php:410 -#: application/views/qso/edit_ajax.php:443 application/views/qso/index.php:570 +#: application/views/qso/edit_ajax.php:437 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:592 #: application/views/search/search_result_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:206 +#: application/views/view_log/partial/log_ajax.php:208 msgid "Manager" msgstr "" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:356 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:366 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:377 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:388 msgid "Clublog sent" msgstr "" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:399 msgid "Clublog received" msgstr "" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:410 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:436 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:448 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" -#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:451 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:425 -#: application/views/qso/edit_ajax.php:595 +#: application/views/logbookadvanced/index.php:452 +#: application/views/qso/edit_ajax.php:622 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:453 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:454 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:456 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:457 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:459 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:460 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:462 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:463 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:465 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:466 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:472 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:477 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:480 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:486 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:492 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:495 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:498 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:501 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:507 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:516 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:518 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:527 #: application/views/qso/index.php:272 -#: application/views/station_profile/edit.php:65 +#: application/views/station_profile/edit.php:92 msgid "Location" msgstr "Lokalizacja" -#: application/views/logbookadvanced/index.php:506 -msgid "Callsign: " -msgstr "" - -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:539 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:547 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:605 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:650 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -7143,41 +7805,15 @@ msgstr "" msgid "Column" msgstr "" -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/useroptions.php:152 msgctxt "Map Options" msgid "Layer" msgstr "" -#: application/views/logbookadvanced/useroptions.php:149 +#: application/views/logbookadvanced/useroptions.php:153 msgid "Default on" msgstr "" -#: application/views/logbookadvanced/useroptions.php:154 -#: application/views/stationsetup/exportmapoptions.php:23 -msgctxt "Map Options" -msgid "Path lines" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:158 -msgctxt "Map Options" -msgid "Gridsquares" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:162 -msgctxt "Map Options" -msgid "CQ Zones" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:166 -msgctxt "Map Options" -msgid "ITU Zones" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:170 -msgctxt "Map Options" -msgid "Night Shadow" -msgstr "" - #: application/views/lookup/index.php:8 msgid "US State" msgstr "" @@ -7282,58 +7918,62 @@ msgstr "Dostępne certyfikaty" msgid "Upload Certificate" msgstr "Wyślij certyfikat" -#: application/views/lotw_views/index.php:41 +#: application/views/lotw_views/index.php:37 msgid "QSO Start Date" msgstr "" -#: application/views/lotw_views/index.php:42 +#: application/views/lotw_views/index.php:38 msgid "QSO End Date" msgstr "" -#: application/views/lotw_views/index.php:43 +#: application/views/lotw_views/index.php:39 msgid "Date Created" msgstr "Data utworzenia" -#: application/views/lotw_views/index.php:44 +#: application/views/lotw_views/index.php:40 msgid "Date Expires" msgstr "Data wygaśnięcia" -#: application/views/lotw_views/index.php:46 -#: application/views/view_log/qso.php:404 +#: application/views/lotw_views/index.php:42 +#: application/views/view_log/qso.php:407 msgid "Last Upload" msgstr "Last upload" -#: application/views/lotw_views/index.php:91 +#: application/views/lotw_views/index.php:87 msgid "Expired" msgstr "wygaśnięty" -#: application/views/lotw_views/index.php:93 +#: application/views/lotw_views/index.php:89 msgid "Expiring" msgstr "" -#: application/views/lotw_views/index.php:105 +#: application/views/lotw_views/index.php:91 +msgid "Valid" +msgstr "Ważny" + +#: application/views/lotw_views/index.php:101 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:108 +#: application/views/lotw_views/index.php:104 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:114 +#: application/views/lotw_views/index.php:110 msgid "Not Synced" msgstr "Nie zsynchronizowany" -#: application/views/lotw_views/index.php:129 +#: application/views/lotw_views/index.php:125 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "Musisz wysłać certyfikat .p12 aby używać tych pól" -#: application/views/lotw_views/index.php:144 +#: application/views/lotw_views/index.php:140 msgid "Information" msgstr "Informacje" -#: application/views/lotw_views/index.php:149 +#: application/views/lotw_views/index.php:145 msgid "Manual Sync" msgstr "Ręczna synchronizacja" @@ -7399,7 +8039,7 @@ msgstr "" #: application/views/mode/create.php:54 msgid "Create mode" -msgstr "" +msgstr "Dodaj emisję" #: application/views/mode/edit.php:67 msgid "Update mode" @@ -7495,11 +8135,12 @@ msgstr "" #: application/views/options/appearance.php:39 #: application/views/user/edit.php:157 msgid "Theme" -msgstr "" +msgstr "Motyw" #: application/views/options/appearance.php:51 msgid "Global Theme Choice, this is used when users arent logged in." msgstr "" +"Globalne ustawienie motywu - używane, kiedy użytkownicy nie są zalogowani." #: application/views/options/appearance.php:61 msgid "Dashboard Notification Banner" @@ -7548,6 +8189,14 @@ msgstr "" msgid "This enables the button to Wavelog's Github page in the public view" msgstr "" +#: application/views/options/appearance.php:107 +msgid "Public Login Button" +msgstr "" + +#: application/views/options/appearance.php:112 +msgid "This enables the button to login to Wavelog in the public view" +msgstr "" + #: application/views/options/dxcluster.php:38 msgid "Provider of DXClusterCache" msgstr "" @@ -7845,7 +8494,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:64 #: application/views/oqrs/showrequests.php:87 -#: application/views/user/main.php:48 application/views/user/profile.php:24 +#: application/views/user/index.php:48 application/views/user/profile.php:24 msgid "E-mail" msgstr "" @@ -7868,21 +8517,21 @@ msgstr "" #: application/views/search/search_result_ajax.php:127 #: application/views/user/edit.php:478 #: application/views/view_log/partial/log.php:22 -#: application/views/view_log/partial/log_ajax.php:86 -#: application/views/view_log/qso.php:503 -#: application/views/view_log/qso.php:507 -#: application/views/view_log/qso.php:511 -#: application/views/view_log/qso.php:515 -#: application/views/view_log/qso.php:521 -#: application/views/view_log/qso.php:528 -#: application/views/view_log/qso.php:535 -#: application/views/view_log/qso.php:542 -#: application/views/view_log/qso.php:549 -#: application/views/view_log/qso.php:556 -#: application/views/view_log/qso.php:563 -#: application/views/view_log/qso.php:570 -#: application/views/view_log/qso.php:577 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log_ajax.php:88 +#: application/views/view_log/qso.php:506 +#: application/views/view_log/qso.php:510 +#: application/views/view_log/qso.php:514 +#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:531 +#: application/views/view_log/qso.php:538 +#: application/views/view_log/qso.php:545 +#: application/views/view_log/qso.php:552 +#: application/views/view_log/qso.php:559 +#: application/views/view_log/qso.php:566 +#: application/views/view_log/qso.php:573 +#: application/views/view_log/qso.php:580 +#: application/views/view_log/qso.php:585 msgid "Station" msgstr "Stacja" @@ -7890,10 +8539,10 @@ msgstr "Stacja" #: application/views/qslprint/qslprint.php:28 #: application/views/qslprint/qsolist.php:14 #: application/views/qslprint/qsolist.php:83 -#: application/views/qso/index.php:576 +#: application/views/qso/index.php:598 #: application/views/search/search_result_ajax.php:205 -#: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:300 +#: application/views/view_log/partial/log_ajax.php:170 +#: src/QSLManager/QSO.php:302 msgid "Via" msgstr "" @@ -8124,7 +8773,7 @@ msgid "Remove" msgstr "" #: application/views/qslprint/qslprint.php:33 -#: application/views/simplefle/index.php:133 +#: application/views/simplefle/index.php:139 msgid "QSO List" msgstr "" @@ -8138,7 +8787,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:71 msgid "Export CSV-file" -msgstr "" +msgstr "Eksportuj plik CSV" #: application/views/qslprint/qslprint.php:71 msgid "Export requested QSLs to CSV-file" @@ -8146,7 +8795,7 @@ msgstr "" #: application/views/qslprint/qslprint.php:73 msgid "Export ADIF" -msgstr "" +msgstr "Eksport ADIF" #: application/views/qslprint/qslprint.php:73 msgid "Export requested QSLs to ADIF-file" @@ -8170,35 +8819,20 @@ msgid "" "queue." msgstr "" -#: application/views/qso/components/winkeysettings.php:7 -#: application/views/qso/components/winkeysettings_results.php:7 -msgid "Winkey Macros" -msgstr "" - -#: application/views/qso/components/winkeysettings.php:12 -#: application/views/qso/components/winkeysettings.php:28 -#: application/views/qso/components/winkeysettings.php:44 -#: application/views/qso/components/winkeysettings.php:60 -#: application/views/qso/components/winkeysettings.php:76 -#: application/views/qso/components/winkeysettings_results.php:12 -#: application/views/qso/components/winkeysettings_results.php:28 -#: application/views/qso/components/winkeysettings_results.php:44 -#: application/views/qso/components/winkeysettings_results.php:60 -#: application/views/qso/components/winkeysettings_results.php:76 -#, php-format -msgid "Function %d - Name" -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:83 -#: application/views/qso/components/winkeysettings_results.php:19 -#: application/views/qso/components/winkeysettings_results.php:35 -#: application/views/qso/components/winkeysettings_results.php:51 -#: application/views/qso/components/winkeysettings_results.php:67 -#: application/views/qso/components/winkeysettings_results.php:83 +#, 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 #, php-format msgid "Function %d - Macro" msgstr "" @@ -8224,7 +8858,8 @@ msgid "RX Band" msgstr "" #: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:346 -#: application/views/view_log/qso.php:542 +#: application/views/reg1test/index.php:114 +#: application/views/view_log/qso.php:545 msgid "Transmit Power (W)" msgstr "Moc nadajnika (W)" @@ -8236,10 +8871,6 @@ msgstr "Wpisz wartość mocy w watach. W polu podaj same cyfry." msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:177 -msgid "QTH" -msgstr "" - #: application/views/qso/edit_ajax.php:258 msgid "Sat Name" msgstr "" @@ -8248,69 +8879,85 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:356 application/views/qso/index.php:255 -#: application/views/qso/index.php:500 application/views/user/edit.php:599 -#: application/views/view_log/qso.php:332 -#: application/views/view_log/qso.php:582 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:545 +msgid "Antenna Azimuth (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:547 +msgid "Antenna azimuth in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:274 application/views/qso/index.php:551 +msgid "Antenna Elevation (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:276 application/views/qso/index.php:553 +msgid "Antenna elevation in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:383 application/views/qso/index.php:255 +#: application/views/qso/index.php:510 application/views/user/edit.php:599 +#: application/views/view_log/qso.php:335 +#: application/views/view_log/qso.php:585 msgid "Sig Info" msgstr "" -#: application/views/qso/edit_ajax.php:369 +#: application/views/qso/edit_ajax.php:396 msgid "Notes (for internal usage only)" msgstr "" -#: application/views/qso/edit_ajax.php:403 +#: application/views/qso/edit_ajax.php:430 msgid "Sent Method" msgstr "" -#: application/views/qso/edit_ajax.php:406 -#: application/views/qso/edit_ajax.php:439 application/views/qso/index.php:563 -#: application/views/qso/index.php:566 +#: application/views/qso/edit_ajax.php:433 +#: application/views/qso/edit_ajax.php:466 application/views/qso/index.php:585 +#: application/views/qso/index.php:588 msgid "Method" msgstr "Sposób" -#: application/views/qso/edit_ajax.php:416 +#: application/views/qso/edit_ajax.php:443 msgid "Sent Via" msgstr "" -#: application/views/qso/edit_ajax.php:430 -#: application/views/qso/edit_ajax.php:471 -#: application/views/qso/edit_ajax.php:510 +#: application/views/qso/edit_ajax.php:457 +#: application/views/qso/edit_ajax.php:498 +#: application/views/qso/edit_ajax.php:537 msgid "Verified (Match)" msgstr "" -#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:463 msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:477 application/views/qso/index.php:583 +#: application/views/qso/edit_ajax.php:504 application/views/qso/index.php:605 msgid "This note content is exported to QSL services like eqsl.cc." msgstr "" -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:586 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:608 msgid "Get the default message for eQSL, for this station." msgstr "" -#: application/views/qso/edit_ajax.php:530 +#: application/views/qso/edit_ajax.php:557 msgid "Change Station Profile" msgstr "" -#: application/views/qso/edit_ajax.php:576 +#: application/views/qso/edit_ajax.php:603 msgid "Exchange (R)" msgstr "" -#: application/views/qso/edit_ajax.php:581 +#: application/views/qso/edit_ajax.php:608 msgid "Exchange (S)" msgstr "" -#: application/views/qso/edit_ajax.php:593 +#: application/views/qso/edit_ajax.php:620 #: application/views/search/search_result_ajax.php:432 #: application/views/view_log/partial/log.php:156 -#: application/views/view_log/partial/log_ajax.php:346 +#: application/views/view_log/partial/log_ajax.php:348 msgid "Delete QSO" msgstr "Usuń QSO" -#: application/views/qso/edit_ajax.php:596 +#: application/views/qso/edit_ajax.php:623 msgid "Save changes" msgstr "" @@ -8318,7 +8965,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:5 application/views/qso/index.php:694 +#: application/views/qso/index.php:5 application/views/qso/index.php:718 msgid "Previous Contacts" msgstr "Poprzednie łączności" @@ -8358,23 +9005,23 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:149 -#: application/views/station_profile/edit.php:191 -#: application/views/user/edit.php:583 application/views/view_log/qso.php:282 -#: application/views/view_log/qso.php:549 +#: application/views/qso/index.php:196 application/views/qso/index.php:449 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 +#: application/views/user/edit.php:583 application/views/view_log/qso.php:285 +#: application/views/view_log/qso.php:552 msgid "IOTA Reference" msgstr "Podmiot IOTA" -#: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:165 -#: application/views/station_profile/edit.php:219 -#: application/views/user/edit.php:587 application/views/view_log/qso.php:289 -#: application/views/view_log/qso.php:556 +#: application/views/qso/index.php:212 application/views/qso/index.php:466 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 +#: application/views/user/edit.php:587 application/views/view_log/qso.php:292 +#: application/views/view_log/qso.php:559 msgid "SOTA Reference" msgstr "Podmiot SOTA" -#: application/views/qso/index.php:322 application/views/view_log/qso.php:98 +#: application/views/qso/index.php:322 application/views/view_log/qso.php:100 msgid "Frequency (RX)" msgstr "Częstotliwość (RX)" @@ -8382,66 +9029,86 @@ msgstr "Częstotliwość (RX)" msgid "Band (RX)" msgstr "Pasmo (RX)" -#: application/views/qso/index.php:458 +#: application/views/qso/index.php:468 msgid "For example: GM/NS-001." msgstr "Na przykład: GM/NS-001." -#: application/views/qso/index.php:471 +#: application/views/qso/index.php:481 msgid "For example: DLFF-0069." msgstr "Na przykład: DLFF-0069." -#: application/views/qso/index.php:484 +#: application/views/qso/index.php:494 msgid "For example: PA-0150. Multiple values allowed." msgstr "Na przykład: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:496 +#: application/views/qso/index.php:506 msgid "For example: GMA" msgstr "Na przykład: GMA" -#: application/views/qso/index.php:502 +#: application/views/qso/index.php:512 msgid "For example: DA/NW-357" msgstr "Na przykład: DA/NW-357" -#: application/views/qso/index.php:510 +#: application/views/qso/index.php:520 msgid "For example: Q03" msgstr "Na przykład: Q03" -#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +#: application/views/qso/index.php:529 application/views/view_log/qso.php:210 msgid "Satellite Name" msgstr "Nazwa satelity" -#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +#: application/views/qso/index.php:537 application/views/view_log/qso.php:217 msgid "Satellite Mode" msgstr "modulacja satelity" -#: application/views/qso/index.php:538 +#: application/views/qso/index.php:560 msgid "" "Note content is used within Wavelog only and is not exported to other " "services." msgstr "" "Notatka jest widoczna tylko w Wavelog, nie jest wysyłana z potwierdzeniami." -#: application/views/qso/index.php:604 +#: application/views/qso/index.php:626 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:645 +#: application/views/qso/index.php:667 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:647 +#: application/views/qso/index.php:669 msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:678 +msgid "Stop" +msgstr "" + +#: application/views/qso/index.php:679 +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:680 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:686 +msgid "CW Speed" +msgstr "" + +#: application/views/qso/index.php:691 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:701 msgid "Suggestions" msgstr "Sugestie" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:708 msgid "Profile Picture" msgstr "" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:732 msgid "Max. 5 previous contacts are shown" msgstr "" @@ -8472,6 +9139,137 @@ msgstr "" msgid "Please wait..." msgstr "" +#: application/views/reg1test/index.php:6 +msgid "Select Band" +msgstr "" + +#: application/views/reg1test/index.php:8 +msgid "" +"Bands below 50Mhz are not valid for the EDI REG1TEST format and will produce " +"invalid files." +msgstr "" + +#: application/views/reg1test/index.php:18 +msgid "Export a contest to a REG1TEST EDI log" +msgstr "" + +#: application/views/reg1test/index.php:48 +msgid "Sent Exchange" +msgstr "" + +#: application/views/reg1test/index.php:50 +msgid "" +"The exchange which was sent during the contest. Can be any type of " +"information, e.g. Province, DOK, County, State, Power, Name. Max. length: 6 " +"characters." +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:66 +msgid "Callsign of responsible operator" +msgstr "" + +#: application/views/reg1test/index.php:72 +msgid "" +"List of all operators. Seperated with a semicolon ';'. The responsible " +"operator is not needed here." +msgstr "" + +#: application/views/reg1test/index.php:75 +msgid "Contest Address 1" +msgstr "" + +#: application/views/reg1test/index.php:77 +msgid "Address of the QTH used during the contest." +msgstr "" + +#: application/views/reg1test/index.php:80 +msgid "Contest Address 2" +msgstr "" + +#: application/views/reg1test/index.php:84 +msgid "Operator Address 1" +msgstr "" + +#: application/views/reg1test/index.php:86 +msgid "Address of the responsible operator." +msgstr "" + +#: application/views/reg1test/index.php:89 +msgid "Operator Address 2" +msgstr "" + +#: application/views/reg1test/index.php:93 +msgid "Operator Address Postalcode" +msgstr "" + +#: application/views/reg1test/index.php:97 +msgid "Operator Address City" +msgstr "" + +#: application/views/reg1test/index.php:101 +msgid "Operator Address Country" +msgstr "" + +#: application/views/reg1test/index.php:105 +msgid "Operator Phone Number" +msgstr "" + +#: application/views/reg1test/index.php:109 +msgid "Transmit Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:111 +msgid "Short description of the used equipment." +msgstr "" + +#: application/views/reg1test/index.php:116 +msgid "TX Power during the contest in Watt." +msgstr "" + +#: application/views/reg1test/index.php:119 +msgid "Receive Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:121 +msgid "If you used another gear for RX, then describe it here." +msgstr "" + +#: application/views/reg1test/index.php:124 +msgid "Antenna Description" +msgstr "" + +#: application/views/reg1test/index.php:126 +msgid "What kind of antenna was used." +msgstr "" + +#: application/views/reg1test/index.php:129 +msgid "Antenna Height Above Ground (m)" +msgstr "" + +#: application/views/reg1test/index.php:131 +msgid "Height of the antenna above the ground." +msgstr "" + +#: application/views/reg1test/index.php:134 +msgid "Band multiplicator" +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:141 +msgid "Any other remarks." +msgstr "" + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8561,10 +9359,71 @@ msgstr "" msgid "Satellite passes" msgstr "" -#: application/views/satellite/pass.php:548 +#: application/views/satellite/pass.php:8 +msgid "Min. Satellite Elevation" +msgstr "" + +#: application/views/satellite/pass.php:12 +msgid "Min. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:20 +msgid "Max. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:32 +msgid "Altitude (meters)" +msgstr "" + +#: application/views/satellite/pass.php:36 application/views/user/edit.php:179 +msgid "Timezone" +msgstr "" + +#: application/views/satellite/pass.php:479 +msgid "Min. time" +msgstr "" + +#: application/views/satellite/pass.php:487 +msgid "Max. time" +msgstr "" + +#: application/views/satellite/pass.php:504 msgid "Load predictions" msgstr "" +#: application/views/satellite/passtable.php:6 +msgid "AOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:7 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "" + +#: application/views/satellite/passtable.php:8 +msgid "AOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:9 +msgid "AOS El" +msgstr "" + +#: application/views/satellite/passtable.php:10 +msgid "Max El" +msgstr "" + +#: application/views/satellite/passtable.php:11 +msgid "LOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:12 +msgid "LOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:13 +msgid "LOS El" +msgstr "" + #: application/views/sattimers/index.php:15 #, php-format msgid "" @@ -8585,10 +9444,6 @@ msgstr "" msgid "Max Elevation" msgstr "" -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "" - #: application/views/search/cqzones.php:5 #: application/views/search/lotw_unconfirmed.php:5 #: application/views/search/main.php:5 @@ -8695,50 +9550,50 @@ msgstr "" #: application/views/search/search_result_ajax.php:409 #: application/views/view_log/partial/log.php:140 -#: application/views/view_log/partial/log_ajax.php:323 +#: application/views/view_log/partial/log_ajax.php:325 msgid "Mark QSL Sent (Bureau)" msgstr "Zaznacz QSL jako wysłaną przez (Biuro)" #: application/views/search/search_result_ajax.php:410 #: application/views/view_log/partial/log.php:141 -#: application/views/view_log/partial/log_ajax.php:324 +#: application/views/view_log/partial/log_ajax.php:326 msgid "Mark QSL Sent (Direct)" msgstr "Zaznacz QSL jako wysłaną przez (Bezpośredni)" #: application/views/search/search_result_ajax.php:417 #: application/views/view_log/partial/log.php:148 -#: application/views/view_log/partial/log_ajax.php:333 -#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log_ajax.php:335 +#: application/views/view_log/qso.php:655 msgid "Mark QSL Received (Bureau)" msgstr "Zaznacz QSL jako odebraną przez (Biuro)" #: application/views/search/search_result_ajax.php:418 #: application/views/view_log/partial/log.php:149 -#: application/views/view_log/partial/log_ajax.php:334 -#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log_ajax.php:336 +#: application/views/view_log/qso.php:657 msgid "Mark QSL Received (Direct)" msgstr "Zaznacz QSL jako odebraną przez (Bezpośredni)" #: application/views/search/search_result_ajax.php:419 #: application/views/view_log/partial/log.php:150 -#: application/views/view_log/partial/log_ajax.php:325 +#: application/views/view_log/partial/log_ajax.php:327 msgid "Mark QSL Card Requested" msgstr "Zaznacz QSL zgodnie z żądaniem" #: application/views/search/search_result_ajax.php:420 #: application/views/view_log/partial/log.php:151 -#: application/views/view_log/partial/log_ajax.php:326 -#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log_ajax.php:328 +#: application/views/view_log/qso.php:669 msgid "Mark QSL Card Not Required" msgstr "Zaznacz QSLjako niewymagane" #: application/views/search/search_result_ajax.php:426 -#: application/views/view_log/partial/log_ajax.php:340 +#: application/views/view_log/partial/log_ajax.php:342 msgid "Lookup on QRZ.com" msgstr "" #: application/views/search/search_result_ajax.php:428 -#: application/views/view_log/partial/log_ajax.php:342 +#: application/views/view_log/partial/log_ajax.php:344 msgid "Lookup on HamQTH" msgstr "" @@ -8773,7 +9628,7 @@ msgid "" msgstr "" #: application/views/simplefle/index.php:17 -#: application/views/simplefle/index.php:170 +#: application/views/simplefle/index.php:176 msgid "Syntax Help" msgstr "" @@ -8867,8 +9722,8 @@ msgstr "" #: application/views/simplefle/index.php:107 #, php-format msgid "" -"If you did operate from a new location, first create a new Station Location" +"If you did operate from a new location, first create a new %sStation " +"Location%s" msgstr "" #: application/views/simplefle/index.php:112 @@ -8883,24 +9738,24 @@ msgstr "" msgid "Enter the Data" msgstr "" -#: application/views/simplefle/index.php:148 +#: application/views/simplefle/index.php:154 msgid "Refs" msgstr "" -#: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +#: application/views/simplefle/index.php:166 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" msgstr "" -#: application/views/simplefle/index.php:167 +#: application/views/simplefle/index.php:173 msgid "Reload QSO List" msgstr "" -#: application/views/simplefle/index.php:168 +#: application/views/simplefle/index.php:174 msgid "Save in Wavelog" msgstr "" -#: application/views/simplefle/index.php:169 +#: application/views/simplefle/index.php:175 msgid "Clear Logging Session" msgstr "" @@ -8957,122 +9812,121 @@ msgstr "" #: application/views/simplefle/syntax_help.php:28 #, php-format -msgctxt "uses 'this article'" msgid "" -"A full summary of all commands and the necessary syntax can be found in %s " -"of our Wiki." +"A full summary of all commands and the necessary syntax can be found in " +"%sthis article%s of our Wiki." msgstr "" -#: application/views/station_profile/create.php:51 -#: application/views/station_profile/edit.php:40 +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:52 -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:59 -#: application/views/station_profile/edit.php:48 +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 msgid "Station callsign. For example: 4W7EST/P" msgstr "" -#: application/views/station_profile/create.php:63 -#: application/views/station_profile/edit.php:52 +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 msgid "Station Power (W)" msgstr "" -#: application/views/station_profile/create.php:65 -#: application/views/station_profile/edit.php:54 +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" -#: application/views/station_profile/create.php:68 -#: application/views/station_profile/edit.php:69 +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 msgid "Station DXCC" msgstr "" -#: application/views/station_profile/create.php:71 -#: application/views/station_profile/edit.php:72 +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 msgctxt "DXCC selection" msgid "None" msgstr "" -#: application/views/station_profile/create.php:78 -#: application/views/station_profile/edit.php:85 +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:83 -#: application/views/station_profile/edit.php:91 +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 msgid "Station City" msgstr "" -#: application/views/station_profile/create.php:85 -#: application/views/station_profile/edit.php:93 +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:94 -#: application/views/station_profile/edit.php:105 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 msgid "Station state. Applies to certain countries only." msgstr "" -#: application/views/station_profile/create.php:99 -#: application/views/station_profile/edit.php:110 +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 msgid "Station County" msgstr "" -#: application/views/station_profile/create.php:101 -#: application/views/station_profile/edit.php:112 +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/edit.php:138 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:138 -#: application/views/station_profile/edit.php:155 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 msgid "click here" msgstr "" -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/edit.php:155 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:135 -#: application/views/station_profile/edit.php:167 -#: application/views/station_profile/edit.php:170 +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 msgid "Station Gridsquare" msgstr "" -#: application/views/station_profile/create.php:140 -#: application/views/station_profile/edit.php:175 +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 msgid "Get Gridsquare" msgstr "" -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 #, php-format msgctxt "uses 'click here'" msgid "" @@ -9080,304 +9934,250 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:145 -#: application/views/station_profile/edit.php:180 +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" -#: application/views/station_profile/create.php:160 -#: application/views/station_profile/edit.php:205 +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 msgid "Station IOTA reference. For example: EU-005" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 #, php-format msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:183 -#: application/views/station_profile/edit.php:260 +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 msgid "Signature Name" msgstr "" -#: application/views/station_profile/create.php:185 -#: application/views/station_profile/edit.php:262 +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 msgid "Station Signature (e.g. GMA).." msgstr "" -#: application/views/station_profile/create.php:189 -#: application/views/station_profile/edit.php:266 +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 msgid "Signature Information" msgstr "" -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/edit.php:268 +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "" -#: application/views/station_profile/create.php:195 -#: application/views/station_profile/edit.php:281 +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:197 -#: application/views/station_profile/edit.php:283 +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "" -#: application/views/station_profile/create.php:201 -#: application/views/station_profile/edit.php:286 +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 msgid "Default QSLMSG" msgstr "" -#: application/views/station_profile/create.php:204 -#: application/views/station_profile/edit.php:289 +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "" -#: application/views/station_profile/create.php:207 -#: application/views/station_profile/edit.php:328 +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:212 -#: application/views/station_profile/edit.php:333 +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " "Clublog. If this is deactivated on it's own please check if the Call is " "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:215 -#: application/views/station_profile/edit.php:336 +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 msgid "ClubLog Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:224 -#: application/views/station_profile/edit.php:352 +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 msgid "HRDLog.net Username" msgstr "" -#: application/views/station_profile/create.php:226 -#: application/views/station_profile/edit.php:354 +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" -#: application/views/station_profile/create.php:229 -#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 msgid "HRDLog.net API Key" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:234 -#: application/views/station_profile/edit.php:362 +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 msgid "HRDLog.net Logbook Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:243 -#: application/views/station_profile/edit.php:297 +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 msgid "Subscription Required" msgstr "" -#: application/views/station_profile/create.php:248 +#: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/edit.php:310 +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 msgid "QRZ.com Logbook Upload" msgstr "" -#: application/views/station_profile/create.php:260 -#: application/views/station_profile/edit.php:313 +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:268 -#: application/views/station_profile/edit.php:378 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:273 -#: application/views/station_profile/edit.php:383 +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 msgid "QO-100 Dx Club Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:283 -#: application/views/station_profile/edit.php:401 +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 msgid "OQRS Enabled" msgstr "" -#: application/views/station_profile/create.php:290 -#: application/views/station_profile/edit.php:408 +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 msgid "OQRS Email alert" msgstr "" -#: application/views/station_profile/create.php:295 -#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 msgid "Make sure email is set up under admin and global options." msgstr "" -#: application/views/station_profile/create.php:298 -#: application/views/station_profile/edit.php:416 +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 msgid "OQRS Text" msgstr "" -#: application/views/station_profile/create.php:300 -#: application/views/station_profile/edit.php:418 +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 msgid "Some info you want to add regarding QSL'ing." msgstr "" -#: application/views/station_profile/edit.php:122 +#: application/views/station_profile/edit.php:149 msgid "Zones" msgstr "" -#: application/views/station_profile/edit.php:257 +#: application/views/station_profile/edit.php:284 msgid "Signature" msgstr "" -#: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:95 -msgid "" -"Station Locations define operating locations, such as your QTH, a friends " -"QTH, or a portable station." -msgstr "" - -#: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:96 -msgid "Similar to logbooks, a station profile keeps a set of QSOs together." -msgstr "" - -#: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:97 -msgid "" -"Only one station may be active at a time. In the table below this is shown " -"with the -Active Station- badge." -msgstr "" - -#: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:101 -msgid "Create a Station Location" -msgstr "" - -#: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:105 -msgid "" -"Attention: You need to set an active station location. Go to Callsign-" -">Station Location to select one." -msgstr "" - -#: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:111 -msgid "" -"Due to recent changes within Wavelog you need to reassign QSOs to your " -"station profiles." -msgstr "" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Maintenance" -msgstr "" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Please reassign them at " -msgstr "" - -#: application/views/station_profile/index.php:41 -#: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:122 -msgid "Profile Name" -msgstr "" - #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "" @@ -9425,6 +10225,11 @@ msgstr "" msgid "Link Location" msgstr "" +#: application/views/stationsetup/linkedlocations.php:31 +#: application/views/stationsetup/stationsetup.php:122 +msgid "Profile Name" +msgstr "" + #: application/views/stationsetup/linkedlocations.php:34 msgid "Unlink Station Location" msgstr "" @@ -9449,12 +10254,52 @@ msgstr "" msgid "Station Locations" msgstr "" +#: application/views/stationsetup/stationsetup.php:95 +msgid "" +"Station Locations define operating locations, such as your QTH, a friends " +"QTH, or a portable station." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:96 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:97 +msgid "" +"Only one station may be active at a time. In the table below this is shown " +"with the -Active Station- badge." +msgstr "" + #: application/views/stationsetup/stationsetup.php:98 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." msgstr "" +#: application/views/stationsetup/stationsetup.php:101 +msgid "Create a Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:105 +msgid "" +"Attention: You need to set an active station location. Go to Callsign-" +">Station Location to select one." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:111 +msgid "" +"Due to recent changes within Wavelog you need to reassign QSOs to your " +"station profiles." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Maintenance" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Please reassign them at " +msgstr "" + #: application/views/stationsetup/stationsetup.php:127 msgid "Linked" msgstr "" @@ -9530,7 +10375,7 @@ msgstr "" #: application/views/themes/add.php:4 application/views/themes/edit.php:4 msgid "Theme Name" -msgstr "" +msgstr "Nazwa motywu" #: application/views/themes/add.php:6 application/views/themes/edit.php:6 msgid "This is the name that is used to display the theme in the theme list." @@ -9594,7 +10439,7 @@ msgstr "" #: application/views/themes/add.php:36 msgid "Add theme" -msgstr "" +msgstr "Dodaj motyw" #: application/views/themes/edit.php:21 msgid "" @@ -9608,7 +10453,7 @@ msgstr "" #: application/views/themes/index.php:22 msgid "Themes list" -msgstr "" +msgstr "Lista motywów" #: application/views/themes/index.php:28 msgid "" @@ -9671,9 +10516,10 @@ msgid "4. Step" msgstr "" #: application/views/themes/index.php:73 +#, php-format msgid "" "Click here on 'Add a Theme' and type in the necessary data. Type in the " -"filenames for the logos without the file extension '.png'" +"filenames for the logos %swithout%s the file extension '.png'" msgstr "" #: application/views/themes/index.php:83 @@ -9736,6 +10582,10 @@ msgstr "" msgid "Update DXCC Data" msgstr "" +#: application/views/update/index.php:30 +msgid "Status:" +msgstr "" + #: application/views/update/index.php:34 msgid "Apply DXCC Data to Logbook" msgstr "" @@ -9749,36 +10599,43 @@ msgid "" "\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." msgstr "" -#: application/views/update/index.php:40 +#: application/views/update/index.php:45 msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:54 application/views/update/index.php:95 msgid "Re-check all QSOs in logbook" msgstr "" -#: application/views/update/index.php:45 +#: application/views/update/index.php:59 msgid "Apply Continent Data to Logbook" msgstr "" -#: application/views/update/index.php:47 +#: application/views/update/index.php:61 msgid "" "This function can be used to update QSO continent information for all QSOs " "in Wavelog missing that information." msgstr "" -#: application/views/update/index.php:49 +#: application/views/update/index.php:68 msgid "Check QSOs missing continent data" msgstr "" -#: application/views/update/index.php:59 +#: application/views/update/index.php:80 msgid "Here you can update QSOs with missing distance information." msgstr "" -#: application/views/update/index.php:60 +#: application/views/update/index.php:86 msgid "Update distance data" msgstr "" +#: application/views/update/index.php:89 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" + #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "" @@ -9808,13 +10665,13 @@ msgid "General Information" msgstr "" #: application/views/user/edit.php:52 application/views/user/login.php:58 -#: application/views/user/login.php:67 application/views/user/login.php:68 +#: application/views/user/login.php:69 application/views/user/login.php:70 #: application/views/user/profile.php:14 msgid "Username" msgstr "" #: application/views/user/edit.php:64 application/views/user/login.php:59 -#: application/views/user/login.php:71 application/views/user/login.php:72 +#: application/views/user/login.php:73 application/views/user/login.php:74 #: application/views/user/reset_password.php:21 #: application/views/user/reset_password.php:23 #: application/views/user/reset_password.php:30 @@ -9857,10 +10714,6 @@ msgstr "" msgid "Choose Wavelog language." msgstr "" -#: application/views/user/edit.php:179 -msgid "Timezone" -msgstr "" - #: application/views/user/edit.php:187 msgid "Date Format" msgstr "" @@ -10071,7 +10924,7 @@ msgstr "" #: application/views/user/edit.php:630 msgid "Default Band" -msgstr "" +msgstr "Domyślne pasmo" #: application/views/user/edit.php:640 msgid "Default QSL-Methods" @@ -10194,6 +11047,126 @@ msgstr "" msgid "You can reset your password here." msgstr "" +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "Proszę czekać..." + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "Lista użytkowników" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "Wavelog wymaga przynajmniej jednego skonfigurowanego użytkownika." + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" +"Użytkownikom mogą być przypisane role, które dają im różne uprawnienia, " +"takie jak dodawanie QSO do logu i uzyskiwanie dostępu do API Waveloga." + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" +"Aktualnie zalogowany użytkownik wyświetlany jest w prawym górnym rogu każdej " +"strony." + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "Dodaj użytkownika" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "Ostatnio widziany" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "Reset hasła" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "Nigdy" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "Lokalizacje" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "Logbooki" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "Ostatnie QSO:" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "Brak QSO w Logu" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "Nazwa użytkownika:" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "Znak wywoławczy:" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "E-Mail:" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "Ostatnio widziany:" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "" @@ -10208,95 +11181,16 @@ msgstr "" #: application/views/user/login.php:60 #, php-format -msgid "" -"More Information about Wavelog on Github." +msgid "More Information about Wavelog on %sGithub%s." msgstr "" -#: application/views/user/login.php:77 +#: application/views/user/login.php:79 msgid "Forgot your password?" -msgstr "" +msgstr "Zapomniałeś hasła?" -#: application/views/user/login.php:83 +#: application/views/user/login.php:85 msgid "Keep me logged in" -msgstr "" - -#: application/views/user/main.php:2 -msgid "Do you really want to send this user a password-reset link?" -msgstr "" - -#: application/views/user/main.php:6 -msgid "Please Wait ..." -msgstr "" - -#: application/views/user/main.php:9 -msgid "Password-reset e-mail sent to user:" -msgstr "" - -#: application/views/user/main.php:30 -msgid "User List" -msgstr "" - -#: application/views/user/main.php:33 -msgid "Wavelog needs at least one user configured in order to operate." -msgstr "" - -#: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" - -#: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "" - -#: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." -msgstr "" - -#: application/views/user/main.php:38 -msgid "Create user" -msgstr "" - -#: application/views/user/main.php:39 -msgid "Refresh List" -msgstr "" - -#: application/views/user/main.php:49 -msgid "Type" -msgstr "" - -#: application/views/user/main.php:50 -msgid "Last seen" -msgstr "" - -#: application/views/user/main.php:53 -msgid "Password Reset" -msgstr "" - -#: application/views/user/main.php:79 -msgid "Never" -msgstr "" - -#: application/views/user/main.php:83 -msgid "Locations" -msgstr "" - -#: application/views/user/main.php:85 -msgid "Logbooks" -msgstr "" - -#: application/views/user/main.php:87 -msgid "Last QSO:" -msgstr "" - -#: application/views/user/main.php:89 -msgid "No QSOs in Log" -msgstr "" +msgstr "Zapamiętaj mnie" #: application/views/user/profile.php:19 msgid "Level" @@ -10304,19 +11198,19 @@ msgstr "" #: application/views/user/profile.php:39 msgid "First name" -msgstr "" +msgstr "Imię" #: application/views/user/profile.php:44 msgid "Last name" -msgstr "" +msgstr "Nazwisko" #: application/views/user/profile.php:50 msgid "Edit profile" -msgstr "" +msgstr "Edytuj profil" #: application/views/user/reset_password.php:28 msgid "Confirm Password" -msgstr "" +msgstr "Potwierdź hasło" #: application/views/version_dialog/index.php:20 msgid "No Version Dialog text set. Go to the Admin Menu and set one." @@ -10347,118 +11241,118 @@ msgstr "Szczegóły QSO" msgid "QSL Management" msgstr "Zarządzanie kartami" -#: application/views/view_log/qso.php:128 +#: application/views/view_log/qso.php:131 msgid "Total Distance" msgstr "Suma odległości" -#: application/views/view_log/qso.php:221 +#: application/views/view_log/qso.php:224 msgid "Antenna Azimuth" msgstr "" -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:231 msgid "Antenna Elevation" msgstr "" -#: application/views/view_log/qso.php:370 +#: application/views/view_log/qso.php:373 msgid "QSL Card has been sent via the bureau" msgstr "Karta QSL została wysłana przez biuro" -#: application/views/view_log/qso.php:372 +#: application/views/view_log/qso.php:375 msgid "QSL Card has been sent via direct" msgstr "Karta QSL została wysłana bezpośrednio" -#: application/views/view_log/qso.php:374 +#: application/views/view_log/qso.php:377 msgid "QSL Card has been sent electronically" msgstr "" -#: application/views/view_log/qso.php:376 +#: application/views/view_log/qso.php:379 msgid "QSL Card has been sent via manager" msgstr "" -#: application/views/view_log/qso.php:378 +#: application/views/view_log/qso.php:381 msgid "QSL Card has been sent" msgstr "" -#: application/views/view_log/qso.php:387 +#: application/views/view_log/qso.php:390 msgid "QSL Card has been received via the bureau" msgstr "Karta QSL została otrzymana przez biuro" -#: application/views/view_log/qso.php:389 +#: application/views/view_log/qso.php:392 msgid "QSL Card has been received via direct" msgstr "Karta QSL została otrzymana bezpośrednio" -#: application/views/view_log/qso.php:391 +#: application/views/view_log/qso.php:394 msgid "QSL Card has been received electronically" msgstr "" -#: application/views/view_log/qso.php:393 +#: application/views/view_log/qso.php:396 msgid "QSL Card has been received via manager" msgstr "" -#: application/views/view_log/qso.php:395 +#: application/views/view_log/qso.php:398 msgid "QSL Card has been received" msgstr "" -#: application/views/view_log/qso.php:404 +#: application/views/view_log/qso.php:407 msgid "This station uses LoTW." -msgstr "" +msgstr "Ta stacja używa LoTW." -#: application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:414 -#: application/views/view_log/qso.php:419 -#: application/views/view_log/qso.php:424 +#: application/views/view_log/qso.php:412 +#: application/views/view_log/qso.php:417 +#: application/views/view_log/qso.php:422 +#: application/views/view_log/qso.php:427 msgid "This QSO was confirmed on" msgstr "Ta łączność została potwierdzona" -#: application/views/view_log/qso.php:435 +#: application/views/view_log/qso.php:438 msgid "More QSOs" msgstr "" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:506 msgid "Details" msgstr "" -#: application/views/view_log/qso.php:630 +#: application/views/view_log/qso.php:633 msgid "Uploaded QSL Card front image" msgstr "Wyślij awers karty QSL" -#: application/views/view_log/qso.php:635 +#: application/views/view_log/qso.php:638 msgid "Upload QSL Card image" msgstr "Wyślij informacje." -#: application/views/view_log/qso.php:640 +#: application/views/view_log/qso.php:643 msgid "Uploaded QSL Card back image" msgstr "Wyślij rewers karty QSL" -#: application/views/view_log/qso.php:656 +#: application/views/view_log/qso.php:659 msgid "Mark QSL Received (Electronic)" msgstr "Zaznacz QSL jako odebraną przez (Elektroniczny)" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:665 msgid "Mark QSL Card Requested (Bureau)" msgstr "Zaznacz QSL zgodnie z żądaniem (Biuro)" -#: application/views/view_log/qso.php:664 +#: application/views/view_log/qso.php:667 msgid "Mark QSL Card Requested (Direct)" msgstr "Zaznacz QSL zgodnie z żądaniem (Bezpośredni)" -#: application/views/view_log/qso.php:679 +#: application/views/view_log/qso.php:682 msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:242 msgid "CSV" -msgstr "" +msgstr "CSV" -#: application/views/visitor/layout/header.php:75 +#: application/views/visitor/layout/header.php:74 msgid "OQRS" -msgstr "" +msgstr "OQRS" -#: application/views/visitor/layout/header.php:83 +#: application/views/visitor/layout/header.php:82 msgid "Visit Wavelog on Github" msgstr "" -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Please enter a callsign!" msgstr "" diff --git a/application/locale/pt_PT/LC_MESSAGES/messages.mo b/application/locale/pt_PT/LC_MESSAGES/messages.mo index ad9a4b40d..1a5e5b2f2 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 d4620e55a..11422039f 100644 --- a/application/locale/pt_PT/LC_MESSAGES/messages.po +++ b/application/locale/pt_PT/LC_MESSAGES/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-09 07:24+0000\n" -"PO-Revision-Date: 2024-08-09 16:38+0000\n" +"POT-Creation-Date: 2024-09-07 07:18+0000\n" +"PO-Revision-Date: 2024-09-06 17:33+0000\n" "Last-Translator: \"Francisco (F4VSE)\" \n" "Language-Team: Portuguese (Portugal) \n" @@ -18,10 +18,104 @@ 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.6.2\n" +"X-Generator: Weblate 5.7.1\n" -#: application/controllers/Accumulated.php:21 -#: application/views/interface_assets/header.php:150 +#: application/controllers/Accumulated.php:12 +#: application/controllers/Activators.php:13 +#: application/controllers/Activatorsmap.php:13 +#: application/controllers/Adif.php:13 application/controllers/Awards.php:16 +#: application/controllers/Backup.php:13 application/controllers/Backup.php:26 +#: application/controllers/Backup.php:63 application/controllers/Band.php:15 +#: application/controllers/Bandmap.php:9 +#: application/controllers/Cabrillo.php:16 +#: application/controllers/Cabrillo.php:53 +#: application/controllers/Cabrillo.php:80 +#: application/controllers/Cabrillo.php:135 +#: application/controllers/Calltester.php:11 +#: application/controllers/Cfdexport.php:18 +#: application/controllers/Cfdexport.php:29 +#: application/controllers/Components.php:13 +#: application/controllers/Contestcalendar.php:15 +#: application/controllers/Contesting.php:14 +#: application/controllers/Cron.php:26 application/controllers/Cron.php:162 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: application/controllers/Distancerecords.php:11 +#: application/controllers/Distances.php:11 +#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29 +#: application/controllers/Dxatlas.php:51 +#: application/controllers/Dxatlas.php:108 +#: application/controllers/Dxcalendar.php:8 +#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23 +#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 +#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 +#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:353 +#: application/controllers/Eqsl.php:420 application/controllers/Eqsl.php:436 +#: application/controllers/Eqsl.php:497 application/controllers/Hamsat.php:13 +#: application/controllers/Kmlexport.php:18 +#: application/controllers/Kmlexport.php:33 +#: application/controllers/Labels.php:26 +#: application/controllers/Logbookadvanced.php:16 +#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 +#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 +#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 +#: application/controllers/Notes.php:10 application/controllers/Options.php:15 +#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 +#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 +#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 +#: application/controllers/Qso.php:9 application/controllers/Qso.php:19 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:600 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Reg1test.php:18 +#: application/controllers/Reg1test.php:63 +#: application/controllers/Reg1test.php:102 +#: application/controllers/Reg1test.php:130 +#: application/controllers/Reg1test.php:164 +#: application/controllers/Satellite.php:18 +#: application/controllers/Satellite.php:37 +#: application/controllers/Satellite.php:44 +#: application/controllers/Satellite.php:53 +#: application/controllers/Satellite.php:72 +#: application/controllers/Satellite.php:87 +#: application/controllers/Satellite.php:95 +#: application/controllers/Satellite.php:103 +#: application/controllers/Satellite.php:117 +#: application/controllers/Satellite.php:135 +#: application/controllers/Satellite.php:146 +#: application/controllers/Satellite.php:162 +#: application/controllers/Satellite.php:190 +#: application/controllers/Satellite.php:201 +#: application/controllers/Satellite.php:223 +#: application/controllers/Satellite.php:236 +#: application/controllers/Satellite.php:244 +#: application/controllers/Sattimers.php:9 +#: application/controllers/Search.php:13 +#: application/controllers/Simplefle.php:7 +#: application/controllers/Station.php:17 +#: application/controllers/Stationsetup.php:15 +#: application/controllers/Themes.php:17 +#: application/controllers/Timeline.php:10 +#: application/controllers/Timeplotter.php:11 +#: application/controllers/Update.php:24 application/controllers/Update.php:273 +#: application/controllers/Update.php:284 +#: application/controllers/Update.php:295 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 +#: application/controllers/User_options.php:9 +msgid "You're not allowed to do that!" +msgstr "Não é permitido fazer isso!" + +#: application/controllers/Accumulated.php:19 +#: application/views/interface_assets/header.php:152 msgid "Accumulated Statistics" msgstr "Estatísticas acumuladas" @@ -31,24 +125,26 @@ msgid "Activated Gridsquare Map" msgstr "Mapa Gridsquare activadas" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:910 -#: application/controllers/Awards.php:942 +#: application/controllers/Awards.php:919 +#: application/controllers/Awards.php:951 #: application/controllers/Gridmap.php:31 -#: application/controllers/Visitor.php:374 -#: application/views/activators/index.php:101 +#: application/controllers/Visitor.php:385 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: application/views/visitor/layout/footer.php:22 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "Gridsquares" #: application/controllers/Activated_gridmap.php:32 #: application/controllers/Gridmap.php:32 -#: application/controllers/Visitor.php:375 +#: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "Gridsquares confirmadas" #: application/controllers/Activated_gridmap.php:33 #: application/controllers/Gridmap.php:33 -#: application/controllers/Visitor.php:376 +#: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "Gridsquares não confirmadas" @@ -57,12 +153,13 @@ msgid "Total gridsquares activated" msgstr "Total de gridsquares activadas" #: application/controllers/Activators.php:20 -#: application/views/activators/index.php:2 +#: application/views/activators/index.php:5 #: application/views/interface_assets/header.php:142 msgid "Gridsquare Activators" msgstr "Activadores de Gridsquare" #: application/controllers/Activatorsmap.php:17 +#: application/views/activators/index.php:2 msgid "Activators Map" msgstr "Mapa dos activadores" @@ -79,7 +176,7 @@ msgid "ADIF Export" msgstr "Exportação ADIF" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:388 msgid "ADIF Import / Export" msgstr "Importação / Exportação ADIF" @@ -92,20 +189,25 @@ msgstr "Importação ADIF" msgid "Unsupported Filetype" msgstr "Tipo de ficheiro não suportado" -#: application/controllers/Adif.php:245 +#: application/controllers/Adif.php:240 +#: application/views/adif/import_failed.php:12 +msgid "ADIF Import failed!" +msgstr "Falha na importação do ADIF!" + +#: application/controllers/Adif.php:254 msgid "Station Profile not valid for User" msgstr "Perfil da estação não é válido para o utilizador" -#: application/controllers/Adif.php:252 +#: application/controllers/Adif.php:261 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "ADIF Importado" -#: application/controllers/Adif.php:263 +#: application/controllers/Adif.php:272 msgid "DCL Import" msgstr "Importação DCL" -#: application/controllers/Adif.php:319 +#: application/controllers/Adif.php:328 msgid "DCL Data Imported" msgstr "Dados DCL importados" @@ -135,25 +237,8 @@ msgstr "A descrição da chave API %s foi actualizada." msgid "API Key %s has been deleted" msgstr "A chave API %s foi eliminada" -#: application/controllers/Api.php:118 -msgid "Key Disabled" -msgstr "Chave desactivada" - -#: application/controllers/Api.php:118 -msgid "No Key Found" -msgstr "Nenhuma chave encontrada" - -#: application/controllers/Api.php:120 -msgid "Key Invalid - either not found or disabled" -msgstr "Chave inválida - não encontrada ou desactivada" - -#: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 -msgid "Valid" -msgstr "Válido" - #: application/controllers/Awards.php:22 -#: application/views/interface_assets/header.php:158 +#: application/views/interface_assets/header.php:160 #: application/views/qso/edit_ajax.php:35 msgid "Awards" msgstr "Prémios" @@ -168,12 +253,13 @@ msgstr "Prémios" #: application/controllers/Awards.php:652 #: application/controllers/Awards.php:714 #: application/controllers/Awards.php:776 -#: application/controllers/Awards.php:847 -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:930 -#: application/controllers/Awards.php:1125 -#: application/controllers/Awards.php:1615 -#: application/controllers/Awards.php:1755 +#: application/controllers/Awards.php:856 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:939 +#: application/controllers/Awards.php:1140 +#: application/controllers/Awards.php:1639 +#: application/controllers/Awards.php:1779 +#: application/controllers/Awards.php:1908 #, php-format msgid "Awards - %s" msgstr "Prémios - %s" @@ -181,13 +267,13 @@ msgstr "Prémios - %s" #: application/controllers/Awards.php:92 #: application/views/awards/dok/index.php:149 #: application/views/bands/index.php:47 -#: application/views/contesting/index.php:170 -#: application/views/interface_assets/header.php:194 -#: application/views/logbookadvanced/index.php:613 +#: application/views/contesting/index.php:53 +#: application/views/interface_assets/header.php:198 +#: application/views/logbookadvanced/index.php:641 #: application/views/logbookadvanced/useroptions.php:130 -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:264 -#: application/views/qso/index.php:508 application/views/user/edit.php:603 -#: application/views/view_log/qso.php:351 +#: application/views/qso/edit_ajax.php:388 application/views/qso/index.php:264 +#: application/views/qso/index.php:518 application/views/user/edit.php:603 +#: application/views/view_log/qso.php:354 msgid "DOK" msgstr "DOK" @@ -195,15 +281,15 @@ msgstr "DOK" #: application/views/bandmap/list.php:112 application/views/bands/index.php:48 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 -#: application/views/interface_assets/header.php:164 +#: application/views/interface_assets/header.php:166 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:145 -#: application/views/logbookadvanced/index.php:580 +#: application/views/logbookadvanced/index.php:156 +#: application/views/logbookadvanced/index.php:608 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 -#: application/views/lotw_views/index.php:40 +#: application/views/lotw_views/index.php:36 #: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 #: application/views/search/cqzones_result.php:15 #: application/views/search/result.php:27 @@ -218,12 +304,12 @@ msgid "Awards - WAJA" msgstr "Prémios - WAJA" #: application/controllers/Awards.php:327 application/views/bands/index.php:51 -#: application/views/interface_assets/header.php:210 +#: application/views/interface_assets/header.php:214 msgid "JCC" msgstr "JCC" #: application/controllers/Awards.php:375 application/views/bands/index.php:57 -#: application/views/interface_assets/header.php:170 +#: application/views/interface_assets/header.php:172 msgid "VUCC" msgstr "VUCC" @@ -232,15 +318,20 @@ msgid "Log View - VUCC" msgstr "Visualização do log - VUCC" #: application/controllers/Awards.php:453 -#: application/controllers/Timeline.php:92 -#: application/controllers/Timeline.php:95 -#: application/controllers/Timeline.php:98 -#: application/controllers/Timeline.php:101 -#: application/controllers/Timeline.php:104 -#: application/controllers/Timeline.php:107 +#: application/controllers/Distancerecords.php:59 +#: application/controllers/Timeline.php:105 +#: application/controllers/Timeline.php:108 +#: application/controllers/Timeline.php:111 +#: application/controllers/Timeline.php:114 +#: application/controllers/Timeline.php:117 +#: application/controllers/Timeline.php:120 msgid "Log View" msgstr "Ver log" +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr " e banda " + #: application/controllers/Awards.php:457 msgid " and sat " msgstr " e satélite " @@ -262,12 +353,12 @@ msgid " and " msgstr " e " #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1289 #: application/views/awards/index.php:8 application/views/bands/index.php:55 #: application/views/dashboard/index.php:9 -#: application/views/interface_assets/header.php:178 -#: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:259 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -275,10 +366,10 @@ msgstr " e " #: application/views/qslcard/searchresult.php:49 #: application/views/qslcard/searchresult.php:65 #: application/views/qslcard/searchresult.php:81 -#: application/views/qso/components/previous_contacts.php:83 -#: application/views/qso/edit_ajax.php:336 +#: application/views/qso/components/previous_contacts.php:82 +#: application/views/qso/edit_ajax.php:363 #: application/views/search/search_result_ajax.php:9 -#: application/views/station_profile/edit.php:216 +#: application/views/station_profile/edit.php:243 #: application/views/user/edit.php:234 application/views/user/edit.php:256 #: application/views/user/edit.php:278 application/views/user/edit.php:300 #: application/views/user/edit.php:323 @@ -288,18 +379,18 @@ msgid "SOTA" msgstr "SOTA" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1290 #: application/views/bands/index.php:60 #: application/views/dashboard/index.php:10 -#: application/views/interface_assets/header.php:172 -#: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:279 +#: application/views/interface_assets/header.php:176 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/index.php:290 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 -#: application/views/qso/components/previous_contacts.php:84 -#: application/views/qso/edit_ajax.php:341 +#: application/views/qso/components/previous_contacts.php:83 +#: application/views/qso/edit_ajax.php:368 #: application/views/search/search_result_ajax.php:10 -#: application/views/station_profile/edit.php:229 +#: application/views/station_profile/edit.php:256 #: application/views/user/edit.php:235 application/views/user/edit.php:257 #: application/views/user/edit.php:279 application/views/user/edit.php:301 #: application/views/user/edit.php:324 @@ -308,18 +399,18 @@ msgid "WWFF" msgstr "WWFF" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1291 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 -#: application/views/interface_assets/header.php:182 +#: application/views/interface_assets/header.php:186 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:274 +#: application/views/logbookadvanced/index.php:623 #: application/views/logbookadvanced/useroptions.php:106 -#: application/views/qso/components/previous_contacts.php:85 -#: application/views/qso/edit_ajax.php:346 +#: application/views/qso/components/previous_contacts.php:84 +#: application/views/qso/edit_ajax.php:373 #: application/views/search/search_result_ajax.php:11 -#: application/views/station_profile/edit.php:242 +#: application/views/station_profile/edit.php:269 #: application/views/user/edit.php:236 application/views/user/edit.php:258 #: application/views/user/edit.php:280 application/views/user/edit.php:302 #: application/views/user/edit.php:325 @@ -338,7 +429,7 @@ msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" #: application/controllers/Awards.php:714 application/views/bands/index.php:53 -#: application/views/interface_assets/header.php:188 +#: application/views/interface_assets/header.php:192 msgid "RAC" msgstr "RAC" @@ -346,74 +437,80 @@ msgstr "RAC" msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:847 +#: application/controllers/Awards.php:856 msgid "IOTA (Island On The Air)" msgstr "IOTA (Island On The Air)" -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:872 -#: application/views/interface_assets/header.php:230 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 +#: application/views/interface_assets/header.php:234 msgid "US Counties" msgstr "Condados dos EUA" -#: application/controllers/Awards.php:887 +#: application/controllers/Awards.php:896 msgid "Log View - Counties" msgstr "Visualização do log - Condados" -#: application/controllers/Awards.php:894 +#: application/controllers/Awards.php:903 msgid "Awards - " msgstr "Diplomas - " -#: application/controllers/Awards.php:911 -#: application/controllers/Awards.php:943 +#: application/controllers/Awards.php:920 +#: application/controllers/Awards.php:952 msgid "Gridsquares worked" msgstr "Gridsquares trabalhadas" -#: application/controllers/Awards.php:912 -#: application/controllers/Awards.php:944 +#: application/controllers/Awards.php:921 +#: application/controllers/Awards.php:953 msgid "Gridsquares confirmed on LoTW" msgstr "Gridsquares confirmadas no LoTW" -#: application/controllers/Awards.php:913 -#: application/controllers/Awards.php:945 +#: application/controllers/Awards.php:922 +#: application/controllers/Awards.php:954 msgid "Gridsquares confirmed by paper QSL" msgstr "Gridsquares confirmadas via QSL em papel" -#: application/controllers/Awards.php:930 +#: application/controllers/Awards.php:939 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial Award (FFMA)" -#: application/controllers/Awards.php:1125 -#: application/views/interface_assets/header.php:168 +#: application/controllers/Awards.php:1140 +#: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1143 +#: application/controllers/Awards.php:1158 msgid "Awards - SIG - " msgstr "Diplomas - SIG - " -#: application/controllers/Awards.php:1755 -#: application/views/awards/itu/index.php:18 +#: application/controllers/Awards.php:1779 +#: application/views/awards/itu/index.php:20 msgid "ITU Zones" msgstr "Zonas ITU" +#: application/controllers/Awards.php:1908 +#: application/views/awards/wac/index.php:8 +#: application/views/interface_assets/header.php:174 +msgid "Worked All Continents (WAC)" +msgstr "Worked All Continents (WAC)" + #: application/controllers/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:284 msgid "Backup" msgstr "Backup" -#: application/controllers/Backup.php:48 +#: application/controllers/Backup.php:50 msgid "ADIF - Backup" msgstr "Backup ADIF" -#: application/controllers/Backup.php:80 +#: application/controllers/Backup.php:84 msgid "Notes - Backup" msgstr "Notas - Backup" #: application/controllers/Band.php:25 application/views/bands/index.php:28 #: application/views/bands/index.php:32 -#: application/views/interface_assets/header.php:379 +#: application/views/interface_assets/header.php:383 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -429,8 +526,8 @@ msgstr "Editar Banda" #: application/controllers/Bandmap.php:28 #: application/controllers/Bandmap.php:69 -#: application/controllers/Options.php:137 -#: application/controllers/Options.php:148 +#: application/controllers/Options.php:145 +#: application/controllers/Options.php:156 #: application/views/options/sidebar.php:10 msgid "DXCluster" msgstr "DXCluster" @@ -440,7 +537,7 @@ msgid "Export Cabrillo" msgstr "Exportar Cabrillo" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:396 +#: application/views/interface_assets/header.php:402 msgid "CFD Export" msgstr "Exportar CFD" @@ -457,7 +554,7 @@ msgid "No user has configured Clublog." msgstr "Nenhum utilizador configurou o Clublog." #: application/controllers/Contestcalendar.php:19 -#: application/views/interface_assets/header.php:247 +#: application/views/interface_assets/header.php:251 msgid "Contest Calendar" msgstr "Calendário de concursos" @@ -466,38 +563,66 @@ msgstr "Calendário de concursos" msgid "Contest Logging" msgstr "Registo de concurso" -#: application/controllers/Contesting.php:112 -#: application/views/interface_assets/header.php:274 +#: application/controllers/Contesting.php:113 +#: application/views/interface_assets/header.php:278 msgid "Contests" msgstr "Concursos" -#: application/controllers/Contesting.php:126 +#: application/controllers/Contesting.php:127 msgid "Update Contest" msgstr "Actualizar Concurso" #: application/controllers/Continents.php:25 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:57 -#: application/views/interface_assets/header.php:154 +#: application/views/interface_assets/header.php:156 msgid "Continents" msgstr "Continentes" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:284 +#: application/views/interface_assets/header.php:288 msgid "Cron Manager" msgstr "Gestor Cron" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:154 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "Editar Cronjob" +#: application/controllers/Cron.php:274 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "OK" + +#: application/controllers/Cron.php:278 +#, php-format +msgid "" +"Last run occurred more than %s seconds ago.%sPlease check your master cron! " +"It should run every minute (* * * * *)." +msgstr "" +"A última execução ocorreu há mais de %s segundos.%sPor favor, verifique o " +"seu cron master! Deve ser executado a cada minuto (* * * * *)." + +#: application/controllers/Cron.php:281 +#, php-format +msgid "" +"Last run occurred more than %s minutes ago.%sSeems like your Mastercron " +"isn't running!%sIt should run every minute (* * * * *)." +msgstr "" +"A última execução ocorreu há mais de %s minutos.%sParece que o seu " +"Mastercron não está a correr!%sDeveria correr a cada minuto (* * * * *)." + +#: application/controllers/Cron.php:286 application/views/cron/index.php:29 +msgctxt "Master Cron" +msgid "Not running" +msgstr "Não está a funcionar" + #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:392 +#: application/views/interface_assets/header.php:396 msgid "SOTA CSV Export" msgstr "Exportar CSV SOTA" -#: application/controllers/Dashboard.php:108 -#: application/controllers/Visitor.php:132 +#: application/controllers/Dashboard.php:123 +#: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "Dashboard" @@ -547,6 +672,12 @@ msgstr "" msgid "File Migration failed. Please check the Error Log." msgstr "A migração de ficheiros falhou. Verifique o registo de erros." +#: application/controllers/Distancerecords.php:42 +#: application/controllers/Distancerecords.php:59 +#: application/views/interface_assets/header.php:146 +msgid "Satellite Distance Records" +msgstr "Recordes de distância de satélite" + #: application/controllers/Distances.php:17 #: application/views/distances/index.php:5 #: application/views/distances/index.php:8 @@ -554,27 +685,31 @@ msgstr "A migração de ficheiros falhou. Verifique o registo de erros." msgid "Distances Worked" msgstr "Distâncias trabalhadas" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 #: application/views/distances/index.php:15 msgid "QSOs with" msgstr "Contactos com" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 msgid "and band" msgstr "e banda" +#: application/controllers/Distances.php:83 +msgid "and propagation" +msgstr "e propagação" + #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:394 msgid "DX Atlas Gridsquare Export" msgstr "Exportar Gridsquare DX Atlas" #: application/controllers/Dxcalendar.php:10 -#: application/views/interface_assets/header.php:245 +#: application/views/interface_assets/header.php:249 msgid "DX Calendar" msgstr "Calendário DX" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:325 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -592,19 +727,19 @@ msgstr "Informações de importação eQSL" msgid "eQSL QSO Upload" msgstr "Upload de contactos eQSL" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:424 msgid "eQSL Tools" msgstr "Ferramentas eQSL" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid " / Errors: " msgstr " / Erros: " -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid "Successfully downloaded: " msgstr "Descarregado com sucesso: " -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:481 msgid "eQSL Card Image Download" msgstr "Descarregar Imagem do cartão eQSL" @@ -614,7 +749,7 @@ msgid "Gridsquare Map" msgstr "Mapa Gridsquare" #: application/controllers/Gridmap.php:34 -#: application/controllers/Visitor.php:377 +#: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "Total de gridsquares trabalhadas" @@ -634,7 +769,7 @@ msgid "No QSOs found to upload." msgstr "Não foram encontrados QSOs para carregar." #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:392 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "Exportação KML" @@ -647,59 +782,59 @@ msgstr "Etiquetas para cartões QSL" msgid "Create Label Type" msgstr "Criar tipo de etiqueta" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:402 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:406 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "Nome da etiqueta" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:403 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:407 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 #: application/views/labels/index.php:76 msgid "Paper Type" msgstr "Tipo de papel" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:404 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:408 #: application/views/labels/index.php:42 application/views/labels/index.php:77 msgid "Measurement" msgstr "Medida" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:405 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:409 msgid "Top Margin" msgstr "Margem superior" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:406 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:410 msgid "Left Margin" msgstr "Margem esquerda" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:407 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:411 msgid "QSLs Horizontally" msgstr "QSLs na horizontal" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:408 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:412 msgid "QSLs Vertically" msgstr "QSLs na vertical" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:409 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:413 msgid "Horizontal Space" msgstr "Espaço horizontal" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:410 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:414 msgid "Vertical Space" msgstr "Espaço vertical" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:411 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:415 msgid "Label width" msgstr "Largura da etiqueta" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:412 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:416 msgid "Label height" msgstr "Altura da etiqueta" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:413 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:417 msgid "Size of Font" msgstr "Tamanho da letra" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:414 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:418 msgid "Number of QSOs on label" msgstr "Número de QSOs na etiqueta" @@ -708,22 +843,22 @@ msgid "Create Paper Type" msgstr "Criar tipo de papel" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:461 +#: application/controllers/Labels.php:465 msgid "Paper Name" msgstr "Nome do papel" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:462 +#: application/controllers/Labels.php:466 msgid "Paper Width" msgstr "Largura do papel" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:463 +#: application/controllers/Labels.php:467 msgid "Paper Height" msgstr "Altura do papel" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:471 +#: application/controllers/Labels.php:475 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -755,27 +890,27 @@ msgstr "" msgid "0 QSOs found for print!" msgstr "0 contactos encontrados para impressão!" -#: application/controllers/Labels.php:391 +#: application/controllers/Labels.php:395 msgid "Edit Label" msgstr "Editar etiqueta" -#: application/controllers/Labels.php:420 +#: application/controllers/Labels.php:424 msgid "Label was saved." msgstr "A etiqueta foi guardada." -#: application/controllers/Labels.php:428 +#: application/controllers/Labels.php:432 msgid "Label was deleted." msgstr "A etiqueta foi apagada." -#: application/controllers/Labels.php:450 +#: application/controllers/Labels.php:454 msgid "Edit Paper" msgstr "Editar papel" -#: application/controllers/Labels.php:475 +#: application/controllers/Labels.php:479 msgid "Paper was saved." msgstr "O papel foi guardado." -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "Paper was deleted." msgstr "O papel foi apagado." @@ -799,20 +934,20 @@ msgstr "Logbooks da estação" msgid "Logbook" msgstr "Logbook" -#: application/controllers/Logbook.php:653 -#: application/controllers/Logbook.php:668 +#: application/controllers/Logbook.php:657 +#: application/controllers/Logbook.php:672 #: application/views/activated_gridmap/index.php:58 #: application/views/awards/dok/index.php:55 #: application/views/awards/dxcc/index.php:61 -#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/helvetia/index.php:55 #: application/views/awards/jcc/index.php:52 -#: application/views/awards/rac/index.php:45 +#: application/views/awards/rac/index.php:47 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:72 -#: application/views/awards/waja/index.php:53 -#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:55 +#: application/views/awards/was/index.php:55 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:568 +#: application/views/logbookadvanced/index.php:596 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -825,20 +960,21 @@ msgstr "Logbook" msgid "QSL" msgstr "QSL" -#: application/controllers/Logbook.php:656 +#: application/controllers/Logbook.php:660 #: application/views/activated_gridmap/index.php:66 -#: application/views/awards/cq/index.php:58 +#: application/views/awards/cq/index.php:60 #: application/views/awards/dok/index.php:59 #: application/views/awards/dxcc/index.php:65 -#: application/views/awards/helvetia/index.php:57 -#: application/views/awards/itu/index.php:58 +#: application/views/awards/helvetia/index.php:59 +#: application/views/awards/itu/index.php:60 #: application/views/awards/jcc/index.php:56 -#: application/views/awards/rac/index.php:49 +#: application/views/awards/rac/index.php:51 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:80 -#: application/views/awards/waja/index.php:57 -#: application/views/awards/was/index.php:57 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -846,28 +982,29 @@ msgstr "QSL" #: application/views/qslprint/qsolist.php:21 #: application/views/qslprint/qsolist.php:167 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:384 +#: application/views/qso/edit_ajax.php:411 #: application/views/search/result_search.php:22 #: application/views/search/search_result_ajax.php:298 #: application/views/search/search_result_ajax.php:313 #: application/views/timeline/index.php:60 application/views/user/edit.php:563 -#: application/views/user/edit.php:659 application/views/view_log/qso.php:408 +#: application/views/user/edit.php:659 application/views/view_log/qso.php:411 msgid "LoTW" msgstr "LoTW" -#: application/controllers/Logbook.php:659 +#: application/controllers/Logbook.php:663 #: application/views/activated_gridmap/index.php:74 -#: application/views/awards/cq/index.php:62 +#: application/views/awards/cq/index.php:64 #: application/views/awards/dok/index.php:63 #: application/views/awards/dxcc/index.php:69 -#: application/views/awards/helvetia/index.php:61 -#: application/views/awards/itu/index.php:62 +#: application/views/awards/helvetia/index.php:63 +#: application/views/awards/itu/index.php:64 #: application/views/awards/jcc/index.php:60 -#: application/views/awards/rac/index.php:53 +#: application/views/awards/rac/index.php:55 #: application/views/awards/wab/index.php:88 -#: application/views/awards/waja/index.php:61 -#: application/views/awards/was/index.php:61 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:52 +#: application/views/awards/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:117 #: application/views/logbookadvanced/useroptions.php:70 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 @@ -875,63 +1012,67 @@ msgstr "LoTW" #: application/views/qslprint/qsolist.php:18 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:151 -#: application/views/qso/edit_ajax.php:381 +#: application/views/qso/edit_ajax.php:408 #: application/views/search/result_search.php:16 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:273 -#: application/views/station_profile/edit.php:278 +#: application/views/station_profile/edit.php:305 #: application/views/timeline/index.php:64 application/views/user/edit.php:564 #: application/views/user/edit.php:667 application/views/user/edit.php:731 msgid "eQSL" msgstr "eQSL" -#: application/controllers/Logbook.php:665 +#: application/controllers/Logbook.php:669 #: application/views/awards/dok/index.php:71 #: application/views/awards/dxcc/index.php:77 #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 -#: application/views/awards/waja/index.php:69 +#: application/views/awards/waja/index.php:71 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 -#: application/views/station_profile/edit.php:325 +#: application/views/station_profile/edit.php:352 +#: application/views/timeline/index.php:68 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 -#: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/partial/log_ajax.php:85 +#: application/views/view_log/qso.php:426 msgid "Clublog" msgstr "Clublog" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1284 #: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:39 #: application/views/adif/dcl_success.php:33 -#: application/views/awards/cq/index.php:86 +#: application/views/awards/cq/index.php:88 #: application/views/awards/dok/index.php:91 #: application/views/awards/dxcc/index.php:162 -#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/helvetia/index.php:87 #: application/views/awards/iota/index.php:105 -#: application/views/awards/itu/index.php:86 +#: application/views/awards/itu/index.php:88 #: application/views/awards/jcc/index.php:88 -#: application/views/awards/rac/index.php:77 +#: application/views/awards/rac/index.php:79 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:53 -#: application/views/awards/waja/index.php:89 -#: application/views/awards/was/index.php:85 +#: application/views/awards/wac/index.php:110 +#: application/views/awards/waja/index.php:91 +#: application/views/awards/was/index.php:87 #: application/views/components/hamsat/table.php:30 -#: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:203 +#: application/views/contesting/index.php:108 +#: application/views/contesting/index.php:250 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 +#: 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/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:170 -#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/index.php:181 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -948,14 +1089,14 @@ msgstr "Clublog" #: application/views/qslcard/searchresult.php:76 #: application/views/qslprint/qslprint.php:24 #: application/views/qslprint/qsolist.php:9 -#: application/views/qso/components/previous_contacts.php:78 +#: application/views/qso/components/previous_contacts.php:77 #: application/views/qso/edit_ajax.php:119 application/views/qso/index.php:136 #: application/views/satellite/index.php:24 #: application/views/search/cqzones_result.php:10 #: application/views/search/lotw_unconfirmed_result.php:8 #: application/views/search/result_search.php:7 #: application/views/search/search_result_ajax.php:4 -#: application/views/simplefle/index.php:144 +#: application/views/simplefle/index.php:150 #: application/views/statistics/custom.php:60 #: application/views/statistics/custom_result.php:62 #: application/views/statistics/custom_result.php:88 @@ -967,17 +1108,17 @@ msgstr "Clublog" #: application/views/user/edit.php:295 application/views/user/edit.php:318 #: application/views/view_log/partial/log.php:9 #: application/views/view_log/partial/log_ajax.php:4 -#: application/views/view_log/qso.php:104 application/views/visitor/index.php:6 +#: application/views/view_log/qso.php:107 application/views/visitor/index.php:6 #: application/views/widgets/qsos.php:29 msgid "Mode" msgstr "Modo" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1285 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:111 -#: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:547 +#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:251 +#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -986,25 +1127,25 @@ msgstr "Modo" #: application/views/qslcard/searchresult.php:77 #: application/views/qslprint/qslprint.php:26 #: application/views/qslprint/qsolist.php:11 -#: application/views/qso/components/previous_contacts.php:79 +#: application/views/qso/components/previous_contacts.php:78 #: application/views/qso/edit_ajax.php:142 application/views/qso/index.php:177 #: application/views/search/search_result_ajax.php:5 -#: application/views/simplefle/index.php:145 +#: application/views/simplefle/index.php:151 #: application/views/user/edit.php:230 application/views/user/edit.php:252 #: application/views/user/edit.php:274 application/views/user/edit.php:296 #: application/views/user/edit.php:319 #: application/views/view_log/partial/log.php:10 #: application/views/view_log/partial/log_ajax.php:5 -#: application/views/view_log/qso.php:109 application/views/visitor/index.php:9 +#: application/views/view_log/qso.php:112 application/views/visitor/index.php:9 msgid "RST (S)" msgstr "RST (E)" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1286 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:550 +#: application/views/contesting/index.php:189 +#: application/views/contesting/index.php:252 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1013,51 +1154,50 @@ msgstr "RST (E)" #: application/views/qslcard/searchresult.php:78 #: application/views/qslprint/qslprint.php:27 #: application/views/qslprint/qsolist.php:12 -#: application/views/qso/components/previous_contacts.php:80 +#: application/views/qso/components/previous_contacts.php:79 #: application/views/qso/edit_ajax.php:147 application/views/qso/index.php:182 #: application/views/search/search_result_ajax.php:6 -#: application/views/simplefle/index.php:146 +#: application/views/simplefle/index.php:152 #: application/views/user/edit.php:231 application/views/user/edit.php:253 #: application/views/user/edit.php:275 application/views/user/edit.php:297 #: application/views/user/edit.php:320 #: application/views/view_log/partial/log.php:11 #: application/views/view_log/partial/log_ajax.php:6 -#: application/views/view_log/qso.php:114 +#: application/views/view_log/qso.php:117 #: application/views/visitor/index.php:12 msgid "RST (R)" msgstr "RST (R)" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1287 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 #: application/views/qslcard/searchresult.php:47 #: application/views/qslcard/searchresult.php:63 #: application/views/qslcard/searchresult.php:79 -#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/components/previous_contacts.php:80 #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 -#: application/views/station_profile/index.php:43 #: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 -#: application/views/timeline/index.php:118 application/views/user/edit.php:232 +#: application/views/timeline/index.php:151 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 #: application/views/user/edit.php:298 application/views/user/edit.php:321 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:235 -#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:238 +#: application/views/view_log/qso.php:531 #: application/views/visitor/index.php:15 msgid "Country" msgstr "País" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1288 #: application/views/awards/iota/index.php:169 #: application/views/bands/index.php:50 application/views/dashboard/index.php:8 -#: application/views/interface_assets/header.php:180 +#: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1066,11 +1206,11 @@ msgstr "País" #: application/views/qslcard/searchresult.php:48 #: application/views/qslcard/searchresult.php:64 #: application/views/qslcard/searchresult.php:80 -#: application/views/qso/components/previous_contacts.php:82 -#: application/views/qso/edit_ajax.php:318 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 -#: application/views/timeline/index.php:202 application/views/user/edit.php:233 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:235 application/views/user/edit.php:233 #: application/views/user/edit.php:255 application/views/user/edit.php:277 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/view_log/partial/log_ajax.php:8 @@ -1078,17 +1218,17 @@ msgstr "País" msgid "IOTA" msgstr "IOTA" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1292 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:20 -#: application/views/awards/rac/index.php:141 -#: application/views/awards/was/index.php:149 -#: application/views/contesting/index.php:173 +#: application/views/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 +#: application/views/contesting/index.php:56 #: application/views/dashboard/index.php:12 -#: application/views/logbookadvanced/edit.php:20 -#: application/views/logbookadvanced/edit.php:64 -#: application/views/logbookadvanced/index.php:162 -#: application/views/logbookadvanced/index.php:583 +#: application/views/logbookadvanced/edit.php:21 +#: application/views/logbookadvanced/edit.php:66 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:611 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1096,9 +1236,9 @@ msgstr "IOTA" #: application/views/qslcard/searchresult.php:50 #: application/views/qslcard/searchresult.php:66 #: application/views/qslcard/searchresult.php:82 -#: application/views/qso/components/previous_contacts.php:86 +#: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 -#: application/views/timeline/index.php:177 application/views/user/edit.php:237 +#: application/views/timeline/index.php:210 application/views/user/edit.php:237 #: application/views/user/edit.php:259 application/views/user/edit.php:281 #: application/views/user/edit.php:303 application/views/user/edit.php:326 #: application/views/view_log/partial/log_ajax.php:12 @@ -1106,20 +1246,21 @@ msgstr "IOTA" msgid "State" msgstr "Estado" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1293 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:17 -#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:13 +#: application/views/distancerecords/index.php:20 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:166 -#: application/views/logbookadvanced/index.php:556 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1128,38 +1269,39 @@ msgstr "Estado" #: application/views/qslcard/searchresult.php:51 #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 -#: application/views/qso/components/previous_contacts.php:87 +#: application/views/qso/components/previous_contacts.php:86 #: application/views/qso/edit_ajax.php:156 application/views/qso/index.php:279 +#: application/views/satellite/pass.php:28 #: application/views/search/cqzones_result.php:12 #: application/views/search/result.php:33 #: application/views/search/search_result_ajax.php:13 -#: application/views/simplefle/index.php:147 -#: application/views/station_profile/index.php:44 +#: application/views/simplefle/index.php:153 #: application/views/stationsetup/stationsetup.php:125 -#: application/views/timeline/index.php:257 application/views/user/edit.php:130 +#: application/views/timeline/index.php:290 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 #: application/views/user/edit.php:327 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:518 #: application/views/visitor/index.php:27 msgid "Gridsquare" msgstr "Gridsquare" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1294 #: application/views/activated_gridmap/index.php:108 #: application/views/awards/ffma/index.php:36 #: application/views/awards/gridmaster/index.php:35 #: 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/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/index.php:12 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 #: application/views/qslcard/searchresult.php:52 #: application/views/qslcard/searchresult.php:68 #: application/views/qslcard/searchresult.php:84 -#: application/views/qso/components/previous_contacts.php:88 +#: application/views/qso/components/previous_contacts.php:87 #: application/views/search/search_result_ajax.php:14 #: application/views/user/edit.php:239 application/views/user/edit.php:261 #: application/views/user/edit.php:283 application/views/user/edit.php:305 @@ -1169,32 +1311,33 @@ msgstr "Gridsquare" msgid "Distance" msgstr "Distância" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1295 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:8 -#: application/views/activators/index.php:7 +#: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 -#: application/views/awards/cq/index.php:72 +#: application/views/awards/cq/index.php:74 #: application/views/awards/dok/index.php:77 #: application/views/awards/dxcc/index.php:117 -#: application/views/awards/helvetia/index.php:71 +#: application/views/awards/helvetia/index.php:73 #: application/views/awards/iota/index.php:91 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:74 #: application/views/awards/jcc/index.php:74 #: application/views/awards/pota/index.php:35 -#: application/views/awards/rac/index.php:63 +#: application/views/awards/rac/index.php:65 #: application/views/awards/sig/qso_list.php:13 #: application/views/awards/sota/index.php:26 #: application/views/awards/vucc/index.php:21 #: application/views/awards/wab/index.php:22 -#: application/views/awards/waja/index.php:75 -#: application/views/awards/was/index.php:71 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/waja/index.php:77 +#: application/views/awards/was/index.php:73 #: application/views/awards/wwff/index.php:35 #: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:45 -#: application/views/contesting/index.php:70 -#: application/views/contesting/index.php:202 +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:249 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:549 application/views/dxatlas/index.php:31 @@ -1202,8 +1345,8 @@ msgstr "Distância" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1221,13 +1364,13 @@ msgstr "Distância" #: application/views/qslmanagement/index.php:24 #: application/views/qslprint/qslprint.php:25 #: application/views/qslprint/qsolist.php:10 -#: application/views/qso/components/previous_contacts.php:89 +#: application/views/qso/components/previous_contacts.php:88 #: application/views/qso/edit_ajax.php:83 application/views/qso/index.php:151 #: application/views/search/cqzones_result.php:11 #: application/views/search/lotw_unconfirmed_result.php:9 #: application/views/search/result_search.php:10 #: application/views/search/search_result_ajax.php:15 -#: application/views/simplefle/index.php:143 +#: application/views/simplefle/index.php:149 #: application/views/stationsetup/exportmapoptions.php:31 #: application/views/statistics/custom.php:53 #: application/views/statistics/custom_result.php:55 @@ -1245,72 +1388,71 @@ msgstr "Distância" msgid "Band" msgstr "Banda" -#: application/controllers/Logbook.php:1285 +#: application/controllers/Logbook.php:1296 #: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 -#: application/views/contesting/index.php:87 +#: application/views/contesting/index.php:138 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 #: application/views/qslcard/searchresult.php:70 #: application/views/qslcard/searchresult.php:86 -#: application/views/qso/components/previous_contacts.php:90 +#: application/views/qso/components/previous_contacts.php:89 #: application/views/qso/edit_ajax.php:71 application/views/qso/index.php:169 #: application/views/search/search_result_ajax.php:16 #: application/views/user/edit.php:228 application/views/user/edit.php:250 #: application/views/user/edit.php:272 application/views/user/edit.php:294 #: application/views/user/edit.php:317 #: application/views/view_log/partial/log_ajax.php:16 -#: application/views/view_log/qso.php:93 application/views/visitor/index.php:36 +#: application/views/view_log/qso.php:94 application/views/visitor/index.php:36 msgid "Frequency" msgstr "Frequência" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1297 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:283 -#: application/views/logbookadvanced/index.php:598 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:626 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 #: application/views/qslcard/searchresult.php:87 -#: application/views/qso/components/previous_contacts.php:91 +#: application/views/qso/components/previous_contacts.php:90 #: application/views/search/search_result_ajax.php:17 #: application/views/simplefle/index.php:112 #: application/views/user/edit.php:240 application/views/user/edit.php:262 #: application/views/user/edit.php:284 application/views/user/edit.php:306 #: application/views/user/edit.php:329 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:538 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "Operador" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1318 #: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:669 +#: application/views/interface_assets/footer.php:675 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:154 +#: application/views/logbookadvanced/index.php:165 #: application/views/lookup/index.php:31 -#: application/views/lotw_views/index.php:56 +#: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 #: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 -#: application/views/station_profile/create.php:73 -#: application/views/station_profile/edit.php:78 -#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 #: application/views/stationsetup/stationsetup.php:150 -#: application/views/timeline/index.php:134 +#: application/views/timeline/index.php:167 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 -#: application/views/view_log/qso.php:236 -#: application/views/view_log/qso.php:529 +#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:532 msgid "Deleted DXCC" msgstr "DXCC cancelada" @@ -1324,7 +1466,7 @@ msgstr "Consulta rápida" #: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83 #: application/controllers/Lotw.php:125 application/views/adif/import.php:27 -#: application/views/interface_assets/header.php:423 +#: application/views/interface_assets/header.php:429 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1332,28 +1474,58 @@ msgstr "Consulta rápida" msgid "Logbook of the World" msgstr "Logbook of the World" -#: application/controllers/Lotw.php:610 +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "Certificado Importado." + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "Certificado atualizado." + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "Certificado eliminado." + +#: application/controllers/Lotw.php:413 +#, 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 "" +"Não foi encontrado nenhum certificado no ficheiro %s. Se o nome do ficheiro " +"contiver 'key-only', isto é tipicamente um pedido de certificado que ainda " +"não foi processado pelo LoTW." + +#: application/controllers/Lotw.php:617 msgid "LoTW ADIF Information" msgstr "Informações sobre o ADIF LoTW" -#: application/controllers/Lotw.php:718 +#: application/controllers/Lotw.php:725 msgid "LoTW ADIF Import" msgstr "Importação ADIF LoTW" -#: application/controllers/Lotw.php:830 +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "Não definiu as suas credenciais LoTW da ARRL !" + +#: application/controllers/Lotw.php:837 msgid "LoTW .TQ8 Upload" msgstr "Enviar .TQ8 LoTW" -#: application/controllers/Lotw.php:927 application/controllers/Lotw.php:932 +#: application/controllers/Lotw.php:915 +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:934 application/controllers/Lotw.php:939 msgid "LoTW .TQ8 Sent" msgstr ".TQ8 LoTW enviado" -#: application/controllers/Lotw.php:939 +#: application/controllers/Lotw.php:946 msgid "LoTW .TQ8 Not Sent" msgstr ".TQ8 LoTW não enviado" #: application/controllers/Mode.php:25 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:276 #: application/views/mode/index.php:15 msgid "Modes" msgstr "Modos" @@ -1362,28 +1534,28 @@ msgstr "Modos" msgid "Edit Mode" msgstr "Editar Modo" -#: application/controllers/Notes.php:19 +#: application/controllers/Notes.php:18 #: application/views/interface_assets/header.php:128 #: application/views/notes/add.php:9 application/views/notes/edit.php:10 #: application/views/notes/main.php:5 application/views/notes/main.php:8 #: application/views/notes/view.php:6 application/views/notes/view.php:9 #: application/views/qso/edit_ajax.php:36 -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:38 -#: application/views/qso/index.php:541 application/views/qso/index.php:586 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:590 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:38 +#: application/views/qso/index.php:563 application/views/qso/index.php:608 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:593 msgid "Notes" msgstr "Notas" -#: application/controllers/Notes.php:38 +#: application/controllers/Notes.php:37 msgid "Add Notes" msgstr "Adicionar notas" -#: application/controllers/Notes.php:58 +#: application/controllers/Notes.php:64 #: application/views/oqrs/showrequests.php:88 msgid "Note" msgstr "Nota" -#: application/controllers/Notes.php:79 application/views/notes/edit.php:7 +#: application/controllers/Notes.php:92 application/views/notes/edit.php:7 #: application/views/notes/view.php:19 msgid "Edit Note" msgstr "Editar nota" @@ -1391,16 +1563,16 @@ msgstr "Editar nota" #: application/controllers/Options.php:31 #: application/controllers/Options.php:41 #: application/controllers/Options.php:56 -#: application/controllers/Options.php:136 -#: application/controllers/Options.php:147 -#: application/controllers/Options.php:184 -#: application/controllers/Options.php:195 -#: application/controllers/Options.php:228 -#: application/controllers/Options.php:239 -#: application/controllers/Options.php:309 -#: application/controllers/Options.php:319 -#: application/controllers/Options.php:387 -#: application/controllers/Options.php:397 +#: application/controllers/Options.php:144 +#: application/controllers/Options.php:155 +#: application/controllers/Options.php:192 +#: application/controllers/Options.php:203 +#: application/controllers/Options.php:236 +#: application/controllers/Options.php:247 +#: application/controllers/Options.php:317 +#: application/controllers/Options.php:327 +#: application/controllers/Options.php:395 +#: application/controllers/Options.php:405 msgid "Wavelog Options" msgstr "Definições Wavelog" @@ -1417,97 +1589,98 @@ msgstr "Aparência" #: application/controllers/Options.php:110 #: application/controllers/Options.php:118 #: application/controllers/Options.php:126 +#: application/controllers/Options.php:134 msgid "Options saved" msgstr "Definições guardadas" -#: application/controllers/Options.php:165 +#: application/controllers/Options.php:173 msgid "de continent changed to " msgstr "de continente mudou para " -#: application/controllers/Options.php:170 +#: application/controllers/Options.php:178 msgid "Maximum age of spots changed to " msgstr "A idade máxima dos spots foi alterada para " -#: application/controllers/Options.php:175 +#: application/controllers/Options.php:183 msgid "DXCluster Cache URL changed to " msgstr "URL do cache DXCluster alterado para " -#: application/controllers/Options.php:185 -#: application/controllers/Options.php:196 +#: application/controllers/Options.php:193 +#: application/controllers/Options.php:204 msgid "Radio Settings" msgstr "Definições do Radio" -#: application/controllers/Options.php:217 +#: application/controllers/Options.php:225 msgid "Radio Timeout Warning changed to " msgstr "Aviso de timeout do rádio alterado para " -#: application/controllers/Options.php:229 -#: application/controllers/Options.php:240 +#: application/controllers/Options.php:237 +#: application/controllers/Options.php:248 #: application/views/options/sidebar.php:6 msgid "Email" msgstr "Correio eletrónico" -#: application/controllers/Options.php:297 +#: application/controllers/Options.php:305 msgid "The settings were saved successfully." msgstr "As definições foram guardadas com êxito." -#: application/controllers/Options.php:299 +#: application/controllers/Options.php:307 msgid "Something went wrong with saving the settings. Try again." msgstr "Algo correu mal ao guardar as definições. Tente novamente." -#: application/controllers/Options.php:310 -#: application/controllers/Options.php:320 +#: application/controllers/Options.php:318 +#: application/controllers/Options.php:328 #: application/views/options/sidebar.php:8 msgid "OQRS Options" msgstr "Definições OQRS" -#: application/controllers/Options.php:333 +#: application/controllers/Options.php:341 msgid "OQRS options have been saved." msgstr "As definições OQRS foram guardadas." -#: application/controllers/Options.php:373 -#: application/controllers/Options.php:378 +#: application/controllers/Options.php:381 +#: application/controllers/Options.php:386 msgid "Testmail failed. Something went wrong." msgstr "O Testmail falhou. Alguma coisa correu mal." -#: application/controllers/Options.php:375 +#: application/controllers/Options.php:383 msgid "Testmail sent. Email settings seem to be correct." msgstr "" "Correio de teste enviado. As definições de correio eletrónico parecem estar " "correctas." -#: application/controllers/Options.php:388 -#: application/controllers/Options.php:398 +#: application/controllers/Options.php:396 +#: application/controllers/Options.php:406 msgid "Version Info Settings" msgstr "Versão Informação Configurações" -#: application/controllers/Options.php:404 +#: application/controllers/Options.php:412 msgid "Version Info Header changed to" msgstr "Versão Informação Cabeçalho alterado para" -#: application/controllers/Options.php:408 +#: application/controllers/Options.php:416 msgid "Version Info Mode changed to" msgstr "Versão Informação Modo alterado para" -#: application/controllers/Options.php:413 +#: application/controllers/Options.php:421 msgid "Version Info Custom Text saved!" msgstr "Versão Informação Texto personalizado guardado!" -#: application/controllers/Options.php:424 +#: application/controllers/Options.php:432 msgid "Version Info will be shown to all users again" msgstr "Versão Informação voltará a ser mostrado a todos os utilizadores" -#: application/controllers/Options.php:432 +#: application/controllers/Options.php:440 msgid "Version Info will not be shown to any user" msgstr "Versão Informação não será mostrado a nenhum utilizador" -#: application/controllers/Oqrs.php:22 application/controllers/Oqrs.php:61 -#: application/controllers/Oqrs.php:73 +#: application/controllers/Oqrs.php:46 application/controllers/Oqrs.php:85 +#: application/controllers/Oqrs.php:97 msgid "Log Search & OQRS" msgstr "Pesquisa do Log & OQRS" -#: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:413 +#: application/controllers/Oqrs.php:127 +#: application/views/interface_assets/header.php:419 msgid "OQRS Requests" msgstr "Pedidos OQRS" @@ -1515,8 +1688,48 @@ msgstr "Pedidos OQRS" msgid "QRB Calculator" msgstr "Calculadora QRB" +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "Latitude: %s, Longitude: %s" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "A distância entre %s e %s é de %s milha." +msgstr[1] "A distância entre %s e %s é de %s milhas." + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "A distância entre %s e %s é de %s milha náutica." +msgstr[1] "A distância entre %s e %s é de %s milhas náuticas." + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "A distância entre %s e %s é de %s quilómetro." +msgstr[1] "A distância entre %s e %s é de %s quilómetros." + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "O rumo é %s." + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" +"Latitudes negativas estão a sul do equador, longitudes negativas estão a " +"oeste de Greenwich." + #: application/controllers/Qrz.php:173 -#: application/views/interface_assets/header.php:426 +#: application/views/interface_assets/header.php:432 msgid "QRZ Logbook" msgstr "Logbook QRZ" @@ -1528,8 +1741,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:244 -#: application/views/dashboard/index.php:261 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:277 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1552,13 +1765,13 @@ msgid "Add QSO" msgstr "Adicionar contacto" #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Hardware Interfaces" msgstr "Interfaces hardware" #: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 +#: application/views/contesting/index.php:143 #: application/views/qso/index.php:312 msgid "Radio" msgstr "Rádio" @@ -1568,10 +1781,10 @@ msgid "Timestamp" msgstr "Registo de data e hora" #: application/controllers/Radio.php:52 -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 +#: application/views/logbookadvanced/index.php:550 +#: application/views/lotw_views/index.php:43 #: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 +#: application/views/simplefle/index.php:177 #: application/views/stationsetup/exportmapoptions.php:5 #: application/views/statistics/custom.php:31 #: application/views/statistics/custom_result.php:33 @@ -1579,7 +1792,7 @@ msgid "Options" msgstr "Opções" #: application/controllers/Radio.php:90 -#: application/views/contesting/index.php:96 +#: application/views/contesting/index.php:147 #: application/views/qso/index.php:316 msgid "last updated" msgstr "última atualização" @@ -1595,26 +1808,24 @@ msgstr "Predefinição (clique para libertar)" #: application/controllers/Radio.php:105 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2323 -#: application/views/interface_assets/footer.php:2341 -#: application/views/interface_assets/footer.php:2362 -#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2337 +#: application/views/interface_assets/footer.php:2355 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 #: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:514 -#: application/views/lotw_views/index.php:118 +#: application/views/logbookadvanced/index.php:542 +#: application/views/lotw_views/index.php:114 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 #: application/views/qslcard/index.php:65 #: application/views/satellite/edit.php:40 #: application/views/satellite/index.php:26 #: application/views/search/stored_queries.php:22 -#: application/views/station_profile/index.php:55 -#: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 #: application/views/stationsetup/stationsetup.php:137 #: application/views/stationsetup/stationsetup.php:192 -#: application/views/themes/index.php:107 application/views/user/main.php:54 -#: application/views/view_log/qso.php:613 +#: application/views/themes/index.php:107 application/views/user/index.php:57 +#: application/views/view_log/qso.php:616 msgid "Delete" msgstr "Apagar" @@ -1622,11 +1833,15 @@ msgstr "Apagar" msgid "No CAT interfaced radios found." msgstr "Não foram encontrados rádios com interface CAT." -#: application/controllers/Satellite.php:37 +#: application/controllers/Reg1test.php:25 +msgid "Export EDI" +msgstr "Exportar EDI" + +#: application/controllers/Satellite.php:39 msgid "Create Satellite" msgstr "Criar satélite" -#: application/controllers/Satellite.php:60 +#: application/controllers/Satellite.php:66 msgid "Edit Satellite" msgstr "Editar satélite" @@ -1639,10 +1854,7 @@ msgstr "Não tem localizações de estações. Vá a %s para o criar!" #: application/views/awards/counties/index.php:8 #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:19 -#: application/views/awards/was/index.php:21 -#: application/views/dashboard/index.php:64 -#: application/views/dashboard/index.php:73 -#: application/views/dashboard/index.php:82 +#: application/views/awards/was/index.php:23 #: application/views/simplefle/index.php:16 msgid "here" msgstr "aqui" @@ -1654,9 +1866,10 @@ msgstr "Tempos dos satélite" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:336 -#: application/views/interface_assets/header.php:343 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:340 +#: application/views/interface_assets/header.php:347 +#: application/views/logbookadvanced/index.php:538 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1670,8 +1883,8 @@ msgstr "Tempos dos satélite" #: application/views/search/lotw_unconfirmed.php:37 #: application/views/search/main.php:4 application/views/search/main.php:12 #: application/views/search/main.php:33 -#: application/views/visitor/layout/header.php:99 -#: application/views/visitor/layout/header.php:100 +#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:98 msgid "Search" msgstr "Procurar" @@ -1691,15 +1904,23 @@ msgstr "" "Contactos não confirmados no LoTW, mas o indicativo foi enviados para o LoTW " "após a data do contacto" -#: application/controllers/Station.php:35 -#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/controllers/Station.php:36 +#: application/controllers/Stationsetup.php:226 +msgid "Create Station Location" +msgstr "Criar localização da estação" + +#: application/controllers/Station.php:51 +msgid "Edit Station Location: " +msgstr "Editar localização da estação: " + +#: application/controllers/Station.php:59 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 -#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/edit.php:19 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:427 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 @@ -1707,22 +1928,13 @@ msgstr "" msgid "Station Location" msgstr "Localização da estação" -#: application/controllers/Station.php:55 -#: application/controllers/Stationsetup.php:226 -msgid "Create Station Location" -msgstr "Criar localização da estação" - -#: application/controllers/Station.php:70 -msgid "Edit Station Location: " -msgstr "Editar localização da estação: " - -#: application/controllers/Station.php:92 +#: application/controllers/Station.php:73 msgid "Duplicate Station Location:" msgstr "Localização da estação duplicada:" #: application/controllers/Stationsetup.php:35 -#: application/views/interface_assets/header.php:377 -#: application/views/interface_assets/header.php:488 +#: application/views/interface_assets/header.php:381 +#: application/views/interface_assets/header.php:494 msgid "Station Setup" msgstr "Configuração da estação" @@ -1740,7 +1952,7 @@ msgstr "Não autorizado" #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 #: application/controllers/Stationsetup.php:436 -#: application/views/qso/index.php:608 +#: application/views/qso/index.php:630 msgid "Error" msgstr "Erro" @@ -1772,9 +1984,10 @@ msgstr "Erro. A ligação já está a ser utilizada!" #: application/views/options/appearance.php:83 #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 +#: application/views/options/appearance.php:110 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:259 -#: application/views/station_profile/edit.php:312 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 msgid "Disabled" @@ -1786,7 +1999,7 @@ msgid "Set as Active Logbook" msgstr "Definir como logbook ativo" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:486 +#: application/views/interface_assets/header.php:492 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1811,7 +2024,6 @@ msgid "Are you sure you want to delete the public slug?" msgstr "Tem a certeza de que pretende eliminar o slug público?" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "" "Are you sure you want to make the following station the active station: " @@ -1820,13 +2032,11 @@ msgstr "" "ativa: " #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "Definir ativa" #: application/controllers/Stationsetup.php:351 -#: application/views/station_profile/index.php:71 #: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "Estação ativa" @@ -1835,32 +2045,28 @@ msgstr "Estação ativa" #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:28 -#: application/views/station_profile/index.php:76 #: application/views/stationsetup/stationsetup.php:161 -#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/user/index.php:90 application/views/user/index.php:92 msgid "QSO" msgstr "Contacto" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 -#: application/views/cron/index.php:56 -#: application/views/interface_assets/footer.php:535 -#: application/views/interface_assets/footer.php:544 +#: application/views/cron/index.php:58 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 #: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:541 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 -#: application/views/station_profile/index.php:46 -#: application/views/station_profile/index.php:79 #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 -#: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/views/themes/index.php:104 application/views/user/index.php:52 msgid "Edit" msgstr "Editar" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:99 #: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" @@ -1868,23 +2074,18 @@ msgstr "" "de estação?" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:54 -#: application/views/station_profile/index.php:101 #: application/views/stationsetup/stationsetup.php:136 #: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "Registo vazio" #: application/controllers/Stationsetup.php:367 -#: application/views/station_profile/index.php:47 -#: application/views/station_profile/index.php:82 #: application/views/stationsetup/stationsetup.php:129 #: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "Copiar" #: application/controllers/Stationsetup.php:372 -#: application/views/station_profile/index.php:105 #: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "" @@ -1919,7 +2120,7 @@ msgid "QSL Statistics" msgstr "Estatísticas de QSL" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:282 msgid "Themes" msgstr "Temas" @@ -1931,14 +2132,14 @@ msgstr "Criar Tema" msgid "Edit Theme" msgstr "Editar Tema" -#: application/controllers/Timeline.php:17 -#: application/views/interface_assets/header.php:148 +#: application/controllers/Timeline.php:15 +#: application/views/interface_assets/header.php:150 #: application/views/timeline/index.php:2 msgid "Timeline" msgstr "Fita do tempo" #: application/controllers/Timeplotter.php:17 -#: application/views/interface_assets/header.php:152 +#: application/views/interface_assets/header.php:154 #: application/views/timeplotter/index.php:9 msgid "Timeplotter" msgstr "Plotador de tempo" @@ -1979,37 +2180,37 @@ msgstr "Excepções do DXCC:" msgid "Dxcc Prefixes:" msgstr "Prefixos DXCC:" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:268 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:272 msgid "User Accounts" msgstr "Contas de utilizadores" -#: application/controllers/User.php:52 +#: application/controllers/User.php:76 msgid "Add User" msgstr "Adicionar utilizador" -#: application/controllers/User.php:166 +#: application/controllers/User.php:190 msgid "Users" msgstr "Utilizadores" -#: application/controllers/User.php:240 application/controllers/User.php:673 +#: application/controllers/User.php:264 application/controllers/User.php:697 msgid "Edit User" msgstr "Editar utilizador" -#: application/controllers/User.php:665 application/controllers/User.php:668 -#: application/views/user/main.php:3 application/views/user/main.php:46 +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 msgid "User" msgstr "Utilizador" -#: application/controllers/User.php:665 application/controllers/User.php:668 +#: application/controllers/User.php:689 application/controllers/User.php:692 msgid "edited" msgstr "editado" -#: application/controllers/User.php:722 +#: application/controllers/User.php:746 msgid "Profile" msgstr "Perfil" -#: application/controllers/User.php:779 +#: application/controllers/User.php:803 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." @@ -2017,22 +2218,18 @@ msgstr "" "Parabéns! O Wavelog foi instalado com sucesso. Pode agora fazer login pela " "primeira vez." -#: application/controllers/User.php:843 application/controllers/User.php:853 +#: application/controllers/User.php:867 application/controllers/User.php:877 msgid "Login failed. Try again." msgstr "O login falhou. Tente novamente." -#: application/controllers/User.php:860 -#: application/views/interface_assets/header.php:356 -#: application/views/user/login.php:89 -#: application/views/visitor/layout/header.php:88 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:360 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "Iniciar sessão" -#: application/controllers/User.php:868 -msgid "User logged in" -msgstr "Utilizador com sessão iniciada" - -#: application/controllers/User.php:899 +#: application/controllers/User.php:922 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " @@ -2043,72 +2240,104 @@ msgstr "" "administrador. Atualmente, apenas os administradores têm permissão para " "iniciar sessão." -#: application/controllers/User.php:902 +#: application/controllers/User.php:925 msgid "Incorrect username or password!" msgstr "Nome de utilizador ou palavra-passe incorrectos!" -#: application/controllers/User.php:919 +#: application/controllers/User.php:942 #, php-format msgid "User %s logged out." msgstr "O utilizador %s terminou a sessão." -#: application/controllers/User.php:933 +#: application/controllers/User.php:956 msgid "Password Reset is disabled on the Demo!" msgstr "A reposição da palavra-passe está desactivada na Demo!" -#: application/controllers/User.php:946 +#: application/controllers/User.php:969 msgid "Forgot Password" msgstr "Esqueci-me da palavra-passe" -#: application/controllers/User.php:996 application/views/user/main.php:8 +#: application/controllers/User.php:1019 application/views/user/index.php:8 msgid "Email settings are incorrect." msgstr "As definições de e-mail estão incorrectas." -#: application/controllers/User.php:1000 application/controllers/User.php:1005 +#: application/controllers/User.php:1023 application/controllers/User.php:1028 msgid "Password Reset Processed." msgstr "A redefinição da palavra-passe foi processada." -#: application/controllers/User.php:1107 +#: application/controllers/User.php:1129 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "Redefinir a palavra-passe" +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" +"Atualmente, não pode personificar outro utilizador. Por favor, altera a " +"encryption_key no seu ficheiro config.php primeiro!" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "Hash inválido" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "O hash de personificação é muito antigo. Por favor, tente novamente." + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" +"Não pode fazer-se passar por outro utilizador enquanto não estiver " +"autenticado como o utilizador de origem" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "Houve um problema com a sua sessão. Por favor, tente novamente." + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "O utilizador solicitado para imitar não existe" + #: application/controllers/Visitor.php:50 -#: application/controllers/Visitor.php:79 -#: application/controllers/Visitor.php:142 -#: application/controllers/Visitor.php:169 -#: application/controllers/Visitor.php:199 -#: application/controllers/Visitor.php:478 +#: application/controllers/Visitor.php:81 +#: application/controllers/Visitor.php:148 +#: application/controllers/Visitor.php:175 +#: application/controllers/Visitor.php:210 +#: application/controllers/Visitor.php:472 #: application/controllers/Widgets.php:40 msgid "Unknown Public Page." msgstr "Página pública desconhecida." -#: application/controllers/Visitor.php:74 -#: application/controllers/Visitor.php:165 -#: application/controllers/Visitor.php:195 -#: application/controllers/Visitor.php:474 +#: application/controllers/Visitor.php:76 +#: application/controllers/Visitor.php:171 +#: application/controllers/Visitor.php:206 +#: application/controllers/Visitor.php:468 #: application/controllers/Widgets.php:36 msgid "Empty Logbook" msgstr "Logbook vazio" -#: application/controllers/Visitor.php:205 +#: application/controllers/Visitor.php:216 msgid "Satellite Gridsquare Map" msgstr "Mapa Gridsquare de satélite" -#: application/controllers/Visitor.php:411 +#: application/controllers/Visitor.php:405 #: application/views/stationsetup/stationsetup.php:35 msgid "Public Search" msgstr "Pesquisa pública" -#: application/controllers/Visitor.php:444 +#: application/controllers/Visitor.php:438 msgid "Export Map" msgstr "Exportar mapa" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:427 +#: application/views/interface_assets/header.php:433 msgid "QO-100 Dx Club Upload" msgstr "Transferência QO-100 Dx Club" @@ -2122,6 +2351,84 @@ msgstr "" msgid "No stations found that are using Wavelog OQRS." msgstr "Não foram encontradas estações que estejam a utilizar o OQRS Wavelog." +#: application/libraries/Subdivisions.php:31 +msgctxt "Division Name (States in various countries)." +msgid "Province" +msgstr "Província" + +#: application/libraries/Subdivisions.php:39 +msgctxt "Division Name (States in various countries)." +msgid "Oblast" +msgstr "Oblast" + +#: application/libraries/Subdivisions.php:41 +#: application/libraries/Subdivisions.php:47 +msgctxt "Division Name (States in various countries)." +msgid "Region" +msgstr "Região" + +#: application/libraries/Subdivisions.php:45 +msgctxt "Division Name (States in various countries)." +msgid "Department" +msgstr "Departamento" + +#: application/libraries/Subdivisions.php:49 +msgctxt "Division Name (States in various countries)." +msgid "Municipality" +msgstr "Município" + +#: application/libraries/Subdivisions.php:51 +msgctxt "Division Name (States in various countries)." +msgid "Federal State" +msgstr "Estado Federal" + +#: application/libraries/Subdivisions.php:56 +#: application/libraries/Subdivisions.php:94 +msgctxt "Division Name (States in various countries)." +msgid "County" +msgstr "Condado" + +#: application/libraries/Subdivisions.php:60 +#: application/libraries/Subdivisions.php:85 +msgctxt "Division Name (States in various countries)." +msgid "District" +msgstr "Distrito" + +#: application/libraries/Subdivisions.php:62 +msgctxt "Division Name (States in various countries)." +msgid "Canton" +msgstr "Cantão" + +#: application/libraries/Subdivisions.php:64 +msgctxt "Division Name (States in various countries)." +msgid "US State" +msgstr "Estado dos EUA" + +#: application/libraries/Subdivisions.php:67 +msgctxt "Division Name (States in various countries)." +msgid "Prefecture" +msgstr "Prefeitura" + +#: application/libraries/Subdivisions.php:69 +msgctxt "Division Name (States in various countries)." +msgid "State" +msgstr "Estado" + +#: application/libraries/Subdivisions.php:78 +msgctxt "Division Name (States in various countries)." +msgid "US County" +msgstr "Condado dos EUA" + +#: application/libraries/Subdivisions.php:90 +msgctxt "Division Name (States in various countries)." +msgid "DME" +msgstr "DME" + +#: application/libraries/Subdivisions.php:92 +msgctxt "Division Name (States in various countries)." +msgid "City / Ku / Gun" +msgstr "Cidade / Ku / Gun" + #: application/models/Eqslmethods_model.php:281 msgid "Your eQSL username and/or password is incorrect." msgstr "O seu nome de utilizador e/ou palavra-passe eQSL está incorreto." @@ -2166,31 +2473,31 @@ msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" "HRDlog: Não foram encontrados perfis de estação com credenciais do HRDlog." -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4255 msgid "QSO could not be matched" msgstr "Não há correspondência de contactos" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4261 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "confirmado por LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4266 msgid "confirmed by award manager" msgstr "confirmado pelo gestor do diploma" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4269 msgid "confirmed by cross-check of DCL data" msgstr "confirmado pelo controlo cruzado dos dados da DCL" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4272 msgid "confirmation pending" msgstr "confirmação pendente" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4275 msgid "unconfirmed" msgstr "não confirmado" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4278 msgid "unknown" msgstr "desconhecido" @@ -2219,7 +2526,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:222 +#: application/views/dashboard/index.php:238 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2232,7 +2539,7 @@ msgid "Yearly" msgstr "Anual" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:243 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Mês" @@ -2248,29 +2555,33 @@ msgstr "Diferença" #: application/views/accumulate/index.php:24 #: application/views/accumulate/index.php:34 +#: application/views/accumulate/index.php:83 #: application/views/activated_gridmap/index.php:10 #: application/views/activated_gridmap/index.php:22 #: application/views/activated_gridmap/index.php:32 #: application/views/activated_gridmap/index.php:41 -#: application/views/activators/index.php:10 -#: application/views/awards/cq/index.php:75 -#: application/views/awards/cq/index.php:89 +#: application/views/activators/index.php:13 +#: application/views/awards/cq/index.php:77 +#: application/views/awards/cq/index.php:91 #: application/views/awards/dok/index.php:94 #: application/views/awards/dxcc/index.php:134 #: application/views/awards/dxcc/index.php:150 #: application/views/awards/dxcc/index.php:165 -#: application/views/awards/helvetia/index.php:88 +#: application/views/awards/helvetia/index.php:90 #: application/views/awards/iota/index.php:108 -#: application/views/awards/itu/index.php:75 -#: application/views/awards/itu/index.php:89 +#: application/views/awards/itu/index.php:77 +#: application/views/awards/itu/index.php:91 #: application/views/awards/jcc/index.php:91 -#: application/views/awards/rac/index.php:80 +#: application/views/awards/rac/index.php:82 #: application/views/awards/wab/index.php:24 #: application/views/awards/wab/index.php:36 #: application/views/awards/wab/index.php:46 #: application/views/awards/wab/index.php:55 -#: application/views/awards/waja/index.php:92 -#: application/views/awards/was/index.php:88 +#: application/views/awards/wac/index.php:81 +#: application/views/awards/wac/index.php:97 +#: application/views/awards/wac/index.php:113 +#: application/views/awards/waja/index.php:94 +#: application/views/awards/was/index.php:90 #: application/views/bandmap/list.php:71 application/views/bandmap/list.php:78 #: application/views/bandmap/list.php:90 application/views/bands/index.php:117 #: application/views/cabrillo/index.php:65 @@ -2281,6 +2592,7 @@ msgstr "Diferença" #: application/views/csv/index.php:94 application/views/distances/index.php:21 #: application/views/distances/index.php:36 #: application/views/distances/index.php:46 +#: application/views/distances/index.php:56 #: application/views/dxatlas/index.php:21 #: application/views/dxatlas/index.php:33 #: application/views/dxatlas/index.php:44 @@ -2292,28 +2604,29 @@ msgstr "Diferença" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1435 -#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1448 +#: application/views/interface_assets/footer.php:1587 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:172 #: application/views/logbookadvanced/index.php:183 #: application/views/logbookadvanced/index.php:194 -#: application/views/logbookadvanced/index.php:203 -#: application/views/logbookadvanced/index.php:212 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:205 +#: application/views/logbookadvanced/index.php:214 +#: application/views/logbookadvanced/index.php:223 #: application/views/logbookadvanced/index.php:248 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:321 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:374 -#: application/views/logbookadvanced/index.php:385 -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:259 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:423 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2324,11 +2637,12 @@ msgstr "Diferença" #: application/views/stationsetup/exportmapoptions.php:33 #: application/views/timeline/index.php:10 #: application/views/timeline/index.php:22 +#: application/views/timeline/index.php:77 #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 #: application/views/user/edit.php:633 -#: application/views/visitor/layout/footer.php:169 +#: application/views/visitor/layout/footer.php:171 msgid "All" msgstr "Todos" @@ -2366,29 +2680,254 @@ msgstr "Worked All Japan (WAJA)" msgid "Period" msgstr "Período" -#: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: application/views/accumulate/index.php:80 +#: application/views/distances/index.php:53 +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/timeline/index.php:74 +msgid "Propagation" +msgstr "Propagação" + +#: application/views/accumulate/index.php:84 +#: application/views/distances/index.php:57 +#: application/views/timeline/index.php:78 +msgid "All but SAT" +msgstr "Todos menos SAT" + +#: application/views/accumulate/index.php:85 +#: application/views/distances/index.php:58 +#: application/views/gridmap/index.php:42 +#: application/views/logbookadvanced/edit.php:142 +#: application/views/logbookadvanced/index.php:307 +#: application/views/timeline/index.php:79 +msgid "None/Empty" +msgstr "Nenhum/Vazio" + +#: application/views/accumulate/index.php:86 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/logbookadvanced/index.php:225 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:414 +#: application/views/timeline/index.php:80 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "Aircraft Scatter" + +#: application/views/accumulate/index.php:87 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/logbookadvanced/index.php:226 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:415 +#: application/views/timeline/index.php:81 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "Aurora" + +#: application/views/accumulate/index.php:88 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/logbookadvanced/index.php:227 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:416 +#: application/views/timeline/index.php:82 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "Aurora-E" + +#: application/views/accumulate/index.php:89 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/logbookadvanced/index.php:228 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:417 +#: application/views/timeline/index.php:83 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "Back scatter" + +#: application/views/accumulate/index.php:90 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/logbookadvanced/index.php:229 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:418 +#: application/views/timeline/index.php:84 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "EchoLink" + +#: application/views/accumulate/index.php:91 +#: 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/logbookadvanced/index.php:230 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:419 +#: application/views/timeline/index.php:85 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "Terra-Lua-Terra" + +#: application/views/accumulate/index.php:92 +#: 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/logbookadvanced/index.php:231 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:420 +#: application/views/timeline/index.php:86 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "Esporádico E" + +#: application/views/accumulate/index.php:93 +#: 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/logbookadvanced/index.php:232 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:421 +#: application/views/timeline/index.php:87 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "Irregularidades Alinhadas ao Campo" + +#: application/views/accumulate/index.php:94 +#: 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/logbookadvanced/index.php:233 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:422 +#: application/views/timeline/index.php:88 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "Reflexão F2" + +#: application/views/accumulate/index.php:95 +#: 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/logbookadvanced/index.php:234 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:423 +#: application/views/timeline/index.php:89 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "Assistido pela Internet" + +#: application/views/accumulate/index.php:96 +#: 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/logbookadvanced/index.php:235 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:424 +#: application/views/timeline/index.php:90 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "Ionoscatter" + +#: application/views/accumulate/index.php:97 +#: 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/logbookadvanced/index.php:236 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:425 +#: application/views/timeline/index.php:91 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "IRLP" + +#: application/views/accumulate/index.php:98 +#: 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/logbookadvanced/index.php:237 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:426 +#: application/views/timeline/index.php:92 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "Dispersão meteorítica" + +#: application/views/accumulate/index.php:99 +#: 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/logbookadvanced/index.php:238 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:427 +#: application/views/timeline/index.php:93 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "Repetidor ou transponder terrestre ou atmosférico" + +#: application/views/accumulate/index.php:100 +#: 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/logbookadvanced/index.php:239 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:428 +#: application/views/timeline/index.php:94 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "Dispersão de chuva" + +#: application/views/accumulate/index.php:101 +#: 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/logbookadvanced/index.php:240 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:429 +#: application/views/timeline/index.php:95 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Satélite" + +#: application/views/accumulate/index.php:102 +#: 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/logbookadvanced/index.php:241 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:430 +#: application/views/timeline/index.php:96 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "Trans-equatorial" + +#: application/views/accumulate/index.php:103 +#: 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/logbookadvanced/index.php:242 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:431 +#: application/views/timeline/index.php:97 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "Ducting troposférico" + +#: application/views/accumulate/index.php:112 +#: application/views/activators/index.php:53 +#: application/views/awards/cq/index.php:113 #: application/views/awards/dok/index.php:127 #: application/views/awards/dxcc/index.php:187 -#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/helvetia/index.php:112 #: application/views/awards/iota/index.php:130 -#: application/views/awards/itu/index.php:111 +#: application/views/awards/itu/index.php:113 #: application/views/awards/jcc/index.php:113 -#: application/views/awards/rac/index.php:102 -#: application/views/awards/waja/index.php:114 -#: application/views/awards/was/index.php:110 -#: application/views/distances/index.php:53 +#: application/views/awards/rac/index.php:104 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:79 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 #: application/views/stationsetup/exportmapoptions.php:6 -#: application/views/timeline/index.php:72 -#: application/views/timeline/index.php:137 -#: application/views/timeline/index.php:164 -#: application/views/timeline/index.php:189 -#: application/views/timeline/index.php:218 -#: application/views/timeline/index.php:243 -#: application/views/timeline/index.php:270 +#: application/views/timeline/index.php:105 +#: application/views/timeline/index.php:170 +#: application/views/timeline/index.php:197 +#: application/views/timeline/index.php:222 +#: application/views/timeline/index.php:251 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:303 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "Mostrar" @@ -2396,12 +2935,15 @@ msgstr "Mostrar" #: application/views/activated_gridmap/index.php:20 #: application/views/awards/dxcc/index.php:131 #: application/views/awards/wab/index.php:34 +#: application/views/awards/wac/index.php:78 #: 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/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/edit.php:17 +#: application/views/logbookadvanced/index.php:203 #: application/views/satellite/flightpath.php:34 +#: application/views/satellite/passtable.php:5 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2410,9 +2952,10 @@ msgstr "Satélite" #: application/views/activated_gridmap/index.php:30 #: application/views/awards/dxcc/index.php:147 #: application/views/awards/wab/index.php:44 +#: application/views/awards/wac/index.php:94 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:212 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2427,16 +2970,17 @@ msgid "Confirmation" msgstr "Confirmação" #: application/views/activated_gridmap/index.php:82 -#: application/views/awards/cq/index.php:66 +#: application/views/awards/cq/index.php:68 #: application/views/awards/dok/index.php:67 #: application/views/awards/dxcc/index.php:73 -#: application/views/awards/helvetia/index.php:65 -#: application/views/awards/itu/index.php:66 +#: application/views/awards/helvetia/index.php:67 +#: application/views/awards/itu/index.php:68 #: application/views/awards/jcc/index.php:64 -#: application/views/awards/rac/index.php:57 +#: application/views/awards/rac/index.php:59 #: application/views/awards/wab/index.php:96 -#: application/views/awards/waja/index.php:65 -#: application/views/awards/was/index.php:65 +#: application/views/awards/wac/index.php:56 +#: application/views/awards/waja/index.php:67 +#: application/views/awards/was/index.php:67 #: application/views/gridmap/index.php:125 application/views/user/edit.php:675 msgid "QRZ.com" msgstr "QRZ.com" @@ -2472,59 +3016,62 @@ msgstr "Longitude" #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:37 #: application/views/gridmap/index.php:156 -#: application/views/logbookadvanced/index.php:12 +#: application/views/logbookadvanced/index.php:13 msgid "Bearing" msgstr "Direção" -#: application/views/activators/index.php:23 +#: application/views/activators/index.php:26 msgctxt "Orbiter LEO or GEO" msgid "Both" msgstr "Ambos" -#: application/views/activators/index.php:30 +#: application/views/activators/index.php:33 msgid "Minimum Count" msgstr "Contagem mínima" -#: application/views/activators/index.php:77 +#: application/views/activators/index.php:76 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:46 -#: application/views/awards/cq/index.php:196 +#: application/views/awards/cq/index.php:198 #: application/views/awards/dok/index.php:196 #: application/views/awards/dxcc/index.php:280 -#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/helvetia/index.php:200 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:196 +#: application/views/awards/itu/index.php:198 #: application/views/awards/jcc/index.php:236 #: application/views/awards/pota/index.php:67 -#: application/views/awards/rac/index.php:190 +#: application/views/awards/rac/index.php:192 #: application/views/awards/sig/index.php:45 #: application/views/awards/sota/index.php:53 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:39 -#: application/views/awards/waja/index.php:200 -#: application/views/awards/was/index.php:198 +#: application/views/awards/wac/index.php:199 +#: application/views/awards/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 +#: application/views/distancerecords/index.php:50 #: application/views/public_search/empty.php:3 -#: application/views/qrz/export.php:64 application/views/timeline/index.php:102 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:135 msgid "Nothing found!" msgstr "Nada encontrado!" -#: application/views/activators/index.php:99 -#: application/views/adif/import.php:66 application/views/adif/import.php:172 -#: application/views/adif/import.php:217 +#: application/views/activators/index.php:98 +#: application/views/adif/import.php:66 application/views/adif/import.php:182 +#: application/views/adif/import.php:227 #: application/views/awards/pota/index.php:34 #: application/views/awards/sig/qso_list.php:11 #: application/views/awards/sota/index.php:25 #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:104 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:152 +#: application/views/contesting/index.php:156 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:168 +#: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 -#: application/views/lotw_views/index.php:39 +#: application/views/lotw_views/index.php:35 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 #: application/views/qslcard/index.php:28 @@ -2533,35 +3080,36 @@ msgstr "Nada encontrado!" #: application/views/qslprint/qslprint.php:21 #: application/views/qslprint/qsolist.php:6 #: application/views/qso/edit_ajax.php:62 application/views/qso/index.php:124 +#: application/views/reg1test/index.php:33 #: application/views/search/cqzones.php:32 #: application/views/search/cqzones_result.php:9 #: application/views/search/lotw_unconfirmed.php:33 #: application/views/search/lotw_unconfirmed_result.php:6 #: application/views/search/result.php:11 -#: application/views/simplefle/index.php:142 -#: application/views/station_profile/edit.php:36 +#: application/views/simplefle/index.php:148 +#: application/views/station_profile/edit.php:63 #: application/views/stationsetup/linkedlocations.php:17 -#: application/views/user/edit.php:123 application/views/user/main.php:4 -#: application/views/user/main.php:47 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:507 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 +#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:510 msgid "Callsign" msgstr "Indicativo" -#: application/views/activators/index.php:100 +#: application/views/activators/index.php:99 msgid "Count" msgstr "Contagem" -#: application/views/activators/index.php:102 -#: application/views/timeline/index.php:121 -#: application/views/timeline/index.php:153 -#: application/views/timeline/index.php:178 -#: application/views/timeline/index.php:205 -#: application/views/timeline/index.php:232 -#: application/views/timeline/index.php:258 +#: application/views/activators/index.php:101 +#: application/views/timeline/index.php:154 +#: application/views/timeline/index.php:186 +#: application/views/timeline/index.php:211 +#: application/views/timeline/index.php:238 +#: application/views/timeline/index.php:265 +#: application/views/timeline/index.php:291 msgid "Show QSO's" msgstr "Mostrar contactos" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "Mostrar mapa" @@ -2602,10 +3150,12 @@ msgstr "Há dados diferentes para DOK no teu log em comparação com DCL." #: application/views/awards/wwff/index.php:32 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:25 -#: application/views/contesting/index.php:42 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36 +#: application/views/contesting/index.php:93 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:163 +#: application/views/debug/index.php:545 +#: application/views/distancerecords/index.php:16 +#: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2618,22 +3168,22 @@ msgstr "Há dados diferentes para DOK no teu log em comparação com DCL." #: application/views/qslcard/searchresult.php:4 #: application/views/qslprint/qslprint.php:22 #: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:64 -#: application/views/qso/index.php:100 +#: application/views/qso/index.php:100 application/views/satellite/pass.php:473 #: application/views/search/cqzones_result.php:7 #: application/views/search/result_search.php:4 #: application/views/search/search_result_ajax.php:89 -#: application/views/simplefle/index.php:140 +#: application/views/simplefle/index.php:146 #: application/views/statistics/custom.php:38 #: application/views/statistics/custom_result.php:40 #: application/views/statistics/custom_result.php:85 -#: application/views/timeline/index.php:116 -#: application/views/timeline/index.php:151 -#: application/views/timeline/index.php:176 -#: application/views/timeline/index.php:201 -#: application/views/timeline/index.php:230 -#: application/views/timeline/index.php:255 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:184 +#: application/views/timeline/index.php:209 +#: application/views/timeline/index.php:234 +#: application/views/timeline/index.php:263 +#: application/views/timeline/index.php:288 #: application/views/view_log/partial/log.php:4 -#: application/views/view_log/partial/log_ajax.php:57 +#: application/views/view_log/partial/log_ajax.php:59 #: application/views/visitor/index.php:147 #: application/views/widgets/qsos.php:24 msgid "Date" @@ -2644,10 +3194,12 @@ msgstr "Data" #: application/views/awards/wwff/index.php:33 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:26 -#: application/views/contesting/index.php:47 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37 +#: application/views/contesting/index.php:98 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:166 +#: application/views/debug/index.php:546 +#: application/views/distancerecords/index.php:17 +#: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2658,12 +3210,12 @@ msgstr "Data" #: application/views/search/cqzones_result.php:8 #: application/views/search/result_search.php:5 #: application/views/search/search_result_ajax.php:91 -#: application/views/simplefle/index.php:141 +#: application/views/simplefle/index.php:147 #: application/views/statistics/custom_result.php:86 -#: application/views/timeline/index.php:256 +#: application/views/timeline/index.php:289 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 -#: application/views/view_log/partial/log_ajax.php:59 +#: application/views/view_log/partial/log_ajax.php:61 #: application/views/visitor/index.php:150 #: application/views/widgets/qsos.php:26 msgid "Time" @@ -2672,7 +3224,7 @@ msgstr "Tempo" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 -#: application/views/contesting/index.php:201 +#: application/views/contesting/index.php:248 #: application/views/debug/index.php:547 application/views/debug/index.php:582 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -2684,7 +3236,7 @@ msgstr "Tempo" #: application/views/search/search_result_ajax.php:93 #: application/views/statistics/custom_result.php:87 #: application/views/view_log/partial/log.php:8 -#: application/views/view_log/partial/log_ajax.php:61 +#: application/views/view_log/partial/log_ajax.php:63 #: application/views/visitor/index.php:152 #: application/views/widgets/qsos.php:28 msgid "Call" @@ -2702,14 +3254,14 @@ msgstr "DOK no DCL" msgid "DCL QSL Status" msgstr "Estado QSL DCL" -#: application/views/adif/import.php:36 application/views/adif/import.php:242 +#: application/views/adif/import.php:36 application/views/adif/import.php:252 msgid "DARC DCL" msgstr "DARC DCL" #: application/views/adif/import.php:55 -#: application/views/dashboard/index.php:97 -#: application/views/dashboard/index.php:118 -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:112 +#: application/views/dashboard/index.php:133 +#: application/views/dashboard/index.php:139 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2719,29 +3271,29 @@ msgstr "Importante" msgid "Log Files must have the file type *.adi" msgstr "Os ficheiros de registo devem ter o tipo de ficheiro *.adi" -#: application/views/adif/import.php:56 application/views/view_log/qso.php:622 +#: application/views/adif/import.php:56 application/views/view_log/qso.php:625 msgid "Maximum file upload size is " msgstr "O tamanho máximo de upload de ficheiro é " -#: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:175 +#: application/views/adif/import.php:56 application/views/adif/import.php:230 +#: application/views/adif/import.php:268 application/views/debug/index.php:175 #: application/views/debug/index.php:192 application/views/debug/index.php:537 #: application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:34 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 -#: application/views/station_profile/index.php:31 #: application/views/stationsetup/stationsetup.php:111 -#: application/views/view_log/qso.php:622 +#: application/views/view_log/qso.php:625 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" msgstr "Aviso" #: application/views/adif/import.php:60 application/views/adif/import.php:62 -#: application/views/adif/import.php:168 application/views/adif/import.php:215 +#: application/views/adif/import.php:178 application/views/adif/import.php:225 #: application/views/eqsl/import.php:36 application/views/hrdlog/export.php:69 -#: application/views/qrz/export.php:89 application/views/webadif/export.php:89 +#: application/views/qrz/export.php:89 application/views/reg1test/index.php:30 +#: application/views/webadif/export.php:89 msgid "Select Station Location" msgstr "Selecionar Localização da Estação" @@ -2768,26 +3320,31 @@ msgstr "Marcar contactos importados como carregados no LoTW" #: application/views/adif/import.php:95 application/views/adif/import.php:105 #: application/views/adif/import.php:115 application/views/adif/import.php:125 +#: application/views/adif/import.php:135 msgid "Select if ADIF being imported does not contain this information." msgstr "Selecione se o ADIF importado não contiver esta informação." #: application/views/adif/import.php:103 +msgid "Mark imported QSOs as uploaded to eQSL Logbook" +msgstr "Marcar os contactos importados como carregados no Logbook de eQSL" + +#: application/views/adif/import.php:113 msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" msgstr "Marcar contactos importados como enviados para o Logbook do HRDLog.net" -#: application/views/adif/import.php:113 +#: application/views/adif/import.php:123 msgid "Mark imported QSOs as uploaded to QRZ Logbook" msgstr "Marcar contactos importados como enviados para o Logbook do QRZ" -#: application/views/adif/import.php:123 +#: application/views/adif/import.php:133 msgid "Mark imported QSOs as uploaded to Clublog Logbook" msgstr "Marcar contactos importados como enviados para o Logbook do Clublog" -#: application/views/adif/import.php:133 +#: application/views/adif/import.php:143 msgid "Use DXCC information from ADIF" msgstr "Usar informações DXCC do ADIF" -#: application/views/adif/import.php:135 +#: application/views/adif/import.php:145 msgid "" "If not selected, Wavelog will attempt to determine DXCC information " "automatically." @@ -2795,40 +3352,41 @@ msgstr "" "Se não for selecionado, o Wavelog tentará determinar automaticamente as " "informações do DXCC." -#: application/views/adif/import.php:143 +#: application/views/adif/import.php:153 msgid "Always use login-callsign as operator-name on import" msgstr "Usar sempre o indicativo de login como nome do operador na importação" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:32 -#: application/views/interface_assets/footer.php:495 -#: application/views/interface_assets/footer.php:2119 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2133 msgid "DANGER" msgstr "PERIGO" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 msgid "Ignore Stationcallsign on import" msgstr "Ignorar indicativo da estação na importação" -#: application/views/adif/import.php:154 +#: application/views/adif/import.php:164 +#, php-format msgid "" -"If selected, Wavelog will try to import all QSO's of the ADIF, " +"If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " "regardless if they match to the chosen station-location." msgstr "" -"Se selecionado, o Wavelog tentará importar todos os contactos do " +"Se for selecionado, o Wavelog tentará importar %stodos%s os contactos do " "ADIF, independentemente de corresponderem à estação-local escolhida." -#: application/views/adif/import.php:158 application/views/adif/import.php:273 +#: application/views/adif/import.php:168 application/views/adif/import.php:283 #: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 #: application/views/webadif/export.php:55 msgid "Upload" msgstr "Enviar" -#: application/views/adif/import.php:165 +#: application/views/adif/import.php:175 msgid "Take your logbook file anywhere!" msgstr "Leva o teu ficheiro de logbook para qualquer lugar!" -#: application/views/adif/import.php:166 +#: application/views/adif/import.php:176 msgid "" "Exporting ADIFs allows you to import contacts into third party applications " "like LoTW, Awards or just for keeping a backup." @@ -2836,7 +3394,7 @@ msgstr "" "A exportação de ADIFs permite-lhe importar contactos para aplicações de " "terceiros como LoTW, Diplomas ou para manter uma cópia de segurança." -#: application/views/adif/import.php:176 application/views/adif/import.php:222 +#: application/views/adif/import.php:186 application/views/adif/import.php:232 #: application/views/cfd/index.php:15 application/views/csv/index.php:118 #: application/views/dxatlas/index.php:118 #: application/views/hrdlog/export.php:77 application/views/kml/index.php:103 @@ -2845,7 +3403,7 @@ msgstr "" msgid "From date" msgstr "A partir da data" -#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/adif/import.php:189 application/views/adif/import.php:235 #: application/views/cfd/index.php:20 application/views/csv/index.php:123 #: application/views/dxatlas/index.php:123 #: application/views/hrdlog/export.php:82 application/views/kml/index.php:108 @@ -2854,42 +3412,42 @@ msgstr "A partir da data" msgid "To date" msgstr "Até à data" -#: application/views/adif/import.php:187 +#: application/views/adif/import.php:197 msgid "Mark exported QSOs as uploaded to LoTW" msgstr "Marcar contactos exportados como enviados para o LoTW" -#: application/views/adif/import.php:195 +#: application/views/adif/import.php:205 msgid "Export QSOs not uploaded to LoTW" msgstr "Exportar contactos não enviados para o LoTW" -#: application/views/adif/import.php:200 +#: application/views/adif/import.php:210 msgid "Export QSO's" msgstr "Exportar contactos" -#: application/views/adif/import.php:205 +#: application/views/adif/import.php:215 msgid "Export Satellite-Only QSOs" msgstr "Exportar apenas contactos de Satélite" -#: application/views/adif/import.php:206 +#: application/views/adif/import.php:216 msgid "Export All Satellite QSOs" msgstr "Exportar todos os contactos via satélite" -#: application/views/adif/import.php:208 +#: application/views/adif/import.php:218 msgid "Export All Satellite QSOs Confirmed on LoTW" msgstr "Exportar todos os contactos via satélite confirmados no LoTW" -#: application/views/adif/import.php:220 application/views/hrdlog/export.php:74 +#: application/views/adif/import.php:230 application/views/hrdlog/export.php:74 #: application/views/qrz/export.php:94 application/views/webadif/export.php:94 msgid "If a date range is not selected then all QSOs will be marked!" msgstr "" "Se um intervalo de datas não for selecionado, todos os contactos serão " "marcados!" -#: application/views/adif/import.php:228 +#: application/views/adif/import.php:238 msgid "Mark QSOs as exported to LoTW" msgstr "Marcar contactos como exportados para o LoTW" -#: application/views/adif/import.php:242 +#: application/views/adif/import.php:252 #, php-format msgid "" "Go to %s and export your logbook with confirmed DOKs. To speed up the " @@ -2902,11 +3460,11 @@ msgstr "" "colocar 'DL' na lista prefixos ). O ficheiro ADIF descarregado pode ser " "carregado aqui para atualizar os contactos com a informação DOK." -#: application/views/adif/import.php:249 +#: application/views/adif/import.php:259 msgid "Only import DOK data from QSOs confirmed on DCL." msgstr "Importar apenas dados DOK de contactos confirmados no DCL." -#: application/views/adif/import.php:251 +#: application/views/adif/import.php:261 msgid "" "Uncheck if you also want to update DOK with data from unconfirmed QSOs in " "DCL." @@ -2914,11 +3472,11 @@ msgstr "" "Desmarque se também quiser atualizar o DOK com dados de contactos não " "confirmados no DCL." -#: application/views/adif/import.php:258 +#: application/views/adif/import.php:268 msgid "Overwrites exisiting DOK in log by DCL (if different)." msgstr "Substitui o DOK existente no log pelo DCL (se diferente)." -#: application/views/adif/import.php:260 +#: application/views/adif/import.php:270 msgid "" "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " "log." @@ -2926,11 +3484,11 @@ msgstr "" "Se estiver marcado, o Wavelog ira forçar a troca do DOK existente pelo DOK " "do registo DCL." -#: application/views/adif/import.php:267 +#: application/views/adif/import.php:277 msgid "Ignore QSOs that cannot be matched." msgstr "Ignorar contactos que não podem ser correspondidos." -#: application/views/adif/import.php:269 +#: application/views/adif/import.php:279 msgid "" "If unchecked, information about QSOs which could not be found in Wavelog " "will be displayed." @@ -2938,6 +3496,20 @@ msgstr "" "Se não estiver selecionado, serão apresentadas informações sobre contactos " "que não foram encontrados no Wavelog." +#: application/views/adif/import_failed.php:15 +msgid "The ADIF file could not be parsed correctly." +msgstr "O ficheiro ADIF não pôde ser analisado corretamente." + +#: application/views/adif/import_failed.php:16 +msgid "" +"At least one of the ADIF fields could not be parsed and/or inserted into the " +"database. Please check the imported ADIF file. You can use an online ADIF " +"file checker. For example:" +msgstr "" +"Pelo menos um dos campos ADIF não pôde ser analisado e/ou inserido na base " +"de dados. Por favor, verifique o ficheiro ADIF importado. Pode usar um " +"verificador de ficheiros ADIF online. Por exemplo:" + #: application/views/adif/import_success.php:15 msgid "Yay, its imported!" msgstr "Boa, foi importado!" @@ -2992,24 +3564,22 @@ msgstr "Nome simples para descrever a utilização desta API." #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 -#: application/views/interface_assets/footer.php:43 -#: application/views/interface_assets/footer.php:530 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 -#: application/views/options/appearance.php:107 +#: application/views/options/appearance.php:116 #: application/views/options/dxcluster.php:67 #: application/views/options/email.php:112 #: application/views/options/oqrs.php:63 #: application/views/options/radios.php:45 #: application/views/options/version_dialog.php:78 -#: application/views/qso/components/winkeysettings.php:90 -#: application/views/qso/components/winkeysettings_results.php:90 #: application/views/satellite/create.php:70 #: application/views/simplefle/index.php:22 msgid "Save" msgstr "Guardar" #: application/views/api/help.php:14 -#: application/views/interface_assets/header.php:431 +#: application/views/interface_assets/header.php:437 msgid "API Keys" msgstr "Chaves API" @@ -3040,7 +3610,7 @@ msgid "API URL" msgstr "URL API" #: application/views/api/help.php:19 application/views/api/help.php:38 -#: application/views/cron/index.php:21 application/views/debug/index.php:36 +#: application/views/cron/index.php:22 application/views/debug/index.php:36 msgid "Copy to clipboard" msgstr "Copiar para a área de transferência" @@ -3049,14 +3619,15 @@ msgid "The API URL for this Wavelog instance is" msgstr "O URL da API para esta instância do Wavelog é" #: application/views/api/help.php:20 application/views/dxcalendar/index.php:15 -#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:477 -#: application/views/qso/index.php:538 application/views/qso/index.php:583 +#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:504 +#: application/views/qso/index.php:560 application/views/qso/index.php:605 #: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 #: application/views/sattimers/index.php:73 #: application/views/sattimers/index.php:75 +#: application/views/sattimers/index.php:77 #: application/views/search/filter.php:69 msgid "Info" msgstr "Informação" @@ -3074,7 +3645,7 @@ msgid "API Key" msgstr "Chave API" #: application/views/api/help.php:28 application/views/cron/edit.php:30 -#: application/views/cron/index.php:51 +#: application/views/cron/index.php:53 #: application/views/search/stored_queries.php:8 msgid "Description" msgstr "Descrição" @@ -3087,19 +3658,18 @@ msgstr "Última utilização" msgid "Permissions" msgstr "Permissões" -#: application/views/api/help.php:31 application/views/cron/index.php:52 -#: application/views/lotw_views/index.php:45 +#: application/views/api/help.php:31 application/views/cron/index.php:54 +#: application/views/lotw_views/index.php:41 #: application/views/mode/index.php:31 #: application/views/oqrs/showrequests.php:91 #: application/views/sattimers/index.php:39 #: application/views/stationsetup/stationsetup.php:31 -#: application/views/timeline/index.php:119 -#: application/views/update/index.php:30 +#: application/views/timeline/index.php:152 msgid "Status" msgstr "Estado" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:519 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "Ações" @@ -3135,6 +3705,7 @@ msgstr "Criar uma chave só de leitura" #: application/views/awards/counties/details.php:4 #: application/views/awards/details.php:1 #: application/views/awards/vucc/band.php:4 +#: application/views/distancerecords/details.php:1 #: application/views/timeline/details.php:2 msgid "Filtering on" msgstr "Filtragem ligada" @@ -3145,8 +3716,8 @@ msgstr "Condado" #: application/views/awards/counties/index.php:6 #: application/views/awards/counties/index.php:13 -#: application/views/awards/cq/index.php:17 -#: application/views/awards/cq/index.php:24 +#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:26 #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:13 #: application/views/awards/dxcc/index.php:13 @@ -3155,12 +3726,12 @@ msgstr "Condado" #: application/views/awards/ffma/index.php:14 #: application/views/awards/gridmaster/index.php:6 #: application/views/awards/gridmaster/index.php:13 -#: application/views/awards/helvetia/index.php:17 -#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:26 #: application/views/awards/iota/index.php:15 #: application/views/awards/iota/index.php:22 -#: application/views/awards/itu/index.php:17 -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:26 #: application/views/awards/jcc/index.php:15 #: application/views/awards/jcc/index.php:22 #: application/views/awards/pota/index.php:6 @@ -3173,10 +3744,12 @@ msgstr "Condado" #: application/views/awards/vucc/index.php:13 #: application/views/awards/wab/index.php:11 #: application/views/awards/wab/index.php:18 -#: application/views/awards/waja/index.php:16 -#: application/views/awards/waja/index.php:23 -#: application/views/awards/was/index.php:17 -#: application/views/awards/was/index.php:24 +#: application/views/awards/wac/index.php:7 +#: application/views/awards/wac/index.php:14 +#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:25 +#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:26 #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:13 msgid "Award Info" @@ -3223,17 +3796,18 @@ msgid "Counties Confirmed" msgstr "Condados Confirmados" #: application/views/awards/counties/index.php:39 -#: application/views/awards/cq/index.php:174 +#: application/views/awards/cq/index.php:176 #: application/views/awards/dok/index.php:174 #: application/views/awards/dxcc/index.php:257 -#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/helvetia/index.php:179 #: application/views/awards/iota/index.php:201 -#: application/views/awards/itu/index.php:174 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:185 -#: application/views/awards/rac/index.php:169 -#: application/views/awards/waja/index.php:177 -#: application/views/awards/was/index.php:177 -#: application/views/dashboard/index.php:217 +#: application/views/awards/rac/index.php:171 +#: application/views/awards/wac/index.php:177 +#: application/views/awards/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:233 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3249,11 +3823,34 @@ msgstr "Condados Confirmados" msgid "Total" msgstr "Total" -#: application/views/awards/cq/index.php:18 +#: application/views/awards/cq/index.php:3 +#: application/views/awards/cq/index.php:150 application/views/csv/index.php:80 +#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/logbookadvanced/edit.php:6 +#: application/views/logbookadvanced/index.php:246 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:284 +#: application/views/qso/index.php:390 +#: application/views/search/cqzones_result.php:13 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:264 +#: application/views/timeplotter/index.php:44 +msgid "CQ Zone" +msgstr "Zona CQ" + +#: application/views/awards/cq/index.php:4 +#: application/views/awards/itu/index.php:4 +msgid "Hover over a zone" +msgstr "Pairar sobre uma zona" + +#: application/views/awards/cq/index.php:20 msgid "CQ Magazine WAZ Award" msgstr "Diploma CQ Magazine WAZ" -#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:21 msgid "" "The CQ Magazine is located in the US and one of the most popular amateur " "radio magazines in the world. The magazine first appeared in January 1945 " @@ -3264,7 +3861,7 @@ msgstr "" "primeira vez em janeiro de 1945 e centra-se nos diplomas, prémios e nos " "aspectos práticos do radioamadorismo." -#: application/views/awards/cq/index.php:20 +#: application/views/awards/cq/index.php:22 msgid "" "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to " "all 40 CQ Zones along with the corresponding confirmation." @@ -3272,196 +3869,190 @@ msgstr "" "O diploma WAZ significa “Worked All Zones” e requer contactos via rádio para " "todas as 40 zonas CQ, juntamente com a confirmação correspondente." -#: application/views/awards/cq/index.php:21 +#: application/views/awards/cq/index.php:23 #, php-format msgctxt "uses 'CQ Magazine'" msgid "You can find all the information and rules on the Website of the %s." msgstr "Todas as informações e regras podem ser consultadas no site Web da %s." -#: application/views/awards/cq/index.php:23 +#: application/views/awards/cq/index.php:25 msgid "Awards - CQ Magazine WAZ" msgstr "Diplomas - CQ Magazine WAZ" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 #: application/views/awards/wab/list.php:6 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:73 -#: application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:362 -#: application/views/interface_assets/footer.php:39 +#: application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:378 +#: application/views/interface_assets/footer.php:40 #: application/views/visitor/index.php:266 msgid "Confirmed" msgstr "Confirmado" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:256 +#: application/views/dashboard/index.php:372 #: application/views/visitor/index.php:262 msgid "Worked" msgstr "Contactado" -#: application/views/awards/cq/index.php:36 +#: application/views/awards/cq/index.php:38 #: application/views/awards/dok/index.php:41 #: application/views/awards/dxcc/index.php:43 -#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:43 -#: application/views/awards/itu/index.php:36 +#: application/views/awards/itu/index.php:38 #: application/views/awards/jcc/index.php:34 -#: application/views/awards/rac/index.php:27 -#: application/views/awards/waja/index.php:35 -#: application/views/awards/was/index.php:35 +#: application/views/awards/rac/index.php:29 +#: application/views/awards/wac/index.php:26 +#: application/views/awards/waja/index.php:37 +#: application/views/awards/was/index.php:37 msgid "Show worked" msgstr "Mostrar contactados" -#: application/views/awards/cq/index.php:40 +#: application/views/awards/cq/index.php:42 #: application/views/awards/dok/index.php:45 #: application/views/awards/dxcc/index.php:47 -#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:47 -#: application/views/awards/itu/index.php:40 +#: application/views/awards/itu/index.php:42 #: application/views/awards/jcc/index.php:38 -#: application/views/awards/rac/index.php:31 -#: application/views/awards/waja/index.php:39 -#: application/views/awards/was/index.php:39 +#: application/views/awards/rac/index.php:33 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/waja/index.php:41 +#: application/views/awards/was/index.php:41 msgid "Show confirmed" msgstr "Mostrar confirmado" -#: application/views/awards/cq/index.php:44 +#: application/views/awards/cq/index.php:46 #: application/views/awards/dxcc/index.php:51 -#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:51 -#: application/views/awards/itu/index.php:44 +#: application/views/awards/itu/index.php:46 #: application/views/awards/jcc/index.php:42 -#: application/views/awards/rac/index.php:35 -#: application/views/awards/waja/index.php:43 -#: application/views/awards/was/index.php:43 +#: application/views/awards/rac/index.php:37 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/waja/index.php:45 +#: application/views/awards/was/index.php:45 msgid "Show not worked" msgstr "Mostrar não contactados" -#: application/views/awards/cq/index.php:50 +#: application/views/awards/cq/index.php:52 #: application/views/awards/dok/index.php:51 #: application/views/awards/dxcc/index.php:57 -#: application/views/awards/helvetia/index.php:49 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/helvetia/index.php:51 +#: application/views/awards/itu/index.php:52 #: application/views/awards/jcc/index.php:48 -#: application/views/awards/rac/index.php:41 -#: application/views/awards/waja/index.php:49 -#: application/views/awards/was/index.php:49 +#: application/views/awards/rac/index.php:43 +#: application/views/awards/wac/index.php:40 +#: application/views/awards/waja/index.php:51 +#: application/views/awards/was/index.php:51 msgid "Show QSO with QSL Type" msgstr "Mostrar contactos com tipo de QSL" -#: application/views/awards/cq/index.php:54 -#: application/views/awards/itu/index.php:54 -#: application/views/interface_assets/footer.php:2098 -#: application/views/qso/edit_ajax.php:378 +#: application/views/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/awards/wac/index.php:44 +#: application/views/interface_assets/footer.php:2112 +#: application/views/qso/edit_ajax.php:405 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "Cartão QSL" -#: application/views/awards/cq/index.php:110 +#: application/views/awards/cq/index.php:112 #: application/views/awards/dok/index.php:126 #: application/views/awards/dxcc/index.php:186 -#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/helvetia/index.php:111 #: application/views/awards/iota/index.php:129 -#: application/views/awards/itu/index.php:110 +#: application/views/awards/itu/index.php:112 #: application/views/awards/jcc/index.php:112 -#: application/views/awards/rac/index.php:101 -#: application/views/awards/waja/index.php:113 -#: application/views/awards/was/index.php:109 +#: application/views/awards/rac/index.php:103 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/waja/index.php:115 +#: application/views/awards/was/index.php:111 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:523 +#: application/views/logbookadvanced/index.php:551 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 msgid "Reset" msgstr "Reiniciar" -#: application/views/awards/cq/index.php:113 +#: application/views/awards/cq/index.php:115 msgid "Show CQ Zone Map" msgstr "Mostra o mapa da zona CQ" -#: application/views/awards/cq/index.php:122 +#: application/views/awards/cq/index.php:124 #: application/views/awards/dxcc/index.php:199 -#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/helvetia/index.php:124 #: application/views/awards/iota/index.php:142 -#: application/views/awards/itu/index.php:122 -#: application/views/awards/rac/index.php:114 -#: application/views/awards/waja/index.php:126 -#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:124 +#: application/views/awards/rac/index.php:116 +#: application/views/awards/waja/index.php:128 +#: application/views/awards/was/index.php:124 msgid "Table" msgstr "Tabela" -#: application/views/awards/cq/index.php:125 +#: application/views/awards/cq/index.php:127 #: application/views/awards/dok/index.php:128 #: application/views/awards/dxcc/index.php:202 -#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/helvetia/index.php:127 #: application/views/awards/iota/index.php:145 -#: application/views/awards/itu/index.php:125 +#: application/views/awards/itu/index.php:127 #: application/views/awards/jcc/index.php:129 -#: application/views/awards/rac/index.php:117 +#: application/views/awards/rac/index.php:119 #: application/views/awards/wab/index.php:108 -#: application/views/awards/waja/index.php:129 -#: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:516 +#: application/views/awards/waja/index.php:131 +#: application/views/awards/was/index.php:127 +#: application/views/logbookadvanced/index.php:544 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "Mapa" -#: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 -#: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:235 -#: application/views/logbookadvanced/index.php:586 -#: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:90 -#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 -#: application/views/qso/index.php:390 -#: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:106 -#: application/views/station_profile/edit.php:126 -#: application/views/timeline/index.php:231 -#: application/views/timeplotter/index.php:44 -msgid "CQ Zone" -msgstr "Zona CQ" - -#: application/views/awards/cq/index.php:165 +#: application/views/awards/cq/index.php:167 #: application/views/awards/dok/index.php:165 #: application/views/awards/dxcc/index.php:248 -#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/helvetia/index.php:170 #: application/views/awards/iota/index.php:192 -#: application/views/awards/itu/index.php:165 +#: application/views/awards/itu/index.php:167 #: application/views/awards/jcc/index.php:168 -#: application/views/awards/rac/index.php:160 -#: application/views/awards/waja/index.php:168 -#: application/views/awards/was/index.php:168 +#: application/views/awards/rac/index.php:162 +#: application/views/awards/wac/index.php:168 +#: application/views/awards/waja/index.php:170 +#: application/views/awards/was/index.php:170 msgid "Summary" msgstr "Resumo" -#: application/views/awards/cq/index.php:178 +#: application/views/awards/cq/index.php:180 #: application/views/awards/dok/index.php:178 #: application/views/awards/dxcc/index.php:262 -#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:206 -#: application/views/awards/itu/index.php:178 +#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:195 -#: application/views/awards/rac/index.php:173 -#: application/views/awards/waja/index.php:182 -#: application/views/awards/was/index.php:181 +#: application/views/awards/rac/index.php:175 +#: application/views/awards/wac/index.php:181 +#: application/views/awards/waja/index.php:184 +#: application/views/awards/was/index.php:183 msgid "Total worked" msgstr "Total contactados" -#: application/views/awards/cq/index.php:185 +#: application/views/awards/cq/index.php:187 #: application/views/awards/dok/index.php:185 #: application/views/awards/dxcc/index.php:269 -#: application/views/awards/helvetia/index.php:188 +#: application/views/awards/helvetia/index.php:190 #: application/views/awards/iota/index.php:213 -#: application/views/awards/itu/index.php:185 +#: application/views/awards/itu/index.php:187 #: application/views/awards/jcc/index.php:214 -#: application/views/awards/rac/index.php:180 -#: application/views/awards/waja/index.php:189 -#: application/views/awards/was/index.php:188 +#: application/views/awards/rac/index.php:182 +#: application/views/awards/wac/index.php:188 +#: application/views/awards/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "Total confirmados" @@ -3521,23 +4112,24 @@ msgstr "DOK + SDOK" #: application/views/awards/dok/index.php:37 #: application/views/awards/dxcc/index.php:39 -#: application/views/awards/helvetia/index.php:31 +#: application/views/awards/helvetia/index.php:33 #: application/views/awards/iota/index.php:39 #: application/views/awards/jcc/index.php:30 -#: application/views/awards/rac/index.php:23 -#: application/views/awards/waja/index.php:31 -#: application/views/awards/was/index.php:31 +#: application/views/awards/rac/index.php:25 +#: application/views/awards/waja/index.php:33 +#: application/views/awards/was/index.php:33 msgid "Worked / Confirmed" msgstr "Contactado / Confirmado" #: application/views/awards/dok/index.php:80 #: application/views/awards/dxcc/index.php:120 -#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/helvetia/index.php:76 #: application/views/awards/iota/index.php:94 #: application/views/awards/jcc/index.php:77 -#: application/views/awards/rac/index.php:66 -#: application/views/awards/waja/index.php:78 -#: application/views/awards/was/index.php:74 +#: application/views/awards/rac/index.php:68 +#: application/views/awards/wac/index.php:66 +#: application/views/awards/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "Todas as bandas" @@ -3561,10 +4153,12 @@ msgstr "" "intitulado %s." #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 msgid "ARRL website" msgstr "Site web da ARRL" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 #, php-format msgid "You can find all information about the DXCC Award on the %s." msgstr "Pode encontrar todas as informações sobre o diploma DXCC no site %s." @@ -3592,63 +4186,77 @@ msgstr "Incluir eliminadas" #: application/views/awards/dxcc/index.php:87 #: application/views/awards/iota/index.php:61 #: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/logbookadvanced/edit.php:144 +#: application/views/logbookadvanced/index.php:309 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 -#: application/views/view_log/qso.php:250 +#: application/views/view_log/qso.php:253 msgid "Antarctica" msgstr "Antártica" #: application/views/awards/dxcc/index.php:91 #: application/views/awards/iota/index.php:65 #: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/logbookadvanced/edit.php:143 +#: application/views/logbookadvanced/index.php:308 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 -#: application/views/view_log/qso.php:247 +#: application/views/view_log/qso.php:250 msgid "Africa" msgstr "África" #: application/views/awards/dxcc/index.php:95 #: application/views/awards/iota/index.php:69 #: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/logbookadvanced/edit.php:146 +#: application/views/logbookadvanced/index.php:311 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 -#: application/views/view_log/qso.php:253 +#: application/views/view_log/qso.php:256 msgid "Asia" msgstr "Ásia" #: application/views/awards/dxcc/index.php:99 #: application/views/awards/iota/index.php:73 #: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/logbookadvanced/edit.php:147 +#: application/views/logbookadvanced/index.php:312 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 -#: application/views/view_log/qso.php:256 +#: application/views/view_log/qso.php:259 msgid "Europe" msgstr "Europa" #: application/views/awards/dxcc/index.php:103 #: application/views/awards/iota/index.php:77 #: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/logbookadvanced/edit.php:145 +#: application/views/logbookadvanced/index.php:310 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 -#: application/views/view_log/qso.php:259 +#: application/views/view_log/qso.php:262 msgid "North America" msgstr "América do Norte" #: application/views/awards/dxcc/index.php:107 #: application/views/awards/iota/index.php:81 #: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/logbookadvanced/edit.php:148 +#: application/views/logbookadvanced/index.php:313 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:265 +#: application/views/view_log/qso.php:268 msgid "South America" msgstr "América do Sul" #: application/views/awards/dxcc/index.php:111 #: application/views/awards/iota/index.php:85 #: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/logbookadvanced/edit.php:149 +#: application/views/logbookadvanced/index.php:314 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 -#: application/views/view_log/qso.php:262 +#: application/views/view_log/qso.php:265 msgid "Oceania" msgstr "Oceânia" @@ -3662,13 +4270,13 @@ msgstr "Nome do DXCC" #: application/views/awards/dxcc/index.php:226 #: application/views/awards/iota/index.php:170 -#: application/views/timeline/index.php:117 -#: application/views/timeline/index.php:204 +#: application/views/timeline/index.php:150 +#: application/views/timeline/index.php:237 msgid "Prefix" msgstr "Prefixo" #: application/views/awards/ffma/index.php:8 -#: application/views/interface_assets/header.php:236 +#: application/views/interface_assets/header.php:240 msgid "Fred Fish Memorial Award" msgstr "Diploma Fred Fish Memorial" @@ -3741,11 +4349,20 @@ msgstr "site web" msgid "This map shows only QSOs worked on SAT." msgstr "Este mapa mostra apenas contactos realizados via satélite." -#: application/views/awards/helvetia/index.php:18 +#: application/views/awards/helvetia/index.php:3 +msgctxt "Switzerland Canton" +msgid "Canton" +msgstr "Cantão" + +#: application/views/awards/helvetia/index.php:4 +msgid "Hover over a canton" +msgstr "Passe o cursor sobre um cantão" + +#: application/views/awards/helvetia/index.php:20 msgid "HELVETIA 26 | SWITZERLAND AWARD" msgstr "Diploma HELVETIA 26 | SWITZERLAND" -#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:21 msgid "" "The USKA (Union of Swiss Shortwave Amateurs) sponsors two awards, the " "HELVETIA 26 (H26) Award and the SWITZERLAND Award, aimed at promoting " @@ -3757,7 +4374,7 @@ msgstr "" "as actividades nas bandas, encorajando os contactos entre o maior número " "possível de cantões suíços em várias bandas." -#: application/views/awards/helvetia/index.php:20 +#: application/views/awards/helvetia/index.php:22 msgid "" "These awards come in two versions: one for HF bands and the other for VHF " "(including SHF and UHF) bands. Valid connections for these awards date back " @@ -3767,26 +4384,26 @@ msgstr "" "bandas VHF (incluindo UHF e SHF ). As ligações válidas para estes prémios " "remontam a 1 de janeiro de 1980" -#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/helvetia/index.php:23 #: application/views/awards/jcc/index.php:19 #: application/views/awards/sota/index.php:10 #: application/views/awards/wab/index.php:15 -#: application/views/awards/waja/index.php:20 +#: application/views/awards/waja/index.php:22 #: application/views/awards/wwff/index.php:10 #, php-format msgid "For more information, please visit: %s." msgstr "Para mais informações, por favor visite: %s." -#: application/views/awards/helvetia/index.php:112 +#: application/views/awards/helvetia/index.php:114 msgid "Show Helvetia Map" msgstr "Mostra o mapa da Helvécia" -#: application/views/awards/helvetia/index.php:149 +#: application/views/awards/helvetia/index.php:151 msgid "Canton" msgstr "Cantão" #: application/views/awards/index.php:9 application/views/bands/index.php:46 -#: application/views/interface_assets/header.php:162 +#: application/views/interface_assets/header.php:164 msgid "CQ" msgstr "CQ" @@ -3850,11 +4467,11 @@ msgstr "Mostrar mapa IOTA" #: application/views/awards/iota/index.php:171 #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 -#: application/views/contesting/index.php:153 -#: application/views/contesting/index.php:171 +#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:214 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:559 +#: application/views/logbookadvanced/index.php:587 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3864,12 +4481,12 @@ msgstr "Mostrar mapa IOTA" #: application/views/search/search_result_ajax.php:19 #: application/views/stationsetup/stationsetup.php:30 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:203 application/views/user/edit.php:241 +#: application/views/timeline/index.php:236 application/views/user/edit.php:241 #: application/views/user/edit.php:263 application/views/user/edit.php:285 #: application/views/user/edit.php:307 application/views/user/edit.php:330 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:191 -#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:194 +#: application/views/view_log/qso.php:514 msgid "Name" msgstr "Nome" @@ -3877,7 +4494,19 @@ msgstr "Nome" msgid "Deleted" msgstr "Suprimido" -#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:3 +#: application/views/awards/itu/index.php:150 +#: application/views/logbookadvanced/edit.php:10 +#: application/views/logbookadvanced/index.php:257 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:400 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 +msgid "ITU Zone" +msgstr "Zona ITU" + +#: application/views/awards/itu/index.php:21 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -3889,30 +4518,20 @@ msgstr "" "em pelo menos 70 das 75 zonas de radiodifusão definidas pela União " "Internacional de Telecomunicações (ITU)." -#: application/views/awards/itu/index.php:20 +#: application/views/awards/itu/index.php:22 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "Para mais informações, consultar o site Web da %s." -#: application/views/awards/itu/index.php:23 +#: application/views/awards/itu/index.php:25 msgid "Awards - ITU Zones" msgstr "Diplomas - Zonas ITU" -#: application/views/awards/itu/index.php:113 +#: application/views/awards/itu/index.php:115 msgid "Show ITU Zone Map" msgstr "Mostra o mapa das zonas ITU" -#: application/views/awards/itu/index.php:148 -#: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:246 -#: application/views/logbookadvanced/index.php:589 -#: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:120 -#: application/views/station_profile/edit.php:143 -msgid "ITU Zone" -msgstr "Zona ITU" - #: application/views/awards/jcc/index.php:16 msgid "JCC - Japan Century Cities Award" msgstr "Diploma JCC - Japan Century Cities" @@ -3946,7 +4565,7 @@ msgstr "Mostra o mapa JCC" #: application/views/awards/jcc/index.php:116 #: application/views/cabrillo/index.php:180 application/views/cfd/index.php:25 #: application/views/csv/index.php:128 application/views/dxatlas/index.php:128 -#: application/views/kml/index.php:113 +#: application/views/kml/index.php:113 application/views/reg1test/index.php:145 msgid "Export" msgstr "Exportar" @@ -3957,18 +4576,19 @@ msgid "Results" msgstr "Resultados" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 +#: application/views/distancerecords/index.php:13 msgid "Number" msgstr "Número" #: application/views/awards/jcc/index.php:152 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:524 msgid "City" msgstr "Cidade" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:368 #: application/views/distances/index.php:23 msgid "SAT" msgstr "Satélite" @@ -4009,15 +4629,24 @@ msgstr "" "site %s." #: application/views/awards/pota/index.php:31 -#: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:177 -#: application/views/station_profile/edit.php:245 -#: application/views/user/edit.php:595 application/views/view_log/qso.php:303 -#: application/views/view_log/qso.php:570 +#: application/views/qso/index.php:236 application/views/qso/index.php:492 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 +#: application/views/user/edit.php:595 application/views/view_log/qso.php:306 +#: application/views/view_log/qso.php:573 msgid "POTA Reference(s)" msgstr "Referência(s) POTA" -#: application/views/awards/rac/index.php:104 +#: application/views/awards/rac/index.php:3 +msgctxt "Canada Province" +msgid "Province" +msgstr "Província" + +#: application/views/awards/rac/index.php:4 +msgid "Hover over a province" +msgstr "Passe o cursor sobre uma província" + +#: application/views/awards/rac/index.php:106 msgid "Show RAC Map" msgstr "Mostrar mapa RAC" @@ -4077,7 +4706,7 @@ msgstr "Referência" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:535 +#: application/views/logbookadvanced/index.php:563 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4190,11 +4819,46 @@ msgstr "Lista" msgid "WAB Square" msgstr "Quadrado WAB" -#: application/views/awards/waja/index.php:17 +#: application/views/awards/wac/index.php:9 +msgid "" +"Sponsored by the International Amateur Radio Union (IARU), the Worked All " +"Continents award is issued for working and confirming all six continents. " +"These are North America, South America, Oceania, Asia, Europe and Africa." +msgstr "" +"Patrocinado pela União Internacional de Radioamadores (IARU), o diploma " +"Worked All Continents é emitido por contactar e confirmar todos os seis " +"continentes. Estes são América do Norte, América do Sul, Oceânia, Ásia, " +"Europa e África." + +#: application/views/awards/wac/index.php:13 +msgid "Awards - Worked All Continents (WAC)" +msgstr "Diplomas - Worked All Continents (WAC)" + +#: application/views/awards/wac/index.php:151 +#: application/views/continents/index.php:62 +#: application/views/logbookadvanced/edit.php:25 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 +#: application/views/view_log/qso.php:245 +msgid "Continent" +msgstr "Continente" + +#: application/views/awards/waja/index.php:3 +msgctxt "Japan Prefecture" +msgid "Prefecture" +msgstr "Prefeitura" + +#: application/views/awards/waja/index.php:4 +msgid "Hover over a prefecture" +msgstr "Passe o cursor sobre uma prefeitura" + +#: application/views/awards/waja/index.php:19 msgid "WAJA - Worked All Japan prefectures Award" msgstr "Diploma WAJA - Worked All Japan prefectures" -#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:20 msgid "" "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " "radio operators to work all the prefectures in Japan." @@ -4202,7 +4866,7 @@ msgstr "" "WAJA, Worked All Japan prefectures, incentiva os operadores de rádio amador " "licenciados a trabalhar em todas as províncias do Japão." -#: application/views/awards/waja/index.php:19 +#: application/views/awards/waja/index.php:21 msgid "" "May be claimed for having contacted (heard) and received a QSL card from an " "amateur station located in each of the 47 prefectures of Japan. A list of " @@ -4214,20 +4878,29 @@ msgstr "" "lista de cartões QSL deve ser organizada por ordem do número de referência " "WAJA (HAJA), mas os nomes das prefeituras podem ser omitidos." -#: application/views/awards/waja/index.php:116 +#: application/views/awards/waja/index.php:118 msgid "Show WAJA Map" msgstr "Mostrar mapa WAJA" -#: application/views/awards/waja/index.php:152 -#: application/views/timeline/index.php:152 +#: application/views/awards/waja/index.php:154 +#: application/views/timeline/index.php:185 msgid "Prefecture" msgstr "Prefeitura" -#: application/views/awards/was/index.php:18 +#: application/views/awards/was/index.php:3 +msgctxt "USA State" +msgid "State" +msgstr "Estado" + +#: application/views/awards/was/index.php:4 +msgid "Hover over a state" +msgstr "Passe o cursor sobre um estado" + +#: application/views/awards/was/index.php:20 msgid "WAS Award" msgstr "Diploma WAS" -#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:21 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -4239,7 +4912,7 @@ msgstr "" "101º ano da ARRL, os certificados e o programa foram redesenhados na " "esperança de simplificar e melhorar o programa de prémios." -#: application/views/awards/was/index.php:20 +#: application/views/awards/was/index.php:22 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -4253,7 +4926,7 @@ msgstr "" "suas possessões devem ser membros da ARRL para se candidatarem a um WAS. Os " "candidatos de fora dos EUA estão isentos deste requisito." -#: application/views/awards/was/index.php:21 +#: application/views/awards/was/index.php:23 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." @@ -4261,7 +4934,7 @@ msgstr "" "Todas as informações e regras para o diploma ARRL WAS podem ser encontradas " "%s." -#: application/views/awards/was/index.php:112 +#: application/views/awards/was/index.php:114 msgid "Show WAS Map" msgstr "Mostrar mapa WAS" @@ -4290,11 +4963,11 @@ msgstr "" "candidatar-se a diplomas coloridos, tanto a nível mundial como nacional." #: application/views/awards/wwff/index.php:31 -#: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:171 -#: application/views/station_profile/edit.php:232 -#: application/views/user/edit.php:591 application/views/view_log/qso.php:296 -#: application/views/view_log/qso.php:563 +#: application/views/qso/index.php:224 application/views/qso/index.php:479 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 +#: application/views/user/edit.php:591 application/views/view_log/qso.php:299 +#: application/views/view_log/qso.php:566 msgid "WWFF Reference" msgstr "Referência WWFF" @@ -4360,8 +5033,8 @@ msgstr "Lista de Bandas" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 #: application/views/contesting/index.php:15 -#: application/views/contesting/index.php:94 -#: application/views/contesting/index.php:169 +#: application/views/contesting/index.php:52 +#: application/views/contesting/index.php:145 #: application/views/qso/index.php:314 msgid "None" msgstr "Nenhum" @@ -4445,25 +5118,25 @@ msgstr "" "As bandas activas serão mostradas no menu QSO “Banda”, enquanto as bandas " "inactivas serão ocultadas e não poderão ser seleccionadas." -#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:351 -#: application/views/qso/index.php:248 application/views/qso/index.php:494 -#: application/views/user/edit.php:599 application/views/view_log/qso.php:325 -#: application/views/view_log/qso.php:577 +#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 +#: application/views/qso/index.php:248 application/views/qso/index.php:504 +#: application/views/user/edit.php:599 application/views/view_log/qso.php:328 +#: application/views/view_log/qso.php:580 msgid "Sig" msgstr "Sinal" -#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:312 -#: application/views/qso/index.php:433 +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:339 +#: application/views/qso/index.php:443 msgid "USA County" msgstr "Condado dos EUA" #: application/views/bands/index.php:58 -#: application/views/interface_assets/header.php:208 +#: application/views/interface_assets/header.php:212 msgid "WAJA" msgstr "WAJA" #: application/views/bands/index.php:59 -#: application/views/interface_assets/header.php:232 +#: application/views/interface_assets/header.php:236 msgid "WAS" msgstr "WAS" @@ -4493,9 +5166,8 @@ msgstr "Criar uma banda" #: application/views/bands/index.php:152 #: application/views/contesting/add.php:74 -#: application/views/interface_assets/footer.php:42 -#: application/views/qso/components/winkeysettings.php:91 -#: application/views/qso/components/winkeysettings_results.php:91 +#: application/views/contesting/index.php:83 +#: application/views/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4525,22 +5197,28 @@ msgstr "Desativar tudo" #: application/views/cabrillo/index.php:2 #: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:59 +#: application/views/reg1test/index.php:2 +#: application/views/reg1test/index.php:36 msgid "Proceed" msgstr "Prosseguir" #: application/views/cabrillo/index.php:3 +#: application/views/reg1test/index.php:3 msgid "Select Year" msgstr "Selecionar Ano" #: application/views/cabrillo/index.php:4 +#: application/views/reg1test/index.php:4 msgid "Select Contest" msgstr "Seleccionar concurso" #: application/views/cabrillo/index.php:5 +#: application/views/reg1test/index.php:5 msgid "Select Date Range" msgstr "Selecionar intervalo de datas" #: application/views/cabrillo/index.php:6 +#: application/views/reg1test/index.php:7 msgid "No contests were found for this station location!" msgstr "Não foram encontrados concursos para o local desta estação!" @@ -4553,10 +5231,12 @@ msgid "Select Station Location:" msgstr "Selecionar Localização da Estação:" #: application/views/cabrillo/index.php:44 +#: application/views/reg1test/index.php:53 msgid "Club" msgstr "Clube" #: application/views/cabrillo/index.php:48 +#: application/views/reg1test/index.php:58 msgid "Category Operator" msgstr "Categoria de operador" @@ -4597,10 +5277,12 @@ msgid "Category Overlay" msgstr "Categoria Overlay" #: application/views/cabrillo/index.php:150 +#: application/views/reg1test/index.php:70 msgid "Operators" msgstr "Operadores" #: application/views/cabrillo/index.php:155 +#: application/views/reg1test/index.php:139 msgid "Soapbox" msgstr "Soapbox" @@ -4625,6 +5307,7 @@ msgid "Address Country" msgstr "Endereço País" #: application/views/cabrillo/index.php:186 +#: application/views/reg1test/index.php:150 msgid "No contests were found in your log." msgstr "Não foram encontrados concursos no seu log." @@ -4659,13 +5342,13 @@ msgstr "" "Não foram encontradas activações futuras. Verifique novamente mais tarde." #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:158 +#: application/views/contesting/index.php:219 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:629 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 -#: application/views/view_log/qso.php:199 +#: application/views/view_log/qso.php:202 msgid "Comment" msgstr "Comentário" @@ -4697,9 +5380,9 @@ msgid "No Contests" msgstr "Sem Concursos" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/edit.php:21 -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:635 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4727,10 +5410,11 @@ msgid "Show Details" msgstr "Mostrar detalhes" #: application/views/contestcalendar/index.php:38 -#: application/views/dashboard/index.php:262 -#: application/views/dashboard/index.php:289 -#: application/views/dashboard/index.php:310 -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:278 +#: application/views/dashboard/index.php:305 +#: application/views/dashboard/index.php:326 +#: application/views/dashboard/index.php:347 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "Hoje" @@ -4769,7 +5453,7 @@ msgstr "Nome ADIF" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:466 +#: application/views/interface_assets/header.php:472 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:43 @@ -4824,15 +5508,15 @@ msgid "Name of Contest in ADIF-specification" msgstr "Nome do Concurso na especificação ADIF" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "Criar" #: application/views/contesting/edit.php:31 -#: application/views/contesting/index.php:24 -#: application/views/qso/edit_ajax.php:548 -#: application/views/view_log/qso.php:275 +#: application/views/contesting/index.php:25 +#: application/views/qso/edit_ajax.php:575 +#: application/views/view_log/qso.php:278 msgid "Contest Name" msgstr "Nome do Concurso" @@ -4868,91 +5552,141 @@ msgstr "Número de série + Troca" msgid "Serial + Gridsquare" msgstr "Número de série + Gridsquare" -#: application/views/contesting/index.php:34 +#: application/views/contesting/index.php:21 +msgid "Serial + Gridsquare + Exchange" +msgstr "Número de série + Locator + Troca" + +#: application/views/contesting/index.php:35 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:539 application/views/qso/index.php:352 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:352 msgid "Operator Callsign" msgstr "Indicativo do operador" -#: application/views/contesting/index.php:116 -#: application/views/contesting/index.php:208 -#: application/views/qso/edit_ajax.php:571 -msgid "Serial (S)" -msgstr "Serial (E)" +#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:45 +msgid "More Settings" +msgstr "Mais definições" -#: application/views/contesting/index.php:121 -#: application/views/contesting/index.php:206 -msgid "Exch (S)" -msgstr "Exch (E)" - -#: application/views/contesting/index.php:126 -msgid "Gridsquare (S)" -msgstr "Gridsquare (E)" - -#: application/views/contesting/index.php:136 -#: application/views/contesting/index.php:209 -#: application/views/qso/edit_ajax.php:566 -msgid "Serial (R)" -msgstr "Serial (R)" - -#: application/views/contesting/index.php:141 -#: application/views/contesting/index.php:207 -msgid "Exch (R)" -msgstr "Exch (R)" - -#: application/views/contesting/index.php:146 -msgid "Gridsquare (R)" -msgstr "Gridsquare (R)" - -#: application/views/contesting/index.php:163 -msgid "Reset QSO" -msgstr "Reiniciar contacto" - -#: application/views/contesting/index.php:164 -#: application/views/qso/index.php:607 -msgid "Save QSO" -msgstr "Guardar contacto" - -#: application/views/contesting/index.php:166 +#: application/views/contesting/index.php:49 msgid "Copy received exchange to" msgstr "Copiar o intercâmbio recebido para" -#: application/views/contesting/index.php:168 +#: application/views/contesting/index.php:51 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "" "O Exchange só é copiado se corresponder às regras do campo selecionado!" -#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:55 msgid "Age" msgstr "Idade" -#: application/views/contesting/index.php:174 +#: application/views/contesting/index.php:57 msgid "RX Power (W)" msgstr "Potência RX (W)" -#: application/views/contesting/index.php:175 +#: application/views/contesting/index.php:58 msgid "Locator" msgstr "Locator" -#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:59 +#: application/views/qso/edit_ajax.php:177 +msgid "QTH" +msgstr "QTH" + +#: application/views/contesting/index.php:64 +msgid "Sequence of Exchanges" +msgstr "Sequência de Trocas" + +#: application/views/contesting/index.php:67 +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 "" +"Escolha em que ordem quer digitar os diferentes relatos. No entanto, apenas " +"os elementos contidos no tipo de troca selecionado são exibidos." + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Exchange" +msgstr "Troca" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Grid" +msgstr "Grelha" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Serial" +msgstr "Serial" + +#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:255 +#: application/views/qso/edit_ajax.php:598 +msgid "Serial (S)" +msgstr "Serial (E)" + +#: application/views/contesting/index.php:177 +msgid "Gridsquare (S)" +msgstr "Gridsquare (E)" + +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:253 +msgid "Exch (S)" +msgstr "Exch (E)" + +#: application/views/contesting/index.php:196 +#: application/views/contesting/index.php:256 +#: application/views/qso/edit_ajax.php:593 +msgid "Serial (R)" +msgstr "Serial (R)" + +#: application/views/contesting/index.php:201 +msgid "Gridsquare (R)" +msgstr "Gridsquare (R)" + +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:254 +msgid "Exch (R)" +msgstr "Exch (R)" + +#: application/views/contesting/index.php:224 +msgid "Reset QSO" +msgstr "Reiniciar contacto" + +#: application/views/contesting/index.php:225 +#: application/views/qso/index.php:629 +msgid "Save QSO" +msgstr "Guardar contacto" + +#: application/views/contesting/index.php:234 msgid "Callsign Suggestions" msgstr "Sugestões de Indicativos" -#: application/views/contesting/index.php:194 +#: application/views/contesting/index.php:241 msgid "Contest Logbook" msgstr "Logbook de Concursos" -#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:258 #: application/views/qso/edit_ajax.php:164 msgid "VUCC Gridsquare" msgstr "Gridsquare VUCC" -#: application/views/continents/index.php:62 -#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 -#: application/views/view_log/qso.php:242 -msgid "Continent" -msgstr "Continente" - #: application/views/continents/index.php:63 #: application/views/statistics/index.php:19 #: application/views/statistics/index.php:113 @@ -4970,14 +5704,15 @@ msgstr "Identificador" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:261 -#: application/views/station_profile/edit.php:314 +#: application/views/options/appearance.php:109 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 msgid "Enabled" msgstr "Ativado" -#: application/views/cron/edit.php:36 application/views/cron/index.php:53 +#: application/views/cron/edit.php:36 application/views/cron/index.php:55 msgid "Intervall" msgstr "Intervalo" @@ -5027,6 +5762,7 @@ msgstr "Introduza a sua própria expressão Cron" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "Cancelar" @@ -5042,7 +5778,7 @@ msgstr "" "O Gestor Cron ajuda o administrador a gerir tarefas cron sem necessitar de " "acesso à CLI (Linha de Comandos)." -#: application/views/cron/index.php:18 +#: application/views/cron/index.php:19 msgid "" "To execute cron jobs based on the data below, remove all old cron jobs and " "create a new one:" @@ -5050,61 +5786,66 @@ msgstr "" "Para executar tarefas cron com base nos dados abaixo, remova todas as " "tarefas cron antigas e crie uma nova:" -#: application/views/cron/index.php:27 application/views/cron/index.php:31 -msgid "Status Master-Cron" -msgstr "Estado do Master-Cron" +#: application/views/cron/index.php:29 application/views/cron/index.php:33 +msgid "Status Master-Cron:" +msgstr "Estado do Master-Cron:" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgctxt "PHP Version" msgid "Min. Version is" msgstr "Versão mín. é" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgid "PHP Version not supported." msgstr "Versão do PHP não suportada." -#: application/views/cron/index.php:41 +#: application/views/cron/index.php:43 msgid "Cron List" msgstr "Lista de Cron" -#: application/views/cron/index.php:50 +#: application/views/cron/index.php:52 #: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "ID" -#: application/views/cron/index.php:54 +#: application/views/cron/index.php:56 msgid "Last Run" msgstr "Última execução" -#: application/views/cron/index.php:55 +#: application/views/cron/index.php:57 msgid "Next Run" msgstr "Próxima execução" -#: application/views/cron/index.php:68 +#: application/views/cron/index.php:70 msgid "healthy" msgstr "saudável" -#: application/views/cron/index.php:70 +#: application/views/cron/index.php:72 msgid "failed" msgstr "falhou" -#: application/views/cron/index.php:75 +#: application/views/cron/index.php:74 +msgid "pending" +msgstr "pendente" + +#: application/views/cron/index.php:79 msgid "disabled" msgstr "desativado" -#: application/views/cron/index.php:79 application/views/cron/index.php:81 -#: application/views/cron/index.php:83 application/views/debug/index.php:494 +#: application/views/cron/index.php:83 application/views/cron/index.php:85 +#: application/views/cron/index.php:87 application/views/debug/index.php:494 #: application/views/debug/index.php:500 application/views/debug/index.php:505 #: application/views/debug/index.php:510 application/views/debug/index.php:515 #: application/views/debug/index.php:520 application/views/debug/index.php:525 +#: application/views/user/index.php:138 msgid "never" msgstr "nunca" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:102 msgid "Your Mastercron isn't running." msgstr "O Master-Cron não foi executado." -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:103 msgid "" "Copy the cron above to a external cron service or into your server's cron to " "use this cron manager." @@ -5112,7 +5853,7 @@ msgstr "" "Copie o cron acima para um serviço cron externo ou para o cron do seu " "servidor para utilizar este gestor cron." -#: application/views/cron/index.php:100 +#: application/views/cron/index.php:104 msgid "" "On a basic linux server with shell access use this command to edit your " "crons:" @@ -5120,7 +5861,7 @@ msgstr "" "Num servidor linux básico com acesso à shell use este comando para editar os " "seus crons:" -#: application/views/cron/index.php:107 +#: application/views/cron/index.php:111 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -5139,154 +5880,10 @@ 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:42 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:411 msgid "Propagation Mode" msgstr "Modo de Propagação" -#: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:214 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 -msgctxt "Propagation Mode" -msgid "Aircraft Scatter" -msgstr "Aircraft Scatter" - -#: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:215 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 -msgctxt "Propagation Mode" -msgid "Aurora" -msgstr "Aurora" - -#: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:216 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 -msgctxt "Propagation Mode" -msgid "Aurora-E" -msgstr "Aurora-E" - -#: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:217 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 -msgctxt "Propagation Mode" -msgid "Back scatter" -msgstr "Back scatter" - -#: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:218 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 -msgctxt "Propagation Mode" -msgid "EchoLink" -msgstr "EchoLink" - -#: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:219 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 -msgctxt "Propagation Mode" -msgid "Earth-Moon-Earth" -msgstr "Terra-Lua-Terra" - -#: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:220 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 -msgctxt "Propagation Mode" -msgid "Sporadic E" -msgstr "Esporádico E" - -#: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:221 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 -msgctxt "Propagation Mode" -msgid "Field Aligned Irregularities" -msgstr "Irregularidades Alinhadas ao Campo" - -#: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:222 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 -msgctxt "Propagation Mode" -msgid "F2 Reflection" -msgstr "Reflexão F2" - -#: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:223 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 -msgctxt "Propagation Mode" -msgid "Internet-assisted" -msgstr "Assistido pela Internet" - -#: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:224 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 -msgctxt "Propagation Mode" -msgid "Ionoscatter" -msgstr "Ionoscatter" - -#: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:225 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 -msgctxt "Propagation Mode" -msgid "IRLP" -msgstr "IRLP" - -#: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:226 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 -msgctxt "Propagation Mode" -msgid "Meteor scatter" -msgstr "Dispersão meteorítica" - -#: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:227 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 -msgctxt "Propagation Mode" -msgid "Terrestrial or atmospheric repeater or transponder" -msgstr "Repetidor ou transponder terrestre ou atmosférico" - -#: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:228 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 -msgctxt "Propagation Mode" -msgid "Rain scatter" -msgstr "Dispersão de chuva" - -#: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:229 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 -msgctxt "Propagation Mode" -msgid "Satellite" -msgstr "Satélite" - -#: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:230 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 -msgctxt "Propagation Mode" -msgid "Trans-equatorial" -msgstr "Trans-equatorial" - -#: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:231 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 -msgctxt "Propagation Mode" -msgid "Tropospheric ducting" -msgstr "Ducting troposférico" - #: application/views/dashboard/index.php:5 msgid "RSTS" msgstr "RSTS" @@ -5295,47 +5892,64 @@ msgstr "RSTS" msgid "RSTR" msgstr "RSTR" -#: application/views/dashboard/index.php:56 +#: application/views/dashboard/index.php:58 msgid "" "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" msgstr "" "É necessário atualizar a versão do PHP. A versão mínima é 7.4. A sua versão é" -#: application/views/dashboard/index.php:63 +#: application/views/dashboard/index.php:65 #, php-format msgctxt "Dashboard Warning" -msgid "You need to update country files! Click %s to do it." +msgid "You need to update country files! Click %shere%s to do it." msgstr "" -"É necessário atualizar os ficheiros dos países! Clique em %s para o fazer." +"Precisa de atualizar os ficheiros do país! Clique %saqui%s para o fazer." -#: application/views/dashboard/index.php:72 +#: application/views/dashboard/index.php:73 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station locations. Click %s to do it:" -msgstr "Não tem localizações de estações. Clique em %s para o fazer:" +msgid "You have no station locations. Click %shere%s to do it." +msgstr "Não tem localizações de estações. Clique %saqui%s para o fazer." #: application/views/dashboard/index.php:81 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station logbook. Click %s to do it:" -msgstr "Não tem um logbook para esta estação. Clique em %s para o criar:" +msgid "You have no station logbook. Click %shere%s to do it." +msgstr "Não tem um logbook da estação. Clique %saqui%s para o fazer." -#: application/views/dashboard/index.php:91 +#: application/views/dashboard/index.php:89 +#, php-format +msgctxt "Dashboard Warning" +msgid "" +"Your active Station Location isn't linked to your Logbook. Click %shere%s to " +"do it." +msgstr "" +"Asua localização de estação ativa não está ligada ao seu Logbook. Clique " +"%saqui%s para o fazer." + +#: application/views/dashboard/index.php:97 +#, 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:106 #, php-format msgid "You have had %d QSO today" msgid_plural "You have had %d QSOs today" msgstr[0] "Fez %d contacto hoje" msgstr[1] "Fez %d contactos hoje" -#: application/views/dashboard/index.php:97 +#: application/views/dashboard/index.php:112 msgid "You have made no QSOs today; time to turn on the radio!" msgstr "Não fez nenhum contacto hoje... está altura de ligar o rádio!" -#: application/views/dashboard/index.php:104 +#: application/views/dashboard/index.php:119 msgid "Attention: you need to set an active station location." msgstr "Atenção: é necessário definir a localização de uma estação ativa." -#: application/views/dashboard/index.php:110 +#: application/views/dashboard/index.php:125 msgid "" "You have themes without defined theme mode. Please ask the admin to edit the " "themes." @@ -5343,41 +5957,41 @@ msgstr "" "Tem temas sem modo de tema definido. Peça ao administrador para editar os " "temas." -#: application/views/dashboard/index.php:118 +#: application/views/dashboard/index.php:133 msgid "At least one of your LoTW certificates is expired!" msgstr "Pelo menos um dos seus certificados LoTW expirou!" -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:139 msgid "At least one of your LoTW certificates is about to expire!" msgstr "Pelo menos um dos seus certificados LoTW está prestes a expirar!" -#: application/views/dashboard/index.php:213 +#: application/views/dashboard/index.php:229 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "Distribuição de contactos" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:252 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "Distribuição por países" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:269 #: application/views/visitor/index.php:275 msgid "Needed" msgstr "Necessário" -#: application/views/dashboard/index.php:266 -#: application/views/dashboard/index.php:293 -#: application/views/dashboard/index.php:314 -#: application/views/dashboard/index.php:335 +#: application/views/dashboard/index.php:282 +#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:330 +#: application/views/dashboard/index.php:351 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:167 -#: application/views/qso/edit_ajax.php:390 -#: application/views/qso/edit_ajax.php:451 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:550 +#: application/views/qso/edit_ajax.php:417 +#: application/views/qso/edit_ajax.php:478 +#: application/views/qso/edit_ajax.php:518 application/views/qso/index.php:572 #: application/views/search/result_search.php:8 #: application/views/search/search_result_ajax.php:180 #: application/views/search/search_result_ajax.php:260 @@ -5385,91 +5999,91 @@ msgstr "Necessário" #: application/views/search/search_result_ajax.php:332 #: application/views/search/search_result_ajax.php:362 #: application/views/statistics/custom_result.php:89 -#: application/views/view_log/partial/log_ajax.php:140 -#: application/views/view_log/partial/log_ajax.php:217 -#: application/views/view_log/partial/log_ajax.php:237 -#: application/views/view_log/partial/log_ajax.php:287 -#: application/views/view_log/partial/log_ajax.php:295 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:289 +#: application/views/view_log/partial/log_ajax.php:297 #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 -#: src/QSLManager/QSO.php:371 src/QSLManager/QSO.php:423 -#: src/QSLManager/QSO.php:459 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:270 +#: src/QSLManager/QSO.php:373 src/QSLManager/QSO.php:425 +#: src/QSLManager/QSO.php:461 msgid "Sent" msgstr "Enviado" -#: application/views/dashboard/index.php:272 -#: application/views/dashboard/index.php:299 -#: application/views/dashboard/index.php:320 -#: application/views/dashboard/index.php:341 +#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:315 +#: application/views/dashboard/index.php:336 +#: application/views/dashboard/index.php:357 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 #: application/views/qslprint/qsolist.php:151 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:423 -#: application/views/qso/edit_ajax.php:464 -#: application/views/qso/edit_ajax.php:503 +#: application/views/qso/edit_ajax.php:450 +#: application/views/qso/edit_ajax.php:491 +#: application/views/qso/edit_ajax.php:530 #: application/views/search/search_result_ajax.php:222 #: application/views/search/search_result_ajax.php:273 #: application/views/search/search_result_ajax.php:313 #: application/views/search/search_result_ajax.php:345 #: application/views/search/search_result_ajax.php:375 -#: application/views/view_log/partial/log_ajax.php:178 -#: application/views/view_log/partial/log_ajax.php:218 -#: application/views/view_log/partial/log_ajax.php:263 -#: application/views/view_log/partial/log_ajax.php:288 -#: application/views/view_log/partial/log_ajax.php:296 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:265 +#: application/views/view_log/partial/log_ajax.php:290 +#: application/views/view_log/partial/log_ajax.php:298 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 -#: src/QSLManager/QSO.php:394 src/QSLManager/QSO.php:436 -#: src/QSLManager/QSO.php:472 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:315 +#: src/QSLManager/QSO.php:396 src/QSLManager/QSO.php:438 +#: src/QSLManager/QSO.php:474 msgid "Received" msgstr "Recebido" -#: application/views/dashboard/index.php:278 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:388 -#: application/views/logbookadvanced/index.php:399 +#: application/views/dashboard/index.php:294 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:415 +#: application/views/logbookadvanced/index.php:426 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 -#: application/views/qso/edit_ajax.php:395 -#: application/views/qso/edit_ajax.php:428 -#: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:469 +#: application/views/qso/edit_ajax.php:422 +#: application/views/qso/edit_ajax.php:455 +#: application/views/qso/edit_ajax.php:483 #: application/views/qso/edit_ajax.php:496 -#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:555 +#: application/views/qso/edit_ajax.php:523 +#: application/views/qso/edit_ajax.php:535 application/views/qso/index.php:577 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 -#: application/views/view_log/partial/log_ajax.php:146 -#: application/views/view_log/partial/log_ajax.php:184 -#: application/views/view_log/partial/log_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:273 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 -#: src/QSLManager/QSO.php:319 src/QSLManager/QSO.php:379 -#: src/QSLManager/QSO.php:402 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +#: application/views/view_log/partial/log_ajax.php:249 +#: application/views/view_log/partial/log_ajax.php:275 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:276 +#: src/QSLManager/QSO.php:321 src/QSLManager/QSO.php:381 +#: src/QSLManager/QSO.php:404 msgid "Requested" msgstr "Solicitado" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:304 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:351 +#: application/views/dashboard/index.php:367 msgid "VUCC-Grids" msgstr "VUCC-Grids" #: application/views/dayswithqso/index.php:2 -#: application/views/interface_assets/header.php:146 +#: application/views/interface_assets/header.php:148 msgid "Days with QSOs" msgstr "Dias com contactos" @@ -5498,7 +6112,7 @@ msgstr "Data de Início" #: application/views/dayswithqso/index.php:58 #: application/views/dayswithqso/index.php:86 #: application/views/dayswithqso/index.php:108 -#: application/views/timeline/index.php:120 +#: application/views/timeline/index.php:153 msgid "End Date" msgstr "Data de Fim" @@ -5571,12 +6185,8 @@ msgstr "" #: application/views/debug/index.php:47 #, php-format -msgid "" -"Check this wiki article here for " -"more information." -msgstr "" -"Verifique este artigo da wiki aqui " -"para mais informações." +msgid "Check this wiki article %shere%s for more information." +msgstr "Verifica este artigo da wiki %saqui%s para mais informações." #: application/views/debug/index.php:48 #, php-format @@ -5729,7 +6339,7 @@ msgstr "Instalado" msgid "Not Installed" msgstr "Não instalado" -#: application/views/debug/index.php:283 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:671 msgid "Settings" msgstr "Configurações" @@ -5786,7 +6396,7 @@ msgstr "Atualização do DXCC via Club Log" #: application/views/debug/index.php:506 application/views/debug/index.php:511 #: application/views/debug/index.php:516 application/views/debug/index.php:521 #: application/views/debug/index.php:526 -#: application/views/station_profile/edit.php:22 +#: application/views/station_profile/edit.php:49 msgid "Update" msgstr "Atualização" @@ -5830,9 +6440,8 @@ msgstr[1] "" #: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:57 -#: application/views/station_profile/edit.php:46 -#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" @@ -5864,69 +6473,95 @@ msgid "Everything ok" msgstr "Tudo ok" #: application/views/debug/index.php:629 +msgid "Albanian" +msgstr "Albanês" + +#: application/views/debug/index.php:630 +msgid "Bosnian" +msgstr "Bósnio" + +#: application/views/debug/index.php:631 msgid "Bulgarian" msgstr "Búlgaro" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:632 msgid "Chinese (Simplified)" msgstr "Chinês (simplificado)" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:633 +msgid "Croatian" +msgstr "Croata" + +#: application/views/debug/index.php:634 msgid "Czech" msgstr "Checo" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:635 msgid "Dutch" msgstr "Holandês" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:636 msgid "English" msgstr "Inglês" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:637 msgid "Finnish" msgstr "Finlandês" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:638 msgid "French" msgstr "Francês" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:639 msgid "German" msgstr "Alemão" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:640 msgid "Greek" msgstr "Grego" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:641 msgid "Italian" msgstr "Italiano" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:642 +msgid "Montenegrin" +msgstr "Montenegrino" + +#: application/views/debug/index.php:643 msgid "Polish" msgstr "Polaco" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:644 msgid "Portuguese" msgstr "Português" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:645 msgid "Russian" msgstr "Russo" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:646 +msgid "Serbian" +msgstr "Sérvio" + +#: application/views/debug/index.php:647 msgid "Spanish" msgstr "Espanhol" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:648 msgid "Swedish" msgstr "Sueco" -#: application/views/debug/index.php:644 +#: application/views/debug/index.php:649 msgid "Turkish" msgstr "Turco" +#: application/views/distancerecords/index.php:4 +msgid "This page lists distance records per satellite based on gridsquares." +msgstr "" +"Esta página lista os recordes de distância por satélite com base em " +"quadrículas." + #: application/views/distances/index.php:7 #: application/views/interface_assets/footer.php:30 #: application/views/simplefle/index.php:68 @@ -5934,8 +6569,9 @@ msgid "QSO Data" msgstr "Dados do contacto" #: application/views/distances/index.php:9 -msgid "contacts were plotted.
Your furthest contact was with" -msgstr "contactos foram traçados.
O seu contacto mais distante foi com" +#, php-format +msgid "contacts were plotted.%s Your furthest contact was with" +msgstr "os contactos foram traçados.%s O seu contacto mais distante foi com" #: application/views/distances/index.php:10 msgid "in gridsquare" @@ -5979,7 +6615,7 @@ msgid "Date to" msgstr "Data para" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:366 +#: application/views/view_log/qso.php:369 msgid "QSL Info" msgstr "Informação QSL" @@ -6005,7 +6641,7 @@ msgstr "Enviar contactos" #: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 #: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 #: application/views/eqsl/tools.php:15 -#: application/views/interface_assets/header.php:243 +#: application/views/interface_assets/header.php:247 msgid "Tools" msgstr "Ferramentas" @@ -6169,27 +6805,15 @@ msgid "QSL Date" msgstr "Data QSL" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2324 -#: application/views/interface_assets/footer.php:2342 -#: application/views/interface_assets/footer.php:2363 -#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2338 +#: application/views/interface_assets/footer.php:2356 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 #: application/views/qslcard/index.php:66 -#: application/views/view_log/qso.php:614 +#: application/views/view_log/qso.php:617 msgid "View" msgstr "Vista" -#: application/views/gridmap/index.php:38 -#: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:604 -#: application/views/logbookadvanced/useroptions.php:118 -msgid "Propagation" -msgstr "Propagação" - -#: application/views/gridmap/index.php:42 -msgid "None/Empty" -msgstr "Nenhum/Vazio" - #: application/views/gridmap/index.php:43 msgid "All except SAT" msgstr "Todos exceto satélite" @@ -6296,8 +6920,8 @@ msgstr "Os contactos são marcados como exportados para o logbook do HRDLog ." #: application/views/interface_assets/footer.php:31 #: application/views/search/search_result_ajax.php:404 #: application/views/view_log/partial/log.php:135 -#: application/views/view_log/partial/log_ajax.php:318 -#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log_ajax.php:320 +#: application/views/view_log/qso.php:437 msgid "Edit QSO" msgstr "Editar contacto" @@ -6305,112 +6929,120 @@ msgstr "Editar contacto" msgid "Attention" msgstr "Atenção" -#: application/views/interface_assets/footer.php:36 -msgid "OK" -msgstr "OK" - -#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/footer.php:38 msgid "Warning! Are you sure you want delete QSO with " msgstr "Atenção! Tem a certeza que quer apagar o contacto com " -#: application/views/interface_assets/footer.php:38 +#: application/views/interface_assets/footer.php:39 #: application/views/user/edit.php:493 msgid "Colors" msgstr "Cores" -#: application/views/interface_assets/footer.php:40 +#: application/views/interface_assets/footer.php:41 msgid "Worked not confirmed" msgstr "Contactado mas não confirmado" -#: application/views/interface_assets/footer.php:41 +#: application/views/interface_assets/footer.php:42 msgid "Not worked" msgstr "Não contactado" -#: application/views/interface_assets/footer.php:44 -#: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/interface_assets/footer.php:46 +#: application/views/qso/index.php:623 +#: application/views/visitor/layout/footer.php:246 msgid "Clear" msgstr "Limpar" -#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:47 #: application/views/qso/edit_ajax.php:211 -#: application/views/qso/edit_ajax.php:512 +#: application/views/qso/edit_ajax.php:539 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "" "O modo de propagação não é suportado pelo LoTW. Campos QSL do LoTW " "desactivados." -#: application/views/interface_assets/footer.php:127 -#: application/views/interface_assets/header.php:434 +#: application/views/interface_assets/footer.php:48 +msgid "No states for this DXCC available" +msgstr "Não há estados disponíveis para este DXCC" + +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "Calcular QRB e QTF" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "Erro nos locators. Por favor, verifique." + +#: application/views/interface_assets/footer.php:132 +#: application/views/interface_assets/header.php:440 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "Informação da Versão" -#: application/views/interface_assets/footer.php:392 +#: application/views/interface_assets/footer.php:398 msgid "Description:" msgstr "Descrição:" -#: application/views/interface_assets/footer.php:395 +#: application/views/interface_assets/footer.php:401 msgid "Query description" msgstr "Descrição da consulta" -#: application/views/interface_assets/footer.php:411 +#: application/views/interface_assets/footer.php:417 msgid "Your query has been saved!" msgstr "A sua consulta foi guardada!" -#: application/views/interface_assets/footer.php:413 +#: application/views/interface_assets/footer.php:419 #: application/views/search/filter.php:46 msgid "Edit queries" msgstr "Editar consultas" -#: application/views/interface_assets/footer.php:415 +#: application/views/interface_assets/footer.php:421 msgid "Stored queries:" msgstr "Consultas guardadas:" -#: application/views/interface_assets/footer.php:420 +#: application/views/interface_assets/footer.php:426 #: application/views/search/filter.php:60 msgid "Run Query" msgstr "Executar Consulta" -#: application/views/interface_assets/footer.php:432 -#: application/views/interface_assets/footer.php:561 -#: application/views/interface_assets/footer.php:625 +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 msgid "Stored Queries" msgstr "Consultas Guardadas" -#: application/views/interface_assets/footer.php:437 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 msgid "You need to make a query before you search!" msgstr "Tens de fazer uma consulta antes de pesquisar!" -#: application/views/interface_assets/footer.php:458 -#: application/views/interface_assets/footer.php:589 +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 #: application/views/search/filter.php:79 msgid "Export to ADIF" msgstr "Exportar para ADIF" -#: application/views/interface_assets/footer.php:496 +#: application/views/interface_assets/footer.php:502 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Aviso! Tem a certeza de que quer eliminar esta consulta guardada?" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:516 msgid "The stored query has been deleted!" msgstr "A consulta armazenada foi eliminada!" -#: application/views/interface_assets/footer.php:519 +#: application/views/interface_assets/footer.php:525 msgid "The stored query could not be deleted. Please try again!" msgstr "" "A consulta armazenada não pôde ser eliminada. Por favor, tente novamente!" -#: application/views/interface_assets/footer.php:545 +#: application/views/interface_assets/footer.php:551 msgid "The query description has been updated!" msgstr "A descrição da consulta foi atualizada!" -#: application/views/interface_assets/footer.php:549 +#: application/views/interface_assets/footer.php:555 msgid "Something went wrong with the save. Please try again!" msgstr "Algo correu mal com a gravação. Por favor, tente novamente!" -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:678 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -6420,62 +7052,75 @@ msgstr "" "qual é o DXCC correto para o local em questão. Se tiver a certeza, ignore " "este aviso." -#: application/views/interface_assets/footer.php:1156 -#, php-format -msgid "You're not logged it. Please login" -msgstr "Não estás autenticado. Por favor inicia sessão" +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:533 +msgid "Callsign: " +msgstr "Indicativo: " -#: application/views/interface_assets/footer.php:1362 -#: application/views/interface_assets/footer.php:1366 -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1506 -#: application/views/interface_assets/footer.php:1510 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:731 +msgid "Count: " +msgstr "Quantidade: " + +#: application/views/interface_assets/footer.php:732 +msgid "Grids: " +msgstr "Grelhas: " + +#: application/views/interface_assets/footer.php:1167 +#, 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:1375 +#: application/views/interface_assets/footer.php:1379 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1523 +#: application/views/interface_assets/footer.php:1526 msgid "grid square" msgstr "quadrícula" -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1526 msgid "Total count" msgstr "Número total" -#: application/views/interface_assets/footer.php:2100 +#: application/views/interface_assets/footer.php:2114 msgid "QSL Card for " msgstr "Cartão QSL para " -#: application/views/interface_assets/footer.php:2120 +#: application/views/interface_assets/footer.php:2134 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:2160 +#: application/views/interface_assets/footer.php:2174 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "Cartão eQSL" -#: application/views/interface_assets/footer.php:2162 +#: application/views/interface_assets/footer.php:2176 msgid "eQSL Card for " msgstr "Cartão eQSL para " -#: application/views/interface_assets/footer.php:2335 -#: application/views/interface_assets/footer.php:2374 -#: application/views/view_log/qso.php:604 +#: application/views/interface_assets/footer.php:2349 +#: application/views/interface_assets/footer.php:2388 +#: application/views/view_log/qso.php:607 msgid "QSL image file" msgstr "Ficheiro de imagem QSL" -#: application/views/interface_assets/footer.php:2354 +#: application/views/interface_assets/footer.php:2368 msgid "Front QSL Card:" msgstr "Frente do Cartão QSL:" -#: application/views/interface_assets/footer.php:2392 +#: application/views/interface_assets/footer.php:2406 msgid "Back QSL Card:" msgstr "Parte traseira do Cartão QSL:" -#: application/views/interface_assets/footer.php:2403 -#: application/views/interface_assets/footer.php:2428 +#: application/views/interface_assets/footer.php:2417 +#: application/views/interface_assets/footer.php:2442 msgid "Add additional QSOs to a QSL Card" msgstr "Adicionar QSOs adicionais a um Cartão QSL" -#: application/views/interface_assets/footer.php:2439 +#: application/views/interface_assets/footer.php:2453 msgid "Something went wrong. Please try again!" msgstr "Algo correu mal. Por favor, tente novamente!" @@ -6531,91 +7176,91 @@ msgstr "Estatísticas" msgid "Activated Gridsquares" msgstr "Quadrículas Ativadas" -#: application/views/interface_assets/header.php:160 +#: application/views/interface_assets/header.php:162 msgid "International" msgstr "Internacional" -#: application/views/interface_assets/header.php:166 +#: application/views/interface_assets/header.php:168 msgid "ITU" msgstr "UIT" -#: application/views/interface_assets/header.php:186 +#: application/views/interface_assets/header.php:190 msgid "Canada" msgstr "Canadá" -#: application/views/interface_assets/header.php:192 +#: application/views/interface_assets/header.php:196 msgid "Germany" msgstr "Alemanha" -#: application/views/interface_assets/header.php:196 +#: application/views/interface_assets/header.php:200 msgid "DL Gridmaster" msgstr "DL Gridmaster" -#: application/views/interface_assets/header.php:200 +#: application/views/interface_assets/header.php:204 msgid "Great Britain" msgstr "Grã-Bretanha" -#: application/views/interface_assets/header.php:202 +#: application/views/interface_assets/header.php:206 msgid "WAB" msgstr "WAB" -#: application/views/interface_assets/header.php:206 +#: application/views/interface_assets/header.php:210 msgid "Japan" msgstr "Japão" -#: application/views/interface_assets/header.php:212 +#: application/views/interface_assets/header.php:216 msgid "JA Gridmaster" msgstr "JA Gridmaster" -#: application/views/interface_assets/header.php:216 +#: application/views/interface_assets/header.php:220 msgid "Luxemburg" msgstr "Luxemburgo" -#: application/views/interface_assets/header.php:218 +#: application/views/interface_assets/header.php:222 msgid "LX Gridmaster" msgstr "LX Gridmaster" -#: application/views/interface_assets/header.php:222 +#: application/views/interface_assets/header.php:226 msgid "Switzerland" msgstr "Suíça" -#: application/views/interface_assets/header.php:228 +#: application/views/interface_assets/header.php:232 msgid "USA" msgstr "EUA" -#: application/views/interface_assets/header.php:234 +#: application/views/interface_assets/header.php:238 msgid "US Gridmaster" msgstr "US Gridmaster" -#: application/views/interface_assets/header.php:251 +#: application/views/interface_assets/header.php:255 msgid "Bandmap" msgstr "Mapa de Bandas" -#: application/views/interface_assets/header.php:253 +#: application/views/interface_assets/header.php:257 msgid "SAT Timers" msgstr "Tempos satélite" -#: application/views/interface_assets/header.php:256 +#: application/views/interface_assets/header.php:260 msgid "Satellite Flightpath" msgstr "Trajectória de Satélite" -#: application/views/interface_assets/header.php:258 +#: application/views/interface_assets/header.php:262 msgid "Satellite Pass" msgstr "Passagem de Satélite" -#: application/views/interface_assets/header.php:265 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:269 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "Administrador" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:274 msgid "Global Options" msgstr "Opções Globais" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:280 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:11 +#: application/views/satellite/pass.php:495 #: application/views/statistics/custom.php:20 #: application/views/statistics/custom_result.php:21 #: application/views/statistics/index.php:39 @@ -6623,79 +7268,83 @@ msgstr "Opções Globais" msgid "Satellites" msgstr "Satélites" -#: application/views/interface_assets/header.php:282 +#: application/views/interface_assets/header.php:286 msgid "Update Country Files" msgstr "Atualizar ficheiros de países" -#: application/views/interface_assets/header.php:286 +#: application/views/interface_assets/header.php:290 msgid "Debug Information" msgstr "Informações de debug" -#: application/views/interface_assets/header.php:333 +#: application/views/interface_assets/header.php:337 msgid "Add/Search Callsign" msgstr "Adicionar/Pesquisar Indicativo" -#: application/views/interface_assets/header.php:335 +#: application/views/interface_assets/header.php:339 msgid "Log" msgstr "Log" -#: application/views/interface_assets/header.php:342 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:346 +#: application/views/logbookadvanced/index.php:474 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "Pesquisar Indicativo" -#: application/views/interface_assets/header.php:371 +#: application/views/interface_assets/header.php:375 #: application/views/user/edit.php:49 msgid "Account" msgstr "Conta" -#: application/views/interface_assets/header.php:386 +#: application/views/interface_assets/header.php:390 msgid "Other Export Options" msgstr "Outras opções de exportação" -#: application/views/interface_assets/header.php:394 +#: application/views/interface_assets/header.php:398 msgid "Cabrillo Export" msgstr "Exportação Cabrillo" -#: application/views/interface_assets/header.php:418 +#: application/views/interface_assets/header.php:400 +msgid "EDI Export" +msgstr "Exportação EDI" + +#: application/views/interface_assets/header.php:424 msgid "QSL Queue" msgstr "Fila de QSLs" -#: application/views/interface_assets/header.php:419 +#: application/views/interface_assets/header.php:425 msgid "Labels" msgstr "Etiquetas" -#: application/views/interface_assets/header.php:421 +#: application/views/interface_assets/header.php:427 msgid "Third-Party Services" msgstr "Serviços de terceiros" -#: application/views/interface_assets/header.php:424 +#: application/views/interface_assets/header.php:430 msgid "eQSL Import / Export" msgstr "Importação / Exportação de eQSL" -#: application/views/interface_assets/header.php:425 +#: application/views/interface_assets/header.php:431 msgid "HRDLog Logbook" msgstr "Logbook HRDLog" -#: application/views/interface_assets/header.php:435 +#: application/views/interface_assets/header.php:441 msgid "Help" msgstr "Ajuda" -#: application/views/interface_assets/header.php:436 +#: application/views/interface_assets/header.php:442 msgid "Forum" msgstr "Fórum" -#: application/views/interface_assets/header.php:438 +#: application/views/interface_assets/header.php:444 msgid "Logout" msgstr "Terminar sessão" -#: application/views/interface_assets/header.php:446 +#: application/views/interface_assets/header.php:452 msgid "Select a Location" msgstr "Selecionar uma localização" -#: application/views/interface_assets/header.php:525 +#: application/views/interface_assets/header.php:531 msgid "Extras" msgstr "Extras" @@ -6974,86 +7623,122 @@ msgid "Start printing at?" msgstr "Iniciar a impressão em?" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:405 -#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "QSL via" -#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/edit.php:23 msgid "LoTW Sent" msgstr "LoTW Enviado" -#: application/views/logbookadvanced/edit.php:23 +#: application/views/logbookadvanced/edit.php:24 msgid "LoTW Received" msgstr "LoTW Recebido" -#: application/views/logbookadvanced/edit.php:73 +#: application/views/logbookadvanced/edit.php:75 msgid "SAT Mode" msgstr "Modo Satélite" -#: application/views/logbookadvanced/edit.php:87 +#: application/views/logbookadvanced/edit.php:89 msgid "Band RX" msgstr "Banda RX" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "Gridsquares" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "Linhas de trajetória" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "Zonas CQ" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "Zonas ITU" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:174 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "Sombra nocturna" + +#: application/views/logbookadvanced/index.php:144 msgid "From" msgstr "De" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:148 msgid "To" msgstr "Para" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:152 +#: application/views/logbookadvanced/index.php:569 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "Dx" -#: application/views/logbookadvanced/index.php:148 +#: application/views/logbookadvanced/index.php:159 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "- NENHUM - (exemplo: /MM, /AM)" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:224 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "Nenhum/Vazio" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:540 +msgid "Invalid" +msgstr "Inválido" + +#: application/views/logbookadvanced/index.php:324 msgid "QSL sent" msgstr "QSL enviada" -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:375 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:397 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:439 #: application/views/lookup/lotwuser.php:12 -#: application/views/qso/edit_ajax.php:394 -#: application/views/qso/edit_ajax.php:427 -#: application/views/qso/edit_ajax.php:455 -#: application/views/qso/edit_ajax.php:468 +#: application/views/qso/edit_ajax.php:421 +#: application/views/qso/edit_ajax.php:454 +#: application/views/qso/edit_ajax.php:482 #: application/views/qso/edit_ajax.php:495 -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 +#: application/views/qso/edit_ajax.php:522 +#: application/views/qso/edit_ajax.php:534 application/views/qso/index.php:576 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:209 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:236 -#: application/views/station_profile/create.php:275 -#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 #: application/views/station_profile/create.php:293 -#: application/views/station_profile/edit.php:330 -#: application/views/station_profile/edit.php:338 -#: application/views/station_profile/edit.php:364 -#: application/views/station_profile/edit.php:385 -#: application/views/station_profile/edit.php:403 -#: application/views/station_profile/edit.php:410 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 +#: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 #: application/views/user/edit.php:347 application/views/user/edit.php:358 #: application/views/user/edit.php:369 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:399 @@ -7063,35 +7748,35 @@ msgstr "QSL enviada" msgid "Yes" msgstr "Sim" -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 -#: application/views/logbookadvanced/index.php:376 -#: application/views/logbookadvanced/index.php:387 -#: application/views/logbookadvanced/index.php:398 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:440 #: application/views/lookup/lotwuser.php:14 -#: application/views/qso/edit_ajax.php:393 -#: application/views/qso/edit_ajax.php:426 -#: application/views/qso/edit_ajax.php:454 -#: application/views/qso/edit_ajax.php:467 +#: application/views/qso/edit_ajax.php:420 +#: application/views/qso/edit_ajax.php:453 +#: application/views/qso/edit_ajax.php:481 #: application/views/qso/edit_ajax.php:494 -#: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 +#: application/views/qso/edit_ajax.php:521 +#: application/views/qso/edit_ajax.php:533 application/views/qso/index.php:575 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:210 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:237 -#: application/views/station_profile/create.php:276 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/create.php:292 -#: application/views/station_profile/edit.php:331 -#: application/views/station_profile/edit.php:339 -#: application/views/station_profile/edit.php:365 -#: application/views/station_profile/edit.php:386 -#: application/views/station_profile/edit.php:404 -#: application/views/station_profile/edit.php:411 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 #: application/views/user/edit.php:348 application/views/user/edit.php:359 #: application/views/user/edit.php:370 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:400 @@ -7102,32 +7787,32 @@ msgstr "Sim" msgid "No" msgstr "Não" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 -#: application/views/logbookadvanced/index.php:389 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:416 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 -#: application/views/qso/edit_ajax.php:396 -#: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:497 application/views/qso/index.php:556 +#: application/views/qso/edit_ajax.php:423 +#: application/views/qso/edit_ajax.php:484 +#: application/views/qso/edit_ajax.php:524 application/views/qso/index.php:578 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:225 -#: application/views/view_log/partial/log_ajax.php:143 -#: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +#: src/QSLManager/QSO.php:273 src/QSLManager/QSO.php:318 msgid "Queued" msgstr "Em fila" -#: application/views/logbookadvanced/index.php:304 -#: application/views/logbookadvanced/index.php:314 -#: application/views/logbookadvanced/index.php:346 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:368 -#: application/views/logbookadvanced/index.php:378 -#: application/views/logbookadvanced/index.php:390 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:373 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:417 +#: application/views/logbookadvanced/index.php:427 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -7135,42 +7820,42 @@ msgstr "Em fila" #: application/views/qslprint/qsolist.php:109 #: application/views/qslprint/qsolist.php:174 #: application/views/qslprint/qsolist.php:189 -#: application/views/qso/edit_ajax.php:397 -#: application/views/qso/edit_ajax.php:429 -#: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:470 -#: application/views/qso/edit_ajax.php:498 -#: application/views/qso/edit_ajax.php:509 application/views/qso/index.php:557 +#: application/views/qso/edit_ajax.php:424 +#: application/views/qso/edit_ajax.php:456 +#: application/views/qso/edit_ajax.php:485 +#: application/views/qso/edit_ajax.php:497 +#: application/views/qso/edit_ajax.php:525 +#: application/views/qso/edit_ajax.php:536 application/views/qso/index.php:579 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/search/search_result_ajax.php:305 #: application/views/search/search_result_ajax.php:320 -#: application/views/view_log/partial/log_ajax.php:149 -#: application/views/view_log/partial/log_ajax.php:187 -#: application/views/view_log/partial/log_ajax.php:242 -#: application/views/view_log/partial/log_ajax.php:268 -#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 -#: src/QSLManager/QSO.php:375 src/QSLManager/QSO.php:398 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +#: application/views/view_log/partial/log_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:270 +#: src/QSLManager/QSO.php:279 src/QSLManager/QSO.php:324 +#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:400 msgid "Invalid (Ignore)" msgstr "Inválido (Ignorar)" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:335 msgid "QSL received" msgstr "QSL recebida" -#: application/views/logbookadvanced/index.php:315 -#: application/views/logbookadvanced/index.php:357 -#: application/views/logbookadvanced/index.php:379 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:428 msgid "Verified" msgstr "Verificado" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:346 msgid "QSL send. method" msgstr "Método de envio de QSL" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:359 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -7179,269 +7864,265 @@ msgstr "Método de envio de QSL" #: application/views/qslprint/qsolist.php:77 #: application/views/qslprint/qsolist.php:119 #: application/views/qslprint/qsolist.php:210 -#: application/views/qso/edit_ajax.php:408 -#: application/views/qso/edit_ajax.php:441 application/views/qso/index.php:568 +#: application/views/qso/edit_ajax.php:435 +#: application/views/qso/edit_ajax.php:468 application/views/qso/index.php:590 #: application/views/search/search_result_ajax.php:199 #: application/views/search/search_result_ajax.php:241 -#: application/views/view_log/partial/log_ajax.php:162 -#: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +#: src/QSLManager/QSO.php:296 src/QSLManager/QSO.php:339 msgid "Bureau" msgstr "Bureau" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:360 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 #: application/views/qslprint/qsolist.php:80 #: application/views/qslprint/qsolist.php:122 #: application/views/qslprint/qsolist.php:211 -#: application/views/qso/edit_ajax.php:407 -#: application/views/qso/edit_ajax.php:440 application/views/qso/index.php:567 +#: application/views/qso/edit_ajax.php:434 +#: application/views/qso/edit_ajax.php:467 application/views/qso/index.php:589 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 -#: application/views/view_log/partial/log_ajax.php:165 -#: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +#: src/QSLManager/QSO.php:299 src/QSLManager/QSO.php:342 msgid "Direct" msgstr "Direto" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 #: application/views/qslprint/qsolist.php:86 #: application/views/qslprint/qsolist.php:128 #: application/views/qslprint/qsolist.php:212 -#: application/views/qso/edit_ajax.php:409 -#: application/views/qso/edit_ajax.php:442 application/views/qso/index.php:569 +#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:591 #: application/views/search/search_result_ajax.php:208 #: application/views/search/search_result_ajax.php:250 -#: application/views/view_log/partial/log_ajax.php:171 -#: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +#: src/QSLManager/QSO.php:305 src/QSLManager/QSO.php:348 msgid "Electronic" msgstr "Eletrónico" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:362 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 -#: application/views/qso/edit_ajax.php:410 -#: application/views/qso/edit_ajax.php:443 application/views/qso/index.php:570 +#: application/views/qso/edit_ajax.php:437 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:592 #: application/views/search/search_result_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:206 +#: application/views/view_log/partial/log_ajax.php:208 msgid "Manager" msgstr "Manager" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:356 msgid "QSL recv. method" msgstr "Método de receção de QSL" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:366 msgid "LoTW sent" msgstr "LoTW enviado" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:377 msgid "LoTW received" msgstr "LoTW recebido" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:388 msgid "Clublog sent" msgstr "Clublog enviado" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:399 msgid "Clublog received" msgstr "Clublog recebido" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:410 msgid "eQSL sent" msgstr "eQSL enviada" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "eQSL received" msgstr "eQSL recebida" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:436 msgid "QSL Images" msgstr "Imagens QSL" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:448 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" "Atenção! Tem a certeza de que pretende apagar o(s) contacto(s) marcado(s)?" -#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:451 msgid "With selected: " msgstr "Com selecionado: " -#: application/views/logbookadvanced/index.php:425 -#: application/views/qso/edit_ajax.php:595 +#: application/views/logbookadvanced/index.php:452 +#: application/views/qso/edit_ajax.php:622 msgid "Update from Callbook" msgstr "Atualização via Callbook" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:453 msgid "Queue Bureau" msgstr "Fila de espera Bureau" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:454 msgid "Queue Direct" msgstr "Fila de espera Direto" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Queue Electronic" msgstr "Fila de espera Eletrónica" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:456 msgid "Sent (Bureau)" msgstr "Enviado (Bureau)" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:457 msgid "Sent (Direct)" msgstr "Enviado (Direto)" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Sent (Electronic)" msgstr "Enviado (Eletrónico)" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:459 msgid "Not Sent" msgstr "Não enviado" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:460 msgid "QSL Not Required" msgstr "QSL não necessária" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Not Received" msgstr "Não recebida" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:462 msgid "Received (Bureau)" msgstr "Recebido (Bureau)" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:463 msgid "Received (Direct)" msgstr "Recebido (Direto)" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Received (Electronic)" msgstr "Recebido (Eletrónico)" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:465 msgid "Create ADIF" msgstr "Criar ADIF" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:466 msgid "Print Label" msgstr "Imprimir etiqueta" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "QSL Slideshow" msgstr "Apresentação de slides QSL" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:472 msgid "Quicksearch with selected: " msgstr "Pesquisa rápida com selecionado: " -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:477 msgid "Search DXCC" msgstr "Pesquisar DXCC" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:480 msgid "Search State" msgstr "Pesquisar Estado" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Search Gridsquare" msgstr "Pesquisar quadrícula" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:486 msgid "Search CQ Zone" msgstr "Pesquisar Zona CQ" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 msgid "Search ITU Zone" msgstr "Pesquisar Zona ITU" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:492 msgid "Search Mode" msgstr "Pesquisar Modo" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:495 msgid "Search Band" msgstr "Pesquisar Banda" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:498 msgid "Search IOTA" msgstr "Pesquisar IOTA" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:501 msgid "Search SOTA" msgstr "Pesquisar SOTA" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 msgid "Search POTA" msgstr "Pesquisar POTA" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:507 msgid "Search WWFF" msgstr "Pesquisar WWFF" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Search Operator" msgstr "Pesquisar Operador" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:516 msgid "Quickfilters" msgstr "Filtros rápidos" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "QSL Filters" msgstr "Filtros QSL" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:518 #: application/views/mode/index.php:68 msgid "Filters" msgstr "Filtros" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "# Resultados" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:527 #: application/views/qso/index.php:272 -#: application/views/station_profile/edit.php:65 +#: application/views/station_profile/edit.php:92 msgid "Location" msgstr "Localização" -#: application/views/logbookadvanced/index.php:506 -msgid "Callsign: " -msgstr "Indicativo: " - -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:539 msgid "Dupes" msgstr "Duplicados" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:547 msgid "Globe map" msgstr "Mapa do globo" -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "De" -#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:605 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "Mensagem QSL" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:650 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "As minhas referências" @@ -7469,41 +8150,15 @@ msgstr "Incluir via" msgid "Column" msgstr "Coluna" -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/useroptions.php:152 msgctxt "Map Options" msgid "Layer" msgstr "Camada" -#: application/views/logbookadvanced/useroptions.php:149 +#: application/views/logbookadvanced/useroptions.php:153 msgid "Default on" msgstr "Predefinição ligada" -#: application/views/logbookadvanced/useroptions.php:154 -#: application/views/stationsetup/exportmapoptions.php:23 -msgctxt "Map Options" -msgid "Path lines" -msgstr "Linhas de trajetória" - -#: application/views/logbookadvanced/useroptions.php:158 -msgctxt "Map Options" -msgid "Gridsquares" -msgstr "Gridsquares" - -#: application/views/logbookadvanced/useroptions.php:162 -msgctxt "Map Options" -msgid "CQ Zones" -msgstr "Zonas CQ" - -#: application/views/logbookadvanced/useroptions.php:166 -msgctxt "Map Options" -msgid "ITU Zones" -msgstr "Zonas ITU" - -#: application/views/logbookadvanced/useroptions.php:170 -msgctxt "Map Options" -msgid "Night Shadow" -msgstr "Sombra nocturna" - #: application/views/lookup/index.php:8 msgid "US State" msgstr "Estado dos EUA" @@ -7612,60 +8267,64 @@ msgstr "Certificados Disponíveis" msgid "Upload Certificate" msgstr "Carregar Certificado" -#: application/views/lotw_views/index.php:41 +#: application/views/lotw_views/index.php:37 msgid "QSO Start Date" msgstr "Data de Início do contacto" -#: application/views/lotw_views/index.php:42 +#: application/views/lotw_views/index.php:38 msgid "QSO End Date" msgstr "Data de fim do contacto" -#: application/views/lotw_views/index.php:43 +#: application/views/lotw_views/index.php:39 msgid "Date Created" msgstr "Data de criação" -#: application/views/lotw_views/index.php:44 +#: application/views/lotw_views/index.php:40 msgid "Date Expires" msgstr "Data de expiração" -#: application/views/lotw_views/index.php:46 -#: application/views/view_log/qso.php:404 +#: application/views/lotw_views/index.php:42 +#: application/views/view_log/qso.php:407 msgid "Last Upload" msgstr "Último envio" -#: application/views/lotw_views/index.php:91 +#: application/views/lotw_views/index.php:87 msgid "Expired" msgstr "Expirado" -#: application/views/lotw_views/index.php:93 +#: application/views/lotw_views/index.php:89 msgid "Expiring" msgstr "A expirar" -#: application/views/lotw_views/index.php:105 +#: application/views/lotw_views/index.php:91 +msgid "Valid" +msgstr "Válido" + +#: application/views/lotw_views/index.php:101 #, php-format msgid "Last success: %s" msgstr "Último sucesso: %s" -#: application/views/lotw_views/index.php:108 +#: application/views/lotw_views/index.php:104 #, php-format msgid "Last fail: %s" msgstr "Última falha: %s" -#: application/views/lotw_views/index.php:114 +#: application/views/lotw_views/index.php:110 msgid "Not Synced" msgstr "Não sincronizado" -#: application/views/lotw_views/index.php:129 +#: application/views/lotw_views/index.php:125 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:144 +#: application/views/lotw_views/index.php:140 msgid "Information" msgstr "Informação" -#: application/views/lotw_views/index.php:149 +#: application/views/lotw_views/index.php:145 msgid "Manual Sync" msgstr "Sincronização manual" @@ -7896,6 +8555,14 @@ msgstr "Botão público do Github" msgid "This enables the button to Wavelog's Github page in the public view" msgstr "Isto ativa o botão para a página do Github do Wavelog na vista pública" +#: application/views/options/appearance.php:107 +msgid "Public Login Button" +msgstr "Botão de Login Público" + +#: application/views/options/appearance.php:112 +msgid "This enables the button to login to Wavelog in the public view" +msgstr "Isto permite que o botão faça login no Wavelog na vista pública" + #: application/views/options/dxcluster.php:38 msgid "Provider of DXClusterCache" msgstr "Fornecedor do DXClusterCache" @@ -8237,7 +8904,7 @@ msgstr "Há alguma informação adicional que seja necessário conhecer?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:64 #: application/views/oqrs/showrequests.php:87 -#: application/views/user/main.php:48 application/views/user/profile.php:24 +#: application/views/user/index.php:48 application/views/user/profile.php:24 msgid "E-mail" msgstr "E-mail" @@ -8260,21 +8927,21 @@ msgstr "Enviar não no pedido de logs" #: application/views/search/search_result_ajax.php:127 #: application/views/user/edit.php:478 #: application/views/view_log/partial/log.php:22 -#: application/views/view_log/partial/log_ajax.php:86 -#: application/views/view_log/qso.php:503 -#: application/views/view_log/qso.php:507 -#: application/views/view_log/qso.php:511 -#: application/views/view_log/qso.php:515 -#: application/views/view_log/qso.php:521 -#: application/views/view_log/qso.php:528 -#: application/views/view_log/qso.php:535 -#: application/views/view_log/qso.php:542 -#: application/views/view_log/qso.php:549 -#: application/views/view_log/qso.php:556 -#: application/views/view_log/qso.php:563 -#: application/views/view_log/qso.php:570 -#: application/views/view_log/qso.php:577 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log_ajax.php:88 +#: application/views/view_log/qso.php:506 +#: application/views/view_log/qso.php:510 +#: application/views/view_log/qso.php:514 +#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:531 +#: application/views/view_log/qso.php:538 +#: application/views/view_log/qso.php:545 +#: application/views/view_log/qso.php:552 +#: application/views/view_log/qso.php:559 +#: application/views/view_log/qso.php:566 +#: application/views/view_log/qso.php:573 +#: application/views/view_log/qso.php:580 +#: application/views/view_log/qso.php:585 msgid "Station" msgstr "Estação" @@ -8282,10 +8949,10 @@ msgstr "Estação" #: application/views/qslprint/qslprint.php:28 #: application/views/qslprint/qsolist.php:14 #: application/views/qslprint/qsolist.php:83 -#: application/views/qso/index.php:576 +#: application/views/qso/index.php:598 #: application/views/search/search_result_ajax.php:205 -#: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:300 +#: application/views/view_log/partial/log_ajax.php:170 +#: src/QSLManager/QSO.php:302 msgid "Via" msgstr "Via" @@ -8529,7 +9196,7 @@ msgid "Remove" msgstr "Remover" #: application/views/qslprint/qslprint.php:33 -#: application/views/simplefle/index.php:133 +#: application/views/simplefle/index.php:139 msgid "QSO List" msgstr "Lista de contacto" @@ -8577,35 +9244,20 @@ msgstr "" "Não foram encontrados contactos adicionais. Isso significa que provavelmente " "já estão na fila de espera." -#: application/views/qso/components/winkeysettings.php:7 -#: application/views/qso/components/winkeysettings_results.php:7 -msgid "Winkey Macros" -msgstr "Macros Winkey" - -#: application/views/qso/components/winkeysettings.php:12 -#: application/views/qso/components/winkeysettings.php:28 -#: application/views/qso/components/winkeysettings.php:44 -#: application/views/qso/components/winkeysettings.php:60 -#: application/views/qso/components/winkeysettings.php:76 -#: application/views/qso/components/winkeysettings_results.php:12 -#: application/views/qso/components/winkeysettings_results.php:28 -#: application/views/qso/components/winkeysettings_results.php:44 -#: application/views/qso/components/winkeysettings_results.php:60 -#: application/views/qso/components/winkeysettings_results.php:76 -#, php-format -msgid "Function %d - Name" -msgstr "Função %d - Nome" - +#: 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:83 -#: application/views/qso/components/winkeysettings_results.php:19 -#: application/views/qso/components/winkeysettings_results.php:35 -#: application/views/qso/components/winkeysettings_results.php:51 -#: application/views/qso/components/winkeysettings_results.php:67 -#: application/views/qso/components/winkeysettings_results.php:83 +#, 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 #, php-format msgid "Function %d - Macro" msgstr "Função %d - Macro" @@ -8631,7 +9283,8 @@ msgid "RX Band" msgstr "Banda RX" #: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:346 -#: application/views/view_log/qso.php:542 +#: application/views/reg1test/index.php:114 +#: application/views/view_log/qso.php:545 msgid "Transmit Power (W)" msgstr "Potência de Transmissão (W)" @@ -8644,10 +9297,6 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "Usado para VUCC MultiGrids" -#: application/views/qso/edit_ajax.php:177 -msgid "QTH" -msgstr "QTH" - #: application/views/qso/edit_ajax.php:258 msgid "Sat Name" msgstr "Nome do Satélite" @@ -8656,69 +9305,85 @@ msgstr "Nome do Satélite" msgid "Sat Mode" msgstr "Modo Satélite" -#: application/views/qso/edit_ajax.php:356 application/views/qso/index.php:255 -#: application/views/qso/index.php:500 application/views/user/edit.php:599 -#: application/views/view_log/qso.php:332 -#: application/views/view_log/qso.php:582 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:545 +msgid "Antenna Azimuth (°)" +msgstr "Azimute da Antena (°)" + +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:547 +msgid "Antenna azimuth in decimal degrees." +msgstr "Azimute da antena em graus decimais." + +#: application/views/qso/edit_ajax.php:274 application/views/qso/index.php:551 +msgid "Antenna Elevation (°)" +msgstr "Elevação da Antena (°)" + +#: application/views/qso/edit_ajax.php:276 application/views/qso/index.php:553 +msgid "Antenna elevation in decimal degrees." +msgstr "Elevação da antena em graus decimais." + +#: application/views/qso/edit_ajax.php:383 application/views/qso/index.php:255 +#: application/views/qso/index.php:510 application/views/user/edit.php:599 +#: application/views/view_log/qso.php:335 +#: application/views/view_log/qso.php:585 msgid "Sig Info" msgstr "Informação de sinal" -#: application/views/qso/edit_ajax.php:369 +#: application/views/qso/edit_ajax.php:396 msgid "Notes (for internal usage only)" msgstr "Notas (para uso interno apenas)" -#: application/views/qso/edit_ajax.php:403 +#: application/views/qso/edit_ajax.php:430 msgid "Sent Method" msgstr "Método de envio" -#: application/views/qso/edit_ajax.php:406 -#: application/views/qso/edit_ajax.php:439 application/views/qso/index.php:563 -#: application/views/qso/index.php:566 +#: application/views/qso/edit_ajax.php:433 +#: application/views/qso/edit_ajax.php:466 application/views/qso/index.php:585 +#: application/views/qso/index.php:588 msgid "Method" msgstr "Método" -#: application/views/qso/edit_ajax.php:416 +#: application/views/qso/edit_ajax.php:443 msgid "Sent Via" msgstr "Enviado via" -#: application/views/qso/edit_ajax.php:430 -#: application/views/qso/edit_ajax.php:471 -#: application/views/qso/edit_ajax.php:510 +#: application/views/qso/edit_ajax.php:457 +#: application/views/qso/edit_ajax.php:498 +#: application/views/qso/edit_ajax.php:537 msgid "Verified (Match)" msgstr "Verificado (Correspondência)" -#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:463 msgid "Received Method" msgstr "Método de receção" -#: application/views/qso/edit_ajax.php:477 application/views/qso/index.php:583 +#: application/views/qso/edit_ajax.php:504 application/views/qso/index.php:605 msgid "This note content is exported to QSL services like eqsl.cc." msgstr "O conteúdo desta nota é exportado para serviços QSL como o eQSL.cc." -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:586 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:608 msgid "Get the default message for eQSL, for this station." msgstr "Obtém a mensagem padrão para eQSL, para esta estação." -#: application/views/qso/edit_ajax.php:530 +#: application/views/qso/edit_ajax.php:557 msgid "Change Station Profile" msgstr "Alterar o perfil da estação" -#: application/views/qso/edit_ajax.php:576 +#: application/views/qso/edit_ajax.php:603 msgid "Exchange (R)" msgstr "Exchange (R)" -#: application/views/qso/edit_ajax.php:581 +#: application/views/qso/edit_ajax.php:608 msgid "Exchange (S)" msgstr "Exchange (E)" -#: application/views/qso/edit_ajax.php:593 +#: application/views/qso/edit_ajax.php:620 #: application/views/search/search_result_ajax.php:432 #: application/views/view_log/partial/log.php:156 -#: application/views/view_log/partial/log_ajax.php:346 +#: application/views/view_log/partial/log_ajax.php:348 msgid "Delete QSO" msgstr "Apagar contacto" -#: application/views/qso/edit_ajax.php:596 +#: application/views/qso/edit_ajax.php:623 msgid "Save changes" msgstr "Guardar alterações" @@ -8726,7 +9391,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:5 application/views/qso/index.php:694 +#: application/views/qso/index.php:5 application/views/qso/index.php:718 msgid "Previous Contacts" msgstr "Contactos anteriores" @@ -8766,23 +9431,23 @@ msgstr "Tempo desligado" msgid "Search DXCluster for latest Spot" msgstr "Pesquisar DXCluster para o spot mais recente" -#: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:149 -#: application/views/station_profile/edit.php:191 -#: application/views/user/edit.php:583 application/views/view_log/qso.php:282 -#: application/views/view_log/qso.php:549 +#: application/views/qso/index.php:196 application/views/qso/index.php:449 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 +#: application/views/user/edit.php:583 application/views/view_log/qso.php:285 +#: application/views/view_log/qso.php:552 msgid "IOTA Reference" msgstr "Referência IOTA" -#: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:165 -#: application/views/station_profile/edit.php:219 -#: application/views/user/edit.php:587 application/views/view_log/qso.php:289 -#: application/views/view_log/qso.php:556 +#: application/views/qso/index.php:212 application/views/qso/index.php:466 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 +#: application/views/user/edit.php:587 application/views/view_log/qso.php:292 +#: application/views/view_log/qso.php:559 msgid "SOTA Reference" msgstr "Referência SOTA" -#: application/views/qso/index.php:322 application/views/view_log/qso.php:98 +#: application/views/qso/index.php:322 application/views/view_log/qso.php:100 msgid "Frequency (RX)" msgstr "Frequência (RX)" @@ -8790,39 +9455,39 @@ msgstr "Frequência (RX)" msgid "Band (RX)" msgstr "Banda (RX)" -#: application/views/qso/index.php:458 +#: application/views/qso/index.php:468 msgid "For example: GM/NS-001." msgstr "Por exemplo: GM/NS-001." -#: application/views/qso/index.php:471 +#: application/views/qso/index.php:481 msgid "For example: DLFF-0069." msgstr "Por exemplo: DLFF-0069." -#: application/views/qso/index.php:484 +#: application/views/qso/index.php:494 msgid "For example: PA-0150. Multiple values allowed." msgstr "Por exemplo: PA-0150. Vários valores permitidos." -#: application/views/qso/index.php:496 +#: application/views/qso/index.php:506 msgid "For example: GMA" msgstr "Por exemplo: GMA" -#: application/views/qso/index.php:502 +#: application/views/qso/index.php:512 msgid "For example: DA/NW-357" msgstr "Por exemplo: DA/NW-357" -#: application/views/qso/index.php:510 +#: application/views/qso/index.php:520 msgid "For example: Q03" msgstr "Por exemplo: Q03" -#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +#: application/views/qso/index.php:529 application/views/view_log/qso.php:210 msgid "Satellite Name" msgstr "Nome do Satélite" -#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +#: application/views/qso/index.php:537 application/views/view_log/qso.php:217 msgid "Satellite Mode" msgstr "Modo Satélite" -#: application/views/qso/index.php:538 +#: application/views/qso/index.php:560 msgid "" "Note content is used within Wavelog only and is not exported to other " "services." @@ -8830,27 +9495,47 @@ msgstr "" "O conteúdo das notas é utilizado apenas no Wavelog e não é exportado para " "outros serviços." -#: application/views/qso/index.php:604 +#: application/views/qso/index.php:626 msgid "Reset to Default" msgstr "Repor a predefinição" -#: application/views/qso/index.php:645 +#: application/views/qso/index.php:667 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:647 +#: application/views/qso/index.php:669 msgid "Connect" msgstr "Conectar" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:678 +msgid "Stop" +msgstr "Parar" + +#: application/views/qso/index.php:679 +msgid "Tune" +msgstr "Sintonizar" + +#: application/views/qso/index.php:680 +msgid "Stop Tune" +msgstr "Parar Sintonização" + +#: application/views/qso/index.php:686 +msgid "CW Speed" +msgstr "Velocidade CW" + +#: application/views/qso/index.php:691 +msgid "Send" +msgstr "Enviar" + +#: application/views/qso/index.php:701 msgid "Suggestions" msgstr "Sugestões" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:708 msgid "Profile Picture" msgstr "Foto de Perfil" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:732 msgid "Max. 5 previous contacts are shown" msgstr "São apresentados no máximo 5 contactos anteriores" @@ -8882,6 +9567,149 @@ msgstr "funções do rádio" msgid "Please wait..." msgstr "Aguarde ..." +#: application/views/reg1test/index.php:6 +msgid "Select Band" +msgstr "Selecionar Banda" + +#: application/views/reg1test/index.php:8 +msgid "" +"Bands below 50Mhz are not valid for the EDI REG1TEST format and will produce " +"invalid files." +msgstr "" +"As bandas abaixo de 50MHz não são válidas para o formato REG1TEST EDI e " +"produzirão ficheiros inválidos." + +#: application/views/reg1test/index.php:18 +msgid "Export a contest to a REG1TEST EDI log" +msgstr "Exporta um concurso para um log REG1TEST EDI" + +#: application/views/reg1test/index.php:48 +msgid "Sent Exchange" +msgstr "Troca enviada" + +#: application/views/reg1test/index.php:50 +msgid "" +"The exchange which was sent during the contest. Can be any type of " +"information, e.g. Province, DOK, County, State, Power, Name. Max. length: 6 " +"characters." +msgstr "" +"A troca que foi enviada durante o concurso. Pode ser qualquer tipo de " +"informação, por exemplo, Província, DOK, Condado, Estado, Potência, Nome. " +"Comprimento máximo: 6 caracteres." + +#: 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 "" +"Descreve o indicativo do clube de rádio ao qual o(s) operador(es) " +"pertence(m). Por exemplo, pode ser usado se os pontos forem acumulados para " +"o clube." + +#: application/views/reg1test/index.php:66 +msgid "Callsign of responsible operator" +msgstr "Indicativo do operador responsável" + +#: application/views/reg1test/index.php:72 +msgid "" +"List of all operators. Seperated with a semicolon ';'. The responsible " +"operator is not needed here." +msgstr "" +"Lista de todos os operadores. Separados por um ponto e vírgula ';'. O " +"operador responsável não é necessário aqui." + +#: application/views/reg1test/index.php:75 +msgid "Contest Address 1" +msgstr "Endereço do Concurso 1" + +#: application/views/reg1test/index.php:77 +msgid "Address of the QTH used during the contest." +msgstr "Endereço do QTH usado durante o concurso." + +#: application/views/reg1test/index.php:80 +msgid "Contest Address 2" +msgstr "Endereço do Concurso 2" + +#: application/views/reg1test/index.php:84 +msgid "Operator Address 1" +msgstr "Endereço do Operador 1" + +#: application/views/reg1test/index.php:86 +msgid "Address of the responsible operator." +msgstr "Endereço do operador responsável." + +#: application/views/reg1test/index.php:89 +msgid "Operator Address 2" +msgstr "Endereço do Operador 2" + +#: application/views/reg1test/index.php:93 +msgid "Operator Address Postalcode" +msgstr "Código Postal do endereço do Operador" + +#: application/views/reg1test/index.php:97 +msgid "Operator Address City" +msgstr "Cidade do endereço do Operador" + +#: application/views/reg1test/index.php:101 +msgid "Operator Address Country" +msgstr "País do endereço do Operador" + +#: application/views/reg1test/index.php:105 +msgid "Operator Phone Number" +msgstr "Número de Telefone do Operador" + +#: application/views/reg1test/index.php:109 +msgid "Transmit Equipment Description" +msgstr "Descrição do Equipamento de Transmissão" + +#: application/views/reg1test/index.php:111 +msgid "Short description of the used equipment." +msgstr "Breve descrição do equipamento utilizado." + +#: application/views/reg1test/index.php:116 +msgid "TX Power during the contest in Watt." +msgstr "Potência de transmissão durante o concurso em Watt." + +#: application/views/reg1test/index.php:119 +msgid "Receive Equipment Description" +msgstr "Descrição do Equipamento de Recepção" + +#: application/views/reg1test/index.php:121 +msgid "If you used another gear for RX, then describe it here." +msgstr "Se usou outro equipamento para RX, descreva aqui." + +#: application/views/reg1test/index.php:124 +msgid "Antenna Description" +msgstr "Descrição da Antena" + +#: application/views/reg1test/index.php:126 +msgid "What kind of antenna was used." +msgstr "Que tipo de antena foi usada." + +#: application/views/reg1test/index.php:129 +msgid "Antenna Height Above Ground (m)" +msgstr "Altura da Antena Acima do Solo (m)" + +#: application/views/reg1test/index.php:131 +msgid "Height of the antenna above the ground." +msgstr "Altura da antena acima do solo." + +#: application/views/reg1test/index.php:134 +msgid "Band multiplicator" +msgstr "Multiplicador de banda" + +#: 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 "" +"Multiplicador de banda. Normalmente é 1. Só altere isto se necessário de " +"acordo com as regras de pontuação do concurso." + +#: application/views/reg1test/index.php:141 +msgid "Any other remarks." +msgstr "Outros comentários." + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8973,10 +9801,71 @@ msgstr "Adicionar um satélite" msgid "Satellite passes" msgstr "Passagens de satélites" -#: application/views/satellite/pass.php:548 +#: application/views/satellite/pass.php:8 +msgid "Min. Satellite Elevation" +msgstr "Elevação Mínima do Satélite" + +#: application/views/satellite/pass.php:12 +msgid "Min. Azimuth" +msgstr "Azimute mínimo" + +#: application/views/satellite/pass.php:20 +msgid "Max. Azimuth" +msgstr "Azimute máximo" + +#: application/views/satellite/pass.php:32 +msgid "Altitude (meters)" +msgstr "Altitude (metros)" + +#: application/views/satellite/pass.php:36 application/views/user/edit.php:179 +msgid "Timezone" +msgstr "Fuso horário" + +#: application/views/satellite/pass.php:479 +msgid "Min. time" +msgstr "Tempo mínimo" + +#: application/views/satellite/pass.php:487 +msgid "Max. time" +msgstr "Tempo máximo" + +#: application/views/satellite/pass.php:504 msgid "Load predictions" msgstr "Carregar previsões" +#: application/views/satellite/passtable.php:6 +msgid "AOS Time" +msgstr "Tempo AOS" + +#: application/views/satellite/passtable.php:7 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "Duração" + +#: application/views/satellite/passtable.php:8 +msgid "AOS Az" +msgstr "AOS Az" + +#: application/views/satellite/passtable.php:9 +msgid "AOS El" +msgstr "AOS El" + +#: application/views/satellite/passtable.php:10 +msgid "Max El" +msgstr "Máximo El" + +#: application/views/satellite/passtable.php:11 +msgid "LOS Time" +msgstr "Tempo LOS" + +#: application/views/satellite/passtable.php:12 +msgid "LOS Az" +msgstr "LOS Az" + +#: application/views/satellite/passtable.php:13 +msgid "LOS El" +msgstr "LOS El" + #: application/views/sattimers/index.php:15 #, php-format msgid "" @@ -8999,10 +9888,6 @@ msgstr "Azimute" msgid "Max Elevation" msgstr "Elevação Máxima" -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "Duração" - #: application/views/search/cqzones.php:5 #: application/views/search/lotw_unconfirmed.php:5 #: application/views/search/main.php:5 @@ -9113,50 +9998,50 @@ msgstr "Recebido" #: application/views/search/search_result_ajax.php:409 #: application/views/view_log/partial/log.php:140 -#: application/views/view_log/partial/log_ajax.php:323 +#: application/views/view_log/partial/log_ajax.php:325 msgid "Mark QSL Sent (Bureau)" msgstr "Marcar QSL enviada (Bureau)" #: application/views/search/search_result_ajax.php:410 #: application/views/view_log/partial/log.php:141 -#: application/views/view_log/partial/log_ajax.php:324 +#: application/views/view_log/partial/log_ajax.php:326 msgid "Mark QSL Sent (Direct)" msgstr "Marcar QSL anviada (Direta)" #: application/views/search/search_result_ajax.php:417 #: application/views/view_log/partial/log.php:148 -#: application/views/view_log/partial/log_ajax.php:333 -#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log_ajax.php:335 +#: application/views/view_log/qso.php:655 msgid "Mark QSL Received (Bureau)" msgstr "Marcar QSL recebida (Bureau)" #: application/views/search/search_result_ajax.php:418 #: application/views/view_log/partial/log.php:149 -#: application/views/view_log/partial/log_ajax.php:334 -#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log_ajax.php:336 +#: application/views/view_log/qso.php:657 msgid "Mark QSL Received (Direct)" msgstr "Marcar QSL recebida (Direto)" #: application/views/search/search_result_ajax.php:419 #: application/views/view_log/partial/log.php:150 -#: application/views/view_log/partial/log_ajax.php:325 +#: application/views/view_log/partial/log_ajax.php:327 msgid "Mark QSL Card Requested" msgstr "Marcar QSL como pedida" #: application/views/search/search_result_ajax.php:420 #: application/views/view_log/partial/log.php:151 -#: application/views/view_log/partial/log_ajax.php:326 -#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log_ajax.php:328 +#: application/views/view_log/qso.php:669 msgid "Mark QSL Card Not Required" msgstr "Marcar QSL como não necessária" #: application/views/search/search_result_ajax.php:426 -#: application/views/view_log/partial/log_ajax.php:340 +#: application/views/view_log/partial/log_ajax.php:342 msgid "Lookup on QRZ.com" msgstr "Consulta no QRZ.com" #: application/views/search/search_result_ajax.php:428 -#: application/views/view_log/partial/log_ajax.php:342 +#: application/views/view_log/partial/log_ajax.php:344 msgid "Lookup on HamQTH" msgstr "Consulta no HamQTH" @@ -9202,7 +10087,7 @@ msgstr "" "em %s." #: application/views/simplefle/index.php:17 -#: application/views/simplefle/index.php:170 +#: application/views/simplefle/index.php:176 msgid "Syntax Help" msgstr "Ajuda de Sintaxe" @@ -9304,11 +10189,11 @@ msgstr "Indicativo da Estação/Localização" #: application/views/simplefle/index.php:107 #, php-format msgid "" -"If you did operate from a new location, first create a new Station Location" +"If you did operate from a new location, first create a new %sStation " +"Location%s" msgstr "" -"Se estiver a operar a partir de uma nova localização, crie primeiro uma nova " -"Localização da estação" +"Se você operou a partir de um novo local, primeiro crie uma nova %sStation " +"Location%s" #: application/views/simplefle/index.php:112 msgid "e.g. OK2CQR" @@ -9322,25 +10207,24 @@ msgstr "Este é o indicativo do operador. Sem qualquer prefixo ou sufixo." msgid "Enter the Data" msgstr "Introduzir os dados" -#: application/views/simplefle/index.php:148 +#: application/views/simplefle/index.php:154 msgid "Refs" msgstr "Referências" -#: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" -msgstr "" -"As referências podem ser SOTA, IOTA, POTA ou WWFF" +#: application/views/simplefle/index.php:166 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" +msgstr "As Refs podem ser %sS%sOTA, %sI%sOTA, %sP%sOTA, ou %sW%sWFF" -#: application/views/simplefle/index.php:167 +#: application/views/simplefle/index.php:173 msgid "Reload QSO List" msgstr "Recarregar Lista de contactos" -#: application/views/simplefle/index.php:168 +#: application/views/simplefle/index.php:174 msgid "Save in Wavelog" msgstr "Guardar no Wavelog" -#: application/views/simplefle/index.php:169 +#: application/views/simplefle/index.php:175 msgid "Clear Logging Session" msgstr "Limpar Sessão de Registo" @@ -9418,124 +10302,123 @@ msgstr "" #: application/views/simplefle/syntax_help.php:28 #, php-format -msgctxt "uses 'this article'" msgid "" -"A full summary of all commands and the necessary syntax can be found in %s " -"of our Wiki." +"A full summary of all commands and the necessary syntax can be found in " +"%sthis article%s of our Wiki." msgstr "" -"Um resumo completo de todos os comandos e da sintaxe necessária pode ser " -"encontrado em %s da nossa Wiki." +"Um resumo completo de todos os comandos e a sintaxe necessária pode ser " +"encontrado neste %sartigo%s da nossa Wiki." -#: application/views/station_profile/create.php:51 -#: application/views/station_profile/edit.php:40 +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 msgid "Location Name" msgstr "Nome da localização" -#: application/views/station_profile/create.php:52 -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "QTH de origem" -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "Nome abreviado para a localização da estação. Por exemplo: %s" -#: application/views/station_profile/create.php:59 -#: application/views/station_profile/edit.php:48 +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 msgid "Station callsign. For example: 4W7EST/P" msgstr "Indicativo de chamada da estação. Por exemplo: 4W7EST/P" -#: application/views/station_profile/create.php:63 -#: application/views/station_profile/edit.php:52 +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 msgid "Station Power (W)" msgstr "Potência da Estação (W)" -#: application/views/station_profile/create.php:65 -#: application/views/station_profile/edit.php:54 +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 msgid "Default station power in Watt. Overwritten by CAT." msgstr "Potência por defeito da estação em Watt. Substituída pelo CAT." -#: application/views/station_profile/create.php:68 -#: application/views/station_profile/edit.php:69 +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 msgid "Station DXCC" msgstr "Estação DXCC" -#: application/views/station_profile/create.php:71 -#: application/views/station_profile/edit.php:72 +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 msgctxt "DXCC selection" msgid "None" msgstr "Nenhum" -#: application/views/station_profile/create.php:78 -#: application/views/station_profile/edit.php:85 +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 msgid "Station DXCC entity. For example: Bolivia" msgstr "Entidade DXCC da estação. Por exemplo: Bolívia" -#: application/views/station_profile/create.php:83 -#: application/views/station_profile/edit.php:91 +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 msgid "Station City" msgstr "Cidade da Estação" -#: application/views/station_profile/create.php:85 -#: application/views/station_profile/edit.php:93 +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 msgid "Station city. For example: Oslo" msgstr "Cidade da estação. Por exemplo: Oslo" -#: application/views/station_profile/create.php:94 -#: application/views/station_profile/edit.php:105 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 msgid "Station state. Applies to certain countries only." msgstr "Estado da estação. Aplica-se apenas a certos países." -#: application/views/station_profile/create.php:99 -#: application/views/station_profile/edit.php:110 +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 msgid "Station County" msgstr "Condado da Estação" -#: application/views/station_profile/create.php:101 -#: application/views/station_profile/edit.php:112 +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "Condado da Estação (usado apenas para EUA/Alasca/Havai)." -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/edit.php:138 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "Se não souberes a tua zona CQ, então %s para a encontrares!" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:138 -#: application/views/station_profile/edit.php:155 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 msgid "click here" msgstr "clique aqui" -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/edit.php:155 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "Se não sabe a sua zona ITU, então %s para a encontrar!" -#: application/views/station_profile/create.php:135 -#: application/views/station_profile/edit.php:167 -#: application/views/station_profile/edit.php:170 +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 msgid "Station Gridsquare" msgstr "Quadrícula da Estação" -#: application/views/station_profile/create.php:140 -#: application/views/station_profile/edit.php:175 +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 msgid "Get Gridsquare" msgstr "Obter quadrícula" -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 #, php-format msgctxt "uses 'click here'" msgid "" @@ -9545,8 +10428,8 @@ msgstr "" "Quadrícula da estação. Por exemplo: HM54AP. Se não souber o quadrado do seu " "locator, então %s!" -#: application/views/station_profile/create.php:145 -#: application/views/station_profile/edit.php:180 +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." @@ -9554,53 +10437,53 @@ msgstr "" "Se estiver localizado numa linha de grelha, introduza vários quadrados de " "grelha separados por vírgulas. Por exemplo: IO77,IO78,IO87,IO88." -#: application/views/station_profile/create.php:160 -#: application/views/station_profile/edit.php:205 +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 msgid "Station IOTA reference. For example: EU-005" msgstr "Referência IOTA da estação. Por exemplo: EU-005" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 msgid "IOTA World website" msgstr "Site IOTA World" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 #, php-format msgid "You can look up IOTA references at the %s." msgstr "Pode consultar as referências da IOTA no %s." -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 msgid "SOTA Maps website" msgstr "Site SOTA Maps" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" "Referência SOTA da estação. Pode consultar as referências SOTA no site %s." -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 msgid "GMA Map website" msgstr "Site GMA Map" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" "Referência WWFF da estação. Pode consultar as referências WWFF no site %s." -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 msgid "POTA Map website" msgstr "Site POTA Map" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 #, php-format msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " @@ -9609,44 +10492,44 @@ msgstr "" "Referência(s) POTA da estação. São permitidos vários valores separados por " "vírgulas. Pode consultar as referências POTA no site %s." -#: application/views/station_profile/create.php:183 -#: application/views/station_profile/edit.php:260 +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 msgid "Signature Name" msgstr "Nome de Assinatura" -#: application/views/station_profile/create.php:185 -#: application/views/station_profile/edit.php:262 +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 msgid "Station Signature (e.g. GMA).." msgstr "Assinatura da Estação (por exemplo, GMA).." -#: application/views/station_profile/create.php:189 -#: application/views/station_profile/edit.php:266 +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 msgid "Signature Information" msgstr "Informação de Assinatura" -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/edit.php:268 +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "Informação sobre a assinatura da estação (por exemplo, DA/NW-357)." -#: application/views/station_profile/create.php:195 -#: application/views/station_profile/edit.php:281 +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "Apelido do QTH no eQSL" -#: application/views/station_profile/create.php:197 -#: application/views/station_profile/edit.php:283 +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "O apelido QTH que está configurado no seu perfil eQSL" -#: application/views/station_profile/create.php:201 -#: application/views/station_profile/edit.php:286 +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 msgid "Default QSLMSG" msgstr "Mensagem padrão QSLMSG" -#: application/views/station_profile/create.php:204 -#: application/views/station_profile/edit.php:289 +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." @@ -9654,13 +10537,13 @@ msgstr "" "Definir uma mensagem predefinida que será preenchida e enviada para cada " "contacto para esta localização de estação." -#: application/views/station_profile/create.php:207 -#: application/views/station_profile/edit.php:328 +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 msgid "Ignore Clublog Upload" msgstr "Ignorar envio para o Clublog" -#: application/views/station_profile/create.php:212 -#: application/views/station_profile/edit.php:333 +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " "Clublog. If this is deactivated on it's own please check if the Call is " @@ -9670,204 +10553,140 @@ msgstr "" "enviados parar o Clublog. Se isto estiver desativado por si só, por favor " "verifique se o indicativo está corretamente configurado no Clublog" -#: application/views/station_profile/create.php:215 -#: application/views/station_profile/edit.php:336 +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 msgid "ClubLog Realtime Upload" msgstr "Envio em tempo real para o ClubLog" -#: application/views/station_profile/create.php:224 -#: application/views/station_profile/edit.php:352 +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 msgid "HRDLog.net Username" msgstr "Nome de utilizador do HRDLog.net" -#: application/views/station_profile/create.php:226 -#: application/views/station_profile/edit.php:354 +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" "O nome de utilizador com que está registado no HRDlog.net (normalmente o seu " "indicativo)." -#: application/views/station_profile/create.php:229 -#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 msgid "HRDLog.net API Key" msgstr "Chave API do HRDLog.net" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "Crie o seu código API no seu %s" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 msgid "HRDLog.net Userprofile page" msgstr "Página de perfil do utilizador HRDLog.net" -#: application/views/station_profile/create.php:234 -#: application/views/station_profile/edit.php:362 +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 msgid "HRDLog.net Logbook Realtime Upload" msgstr "Envio em tempo real para o Logbook do HRDLog.net" -#: application/views/station_profile/create.php:243 -#: application/views/station_profile/edit.php:297 +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 msgid "Subscription Required" msgstr "Subscrição obrigatória" -#: application/views/station_profile/create.php:248 +#: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "Chave API do Logbook do QRZ.com" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "Chave API de testes" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "Pode encontrar a sua chave API em %s" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 msgid "the QRZ.com Logbook settings page" msgstr "a página de definições do logbook do QRZ.com" -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/edit.php:310 +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 msgid "QRZ.com Logbook Upload" msgstr "Envio do log para o Logbook do QRZ.com" -#: application/views/station_profile/create.php:260 -#: application/views/station_profile/edit.php:313 +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 msgid "Realtime" msgstr "Tempo real" -#: application/views/station_profile/create.php:268 -#: application/views/station_profile/edit.php:378 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "Chave API do QO-100 Dx Club" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "Crie a sua chave API em %s" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 msgid "QO-100 Dx Club's profile page" msgstr "Página de perfil do QO-100 Dx Club" -#: application/views/station_profile/create.php:273 -#: application/views/station_profile/edit.php:383 +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 msgid "QO-100 Dx Club Realtime Upload" msgstr "Envio em tempo real do log para o QO-100 Dx Club" -#: application/views/station_profile/create.php:283 -#: application/views/station_profile/edit.php:401 +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 msgid "OQRS Enabled" msgstr "OQRS ativado" -#: application/views/station_profile/create.php:290 -#: application/views/station_profile/edit.php:408 +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 msgid "OQRS Email alert" msgstr "Alerta de email OQRS" -#: application/views/station_profile/create.php:295 -#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 msgid "Make sure email is set up under admin and global options." msgstr "" "Certifique-se de que o correio eletrónico está configurado nas opções de " "administração e globais." -#: application/views/station_profile/create.php:298 -#: application/views/station_profile/edit.php:416 +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 msgid "OQRS Text" msgstr "Texto OQRS" -#: application/views/station_profile/create.php:300 -#: application/views/station_profile/edit.php:418 +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 msgid "Some info you want to add regarding QSL'ing." msgstr "Alguma informação que queira acrescentar sobre as QSL's." -#: application/views/station_profile/edit.php:122 +#: application/views/station_profile/edit.php:149 msgid "Zones" msgstr "Zonas" -#: application/views/station_profile/edit.php:257 +#: application/views/station_profile/edit.php:284 msgid "Signature" msgstr "Assinatura" -#: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:95 -msgid "" -"Station Locations define operating locations, such as your QTH, a friends " -"QTH, or a portable station." -msgstr "" -"A “Station Locations” define os locais de operação, como o seu QTH, o QTH de " -"um amigo ou uma estação portátil." - -#: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:96 -msgid "Similar to logbooks, a station profile keeps a set of QSOs together." -msgstr "" -"Semelhante aos logbooks, um perfil de estação mantém um conjunto de " -"contactos juntos." - -#: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:97 -msgid "" -"Only one station may be active at a time. In the table below this is shown " -"with the -Active Station- badge." -msgstr "" -"Apenas uma estação pode estar ativa de cada vez. Na tabela abaixo, isto é " -"mostrado com o emblema -Active Station- (Estação ativa)." - -#: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:101 -msgid "Create a Station Location" -msgstr "Criar uma localização de estação" - -#: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:105 -msgid "" -"Attention: You need to set an active station location. Go to Callsign-" -">Station Location to select one." -msgstr "" -"Atenção: É necessário definir uma localização de estação ativa. Aceda a " -"Indicativo de chamada->Localização da estação para selecionar uma." - -#: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:111 -msgid "" -"Due to recent changes within Wavelog you need to reassign QSOs to your " -"station profiles." -msgstr "" -"Devido a alterações recentes no Wavelog, é necessário reatribuir contactos " -"aos perfis da sua estação." - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Maintenance" -msgstr "Manutenção" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Please reassign them at " -msgstr "Por favor, reatribua-os em " - -#: application/views/station_profile/index.php:41 -#: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:122 -msgid "Profile Name" -msgstr "Nome do perfil" - #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "Nome do logbook da estação" @@ -9915,6 +10734,11 @@ msgstr "Selecionar localizações de estações disponíveis" msgid "Link Location" msgstr "Conectar localização" +#: application/views/stationsetup/linkedlocations.php:31 +#: application/views/stationsetup/stationsetup.php:122 +msgid "Profile Name" +msgstr "Nome do perfil" + #: application/views/stationsetup/linkedlocations.php:34 msgid "Unlink Station Location" msgstr "Desconectar localização da estação" @@ -9943,6 +10767,28 @@ msgstr "Site de visitantes" msgid "Station Locations" msgstr "Localizações das Estações" +#: application/views/stationsetup/stationsetup.php:95 +msgid "" +"Station Locations define operating locations, such as your QTH, a friends " +"QTH, or a portable station." +msgstr "" +"A “Station Locations” define os locais de operação, como o seu QTH, o QTH de " +"um amigo ou uma estação portátil." + +#: application/views/stationsetup/stationsetup.php:96 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" +"Semelhante aos logbooks, um perfil de estação mantém um conjunto de " +"contactos juntos." + +#: application/views/stationsetup/stationsetup.php:97 +msgid "" +"Only one station may be active at a time. In the table below this is shown " +"with the -Active Station- badge." +msgstr "" +"Apenas uma estação pode estar ativa de cada vez. Na tabela abaixo, isto é " +"mostrado com o emblema -Active Station- (Estação ativa)." + #: application/views/stationsetup/stationsetup.php:98 msgid "" "The 'Linked' column shows if the station location is linked with the Active " @@ -9951,6 +10797,34 @@ msgstr "" "A coluna 'Conectado' mostra se a localização da estação está ligada ao " "logbook Ativo selecionado acima." +#: application/views/stationsetup/stationsetup.php:101 +msgid "Create a Station Location" +msgstr "Criar uma localização de estação" + +#: application/views/stationsetup/stationsetup.php:105 +msgid "" +"Attention: You need to set an active station location. Go to Callsign-" +">Station Location to select one." +msgstr "" +"Atenção: É necessário definir uma localização de estação ativa. Aceda a " +"Indicativo de chamada->Localização da estação para selecionar uma." + +#: application/views/stationsetup/stationsetup.php:111 +msgid "" +"Due to recent changes within Wavelog you need to reassign QSOs to your " +"station profiles." +msgstr "" +"Devido a alterações recentes no Wavelog, é necessário reatribuir contactos " +"aos perfis da sua estação." + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Maintenance" +msgstr "Manutenção" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Please reassign them at " +msgstr "Por favor, reatribua-os em " + #: application/views/stationsetup/stationsetup.php:127 msgid "Linked" msgstr "Conectado" @@ -10191,12 +11065,13 @@ msgid "4. Step" msgstr "4. Passo" #: application/views/themes/index.php:73 +#, php-format msgid "" "Click here on 'Add a Theme' and type in the necessary data. Type in the " -"filenames for the logos without the file extension '.png'" +"filenames for the logos %swithout%s the file extension '.png'" msgstr "" -"Click here on 'Add a Theme' and type in the necessary data. Type in the " -"filenames for the logos sem the file extension '.png'" +"Clique aqui em 'Adicionar um Tema' e insira os dados necessários. Digite os " +"nomes dos arquivos para os logotipos %ssem%s a extensão de arquivo '.png'" #: application/views/themes/index.php:83 msgid "Foldername" @@ -10262,6 +11137,10 @@ msgstr "Verificar atualizações de dados DXCC" msgid "Update DXCC Data" msgstr "Atualizar dados DXCC" +#: application/views/update/index.php:30 +msgid "Status:" +msgstr "Estado:" + #: application/views/update/index.php:34 msgid "Apply DXCC Data to Logbook" msgstr "Aplicar dados DXCC ao Logbook" @@ -10280,19 +11159,19 @@ msgstr "" "estão em falta com os metadados DXCC ou verificar novamente todo o logbook\n" "\t\t\t\t\t\t\te atualizar também os metadados existentes, caso tenham mudado." -#: application/views/update/index.php:40 +#: application/views/update/index.php:45 msgid "Check QSOs missing DXCC data" msgstr "Verificar contactos sem dados DXCC" -#: application/views/update/index.php:42 +#: application/views/update/index.php:54 application/views/update/index.php:95 msgid "Re-check all QSOs in logbook" msgstr "Verificar novamente todos os contactos no logbook" -#: application/views/update/index.php:45 +#: application/views/update/index.php:59 msgid "Apply Continent Data to Logbook" msgstr "Aplicar dados do continente ao logbook" -#: application/views/update/index.php:47 +#: application/views/update/index.php:61 msgid "" "This function can be used to update QSO continent information for all QSOs " "in Wavelog missing that information." @@ -10300,18 +11179,28 @@ msgstr "" "Esta função pode ser utilizada para atualizar a informação do continente do " "contacto para todos os contactos no Wavelog que não tenham essa informação." -#: application/views/update/index.php:49 +#: application/views/update/index.php:68 msgid "Check QSOs missing continent data" msgstr "Verificar contactos sem dados do continente" -#: application/views/update/index.php:59 +#: application/views/update/index.php:80 msgid "Here you can update QSOs with missing distance information." msgstr "Aqui pode atualizar contactos com informação de distância em falta." -#: application/views/update/index.php:60 +#: application/views/update/index.php:86 msgid "Update distance data" msgstr "Atualizar dados de distância" +#: application/views/update/index.php:89 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" +"Use o seguinte botão para atualizar a informação de distância para todos os " +"teus contactos. Dependendo do número de contactos, isto pode demorar algum " +"tempo a executar. Por favor seja paciente." + #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "Apagar conta de utilizador" @@ -10341,13 +11230,13 @@ msgid "General Information" msgstr "Informação Geral" #: application/views/user/edit.php:52 application/views/user/login.php:58 -#: application/views/user/login.php:67 application/views/user/login.php:68 +#: application/views/user/login.php:69 application/views/user/login.php:70 #: application/views/user/profile.php:14 msgid "Username" msgstr "Nome de utilizador" #: application/views/user/edit.php:64 application/views/user/login.php:59 -#: application/views/user/login.php:71 application/views/user/login.php:72 +#: application/views/user/login.php:73 application/views/user/login.php:74 #: application/views/user/reset_password.php:21 #: application/views/user/reset_password.php:23 #: application/views/user/reset_password.php:30 @@ -10390,10 +11279,6 @@ msgstr "Língua do Wavelog" msgid "Choose Wavelog language." msgstr "Escolha a língua do Wavelog." -#: application/views/user/edit.php:179 -msgid "Timezone" -msgstr "Fuso horário" - #: application/views/user/edit.php:187 msgid "Date Format" msgstr "Formato de Data" @@ -10749,6 +11634,137 @@ msgstr "Esqueceu-se da palavra-passe?" msgid "You can reset your password here." msgstr "Pode redefinir a sua palavra-passe aqui." +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" +"Quer mesmo enviar a este utilizador uma ligação de reposição da palavra-" +"passe?" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "Aguarde ..." + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "E-mail de reposição de palavra-passe enviado ao utilizador:" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "Lista de utilizadores" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "" +"O Wavelog necessita de pelo menos um utilizador configurado para poder " +"funcionar." + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" +"Podem ser atribuídas funções aos utilizadores que lhes dão diferentes " +"permissões, tais como adicionar QSOs ao logbook e aceder às APIs do Wavelog." + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" +"O utilizador atualmente com sessão iniciada é apresentado no canto superior " +"direito de cada página." + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" +"Com o botão de reposição da palavra-passe, pode enviar a um utilizador um e-" +"mail com uma ligação para repor a sua palavra-passe. Para tal, certifique-se " +"de que as definições de correio eletrónico nas opções globais estão " +"corretamente configuradas." + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "Criar utilizador" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "Atualizar lista" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "Tipo" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "Visto pela última vez" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "Redefinição da palavra-passe" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "Imitar" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "Nunca" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "Localizações" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "Logbooks" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "Último contacto:" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "Sem contactos no log" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "Imitar utilizador" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" +"Está prestes a fazer-se passar por outro utilizador. Para voltar à sua conta " +"de administrador, precisará de terminar a sessão e voltar a iniciar sessão " +"como administrador." + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "Deseja imitar este utilizador?" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "Nome de utilizador:" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "Nome:" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "Indicativo:" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "E-mail:" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "Última vez visto:" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "MODO DE MANUTENÇÃO" @@ -10763,110 +11779,17 @@ msgstr "Esta demonstração será reiniciada todas as noites às 0200z." #: application/views/user/login.php:60 #, php-format -msgid "" -"More Information about Wavelog on Github." -msgstr "" -"Mais informações acerca do Wavelog no Github." +msgid "More Information about Wavelog on %sGithub%s." +msgstr "Mais informações sobre o Wavelog no %sGithub%s." -#: application/views/user/login.php:77 +#: application/views/user/login.php:79 msgid "Forgot your password?" msgstr "Esqueceu-se da sua palavra-passe?" -#: application/views/user/login.php:83 +#: application/views/user/login.php:85 msgid "Keep me logged in" msgstr "Manter a minha sessão iniciada" -#: application/views/user/main.php:2 -msgid "Do you really want to send this user a password-reset link?" -msgstr "" -"Quer mesmo enviar a este utilizador uma ligação de reposição da palavra-" -"passe?" - -#: application/views/user/main.php:6 -msgid "Please Wait ..." -msgstr "Aguarde ..." - -#: application/views/user/main.php:9 -msgid "Password-reset e-mail sent to user:" -msgstr "E-mail de reposição de palavra-passe enviado ao utilizador:" - -#: application/views/user/main.php:30 -msgid "User List" -msgstr "Lista de utilizadores" - -#: application/views/user/main.php:33 -msgid "Wavelog needs at least one user configured in order to operate." -msgstr "" -"O Wavelog necessita de pelo menos um utilizador configurado para poder " -"funcionar." - -#: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" -"Podem ser atribuídas funções aos utilizadores que lhes dão diferentes " -"permissões, tais como adicionar QSOs ao logbook e aceder às APIs do Wavelog." - -#: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "" -"O utilizador atualmente com sessão iniciada é apresentado no canto superior " -"direito de cada página." - -#: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." -msgstr "" -"Com o botão de reposição da palavra-passe, pode enviar a um utilizador um e-" -"mail com uma ligação para repor a sua palavra-passe. Para tal, certifique-se " -"de que as definições de correio eletrónico nas opções globais estão " -"corretamente configuradas." - -#: application/views/user/main.php:38 -msgid "Create user" -msgstr "Criar utilizador" - -#: application/views/user/main.php:39 -msgid "Refresh List" -msgstr "Atualizar lista" - -#: application/views/user/main.php:49 -msgid "Type" -msgstr "Tipo" - -#: application/views/user/main.php:50 -msgid "Last seen" -msgstr "Visto pela última vez" - -#: application/views/user/main.php:53 -msgid "Password Reset" -msgstr "Redefinição da palavra-passe" - -#: application/views/user/main.php:79 -msgid "Never" -msgstr "Nunca" - -#: application/views/user/main.php:83 -msgid "Locations" -msgstr "Localizações" - -#: application/views/user/main.php:85 -msgid "Logbooks" -msgstr "Logbooks" - -#: application/views/user/main.php:87 -msgid "Last QSO:" -msgstr "Último contacto:" - -#: application/views/user/main.php:89 -msgid "No QSOs in Log" -msgstr "Sem contactos no log" - #: application/views/user/profile.php:19 msgid "Level" msgstr "Nível" @@ -10919,118 +11842,118 @@ msgstr "Detalhes do contacto" msgid "QSL Management" msgstr "Gestão de QSLs" -#: application/views/view_log/qso.php:128 +#: application/views/view_log/qso.php:131 msgid "Total Distance" msgstr "Distância total" -#: application/views/view_log/qso.php:221 +#: application/views/view_log/qso.php:224 msgid "Antenna Azimuth" msgstr "Azimute da antena" -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:231 msgid "Antenna Elevation" msgstr "Elevação da antena" -#: application/views/view_log/qso.php:370 +#: application/views/view_log/qso.php:373 msgid "QSL Card has been sent via the bureau" msgstr "O cartão QSL foi enviado via bureau" -#: application/views/view_log/qso.php:372 +#: application/views/view_log/qso.php:375 msgid "QSL Card has been sent via direct" msgstr "O cartão QSL foi enviado por via direta" -#: application/views/view_log/qso.php:374 +#: application/views/view_log/qso.php:377 msgid "QSL Card has been sent electronically" msgstr "O cartão QSL foi enviado por via eletrónica" -#: application/views/view_log/qso.php:376 +#: application/views/view_log/qso.php:379 msgid "QSL Card has been sent via manager" msgstr "O cartão QSL foi enviado via manager" -#: application/views/view_log/qso.php:378 +#: application/views/view_log/qso.php:381 msgid "QSL Card has been sent" msgstr "O cartão QSL foi enviado" -#: application/views/view_log/qso.php:387 +#: application/views/view_log/qso.php:390 msgid "QSL Card has been received via the bureau" msgstr "O cartão QSL foi recebido via bureau" -#: application/views/view_log/qso.php:389 +#: application/views/view_log/qso.php:392 msgid "QSL Card has been received via direct" msgstr "O cartão QSL foi recebido por via direta" -#: application/views/view_log/qso.php:391 +#: application/views/view_log/qso.php:394 msgid "QSL Card has been received electronically" msgstr "O cartão QSL foi recebido por via eletrónica" -#: application/views/view_log/qso.php:393 +#: application/views/view_log/qso.php:396 msgid "QSL Card has been received via manager" msgstr "O cartão QSL foi recebido via manager" -#: application/views/view_log/qso.php:395 +#: application/views/view_log/qso.php:398 msgid "QSL Card has been received" msgstr "O cartão QSL foi recebido" -#: application/views/view_log/qso.php:404 +#: application/views/view_log/qso.php:407 msgid "This station uses LoTW." msgstr "Esta estação usa LoTW." -#: application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:414 -#: application/views/view_log/qso.php:419 -#: application/views/view_log/qso.php:424 +#: application/views/view_log/qso.php:412 +#: application/views/view_log/qso.php:417 +#: application/views/view_log/qso.php:422 +#: application/views/view_log/qso.php:427 msgid "This QSO was confirmed on" msgstr "Este contacto foi confirmado no" -#: application/views/view_log/qso.php:435 +#: application/views/view_log/qso.php:438 msgid "More QSOs" msgstr "Mais contactos" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:506 msgid "Details" msgstr "Detailes" -#: application/views/view_log/qso.php:630 +#: application/views/view_log/qso.php:633 msgid "Uploaded QSL Card front image" msgstr "Imagem da frente do cartão QSL transferida" -#: application/views/view_log/qso.php:635 +#: application/views/view_log/qso.php:638 msgid "Upload QSL Card image" msgstr "Transferir imagem do cartão QSL" -#: application/views/view_log/qso.php:640 +#: application/views/view_log/qso.php:643 msgid "Uploaded QSL Card back image" msgstr "Imagem do verso do cartão QSL transferida" -#: application/views/view_log/qso.php:656 +#: application/views/view_log/qso.php:659 msgid "Mark QSL Received (Electronic)" msgstr "Marcar QSL Recebida (Eletrónico)" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:665 msgid "Mark QSL Card Requested (Bureau)" msgstr "Marcar cartão QSL como solicitado (Bureau)" -#: application/views/view_log/qso.php:664 +#: application/views/view_log/qso.php:667 msgid "Mark QSL Card Requested (Direct)" msgstr "Marcar cartão QSL como solicitado (Direto)" -#: application/views/view_log/qso.php:679 +#: application/views/view_log/qso.php:682 msgid "eQSL picture" msgstr "Imagem eQSL" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:242 msgid "CSV" msgstr "CSV" -#: application/views/visitor/layout/header.php:75 +#: application/views/visitor/layout/header.php:74 msgid "OQRS" msgstr "OQRS" -#: application/views/visitor/layout/header.php:83 +#: application/views/visitor/layout/header.php:82 msgid "Visit Wavelog on Github" msgstr "Visitar o Wavelog no Github" -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Please enter a callsign!" msgstr "Por favor, introduza um indicativo!" @@ -11133,6 +12056,116 @@ msgstr "O seu indicativo:" msgid "Submit Request" msgstr "Submeter pedido" +#~ msgid "Distance Records" +#~ msgstr "Recordes de Distância" + +#, php-format +#~ msgid "%s = Serial, %s = Gridsquare, %s = Exchange." +#~ msgstr "%s = Número de série, %s = Locator , %s = Troca." + +#~ msgid "Key Disabled" +#~ msgstr "Chave desactivada" + +#~ msgid "No Key Found" +#~ msgstr "Nenhuma chave encontrada" + +#~ msgid "Key Invalid - either not found or disabled" +#~ msgstr "Chave inválida - não encontrada ou desactivada" + +#, php-format +#~ msgctxt "Dashboard Warning" +#~ msgid "You need to update country files! Click %s to do it." +#~ msgstr "" +#~ "É necessário atualizar os ficheiros dos países! Clique em %s para o fazer." + +#, php-format +#~ msgctxt "Dashboard Warning" +#~ msgid "You have no station locations. Click %s to do it:" +#~ msgstr "Não tem localizações de estações. Clique em %s para o fazer:" + +#, php-format +#~ msgctxt "Dashboard Warning" +#~ msgid "You have no station logbook. Click %s to do it:" +#~ msgstr "Não tem um logbook para esta estação. Clique em %s para o criar:" + +#~ msgid "Status Master-Cron" +#~ msgstr "Estado do Master-Cron" + +#~ msgid "Winkey Macros" +#~ msgstr "Macros Winkey" + +#~ msgid "User logged in" +#~ msgstr "Utilizador com sessão iniciada" + +#~ msgid "" +#~ "If selected, Wavelog will try to import all QSO's of the ADIF, " +#~ "regardless if they match to the chosen station-location." +#~ msgstr "" +#~ "Se selecionado, o Wavelog tentará importar todos os contactos do " +#~ "ADIF, independentemente de corresponderem à estação-local escolhida." + +#, php-format +#~ msgid "" +#~ "Check this wiki article here for " +#~ "more information." +#~ msgstr "" +#~ "Verifique este artigo da wiki aqui para mais informações." + +#~ msgid "contacts were plotted.
Your furthest contact was with" +#~ msgstr "" +#~ "contactos foram traçados.
O seu contacto mais distante foi com" + +#, php-format +#~ msgid "You're not logged it. Please login" +#~ msgstr "Não estás autenticado. Por favor inicia sessão" + +#, php-format +#~ msgid "" +#~ "If you did operate from a new location, first create a new Station Location" +#~ msgstr "" +#~ "Se estiver a operar a partir de uma nova localização, crie primeiro uma " +#~ "nova Localização da estação" + +#~ msgid "" +#~ "The Refs can be either SOTA, IOTA, POTA or WWFF" +#~ msgstr "" +#~ "As referências podem ser SOTA, IOTA, POTA ou WWFF" + +#, php-format +#~ msgid "" +#~ "A full summary of all commands and the necessary syntax can be found in " +#~ "this article of our Wiki." +#~ msgstr "" +#~ "Um resumo completo de todos os comandos e a sintaxe necessária pode ser " +#~ "encontrado em este artigo da nossa Wiki." + +#~ msgid "" +#~ "Click here on 'Add a Theme' and type in the necessary data. Type in the " +#~ "filenames for the logos without the file extension '.png'" +#~ msgstr "" +#~ "Click here on 'Add a Theme' and type in the necessary data. Type in the " +#~ "filenames for the logos sem the file extension '.png'" + +#, php-format +#~ msgid "" +#~ "More Information about Wavelog on Github." +#~ msgstr "" +#~ "Mais informações acerca do Wavelog no Github." + +#, php-format +#~ msgctxt "uses 'this article'" +#~ msgid "" +#~ "A full summary of all commands and the necessary syntax can be found in " +#~ "%s of our Wiki." +#~ msgstr "" +#~ "Um resumo completo de todos os comandos e da sintaxe necessária pode ser " +#~ "encontrado em %s da nossa Wiki." + #, php-format #~ msgid "" #~ "The current migration is not the version it is supposed to be. Reload " diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.mo b/application/locale/ru_RU/LC_MESSAGES/messages.mo index 797547500..acc8500ee 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 1b00ed51f..972a1ff4e 100644 --- a/application/locale/ru_RU/LC_MESSAGES/messages.po +++ b/application/locale/ru_RU/LC_MESSAGES/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-09 07:24+0000\n" -"PO-Revision-Date: 2024-08-02 19:03+0000\n" +"POT-Creation-Date: 2024-09-07 07:18+0000\n" +"PO-Revision-Date: 2024-09-07 07:18+0000\n" "Last-Translator: Michael Skolsky \n" "Language-Team: Russian \n" @@ -19,10 +19,104 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 5.6.2\n" +"X-Generator: Weblate 5.7.1\n" -#: application/controllers/Accumulated.php:21 -#: application/views/interface_assets/header.php:150 +#: application/controllers/Accumulated.php:12 +#: application/controllers/Activators.php:13 +#: application/controllers/Activatorsmap.php:13 +#: application/controllers/Adif.php:13 application/controllers/Awards.php:16 +#: application/controllers/Backup.php:13 application/controllers/Backup.php:26 +#: application/controllers/Backup.php:63 application/controllers/Band.php:15 +#: application/controllers/Bandmap.php:9 +#: application/controllers/Cabrillo.php:16 +#: application/controllers/Cabrillo.php:53 +#: application/controllers/Cabrillo.php:80 +#: application/controllers/Cabrillo.php:135 +#: application/controllers/Calltester.php:11 +#: application/controllers/Cfdexport.php:18 +#: application/controllers/Cfdexport.php:29 +#: application/controllers/Components.php:13 +#: application/controllers/Contestcalendar.php:15 +#: application/controllers/Contesting.php:14 +#: application/controllers/Cron.php:26 application/controllers/Cron.php:162 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: application/controllers/Distancerecords.php:11 +#: application/controllers/Distances.php:11 +#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29 +#: application/controllers/Dxatlas.php:51 +#: application/controllers/Dxatlas.php:108 +#: application/controllers/Dxcalendar.php:8 +#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23 +#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 +#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 +#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:353 +#: application/controllers/Eqsl.php:420 application/controllers/Eqsl.php:436 +#: application/controllers/Eqsl.php:497 application/controllers/Hamsat.php:13 +#: application/controllers/Kmlexport.php:18 +#: application/controllers/Kmlexport.php:33 +#: application/controllers/Labels.php:26 +#: application/controllers/Logbookadvanced.php:16 +#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 +#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 +#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 +#: application/controllers/Notes.php:10 application/controllers/Options.php:15 +#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 +#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 +#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 +#: application/controllers/Qso.php:9 application/controllers/Qso.php:19 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:600 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Reg1test.php:18 +#: application/controllers/Reg1test.php:63 +#: application/controllers/Reg1test.php:102 +#: application/controllers/Reg1test.php:130 +#: application/controllers/Reg1test.php:164 +#: application/controllers/Satellite.php:18 +#: application/controllers/Satellite.php:37 +#: application/controllers/Satellite.php:44 +#: application/controllers/Satellite.php:53 +#: application/controllers/Satellite.php:72 +#: application/controllers/Satellite.php:87 +#: application/controllers/Satellite.php:95 +#: application/controllers/Satellite.php:103 +#: application/controllers/Satellite.php:117 +#: application/controllers/Satellite.php:135 +#: application/controllers/Satellite.php:146 +#: application/controllers/Satellite.php:162 +#: application/controllers/Satellite.php:190 +#: application/controllers/Satellite.php:201 +#: application/controllers/Satellite.php:223 +#: application/controllers/Satellite.php:236 +#: application/controllers/Satellite.php:244 +#: application/controllers/Sattimers.php:9 +#: application/controllers/Search.php:13 +#: application/controllers/Simplefle.php:7 +#: application/controllers/Station.php:17 +#: application/controllers/Stationsetup.php:15 +#: application/controllers/Themes.php:17 +#: application/controllers/Timeline.php:10 +#: application/controllers/Timeplotter.php:11 +#: application/controllers/Update.php:24 application/controllers/Update.php:273 +#: application/controllers/Update.php:284 +#: application/controllers/Update.php:295 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 +#: application/controllers/User_options.php:9 +msgid "You're not allowed to do that!" +msgstr "Вам нельзя это делать!" + +#: application/controllers/Accumulated.php:19 +#: application/views/interface_assets/header.php:152 msgid "Accumulated Statistics" msgstr "Накопленная статистика" @@ -32,24 +126,26 @@ msgid "Activated Gridsquare Map" msgstr "Карта активированных квадратов" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:910 -#: application/controllers/Awards.php:942 +#: application/controllers/Awards.php:919 +#: application/controllers/Awards.php:951 #: application/controllers/Gridmap.php:31 -#: application/controllers/Visitor.php:374 -#: application/views/activators/index.php:101 +#: application/controllers/Visitor.php:385 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: application/views/visitor/layout/footer.php:22 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "Квадраты" #: application/controllers/Activated_gridmap.php:32 #: application/controllers/Gridmap.php:32 -#: application/controllers/Visitor.php:375 +#: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "Подтверждёно квадратов" #: application/controllers/Activated_gridmap.php:33 #: application/controllers/Gridmap.php:33 -#: application/controllers/Visitor.php:376 +#: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "Не подтверждено квадратов" @@ -58,12 +154,13 @@ msgid "Total gridsquares activated" msgstr "Всего квадратов активировано" #: application/controllers/Activators.php:20 -#: application/views/activators/index.php:2 +#: application/views/activators/index.php:5 #: application/views/interface_assets/header.php:142 msgid "Gridsquare Activators" msgstr "Активаторы квадратов" #: application/controllers/Activatorsmap.php:17 +#: application/views/activators/index.php:2 msgid "Activators Map" msgstr "Карта активаторов" @@ -80,7 +177,7 @@ msgid "ADIF Export" msgstr "Экспорт ADIF" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:388 msgid "ADIF Import / Export" msgstr "Импорт / Экспорт ADIF" @@ -93,20 +190,25 @@ msgstr "Импорт ADIF" msgid "Unsupported Filetype" msgstr "Неподдерживаемый тип файла" -#: application/controllers/Adif.php:245 +#: application/controllers/Adif.php:240 +#: application/views/adif/import_failed.php:12 +msgid "ADIF Import failed!" +msgstr "Импорт ADIF не удался!" + +#: application/controllers/Adif.php:254 msgid "Station Profile not valid for User" msgstr "Профиль QTH не соответствует пользователю" -#: application/controllers/Adif.php:252 +#: application/controllers/Adif.php:261 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "ADIF импортирован" -#: application/controllers/Adif.php:263 +#: application/controllers/Adif.php:272 msgid "DCL Import" msgstr "Импорт DCL" -#: application/controllers/Adif.php:319 +#: application/controllers/Adif.php:328 msgid "DCL Data Imported" msgstr "Данные DCL импортированы" @@ -136,25 +238,8 @@ msgstr "Описание ключа API %s обновлено." msgid "API Key %s has been deleted" msgstr "Ключ API %s удалён" -#: application/controllers/Api.php:118 -msgid "Key Disabled" -msgstr "Ключ деактивирован" - -#: application/controllers/Api.php:118 -msgid "No Key Found" -msgstr "Ключ не найден" - -#: application/controllers/Api.php:120 -msgid "Key Invalid - either not found or disabled" -msgstr "Ключ недействительный — либо не найден, либо отключен" - -#: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 -msgid "Valid" -msgstr "Действительный" - #: application/controllers/Awards.php:22 -#: application/views/interface_assets/header.php:158 +#: application/views/interface_assets/header.php:160 #: application/views/qso/edit_ajax.php:35 msgid "Awards" msgstr "Дипломы" @@ -169,12 +254,13 @@ msgstr "Дипломы" #: application/controllers/Awards.php:652 #: application/controllers/Awards.php:714 #: application/controllers/Awards.php:776 -#: application/controllers/Awards.php:847 -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:930 -#: application/controllers/Awards.php:1125 -#: application/controllers/Awards.php:1615 -#: application/controllers/Awards.php:1755 +#: application/controllers/Awards.php:856 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:939 +#: application/controllers/Awards.php:1140 +#: application/controllers/Awards.php:1639 +#: application/controllers/Awards.php:1779 +#: application/controllers/Awards.php:1908 #, php-format msgid "Awards - %s" msgstr "Дипломы - %s" @@ -182,13 +268,13 @@ msgstr "Дипломы - %s" #: application/controllers/Awards.php:92 #: application/views/awards/dok/index.php:149 #: application/views/bands/index.php:47 -#: application/views/contesting/index.php:170 -#: application/views/interface_assets/header.php:194 -#: application/views/logbookadvanced/index.php:613 +#: application/views/contesting/index.php:53 +#: application/views/interface_assets/header.php:198 +#: application/views/logbookadvanced/index.php:641 #: application/views/logbookadvanced/useroptions.php:130 -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:264 -#: application/views/qso/index.php:508 application/views/user/edit.php:603 -#: application/views/view_log/qso.php:351 +#: application/views/qso/edit_ajax.php:388 application/views/qso/index.php:264 +#: application/views/qso/index.php:518 application/views/user/edit.php:603 +#: application/views/view_log/qso.php:354 msgid "DOK" msgstr "DOK" @@ -196,15 +282,15 @@ msgstr "DOK" #: application/views/bandmap/list.php:112 application/views/bands/index.php:48 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 -#: application/views/interface_assets/header.php:164 +#: application/views/interface_assets/header.php:166 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:145 -#: application/views/logbookadvanced/index.php:580 +#: application/views/logbookadvanced/index.php:156 +#: application/views/logbookadvanced/index.php:608 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 -#: application/views/lotw_views/index.php:40 +#: application/views/lotw_views/index.php:36 #: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 #: application/views/search/cqzones_result.php:15 #: application/views/search/result.php:27 @@ -219,12 +305,12 @@ msgid "Awards - WAJA" msgstr "Дипломы — WAJA" #: application/controllers/Awards.php:327 application/views/bands/index.php:51 -#: application/views/interface_assets/header.php:210 +#: application/views/interface_assets/header.php:214 msgid "JCC" msgstr "JCC" #: application/controllers/Awards.php:375 application/views/bands/index.php:57 -#: application/views/interface_assets/header.php:170 +#: application/views/interface_assets/header.php:172 msgid "VUCC" msgstr "VUCC" @@ -233,15 +319,20 @@ msgid "Log View - VUCC" msgstr "Журнал — VUCC" #: application/controllers/Awards.php:453 -#: application/controllers/Timeline.php:92 -#: application/controllers/Timeline.php:95 -#: application/controllers/Timeline.php:98 -#: application/controllers/Timeline.php:101 -#: application/controllers/Timeline.php:104 -#: application/controllers/Timeline.php:107 +#: application/controllers/Distancerecords.php:59 +#: application/controllers/Timeline.php:105 +#: application/controllers/Timeline.php:108 +#: application/controllers/Timeline.php:111 +#: application/controllers/Timeline.php:114 +#: application/controllers/Timeline.php:117 +#: application/controllers/Timeline.php:120 msgid "Log View" msgstr "Просмотр журнала" +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr " и диапазон " + #: application/controllers/Awards.php:457 msgid " and sat " msgstr " и спутник " @@ -263,12 +354,12 @@ msgid " and " msgstr " и " #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1289 #: application/views/awards/index.php:8 application/views/bands/index.php:55 #: application/views/dashboard/index.php:9 -#: application/views/interface_assets/header.php:178 -#: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:259 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -276,10 +367,10 @@ msgstr " и " #: application/views/qslcard/searchresult.php:49 #: application/views/qslcard/searchresult.php:65 #: application/views/qslcard/searchresult.php:81 -#: application/views/qso/components/previous_contacts.php:83 -#: application/views/qso/edit_ajax.php:336 +#: application/views/qso/components/previous_contacts.php:82 +#: application/views/qso/edit_ajax.php:363 #: application/views/search/search_result_ajax.php:9 -#: application/views/station_profile/edit.php:216 +#: application/views/station_profile/edit.php:243 #: application/views/user/edit.php:234 application/views/user/edit.php:256 #: application/views/user/edit.php:278 application/views/user/edit.php:300 #: application/views/user/edit.php:323 @@ -289,18 +380,18 @@ msgid "SOTA" msgstr "SOTA" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1290 #: application/views/bands/index.php:60 #: application/views/dashboard/index.php:10 -#: application/views/interface_assets/header.php:172 -#: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:279 +#: application/views/interface_assets/header.php:176 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/index.php:290 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 -#: application/views/qso/components/previous_contacts.php:84 -#: application/views/qso/edit_ajax.php:341 +#: application/views/qso/components/previous_contacts.php:83 +#: application/views/qso/edit_ajax.php:368 #: application/views/search/search_result_ajax.php:10 -#: application/views/station_profile/edit.php:229 +#: application/views/station_profile/edit.php:256 #: application/views/user/edit.php:235 application/views/user/edit.php:257 #: application/views/user/edit.php:279 application/views/user/edit.php:301 #: application/views/user/edit.php:324 @@ -309,18 +400,18 @@ msgid "WWFF" msgstr "WWFF" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1291 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 -#: application/views/interface_assets/header.php:182 +#: application/views/interface_assets/header.php:186 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:274 +#: application/views/logbookadvanced/index.php:623 #: application/views/logbookadvanced/useroptions.php:106 -#: application/views/qso/components/previous_contacts.php:85 -#: application/views/qso/edit_ajax.php:346 +#: application/views/qso/components/previous_contacts.php:84 +#: application/views/qso/edit_ajax.php:373 #: application/views/search/search_result_ajax.php:11 -#: application/views/station_profile/edit.php:242 +#: application/views/station_profile/edit.php:269 #: application/views/user/edit.php:236 application/views/user/edit.php:258 #: application/views/user/edit.php:280 application/views/user/edit.php:302 #: application/views/user/edit.php:325 @@ -339,7 +430,7 @@ msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" #: application/controllers/Awards.php:714 application/views/bands/index.php:53 -#: application/views/interface_assets/header.php:188 +#: application/views/interface_assets/header.php:192 msgid "RAC" msgstr "RAC" @@ -347,74 +438,80 @@ msgstr "RAC" msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:847 +#: application/controllers/Awards.php:856 msgid "IOTA (Island On The Air)" msgstr "IOTA (Island On The Air)" -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:872 -#: application/views/interface_assets/header.php:230 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 +#: application/views/interface_assets/header.php:234 msgid "US Counties" msgstr "US Counties" -#: application/controllers/Awards.php:887 +#: application/controllers/Awards.php:896 msgid "Log View - Counties" msgstr "Журнал - Графства" -#: application/controllers/Awards.php:894 +#: application/controllers/Awards.php:903 msgid "Awards - " msgstr "Дипломы - " -#: application/controllers/Awards.php:911 -#: application/controllers/Awards.php:943 +#: application/controllers/Awards.php:920 +#: application/controllers/Awards.php:952 msgid "Gridsquares worked" msgstr "Сработанные квадраты" -#: application/controllers/Awards.php:912 -#: application/controllers/Awards.php:944 +#: application/controllers/Awards.php:921 +#: application/controllers/Awards.php:953 msgid "Gridsquares confirmed on LoTW" msgstr "Квадраты, подтверждённые на LoTW" -#: application/controllers/Awards.php:913 -#: application/controllers/Awards.php:945 +#: application/controllers/Awards.php:922 +#: application/controllers/Awards.php:954 msgid "Gridsquares confirmed by paper QSL" msgstr "Квадраты, подтверждённые бумажными QSL" -#: application/controllers/Awards.php:930 +#: application/controllers/Awards.php:939 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial Award (FFMA)" -#: application/controllers/Awards.php:1125 -#: application/views/interface_assets/header.php:168 +#: application/controllers/Awards.php:1140 +#: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1143 +#: application/controllers/Awards.php:1158 msgid "Awards - SIG - " msgstr "Дипломы - SIG - " -#: application/controllers/Awards.php:1755 -#: application/views/awards/itu/index.php:18 +#: application/controllers/Awards.php:1779 +#: application/views/awards/itu/index.php:20 msgid "ITU Zones" msgstr "Зоны ITU" +#: application/controllers/Awards.php:1908 +#: application/views/awards/wac/index.php:8 +#: application/views/interface_assets/header.php:174 +msgid "Worked All Continents (WAC)" +msgstr "Worked All Continents (WAC)" + #: application/controllers/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:284 msgid "Backup" msgstr "Резервное копирование" -#: application/controllers/Backup.php:48 +#: application/controllers/Backup.php:50 msgid "ADIF - Backup" msgstr "Резервное копирование ADIF" -#: application/controllers/Backup.php:80 +#: application/controllers/Backup.php:84 msgid "Notes - Backup" msgstr "Резервное копирование заметок" #: application/controllers/Band.php:25 application/views/bands/index.php:28 #: application/views/bands/index.php:32 -#: application/views/interface_assets/header.php:379 +#: application/views/interface_assets/header.php:383 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -430,8 +527,8 @@ msgstr "Редактировать диапазон" #: application/controllers/Bandmap.php:28 #: application/controllers/Bandmap.php:69 -#: application/controllers/Options.php:137 -#: application/controllers/Options.php:148 +#: application/controllers/Options.php:145 +#: application/controllers/Options.php:156 #: application/views/options/sidebar.php:10 msgid "DXCluster" msgstr "DX кластер" @@ -441,7 +538,7 @@ msgid "Export Cabrillo" msgstr "Экспорт Cabrillo" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:396 +#: application/views/interface_assets/header.php:402 msgid "CFD Export" msgstr "Экспорт CDF" @@ -458,7 +555,7 @@ msgid "No user has configured Clublog." msgstr "Ни один пользователь не сконфигурировал доступ к Clublog." #: application/controllers/Contestcalendar.php:19 -#: application/views/interface_assets/header.php:247 +#: application/views/interface_assets/header.php:251 msgid "Contest Calendar" msgstr "Календарь контестов" @@ -467,38 +564,66 @@ msgstr "Календарь контестов" msgid "Contest Logging" msgstr "Журнал контеста" -#: application/controllers/Contesting.php:112 -#: application/views/interface_assets/header.php:274 +#: application/controllers/Contesting.php:113 +#: application/views/interface_assets/header.php:278 msgid "Contests" msgstr "Контесты" -#: application/controllers/Contesting.php:126 +#: application/controllers/Contesting.php:127 msgid "Update Contest" msgstr "Обновить контест" #: application/controllers/Continents.php:25 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:57 -#: application/views/interface_assets/header.php:154 +#: application/views/interface_assets/header.php:156 msgid "Continents" msgstr "Континенты" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:284 +#: application/views/interface_assets/header.php:288 msgid "Cron Manager" msgstr "Диспетчер задач" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:154 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "Редактирование задачи" +#: application/controllers/Cron.php:274 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "ОК" + +#: application/controllers/Cron.php:278 +#, php-format +msgid "" +"Last run occurred more than %s seconds ago.%sPlease check your master cron! " +"It should run every minute (* * * * *)." +msgstr "" +"Последний запуск произошел более %s секунд назад.%sПроверьте ваш основной " +"cron! Он должен запускаться каждую минуту (* * * * *)." + +#: application/controllers/Cron.php:281 +#, php-format +msgid "" +"Last run occurred more than %s minutes ago.%sSeems like your Mastercron " +"isn't running!%sIt should run every minute (* * * * *)." +msgstr "" +"Последний запуск произошел более %s минут назад.%sПохоже, ваш Mastercron не " +"работает!%sОн должен запускаться каждую минуту (* * * * *)." + +#: application/controllers/Cron.php:286 application/views/cron/index.php:29 +msgctxt "Master Cron" +msgid "Not running" +msgstr "Не работает" + #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:392 +#: application/views/interface_assets/header.php:396 msgid "SOTA CSV Export" msgstr "Экспорт SOTA CSV" -#: application/controllers/Dashboard.php:108 -#: application/controllers/Visitor.php:132 +#: application/controllers/Dashboard.php:123 +#: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "Панель управления" @@ -549,6 +674,12 @@ msgid "File Migration failed. Please check the Error Log." msgstr "" "Не удалось выполнить миграцию файлов. Пожалуйста, проверьте журнал ошибок." +#: application/controllers/Distancerecords.php:42 +#: application/controllers/Distancerecords.php:59 +#: application/views/interface_assets/header.php:146 +msgid "Satellite Distance Records" +msgstr "Рекорды расстояний QSO через спутники" + #: application/controllers/Distances.php:17 #: application/views/distances/index.php:5 #: application/views/distances/index.php:8 @@ -556,27 +687,31 @@ msgstr "" msgid "Distances Worked" msgstr "Сработанные дистанции" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 #: application/views/distances/index.php:15 msgid "QSOs with" msgstr "QSO с" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 msgid "and band" msgstr "и диапазоне" +#: application/controllers/Distances.php:83 +msgid "and propagation" +msgstr "и тип прохождения" + #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:394 msgid "DX Atlas Gridsquare Export" msgstr "Экспорт квадратов DX Atlas" #: application/controllers/Dxcalendar.php:10 -#: application/views/interface_assets/header.php:245 +#: application/views/interface_assets/header.php:249 msgid "DX Calendar" msgstr "Календарь DX экспедиций" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:325 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -594,19 +729,19 @@ msgstr "информация для импорта eQSL" msgid "eQSL QSO Upload" msgstr "загрузка QSO в eQSL" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:424 msgid "eQSL Tools" msgstr "инструменты eQSL" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid " / Errors: " msgstr " / Ошибки: " -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid "Successfully downloaded: " msgstr "Успешно скачано: " -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:481 msgid "eQSL Card Image Download" msgstr "скачать изображения eQSL" @@ -616,7 +751,7 @@ msgid "Gridsquare Map" msgstr "Карта квадратов" #: application/controllers/Gridmap.php:34 -#: application/controllers/Visitor.php:377 +#: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "Всего сработано квадратов" @@ -637,7 +772,7 @@ msgid "No QSOs found to upload." msgstr "Не найдены QSO для загрузки." #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:392 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "Экспорт KML" @@ -650,59 +785,59 @@ msgstr "наклейки QSL карточек" msgid "Create Label Type" msgstr "Новый тип наклеек" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:402 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:406 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "Название наклейки" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:403 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:407 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 #: application/views/labels/index.php:76 msgid "Paper Type" msgstr "Тип бумаги" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:404 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:408 #: application/views/labels/index.php:42 application/views/labels/index.php:77 msgid "Measurement" msgstr "Единицы измерения" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:405 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:409 msgid "Top Margin" msgstr "Отступ сверху" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:406 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:410 msgid "Left Margin" msgstr "Отступ слева" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:407 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:411 msgid "QSLs Horizontally" msgstr "QSL в строку" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:408 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:412 msgid "QSLs Vertically" msgstr "QSL в столбец" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:409 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:413 msgid "Horizontal Space" msgstr "Интервал по горизонтали" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:410 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:414 msgid "Vertical Space" msgstr "Интервал по вертикали" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:411 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:415 msgid "Label width" msgstr "Ширина наклейки" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:412 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:416 msgid "Label height" msgstr "Высота наклейки" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:413 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:417 msgid "Size of Font" msgstr "Размер шрифта" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:414 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:418 msgid "Number of QSOs on label" msgstr "Количество QSO на наклейке" @@ -711,22 +846,22 @@ msgid "Create Paper Type" msgstr "Новый тип бумаги" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:461 +#: application/controllers/Labels.php:465 msgid "Paper Name" msgstr "Название типа бумаги" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:462 +#: application/controllers/Labels.php:466 msgid "Paper Width" msgstr "Ширина бумаги" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:463 +#: application/controllers/Labels.php:467 msgid "Paper Height" msgstr "Высота бумаги" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:471 +#: application/controllers/Labels.php:475 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -758,27 +893,27 @@ msgstr "" msgid "0 QSOs found for print!" msgstr "QSO для печати не найдены!" -#: application/controllers/Labels.php:391 +#: application/controllers/Labels.php:395 msgid "Edit Label" msgstr "Редактировать тип наклеек" -#: application/controllers/Labels.php:420 +#: application/controllers/Labels.php:424 msgid "Label was saved." msgstr "Шаблон наклейки сохранён." -#: application/controllers/Labels.php:428 +#: application/controllers/Labels.php:432 msgid "Label was deleted." msgstr "Шаблон наклейки удалён." -#: application/controllers/Labels.php:450 +#: application/controllers/Labels.php:454 msgid "Edit Paper" msgstr "Редактировать тип бумаги" -#: application/controllers/Labels.php:475 +#: application/controllers/Labels.php:479 msgid "Paper was saved." msgstr "Тип бумаги сохранён." -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "Paper was deleted." msgstr "Тип бумаги удалён." @@ -801,20 +936,20 @@ msgstr "Журналы" msgid "Logbook" msgstr "Журнал" -#: application/controllers/Logbook.php:653 -#: application/controllers/Logbook.php:668 +#: application/controllers/Logbook.php:657 +#: application/controllers/Logbook.php:672 #: application/views/activated_gridmap/index.php:58 #: application/views/awards/dok/index.php:55 #: application/views/awards/dxcc/index.php:61 -#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/helvetia/index.php:55 #: application/views/awards/jcc/index.php:52 -#: application/views/awards/rac/index.php:45 +#: application/views/awards/rac/index.php:47 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:72 -#: application/views/awards/waja/index.php:53 -#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:55 +#: application/views/awards/was/index.php:55 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:568 +#: application/views/logbookadvanced/index.php:596 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -827,20 +962,21 @@ msgstr "Журнал" msgid "QSL" msgstr "QSL" -#: application/controllers/Logbook.php:656 +#: application/controllers/Logbook.php:660 #: application/views/activated_gridmap/index.php:66 -#: application/views/awards/cq/index.php:58 +#: application/views/awards/cq/index.php:60 #: application/views/awards/dok/index.php:59 #: application/views/awards/dxcc/index.php:65 -#: application/views/awards/helvetia/index.php:57 -#: application/views/awards/itu/index.php:58 +#: application/views/awards/helvetia/index.php:59 +#: application/views/awards/itu/index.php:60 #: application/views/awards/jcc/index.php:56 -#: application/views/awards/rac/index.php:49 +#: application/views/awards/rac/index.php:51 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:80 -#: application/views/awards/waja/index.php:57 -#: application/views/awards/was/index.php:57 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -848,28 +984,29 @@ msgstr "QSL" #: application/views/qslprint/qsolist.php:21 #: application/views/qslprint/qsolist.php:167 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:384 +#: application/views/qso/edit_ajax.php:411 #: application/views/search/result_search.php:22 #: application/views/search/search_result_ajax.php:298 #: application/views/search/search_result_ajax.php:313 #: application/views/timeline/index.php:60 application/views/user/edit.php:563 -#: application/views/user/edit.php:659 application/views/view_log/qso.php:408 +#: application/views/user/edit.php:659 application/views/view_log/qso.php:411 msgid "LoTW" msgstr "LoTW" -#: application/controllers/Logbook.php:659 +#: application/controllers/Logbook.php:663 #: application/views/activated_gridmap/index.php:74 -#: application/views/awards/cq/index.php:62 +#: application/views/awards/cq/index.php:64 #: application/views/awards/dok/index.php:63 #: application/views/awards/dxcc/index.php:69 -#: application/views/awards/helvetia/index.php:61 -#: application/views/awards/itu/index.php:62 +#: application/views/awards/helvetia/index.php:63 +#: application/views/awards/itu/index.php:64 #: application/views/awards/jcc/index.php:60 -#: application/views/awards/rac/index.php:53 +#: application/views/awards/rac/index.php:55 #: application/views/awards/wab/index.php:88 -#: application/views/awards/waja/index.php:61 -#: application/views/awards/was/index.php:61 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:52 +#: application/views/awards/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:117 #: application/views/logbookadvanced/useroptions.php:70 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 @@ -877,63 +1014,67 @@ msgstr "LoTW" #: application/views/qslprint/qsolist.php:18 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:151 -#: application/views/qso/edit_ajax.php:381 +#: application/views/qso/edit_ajax.php:408 #: application/views/search/result_search.php:16 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:273 -#: application/views/station_profile/edit.php:278 +#: application/views/station_profile/edit.php:305 #: application/views/timeline/index.php:64 application/views/user/edit.php:564 #: application/views/user/edit.php:667 application/views/user/edit.php:731 msgid "eQSL" msgstr "eQSL" -#: application/controllers/Logbook.php:665 +#: application/controllers/Logbook.php:669 #: application/views/awards/dok/index.php:71 #: application/views/awards/dxcc/index.php:77 #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 -#: application/views/awards/waja/index.php:69 +#: application/views/awards/waja/index.php:71 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 -#: application/views/station_profile/edit.php:325 +#: application/views/station_profile/edit.php:352 +#: application/views/timeline/index.php:68 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 -#: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/partial/log_ajax.php:85 +#: application/views/view_log/qso.php:426 msgid "Clublog" msgstr "Clublog" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1284 #: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:39 #: application/views/adif/dcl_success.php:33 -#: application/views/awards/cq/index.php:86 +#: application/views/awards/cq/index.php:88 #: application/views/awards/dok/index.php:91 #: application/views/awards/dxcc/index.php:162 -#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/helvetia/index.php:87 #: application/views/awards/iota/index.php:105 -#: application/views/awards/itu/index.php:86 +#: application/views/awards/itu/index.php:88 #: application/views/awards/jcc/index.php:88 -#: application/views/awards/rac/index.php:77 +#: application/views/awards/rac/index.php:79 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:53 -#: application/views/awards/waja/index.php:89 -#: application/views/awards/was/index.php:85 +#: application/views/awards/wac/index.php:110 +#: application/views/awards/waja/index.php:91 +#: application/views/awards/was/index.php:87 #: application/views/components/hamsat/table.php:30 -#: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:203 +#: application/views/contesting/index.php:108 +#: application/views/contesting/index.php:250 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 +#: 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/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:170 -#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/index.php:181 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -950,14 +1091,14 @@ msgstr "Clublog" #: application/views/qslcard/searchresult.php:76 #: application/views/qslprint/qslprint.php:24 #: application/views/qslprint/qsolist.php:9 -#: application/views/qso/components/previous_contacts.php:78 +#: application/views/qso/components/previous_contacts.php:77 #: application/views/qso/edit_ajax.php:119 application/views/qso/index.php:136 #: application/views/satellite/index.php:24 #: application/views/search/cqzones_result.php:10 #: application/views/search/lotw_unconfirmed_result.php:8 #: application/views/search/result_search.php:7 #: application/views/search/search_result_ajax.php:4 -#: application/views/simplefle/index.php:144 +#: application/views/simplefle/index.php:150 #: application/views/statistics/custom.php:60 #: application/views/statistics/custom_result.php:62 #: application/views/statistics/custom_result.php:88 @@ -969,17 +1110,17 @@ msgstr "Clublog" #: application/views/user/edit.php:295 application/views/user/edit.php:318 #: application/views/view_log/partial/log.php:9 #: application/views/view_log/partial/log_ajax.php:4 -#: application/views/view_log/qso.php:104 application/views/visitor/index.php:6 +#: application/views/view_log/qso.php:107 application/views/visitor/index.php:6 #: application/views/widgets/qsos.php:29 msgid "Mode" msgstr "Вид модуляции" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1285 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:111 -#: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:547 +#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:251 +#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -988,25 +1129,25 @@ msgstr "Вид модуляции" #: application/views/qslcard/searchresult.php:77 #: application/views/qslprint/qslprint.php:26 #: application/views/qslprint/qsolist.php:11 -#: application/views/qso/components/previous_contacts.php:79 +#: application/views/qso/components/previous_contacts.php:78 #: application/views/qso/edit_ajax.php:142 application/views/qso/index.php:177 #: application/views/search/search_result_ajax.php:5 -#: application/views/simplefle/index.php:145 +#: application/views/simplefle/index.php:151 #: application/views/user/edit.php:230 application/views/user/edit.php:252 #: application/views/user/edit.php:274 application/views/user/edit.php:296 #: application/views/user/edit.php:319 #: application/views/view_log/partial/log.php:10 #: application/views/view_log/partial/log_ajax.php:5 -#: application/views/view_log/qso.php:109 application/views/visitor/index.php:9 +#: application/views/view_log/qso.php:112 application/views/visitor/index.php:9 msgid "RST (S)" msgstr "RST (TX)" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1286 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:550 +#: application/views/contesting/index.php:189 +#: application/views/contesting/index.php:252 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1015,51 +1156,50 @@ msgstr "RST (TX)" #: application/views/qslcard/searchresult.php:78 #: application/views/qslprint/qslprint.php:27 #: application/views/qslprint/qsolist.php:12 -#: application/views/qso/components/previous_contacts.php:80 +#: application/views/qso/components/previous_contacts.php:79 #: application/views/qso/edit_ajax.php:147 application/views/qso/index.php:182 #: application/views/search/search_result_ajax.php:6 -#: application/views/simplefle/index.php:146 +#: application/views/simplefle/index.php:152 #: application/views/user/edit.php:231 application/views/user/edit.php:253 #: application/views/user/edit.php:275 application/views/user/edit.php:297 #: application/views/user/edit.php:320 #: application/views/view_log/partial/log.php:11 #: application/views/view_log/partial/log_ajax.php:6 -#: application/views/view_log/qso.php:114 +#: application/views/view_log/qso.php:117 #: application/views/visitor/index.php:12 msgid "RST (R)" msgstr "RST (RX)" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1287 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 #: application/views/qslcard/searchresult.php:47 #: application/views/qslcard/searchresult.php:63 #: application/views/qslcard/searchresult.php:79 -#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/components/previous_contacts.php:80 #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 -#: application/views/station_profile/index.php:43 #: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 -#: application/views/timeline/index.php:118 application/views/user/edit.php:232 +#: application/views/timeline/index.php:151 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 #: application/views/user/edit.php:298 application/views/user/edit.php:321 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:235 -#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:238 +#: application/views/view_log/qso.php:531 #: application/views/visitor/index.php:15 msgid "Country" msgstr "Страна" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1288 #: application/views/awards/iota/index.php:169 #: application/views/bands/index.php:50 application/views/dashboard/index.php:8 -#: application/views/interface_assets/header.php:180 +#: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1068,11 +1208,11 @@ msgstr "Страна" #: application/views/qslcard/searchresult.php:48 #: application/views/qslcard/searchresult.php:64 #: application/views/qslcard/searchresult.php:80 -#: application/views/qso/components/previous_contacts.php:82 -#: application/views/qso/edit_ajax.php:318 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 -#: application/views/timeline/index.php:202 application/views/user/edit.php:233 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:235 application/views/user/edit.php:233 #: application/views/user/edit.php:255 application/views/user/edit.php:277 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/view_log/partial/log_ajax.php:8 @@ -1080,17 +1220,17 @@ msgstr "Страна" msgid "IOTA" msgstr "IOTA" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1292 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:20 -#: application/views/awards/rac/index.php:141 -#: application/views/awards/was/index.php:149 -#: application/views/contesting/index.php:173 +#: application/views/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 +#: application/views/contesting/index.php:56 #: application/views/dashboard/index.php:12 -#: application/views/logbookadvanced/edit.php:20 -#: application/views/logbookadvanced/edit.php:64 -#: application/views/logbookadvanced/index.php:162 -#: application/views/logbookadvanced/index.php:583 +#: application/views/logbookadvanced/edit.php:21 +#: application/views/logbookadvanced/edit.php:66 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:611 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1098,9 +1238,9 @@ msgstr "IOTA" #: application/views/qslcard/searchresult.php:50 #: application/views/qslcard/searchresult.php:66 #: application/views/qslcard/searchresult.php:82 -#: application/views/qso/components/previous_contacts.php:86 +#: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 -#: application/views/timeline/index.php:177 application/views/user/edit.php:237 +#: application/views/timeline/index.php:210 application/views/user/edit.php:237 #: application/views/user/edit.php:259 application/views/user/edit.php:281 #: application/views/user/edit.php:303 application/views/user/edit.php:326 #: application/views/view_log/partial/log_ajax.php:12 @@ -1108,20 +1248,21 @@ msgstr "IOTA" msgid "State" msgstr "Область/штат" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1293 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:17 -#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:13 +#: application/views/distancerecords/index.php:20 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:166 -#: application/views/logbookadvanced/index.php:556 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1130,38 +1271,39 @@ msgstr "Область/штат" #: application/views/qslcard/searchresult.php:51 #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 -#: application/views/qso/components/previous_contacts.php:87 +#: application/views/qso/components/previous_contacts.php:86 #: application/views/qso/edit_ajax.php:156 application/views/qso/index.php:279 +#: application/views/satellite/pass.php:28 #: application/views/search/cqzones_result.php:12 #: application/views/search/result.php:33 #: application/views/search/search_result_ajax.php:13 -#: application/views/simplefle/index.php:147 -#: application/views/station_profile/index.php:44 +#: application/views/simplefle/index.php:153 #: application/views/stationsetup/stationsetup.php:125 -#: application/views/timeline/index.php:257 application/views/user/edit.php:130 +#: application/views/timeline/index.php:290 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 #: application/views/user/edit.php:327 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:518 #: application/views/visitor/index.php:27 msgid "Gridsquare" msgstr "QTH локатор" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1294 #: application/views/activated_gridmap/index.php:108 #: application/views/awards/ffma/index.php:36 #: application/views/awards/gridmaster/index.php:35 #: 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/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/index.php:12 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 #: application/views/qslcard/searchresult.php:52 #: application/views/qslcard/searchresult.php:68 #: application/views/qslcard/searchresult.php:84 -#: application/views/qso/components/previous_contacts.php:88 +#: application/views/qso/components/previous_contacts.php:87 #: application/views/search/search_result_ajax.php:14 #: application/views/user/edit.php:239 application/views/user/edit.php:261 #: application/views/user/edit.php:283 application/views/user/edit.php:305 @@ -1171,32 +1313,33 @@ msgstr "QTH локатор" msgid "Distance" msgstr "Дистанция" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1295 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:8 -#: application/views/activators/index.php:7 +#: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 -#: application/views/awards/cq/index.php:72 +#: application/views/awards/cq/index.php:74 #: application/views/awards/dok/index.php:77 #: application/views/awards/dxcc/index.php:117 -#: application/views/awards/helvetia/index.php:71 +#: application/views/awards/helvetia/index.php:73 #: application/views/awards/iota/index.php:91 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:74 #: application/views/awards/jcc/index.php:74 #: application/views/awards/pota/index.php:35 -#: application/views/awards/rac/index.php:63 +#: application/views/awards/rac/index.php:65 #: application/views/awards/sig/qso_list.php:13 #: application/views/awards/sota/index.php:26 #: application/views/awards/vucc/index.php:21 #: application/views/awards/wab/index.php:22 -#: application/views/awards/waja/index.php:75 -#: application/views/awards/was/index.php:71 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/waja/index.php:77 +#: application/views/awards/was/index.php:73 #: application/views/awards/wwff/index.php:35 #: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:45 -#: application/views/contesting/index.php:70 -#: application/views/contesting/index.php:202 +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:249 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:549 application/views/dxatlas/index.php:31 @@ -1204,8 +1347,8 @@ msgstr "Дистанция" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1223,13 +1366,13 @@ msgstr "Дистанция" #: application/views/qslmanagement/index.php:24 #: application/views/qslprint/qslprint.php:25 #: application/views/qslprint/qsolist.php:10 -#: application/views/qso/components/previous_contacts.php:89 +#: application/views/qso/components/previous_contacts.php:88 #: application/views/qso/edit_ajax.php:83 application/views/qso/index.php:151 #: application/views/search/cqzones_result.php:11 #: application/views/search/lotw_unconfirmed_result.php:9 #: application/views/search/result_search.php:10 #: application/views/search/search_result_ajax.php:15 -#: application/views/simplefle/index.php:143 +#: application/views/simplefle/index.php:149 #: application/views/stationsetup/exportmapoptions.php:31 #: application/views/statistics/custom.php:53 #: application/views/statistics/custom_result.php:55 @@ -1247,72 +1390,71 @@ msgstr "Дистанция" msgid "Band" msgstr "Диапазон" -#: application/controllers/Logbook.php:1285 +#: application/controllers/Logbook.php:1296 #: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 -#: application/views/contesting/index.php:87 +#: application/views/contesting/index.php:138 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 #: application/views/qslcard/searchresult.php:70 #: application/views/qslcard/searchresult.php:86 -#: application/views/qso/components/previous_contacts.php:90 +#: application/views/qso/components/previous_contacts.php:89 #: application/views/qso/edit_ajax.php:71 application/views/qso/index.php:169 #: application/views/search/search_result_ajax.php:16 #: application/views/user/edit.php:228 application/views/user/edit.php:250 #: application/views/user/edit.php:272 application/views/user/edit.php:294 #: application/views/user/edit.php:317 #: application/views/view_log/partial/log_ajax.php:16 -#: application/views/view_log/qso.php:93 application/views/visitor/index.php:36 +#: application/views/view_log/qso.php:94 application/views/visitor/index.php:36 msgid "Frequency" msgstr "Частота" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1297 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:283 -#: application/views/logbookadvanced/index.php:598 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:626 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 #: application/views/qslcard/searchresult.php:87 -#: application/views/qso/components/previous_contacts.php:91 +#: application/views/qso/components/previous_contacts.php:90 #: application/views/search/search_result_ajax.php:17 #: application/views/simplefle/index.php:112 #: application/views/user/edit.php:240 application/views/user/edit.php:262 #: application/views/user/edit.php:284 application/views/user/edit.php:306 #: application/views/user/edit.php:329 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:538 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "Оператор" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1318 #: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:669 +#: application/views/interface_assets/footer.php:675 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:154 +#: application/views/logbookadvanced/index.php:165 #: application/views/lookup/index.php:31 -#: application/views/lotw_views/index.php:56 +#: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 #: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 -#: application/views/station_profile/create.php:73 -#: application/views/station_profile/edit.php:78 -#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 #: application/views/stationsetup/stationsetup.php:150 -#: application/views/timeline/index.php:134 +#: application/views/timeline/index.php:167 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 -#: application/views/view_log/qso.php:236 -#: application/views/view_log/qso.php:529 +#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:532 msgid "Deleted DXCC" msgstr "Удалённые DXCC" @@ -1326,7 +1468,7 @@ msgstr "Быстрый поиск" #: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83 #: application/controllers/Lotw.php:125 application/views/adif/import.php:27 -#: application/views/interface_assets/header.php:423 +#: application/views/interface_assets/header.php:429 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1334,28 +1476,57 @@ msgstr "Быстрый поиск" msgid "Logbook of the World" msgstr "Logbook of the World" -#: application/controllers/Lotw.php:610 +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "Сертификат импортирован." + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "Сертификат обновлен." + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "Сертификат удален." + +#: application/controllers/Lotw.php:413 +#, 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 "" +"В файле %s не найдено сертификата. Если имя файла содержит 'key-only', это " +"обычно запрос на сертификат, который еще не обработан LoTW." + +#: application/controllers/Lotw.php:617 msgid "LoTW ADIF Information" msgstr "LoTW. Информация ADIF" -#: application/controllers/Lotw.php:718 +#: application/controllers/Lotw.php:725 msgid "LoTW ADIF Import" msgstr "LoTW. Импорт ADIF" -#: application/controllers/Lotw.php:830 +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "Вы не указали свои учетные данные ARRL LoTW!" + +#: application/controllers/Lotw.php:837 msgid "LoTW .TQ8 Upload" msgstr "LoTW. TQ8 загрузка" -#: application/controllers/Lotw.php:927 application/controllers/Lotw.php:932 +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "Ваше имя пользователя и/или пароль ARRL неверны." + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 msgid "LoTW .TQ8 Sent" msgstr "LoTW. TQ8 загружен" -#: application/controllers/Lotw.php:939 +#: application/controllers/Lotw.php:946 msgid "LoTW .TQ8 Not Sent" msgstr "LoTW. TQ8 не загружен" #: application/controllers/Mode.php:25 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:276 #: application/views/mode/index.php:15 msgid "Modes" msgstr "Виды модуляции" @@ -1364,28 +1535,28 @@ msgstr "Виды модуляции" msgid "Edit Mode" msgstr "Редактировать" -#: application/controllers/Notes.php:19 +#: application/controllers/Notes.php:18 #: application/views/interface_assets/header.php:128 #: application/views/notes/add.php:9 application/views/notes/edit.php:10 #: application/views/notes/main.php:5 application/views/notes/main.php:8 #: application/views/notes/view.php:6 application/views/notes/view.php:9 #: application/views/qso/edit_ajax.php:36 -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:38 -#: application/views/qso/index.php:541 application/views/qso/index.php:586 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:590 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:38 +#: application/views/qso/index.php:563 application/views/qso/index.php:608 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:593 msgid "Notes" msgstr "Заметки" -#: application/controllers/Notes.php:38 +#: application/controllers/Notes.php:37 msgid "Add Notes" msgstr "Добавить" -#: application/controllers/Notes.php:58 +#: application/controllers/Notes.php:64 #: application/views/oqrs/showrequests.php:88 msgid "Note" msgstr "Заметка" -#: application/controllers/Notes.php:79 application/views/notes/edit.php:7 +#: application/controllers/Notes.php:92 application/views/notes/edit.php:7 #: application/views/notes/view.php:19 msgid "Edit Note" msgstr "Редактировать" @@ -1393,16 +1564,16 @@ msgstr "Редактировать" #: application/controllers/Options.php:31 #: application/controllers/Options.php:41 #: application/controllers/Options.php:56 -#: application/controllers/Options.php:136 -#: application/controllers/Options.php:147 -#: application/controllers/Options.php:184 -#: application/controllers/Options.php:195 -#: application/controllers/Options.php:228 -#: application/controllers/Options.php:239 -#: application/controllers/Options.php:309 -#: application/controllers/Options.php:319 -#: application/controllers/Options.php:387 -#: application/controllers/Options.php:397 +#: application/controllers/Options.php:144 +#: application/controllers/Options.php:155 +#: application/controllers/Options.php:192 +#: application/controllers/Options.php:203 +#: application/controllers/Options.php:236 +#: application/controllers/Options.php:247 +#: application/controllers/Options.php:317 +#: application/controllers/Options.php:327 +#: application/controllers/Options.php:395 +#: application/controllers/Options.php:405 msgid "Wavelog Options" msgstr "Настройки" @@ -1419,95 +1590,96 @@ msgstr "Внешний вид" #: application/controllers/Options.php:110 #: application/controllers/Options.php:118 #: application/controllers/Options.php:126 +#: application/controllers/Options.php:134 msgid "Options saved" msgstr "Настройки сохранены" -#: application/controllers/Options.php:165 +#: application/controllers/Options.php:173 msgid "de continent changed to " msgstr "континент изменён на " -#: application/controllers/Options.php:170 +#: application/controllers/Options.php:178 msgid "Maximum age of spots changed to " msgstr "Максимальный возраст спотов изменён на " -#: application/controllers/Options.php:175 +#: application/controllers/Options.php:183 msgid "DXCluster Cache URL changed to " msgstr "URL кэша DXCluster изменён на " -#: application/controllers/Options.php:185 -#: application/controllers/Options.php:196 +#: application/controllers/Options.php:193 +#: application/controllers/Options.php:204 msgid "Radio Settings" msgstr "Радиоинтерфейсы" -#: application/controllers/Options.php:217 +#: application/controllers/Options.php:225 msgid "Radio Timeout Warning changed to " msgstr "Значение таймаута радиоинтерфейса изменено на " -#: application/controllers/Options.php:229 -#: application/controllers/Options.php:240 +#: application/controllers/Options.php:237 +#: application/controllers/Options.php:248 #: application/views/options/sidebar.php:6 msgid "Email" msgstr "Емэйл" -#: application/controllers/Options.php:297 +#: application/controllers/Options.php:305 msgid "The settings were saved successfully." msgstr "Настройки сохранены успешно." -#: application/controllers/Options.php:299 +#: application/controllers/Options.php:307 msgid "Something went wrong with saving the settings. Try again." msgstr "Что-то пошло не так с сохранёнными настройками. Попробуйте ещё раз." -#: application/controllers/Options.php:310 -#: application/controllers/Options.php:320 +#: application/controllers/Options.php:318 +#: application/controllers/Options.php:328 #: application/views/options/sidebar.php:8 msgid "OQRS Options" msgstr "OQRS" -#: application/controllers/Options.php:333 +#: application/controllers/Options.php:341 msgid "OQRS options have been saved." msgstr "Настройки OQRS сохранены." -#: application/controllers/Options.php:373 -#: application/controllers/Options.php:378 +#: application/controllers/Options.php:381 +#: application/controllers/Options.php:386 msgid "Testmail failed. Something went wrong." msgstr "Отправка тестового сообщения не удалась. Что-то пошло не так." -#: application/controllers/Options.php:375 +#: application/controllers/Options.php:383 msgid "Testmail sent. Email settings seem to be correct." msgstr "Тестовое сообщение отправлено. Настройки емэйл похожи на правильные." -#: application/controllers/Options.php:388 -#: application/controllers/Options.php:398 +#: application/controllers/Options.php:396 +#: application/controllers/Options.php:406 msgid "Version Info Settings" msgstr "Настройки отображения информации о версии" -#: application/controllers/Options.php:404 +#: application/controllers/Options.php:412 msgid "Version Info Header changed to" msgstr "Заголовок отображения информации о версии изменён на" -#: application/controllers/Options.php:408 +#: application/controllers/Options.php:416 msgid "Version Info Mode changed to" msgstr "Режим отображения информации о версии изменён на" -#: application/controllers/Options.php:413 +#: application/controllers/Options.php:421 msgid "Version Info Custom Text saved!" msgstr "Пользовательский текст отображения информации о версии сохранён!" -#: application/controllers/Options.php:424 +#: application/controllers/Options.php:432 msgid "Version Info will be shown to all users again" msgstr "Информация о версии будет показана всем пользователям снова" -#: application/controllers/Options.php:432 +#: application/controllers/Options.php:440 msgid "Version Info will not be shown to any user" msgstr "Информация о версии не будет показана пользователям" -#: application/controllers/Oqrs.php:22 application/controllers/Oqrs.php:61 -#: application/controllers/Oqrs.php:73 +#: application/controllers/Oqrs.php:46 application/controllers/Oqrs.php:85 +#: application/controllers/Oqrs.php:97 msgid "Log Search & OQRS" msgstr "Поиск в журнале и OQRS" -#: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:413 +#: application/controllers/Oqrs.php:127 +#: application/views/interface_assets/header.php:419 msgid "OQRS Requests" msgstr "Запросы OQRS" @@ -1515,8 +1687,51 @@ msgstr "Запросы OQRS" msgid "QRB Calculator" msgstr "Калькулятор QRB" +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "Широта: %s, Долгота: %s" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "Расстояние между %s и %s составляет %s миля." +msgstr[1] "Расстояние между %s и %s составляет %s мили." +msgstr[2] "Расстояние между %s и %s составляет %s миль." + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "Расстояние между %s и %s составляет %s морская миля." +msgstr[1] "Расстояние между %s и %s составляет %s морские мили." +msgstr[2] "Расстояние между %s и %s составляет %s морских миль." + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "Расстояние между %s и %s составляет %s километр." +msgstr[1] "Расстояние между %s и %s составляет %s километра." +msgstr[2] "Расстояние между %s и %s составляет %s километров." + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "Азимут %s." + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" +"Отрицательные широты находятся к югу от экватора, отрицательные долготы — к " +"западу от Гринвича." + #: application/controllers/Qrz.php:173 -#: application/views/interface_assets/header.php:426 +#: application/views/interface_assets/header.php:432 msgid "QRZ Logbook" msgstr "Журнал QRZ" @@ -1528,8 +1743,8 @@ msgstr "QRZ. Импорт QSL" msgid "QRZ ADIF Information" msgstr "QRZ. Информация ADIF" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:261 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:277 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1552,26 +1767,26 @@ msgid "Add QSO" msgstr "Добавить QSO" #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Hardware Interfaces" msgstr "Аппаратные интерфейсы" #: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 +#: application/views/contesting/index.php:143 #: application/views/qso/index.php:312 msgid "Radio" msgstr "Радио" #: application/controllers/Radio.php:50 msgid "Timestamp" -msgstr "" +msgstr "Метка времени" #: application/controllers/Radio.php:52 -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 +#: application/views/logbookadvanced/index.php:550 +#: application/views/lotw_views/index.php:43 #: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 +#: application/views/simplefle/index.php:177 #: application/views/stationsetup/exportmapoptions.php:5 #: application/views/statistics/custom.php:31 #: application/views/statistics/custom_result.php:33 @@ -1579,54 +1794,56 @@ msgid "Options" msgstr "Опции" #: application/controllers/Radio.php:90 -#: application/views/contesting/index.php:96 +#: application/views/contesting/index.php:147 #: application/views/qso/index.php:316 msgid "last updated" -msgstr "" +msgstr "последнее обновление" #: application/controllers/Radio.php:97 application/controllers/Radio.php:100 msgid "Set as default radio" -msgstr "" +msgstr "Установить как радиостанцию по умолчанию" #: application/controllers/Radio.php:102 msgid "Default (click to release)" -msgstr "" +msgstr "По умолчанию (нажмите, чтобы освободить)" #: application/controllers/Radio.php:105 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2323 -#: application/views/interface_assets/footer.php:2341 -#: application/views/interface_assets/footer.php:2362 -#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2337 +#: application/views/interface_assets/footer.php:2355 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 #: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:514 -#: application/views/lotw_views/index.php:118 +#: application/views/logbookadvanced/index.php:542 +#: application/views/lotw_views/index.php:114 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 #: application/views/qslcard/index.php:65 #: application/views/satellite/edit.php:40 #: application/views/satellite/index.php:26 #: application/views/search/stored_queries.php:22 -#: application/views/station_profile/index.php:55 -#: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 #: application/views/stationsetup/stationsetup.php:137 #: application/views/stationsetup/stationsetup.php:192 -#: application/views/themes/index.php:107 application/views/user/main.php:54 -#: application/views/view_log/qso.php:613 +#: application/views/themes/index.php:107 application/views/user/index.php:57 +#: application/views/view_log/qso.php:616 msgid "Delete" msgstr "Удалить" #: application/controllers/Radio.php:111 msgid "No CAT interfaced radios found." -msgstr "" +msgstr "CAT-интерфейсные радиостанции не найдены." -#: application/controllers/Satellite.php:37 +#: application/controllers/Reg1test.php:25 +msgid "Export EDI" +msgstr "Экспорт EDI" + +#: application/controllers/Satellite.php:39 msgid "Create Satellite" msgstr "Добавить спутник" -#: application/controllers/Satellite.php:60 +#: application/controllers/Satellite.php:66 msgid "Edit Satellite" msgstr "Редактировать спутник" @@ -1639,10 +1856,7 @@ msgstr "У вас нет профиля QTH. Перейдите по ссылк #: application/views/awards/counties/index.php:8 #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:19 -#: application/views/awards/was/index.php:21 -#: application/views/dashboard/index.php:64 -#: application/views/dashboard/index.php:73 -#: application/views/dashboard/index.php:82 +#: application/views/awards/was/index.php:23 #: application/views/simplefle/index.php:16 msgid "here" msgstr "здесь" @@ -1654,9 +1868,10 @@ msgstr "Спутниковые таймеры" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:336 -#: application/views/interface_assets/header.php:343 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:340 +#: application/views/interface_assets/header.php:347 +#: application/views/logbookadvanced/index.php:538 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1670,8 +1885,8 @@ msgstr "Спутниковые таймеры" #: application/views/search/lotw_unconfirmed.php:37 #: application/views/search/main.php:4 application/views/search/main.php:12 #: application/views/search/main.php:33 -#: application/views/visitor/layout/header.php:99 -#: application/views/visitor/layout/header.php:100 +#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:98 msgid "Search" msgstr "Поиск" @@ -1691,15 +1906,23 @@ msgstr "" "QSO, не подтверждённые на LoTW, при том, что корреспондент загружал данные " "на LoTW после даты QSO" -#: application/controllers/Station.php:35 -#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/controllers/Station.php:36 +#: application/controllers/Stationsetup.php:226 +msgid "Create Station Location" +msgstr "Создать профиль QTH" + +#: application/controllers/Station.php:51 +msgid "Edit Station Location: " +msgstr "Редактировать профиль QTH: " + +#: application/controllers/Station.php:59 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 -#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/edit.php:19 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:427 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 @@ -1707,22 +1930,13 @@ msgstr "" msgid "Station Location" msgstr "Профиль QTH" -#: application/controllers/Station.php:55 -#: application/controllers/Stationsetup.php:226 -msgid "Create Station Location" -msgstr "Создать профиль QTH" - -#: application/controllers/Station.php:70 -msgid "Edit Station Location: " -msgstr "Редактировать профиль QTH: " - -#: application/controllers/Station.php:92 +#: application/controllers/Station.php:73 msgid "Duplicate Station Location:" msgstr "Дубликат профиля QTH:" #: application/controllers/Stationsetup.php:35 -#: application/views/interface_assets/header.php:377 -#: application/views/interface_assets/header.php:488 +#: application/views/interface_assets/header.php:381 +#: application/views/interface_assets/header.php:494 msgid "Station Setup" msgstr "Настройка станции" @@ -1740,7 +1954,7 @@ msgstr "Не разрешено" #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 #: application/controllers/Stationsetup.php:436 -#: application/views/qso/index.php:608 +#: application/views/qso/index.php:630 msgid "Error" msgstr "Ошибка" @@ -1772,9 +1986,10 @@ msgstr "Ошибка. Ссылка уже используется!" #: application/views/options/appearance.php:83 #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 +#: application/views/options/appearance.php:110 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:259 -#: application/views/station_profile/edit.php:312 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 msgid "Disabled" @@ -1786,7 +2001,7 @@ msgid "Set as Active Logbook" msgstr "Установить как активный" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:486 +#: application/views/interface_assets/header.php:492 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1811,20 +2026,17 @@ msgid "Are you sure you want to delete the public slug?" msgstr "Вы уверены, что хотите удалить публичный псевдоним?" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "" "Are you sure you want to make the following station the active station: " msgstr "Вы уверены, что хотите сделать этот профиль QTH активным: " #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "Установить активным" #: application/controllers/Stationsetup.php:351 -#: application/views/station_profile/index.php:71 #: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "Активный профиль QTH" @@ -1833,54 +2045,45 @@ msgstr "Активный профиль QTH" #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:28 -#: application/views/station_profile/index.php:76 #: application/views/stationsetup/stationsetup.php:161 -#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/user/index.php:90 application/views/user/index.php:92 msgid "QSO" msgstr "QSO" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 -#: application/views/cron/index.php:56 -#: application/views/interface_assets/footer.php:535 -#: application/views/interface_assets/footer.php:544 +#: application/views/cron/index.php:58 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 #: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:541 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 -#: application/views/station_profile/index.php:46 -#: application/views/station_profile/index.php:79 #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 -#: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/views/themes/index.php:104 application/views/user/index.php:52 msgid "Edit" msgstr "Редактировать" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:99 #: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "Вы уверены, что хотите удалить все QSO из этого профиля станции?" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:54 -#: application/views/station_profile/index.php:101 #: application/views/stationsetup/stationsetup.php:136 #: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "Очистить лог" #: application/controllers/Stationsetup.php:367 -#: application/views/station_profile/index.php:47 -#: application/views/station_profile/index.php:82 #: application/views/stationsetup/stationsetup.php:129 #: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "Скопировать" #: application/controllers/Stationsetup.php:372 -#: application/views/station_profile/index.php:105 #: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "" @@ -1915,7 +2118,7 @@ msgid "QSL Statistics" msgstr "Статистика QSL" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:282 msgid "Themes" msgstr "Темы оформления" @@ -1927,14 +2130,14 @@ msgstr "Создать тему" msgid "Edit Theme" msgstr "Редактировать тему" -#: application/controllers/Timeline.php:17 -#: application/views/interface_assets/header.php:148 +#: application/controllers/Timeline.php:15 +#: application/views/interface_assets/header.php:150 #: application/views/timeline/index.php:2 msgid "Timeline" msgstr "Лента событий" #: application/controllers/Timeplotter.php:17 -#: application/views/interface_assets/header.php:152 +#: application/views/interface_assets/header.php:154 #: application/views/timeplotter/index.php:9 msgid "Timeplotter" msgstr "Графики" @@ -1975,37 +2178,37 @@ msgstr "Исключения DXCC:" msgid "Dxcc Prefixes:" msgstr "Префиксы DXCC:" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:268 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:272 msgid "User Accounts" msgstr "Аккаунты пользователей" -#: application/controllers/User.php:52 +#: application/controllers/User.php:76 msgid "Add User" msgstr "Добавить пользователя" -#: application/controllers/User.php:166 +#: application/controllers/User.php:190 msgid "Users" msgstr "Пользователи" -#: application/controllers/User.php:240 application/controllers/User.php:673 +#: application/controllers/User.php:264 application/controllers/User.php:697 msgid "Edit User" msgstr "Редактировать пользователя" -#: application/controllers/User.php:665 application/controllers/User.php:668 -#: application/views/user/main.php:3 application/views/user/main.php:46 +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 msgid "User" msgstr "Пользователь" -#: application/controllers/User.php:665 application/controllers/User.php:668 +#: application/controllers/User.php:689 application/controllers/User.php:692 msgid "edited" msgstr "отредактирован" -#: application/controllers/User.php:722 +#: application/controllers/User.php:746 msgid "Profile" msgstr "Профиль" -#: application/controllers/User.php:779 +#: application/controllers/User.php:803 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." @@ -2013,22 +2216,18 @@ msgstr "" "Поздравляем! Wavelog был успешно установлен. Теперь вы можете войти в " "систему в первый раз." -#: application/controllers/User.php:843 application/controllers/User.php:853 +#: application/controllers/User.php:867 application/controllers/User.php:877 msgid "Login failed. Try again." msgstr "Вход не выполнен. Попробуйте снова." -#: application/controllers/User.php:860 -#: application/views/interface_assets/header.php:356 -#: application/views/user/login.php:89 -#: application/views/visitor/layout/header.php:88 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:360 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "Вход" -#: application/controllers/User.php:868 -msgid "User logged in" -msgstr "Пользователь вошёл" - -#: application/controllers/User.php:899 +#: application/controllers/User.php:922 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " @@ -2039,72 +2238,104 @@ msgstr "" "администратором. В настоящий момент только администраторы могут войти на " "сервер." -#: application/controllers/User.php:902 +#: application/controllers/User.php:925 msgid "Incorrect username or password!" msgstr "Неверные логин или пароль!" -#: application/controllers/User.php:919 +#: application/controllers/User.php:942 #, php-format msgid "User %s logged out." msgstr "Пользователь %s вышел." -#: application/controllers/User.php:933 +#: application/controllers/User.php:956 msgid "Password Reset is disabled on the Demo!" msgstr "Сброс пароля отключен в демо-версии!" -#: application/controllers/User.php:946 +#: application/controllers/User.php:969 msgid "Forgot Password" msgstr "Восстановить пароль" -#: application/controllers/User.php:996 application/views/user/main.php:8 +#: application/controllers/User.php:1019 application/views/user/index.php:8 msgid "Email settings are incorrect." msgstr "Настройки емэйл некорректны." -#: application/controllers/User.php:1000 application/controllers/User.php:1005 +#: application/controllers/User.php:1023 application/controllers/User.php:1028 msgid "Password Reset Processed." msgstr "Осуществлён сброс пароля." -#: application/controllers/User.php:1107 +#: application/controllers/User.php:1129 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "Сбросить пароль" +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" +"В настоящее время вы не можете выдавать себя за другого пользователя. " +"Пожалуйста, сначала измените encryption_key в вашем файле config.php!" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "Неверный хеш" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "Хэш имперсонации слишком старый. Пожалуйста, попробуйте снова." + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" +"Вы не можете выдавать себя за другого пользователя, если вы не вошли в " +"систему как исходный пользователь" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "Произошла проблема с вашей сессией. Пожалуйста, попробуйте снова." + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "Запрашиваемый для имперсонации пользователь не существует" + #: application/controllers/Visitor.php:50 -#: application/controllers/Visitor.php:79 -#: application/controllers/Visitor.php:142 -#: application/controllers/Visitor.php:169 -#: application/controllers/Visitor.php:199 -#: application/controllers/Visitor.php:478 +#: application/controllers/Visitor.php:81 +#: application/controllers/Visitor.php:148 +#: application/controllers/Visitor.php:175 +#: application/controllers/Visitor.php:210 +#: application/controllers/Visitor.php:472 #: application/controllers/Widgets.php:40 msgid "Unknown Public Page." msgstr "Неизвестная публичная страница." -#: application/controllers/Visitor.php:74 -#: application/controllers/Visitor.php:165 -#: application/controllers/Visitor.php:195 -#: application/controllers/Visitor.php:474 +#: application/controllers/Visitor.php:76 +#: application/controllers/Visitor.php:171 +#: application/controllers/Visitor.php:206 +#: application/controllers/Visitor.php:468 #: application/controllers/Widgets.php:36 msgid "Empty Logbook" msgstr "Пустой журнал" -#: application/controllers/Visitor.php:205 +#: application/controllers/Visitor.php:216 msgid "Satellite Gridsquare Map" msgstr "Карта квадратов (спутники)" -#: application/controllers/Visitor.php:411 +#: application/controllers/Visitor.php:405 #: application/views/stationsetup/stationsetup.php:35 msgid "Public Search" msgstr "Публичный поиск" -#: application/controllers/Visitor.php:444 +#: application/controllers/Visitor.php:438 msgid "Export Map" msgstr "Экспорт карты" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:427 +#: application/views/interface_assets/header.php:433 msgid "QO-100 Dx Club Upload" msgstr "Загрузка в QO-100 Dx Club" @@ -2118,6 +2349,84 @@ msgstr "" msgid "No stations found that are using Wavelog OQRS." msgstr "Не найдено профилей QTH, использующих OQRS." +#: application/libraries/Subdivisions.php:31 +msgctxt "Division Name (States in various countries)." +msgid "Province" +msgstr "Провинция" + +#: application/libraries/Subdivisions.php:39 +msgctxt "Division Name (States in various countries)." +msgid "Oblast" +msgstr "Область" + +#: application/libraries/Subdivisions.php:41 +#: application/libraries/Subdivisions.php:47 +msgctxt "Division Name (States in various countries)." +msgid "Region" +msgstr "Регион" + +#: application/libraries/Subdivisions.php:45 +msgctxt "Division Name (States in various countries)." +msgid "Department" +msgstr "Отдел" + +#: application/libraries/Subdivisions.php:49 +msgctxt "Division Name (States in various countries)." +msgid "Municipality" +msgstr "Муниципалитет" + +#: application/libraries/Subdivisions.php:51 +msgctxt "Division Name (States in various countries)." +msgid "Federal State" +msgstr "Федеральное государство" + +#: application/libraries/Subdivisions.php:56 +#: application/libraries/Subdivisions.php:94 +msgctxt "Division Name (States in various countries)." +msgid "County" +msgstr "Графство" + +#: application/libraries/Subdivisions.php:60 +#: application/libraries/Subdivisions.php:85 +msgctxt "Division Name (States in various countries)." +msgid "District" +msgstr "Район" + +#: application/libraries/Subdivisions.php:62 +msgctxt "Division Name (States in various countries)." +msgid "Canton" +msgstr "Кантон" + +#: application/libraries/Subdivisions.php:64 +msgctxt "Division Name (States in various countries)." +msgid "US State" +msgstr "Штат США" + +#: application/libraries/Subdivisions.php:67 +msgctxt "Division Name (States in various countries)." +msgid "Prefecture" +msgstr "Префектура" + +#: application/libraries/Subdivisions.php:69 +msgctxt "Division Name (States in various countries)." +msgid "State" +msgstr "Штат" + +#: application/libraries/Subdivisions.php:78 +msgctxt "Division Name (States in various countries)." +msgid "US County" +msgstr "Округ США" + +#: application/libraries/Subdivisions.php:90 +msgctxt "Division Name (States in various countries)." +msgid "DME" +msgstr "DME" + +#: application/libraries/Subdivisions.php:92 +msgctxt "Division Name (States in various countries)." +msgid "City / Ku / Gun" +msgstr "Город / Ku / Gun" + #: application/models/Eqslmethods_model.php:281 msgid "Your eQSL username and/or password is incorrect." msgstr "Ваше имя пользователя и/или пароль для eQSL неверны." @@ -2159,31 +2468,31 @@ msgstr "HRDlog: на найдены QSO для загруки для позыв msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "HRDlog: не найдены профили QTH с данными входя на HRDlog." -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4255 msgid "QSO could not be matched" msgstr "QSO не может быть сопоставлено" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4261 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "подтверждено LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4266 msgid "confirmed by award manager" msgstr "подтверждено менеджером диплома" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4269 msgid "confirmed by cross-check of DCL data" msgstr "подтверждено кросс-проверкой с данными DCL" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4272 msgid "confirmation pending" msgstr "подтверждение ожидается" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4275 msgid "unconfirmed" msgstr "не подтверждено" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4278 msgid "unknown" msgstr "неизвестно" @@ -2212,7 +2521,7 @@ msgid "Accumulated number of WAJA worked" msgstr "Накопленное количество отработанных WAJA" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:222 +#: application/views/dashboard/index.php:238 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2225,7 +2534,7 @@ msgid "Yearly" msgstr "Ежегодно" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:243 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Месяц" @@ -2241,29 +2550,33 @@ msgstr "Разница" #: application/views/accumulate/index.php:24 #: application/views/accumulate/index.php:34 +#: application/views/accumulate/index.php:83 #: application/views/activated_gridmap/index.php:10 #: application/views/activated_gridmap/index.php:22 #: application/views/activated_gridmap/index.php:32 #: application/views/activated_gridmap/index.php:41 -#: application/views/activators/index.php:10 -#: application/views/awards/cq/index.php:75 -#: application/views/awards/cq/index.php:89 +#: application/views/activators/index.php:13 +#: application/views/awards/cq/index.php:77 +#: application/views/awards/cq/index.php:91 #: application/views/awards/dok/index.php:94 #: application/views/awards/dxcc/index.php:134 #: application/views/awards/dxcc/index.php:150 #: application/views/awards/dxcc/index.php:165 -#: application/views/awards/helvetia/index.php:88 +#: application/views/awards/helvetia/index.php:90 #: application/views/awards/iota/index.php:108 -#: application/views/awards/itu/index.php:75 -#: application/views/awards/itu/index.php:89 +#: application/views/awards/itu/index.php:77 +#: application/views/awards/itu/index.php:91 #: application/views/awards/jcc/index.php:91 -#: application/views/awards/rac/index.php:80 +#: application/views/awards/rac/index.php:82 #: application/views/awards/wab/index.php:24 #: application/views/awards/wab/index.php:36 #: application/views/awards/wab/index.php:46 #: application/views/awards/wab/index.php:55 -#: application/views/awards/waja/index.php:92 -#: application/views/awards/was/index.php:88 +#: application/views/awards/wac/index.php:81 +#: application/views/awards/wac/index.php:97 +#: application/views/awards/wac/index.php:113 +#: application/views/awards/waja/index.php:94 +#: application/views/awards/was/index.php:90 #: application/views/bandmap/list.php:71 application/views/bandmap/list.php:78 #: application/views/bandmap/list.php:90 application/views/bands/index.php:117 #: application/views/cabrillo/index.php:65 @@ -2274,6 +2587,7 @@ msgstr "Разница" #: application/views/csv/index.php:94 application/views/distances/index.php:21 #: application/views/distances/index.php:36 #: application/views/distances/index.php:46 +#: application/views/distances/index.php:56 #: application/views/dxatlas/index.php:21 #: application/views/dxatlas/index.php:33 #: application/views/dxatlas/index.php:44 @@ -2285,28 +2599,29 @@ msgstr "Разница" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1435 -#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1448 +#: application/views/interface_assets/footer.php:1587 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:172 #: application/views/logbookadvanced/index.php:183 #: application/views/logbookadvanced/index.php:194 -#: application/views/logbookadvanced/index.php:203 -#: application/views/logbookadvanced/index.php:212 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:205 +#: application/views/logbookadvanced/index.php:214 +#: application/views/logbookadvanced/index.php:223 #: application/views/logbookadvanced/index.php:248 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:321 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:374 -#: application/views/logbookadvanced/index.php:385 -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:259 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:423 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2317,11 +2632,12 @@ msgstr "Разница" #: application/views/stationsetup/exportmapoptions.php:33 #: application/views/timeline/index.php:10 #: application/views/timeline/index.php:22 +#: application/views/timeline/index.php:77 #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 #: application/views/user/edit.php:633 -#: application/views/visitor/layout/footer.php:169 +#: application/views/visitor/layout/footer.php:171 msgid "All" msgstr "Все" @@ -2359,29 +2675,254 @@ msgstr "Worked All Japan (WAJA)" msgid "Period" msgstr "Период" -#: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: application/views/accumulate/index.php:80 +#: application/views/distances/index.php:53 +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/timeline/index.php:74 +msgid "Propagation" +msgstr "Распространение" + +#: application/views/accumulate/index.php:84 +#: application/views/distances/index.php:57 +#: application/views/timeline/index.php:78 +msgid "All but SAT" +msgstr "Все, кроме спутников" + +#: application/views/accumulate/index.php:85 +#: application/views/distances/index.php:58 +#: application/views/gridmap/index.php:42 +#: application/views/logbookadvanced/edit.php:142 +#: application/views/logbookadvanced/index.php:307 +#: application/views/timeline/index.php:79 +msgid "None/Empty" +msgstr "Нет/Пусто" + +#: application/views/accumulate/index.php:86 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/logbookadvanced/index.php:225 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:414 +#: application/views/timeline/index.php:80 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "Рассеяние на инверсионном следе самолётов" + +#: application/views/accumulate/index.php:87 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/logbookadvanced/index.php:226 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:415 +#: application/views/timeline/index.php:81 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "Авроральное" + +#: application/views/accumulate/index.php:88 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/logbookadvanced/index.php:227 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:416 +#: application/views/timeline/index.php:82 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "Авроральное (E)" + +#: application/views/accumulate/index.php:89 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/logbookadvanced/index.php:228 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:417 +#: application/views/timeline/index.php:83 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "Пассивные отражатели" + +#: application/views/accumulate/index.php:90 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/logbookadvanced/index.php:229 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:418 +#: application/views/timeline/index.php:84 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "Эхолинк" + +#: application/views/accumulate/index.php:91 +#: 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/logbookadvanced/index.php:230 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:419 +#: application/views/timeline/index.php:85 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "Отражение от Луны" + +#: application/views/accumulate/index.php:92 +#: 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/logbookadvanced/index.php:231 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:420 +#: application/views/timeline/index.php:86 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "Спорадическое прохождение (Е)" + +#: application/views/accumulate/index.php:93 +#: 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/logbookadvanced/index.php:232 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:421 +#: application/views/timeline/index.php:87 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "Анизотропия ионосферы" + +#: application/views/accumulate/index.php:94 +#: 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/logbookadvanced/index.php:233 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:422 +#: application/views/timeline/index.php:88 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "Отражение от слоя F2" + +#: application/views/accumulate/index.php:95 +#: 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/logbookadvanced/index.php:234 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:423 +#: application/views/timeline/index.php:89 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "С помощью Интернет" + +#: application/views/accumulate/index.php:96 +#: 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/logbookadvanced/index.php:235 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:424 +#: application/views/timeline/index.php:90 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "Ионосферное рассеяние" + +#: application/views/accumulate/index.php:97 +#: 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/logbookadvanced/index.php:236 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:425 +#: application/views/timeline/index.php:91 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "IRLP" + +#: application/views/accumulate/index.php:98 +#: 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/logbookadvanced/index.php:237 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:426 +#: application/views/timeline/index.php:92 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "Рассеяние на метеорных следах" + +#: application/views/accumulate/index.php:99 +#: 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/logbookadvanced/index.php:238 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:427 +#: application/views/timeline/index.php:93 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "Наземный или атмосферный репитер или транспондер" + +#: application/views/accumulate/index.php:100 +#: 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/logbookadvanced/index.php:239 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:428 +#: application/views/timeline/index.php:94 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "Рассеяние на дожде" + +#: application/views/accumulate/index.php:101 +#: 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/logbookadvanced/index.php:240 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:429 +#: application/views/timeline/index.php:95 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Спутник" + +#: application/views/accumulate/index.php:102 +#: 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/logbookadvanced/index.php:241 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:430 +#: application/views/timeline/index.php:96 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "Трансэкваториальное" + +#: application/views/accumulate/index.php:103 +#: 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/logbookadvanced/index.php:242 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:431 +#: application/views/timeline/index.php:97 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "Тропосферное прохождение" + +#: application/views/accumulate/index.php:112 +#: application/views/activators/index.php:53 +#: application/views/awards/cq/index.php:113 #: application/views/awards/dok/index.php:127 #: application/views/awards/dxcc/index.php:187 -#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/helvetia/index.php:112 #: application/views/awards/iota/index.php:130 -#: application/views/awards/itu/index.php:111 +#: application/views/awards/itu/index.php:113 #: application/views/awards/jcc/index.php:113 -#: application/views/awards/rac/index.php:102 -#: application/views/awards/waja/index.php:114 -#: application/views/awards/was/index.php:110 -#: application/views/distances/index.php:53 +#: application/views/awards/rac/index.php:104 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:79 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 #: application/views/stationsetup/exportmapoptions.php:6 -#: application/views/timeline/index.php:72 -#: application/views/timeline/index.php:137 -#: application/views/timeline/index.php:164 -#: application/views/timeline/index.php:189 -#: application/views/timeline/index.php:218 -#: application/views/timeline/index.php:243 -#: application/views/timeline/index.php:270 +#: application/views/timeline/index.php:105 +#: application/views/timeline/index.php:170 +#: application/views/timeline/index.php:197 +#: application/views/timeline/index.php:222 +#: application/views/timeline/index.php:251 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:303 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "Показать" @@ -2389,12 +2930,15 @@ msgstr "Показать" #: application/views/activated_gridmap/index.php:20 #: application/views/awards/dxcc/index.php:131 #: application/views/awards/wab/index.php:34 +#: application/views/awards/wac/index.php:78 #: 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/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/edit.php:17 +#: application/views/logbookadvanced/index.php:203 #: application/views/satellite/flightpath.php:34 +#: application/views/satellite/passtable.php:5 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2403,9 +2947,10 @@ msgstr "Спутник" #: application/views/activated_gridmap/index.php:30 #: application/views/awards/dxcc/index.php:147 #: application/views/awards/wab/index.php:44 +#: application/views/awards/wac/index.php:94 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:212 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2420,16 +2965,17 @@ msgid "Confirmation" msgstr "Подтверждение" #: application/views/activated_gridmap/index.php:82 -#: application/views/awards/cq/index.php:66 +#: application/views/awards/cq/index.php:68 #: application/views/awards/dok/index.php:67 #: application/views/awards/dxcc/index.php:73 -#: application/views/awards/helvetia/index.php:65 -#: application/views/awards/itu/index.php:66 +#: application/views/awards/helvetia/index.php:67 +#: application/views/awards/itu/index.php:68 #: application/views/awards/jcc/index.php:64 -#: application/views/awards/rac/index.php:57 +#: application/views/awards/rac/index.php:59 #: application/views/awards/wab/index.php:96 -#: application/views/awards/waja/index.php:65 -#: application/views/awards/was/index.php:65 +#: application/views/awards/wac/index.php:56 +#: application/views/awards/waja/index.php:67 +#: application/views/awards/was/index.php:67 #: application/views/gridmap/index.php:125 application/views/user/edit.php:675 msgid "QRZ.com" msgstr "QRZ.con" @@ -2465,59 +3011,62 @@ msgstr "Долгота" #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:37 #: application/views/gridmap/index.php:156 -#: application/views/logbookadvanced/index.php:12 +#: application/views/logbookadvanced/index.php:13 msgid "Bearing" msgstr "Направление" -#: application/views/activators/index.php:23 +#: application/views/activators/index.php:26 msgctxt "Orbiter LEO or GEO" msgid "Both" msgstr "Обе" -#: application/views/activators/index.php:30 +#: application/views/activators/index.php:33 msgid "Minimum Count" msgstr "Минимальное количество" -#: application/views/activators/index.php:77 +#: application/views/activators/index.php:76 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:46 -#: application/views/awards/cq/index.php:196 +#: application/views/awards/cq/index.php:198 #: application/views/awards/dok/index.php:196 #: application/views/awards/dxcc/index.php:280 -#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/helvetia/index.php:200 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:196 +#: application/views/awards/itu/index.php:198 #: application/views/awards/jcc/index.php:236 #: application/views/awards/pota/index.php:67 -#: application/views/awards/rac/index.php:190 +#: application/views/awards/rac/index.php:192 #: application/views/awards/sig/index.php:45 #: application/views/awards/sota/index.php:53 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:39 -#: application/views/awards/waja/index.php:200 -#: application/views/awards/was/index.php:198 +#: application/views/awards/wac/index.php:199 +#: application/views/awards/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 +#: application/views/distancerecords/index.php:50 #: application/views/public_search/empty.php:3 -#: application/views/qrz/export.php:64 application/views/timeline/index.php:102 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:135 msgid "Nothing found!" msgstr "Не найдено!" -#: application/views/activators/index.php:99 -#: application/views/adif/import.php:66 application/views/adif/import.php:172 -#: application/views/adif/import.php:217 +#: application/views/activators/index.php:98 +#: application/views/adif/import.php:66 application/views/adif/import.php:182 +#: application/views/adif/import.php:227 #: application/views/awards/pota/index.php:34 #: application/views/awards/sig/qso_list.php:11 #: application/views/awards/sota/index.php:25 #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:104 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:152 +#: application/views/contesting/index.php:156 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:168 +#: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 -#: application/views/lotw_views/index.php:39 +#: application/views/lotw_views/index.php:35 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 #: application/views/qslcard/index.php:28 @@ -2526,35 +3075,36 @@ msgstr "Не найдено!" #: application/views/qslprint/qslprint.php:21 #: application/views/qslprint/qsolist.php:6 #: application/views/qso/edit_ajax.php:62 application/views/qso/index.php:124 +#: application/views/reg1test/index.php:33 #: application/views/search/cqzones.php:32 #: application/views/search/cqzones_result.php:9 #: application/views/search/lotw_unconfirmed.php:33 #: application/views/search/lotw_unconfirmed_result.php:6 #: application/views/search/result.php:11 -#: application/views/simplefle/index.php:142 -#: application/views/station_profile/edit.php:36 +#: application/views/simplefle/index.php:148 +#: application/views/station_profile/edit.php:63 #: application/views/stationsetup/linkedlocations.php:17 -#: application/views/user/edit.php:123 application/views/user/main.php:4 -#: application/views/user/main.php:47 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:507 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 +#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:510 msgid "Callsign" msgstr "Позывной" -#: application/views/activators/index.php:100 +#: application/views/activators/index.php:99 msgid "Count" msgstr "Счётчик" -#: application/views/activators/index.php:102 -#: application/views/timeline/index.php:121 -#: application/views/timeline/index.php:153 -#: application/views/timeline/index.php:178 -#: application/views/timeline/index.php:205 -#: application/views/timeline/index.php:232 -#: application/views/timeline/index.php:258 +#: application/views/activators/index.php:101 +#: application/views/timeline/index.php:154 +#: application/views/timeline/index.php:186 +#: application/views/timeline/index.php:211 +#: application/views/timeline/index.php:238 +#: application/views/timeline/index.php:265 +#: application/views/timeline/index.php:291 msgid "Show QSO's" msgstr "Показать QSO" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "Показать карту" @@ -2595,10 +3145,12 @@ msgstr "Данные DOK в вашем логе отличаются от DCL" #: application/views/awards/wwff/index.php:32 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:25 -#: application/views/contesting/index.php:42 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36 +#: application/views/contesting/index.php:93 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:163 +#: application/views/debug/index.php:545 +#: application/views/distancerecords/index.php:16 +#: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2611,22 +3163,22 @@ msgstr "Данные DOK в вашем логе отличаются от DCL" #: application/views/qslcard/searchresult.php:4 #: application/views/qslprint/qslprint.php:22 #: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:64 -#: application/views/qso/index.php:100 +#: application/views/qso/index.php:100 application/views/satellite/pass.php:473 #: application/views/search/cqzones_result.php:7 #: application/views/search/result_search.php:4 #: application/views/search/search_result_ajax.php:89 -#: application/views/simplefle/index.php:140 +#: application/views/simplefle/index.php:146 #: application/views/statistics/custom.php:38 #: application/views/statistics/custom_result.php:40 #: application/views/statistics/custom_result.php:85 -#: application/views/timeline/index.php:116 -#: application/views/timeline/index.php:151 -#: application/views/timeline/index.php:176 -#: application/views/timeline/index.php:201 -#: application/views/timeline/index.php:230 -#: application/views/timeline/index.php:255 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:184 +#: application/views/timeline/index.php:209 +#: application/views/timeline/index.php:234 +#: application/views/timeline/index.php:263 +#: application/views/timeline/index.php:288 #: application/views/view_log/partial/log.php:4 -#: application/views/view_log/partial/log_ajax.php:57 +#: application/views/view_log/partial/log_ajax.php:59 #: application/views/visitor/index.php:147 #: application/views/widgets/qsos.php:24 msgid "Date" @@ -2637,10 +3189,12 @@ msgstr "Дата" #: application/views/awards/wwff/index.php:33 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:26 -#: application/views/contesting/index.php:47 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37 +#: application/views/contesting/index.php:98 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:166 +#: application/views/debug/index.php:546 +#: application/views/distancerecords/index.php:17 +#: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2651,12 +3205,12 @@ msgstr "Дата" #: application/views/search/cqzones_result.php:8 #: application/views/search/result_search.php:5 #: application/views/search/search_result_ajax.php:91 -#: application/views/simplefle/index.php:141 +#: application/views/simplefle/index.php:147 #: application/views/statistics/custom_result.php:86 -#: application/views/timeline/index.php:256 +#: application/views/timeline/index.php:289 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 -#: application/views/view_log/partial/log_ajax.php:59 +#: application/views/view_log/partial/log_ajax.php:61 #: application/views/visitor/index.php:150 #: application/views/widgets/qsos.php:26 msgid "Time" @@ -2665,7 +3219,7 @@ msgstr "Время" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 -#: application/views/contesting/index.php:201 +#: application/views/contesting/index.php:248 #: application/views/debug/index.php:547 application/views/debug/index.php:582 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -2677,7 +3231,7 @@ msgstr "Время" #: application/views/search/search_result_ajax.php:93 #: application/views/statistics/custom_result.php:87 #: application/views/view_log/partial/log.php:8 -#: application/views/view_log/partial/log_ajax.php:61 +#: application/views/view_log/partial/log_ajax.php:63 #: application/views/visitor/index.php:152 #: application/views/widgets/qsos.php:28 msgid "Call" @@ -2695,14 +3249,14 @@ msgstr "DOK в DCL" msgid "DCL QSL Status" msgstr "Статус DCL QSL" -#: application/views/adif/import.php:36 application/views/adif/import.php:242 +#: application/views/adif/import.php:36 application/views/adif/import.php:252 msgid "DARC DCL" msgstr "DARC DCL" #: application/views/adif/import.php:55 -#: application/views/dashboard/index.php:97 -#: application/views/dashboard/index.php:118 -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:112 +#: application/views/dashboard/index.php:133 +#: application/views/dashboard/index.php:139 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2712,29 +3266,29 @@ msgstr "Важно" msgid "Log Files must have the file type *.adi" msgstr "Лог-файлы должны иметь расширение .adi" -#: application/views/adif/import.php:56 application/views/view_log/qso.php:622 +#: application/views/adif/import.php:56 application/views/view_log/qso.php:625 msgid "Maximum file upload size is " msgstr "Максимальный размер загружаемого файла " -#: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:175 +#: application/views/adif/import.php:56 application/views/adif/import.php:230 +#: application/views/adif/import.php:268 application/views/debug/index.php:175 #: application/views/debug/index.php:192 application/views/debug/index.php:537 #: application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:34 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 -#: application/views/station_profile/index.php:31 #: application/views/stationsetup/stationsetup.php:111 -#: application/views/view_log/qso.php:622 +#: application/views/view_log/qso.php:625 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" msgstr "Предупреждение" #: application/views/adif/import.php:60 application/views/adif/import.php:62 -#: application/views/adif/import.php:168 application/views/adif/import.php:215 +#: application/views/adif/import.php:178 application/views/adif/import.php:225 #: application/views/eqsl/import.php:36 application/views/hrdlog/export.php:69 -#: application/views/qrz/export.php:89 application/views/webadif/export.php:89 +#: application/views/qrz/export.php:89 application/views/reg1test/index.php:30 +#: application/views/webadif/export.php:89 msgid "Select Station Location" msgstr "Выберите профиль QTH" @@ -2761,26 +3315,31 @@ msgstr "Отметить импортированные QSO, как загруж #: application/views/adif/import.php:95 application/views/adif/import.php:105 #: application/views/adif/import.php:115 application/views/adif/import.php:125 +#: application/views/adif/import.php:135 msgid "Select if ADIF being imported does not contain this information." msgstr "Отметьте, если импортируемый ADIF не содержит этой информации." #: application/views/adif/import.php:103 +msgid "Mark imported QSOs as uploaded to eQSL Logbook" +msgstr "Отметить импортированные QSO, как загруженные в журнал eQSL" + +#: application/views/adif/import.php:113 msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" msgstr "Отметить импортированные QSO, как загруженные в журнал HRDLog.net" -#: application/views/adif/import.php:113 +#: application/views/adif/import.php:123 msgid "Mark imported QSOs as uploaded to QRZ Logbook" msgstr "Отметить импортированные QSO, как загруженные в журнал QRZ" -#: application/views/adif/import.php:123 +#: application/views/adif/import.php:133 msgid "Mark imported QSOs as uploaded to Clublog Logbook" msgstr "Отметить импортированные QSO, как загруженные в журнал Clublog" -#: application/views/adif/import.php:133 +#: application/views/adif/import.php:143 msgid "Use DXCC information from ADIF" msgstr "Использовать информацию о DXCC из ADIF" -#: application/views/adif/import.php:135 +#: application/views/adif/import.php:145 msgid "" "If not selected, Wavelog will attempt to determine DXCC information " "automatically." @@ -2788,40 +3347,41 @@ msgstr "" "Если не отмечено, Wavelog будет пытаться определить информацию о DXCC " "автоматически." -#: application/views/adif/import.php:143 +#: application/views/adif/import.php:153 msgid "Always use login-callsign as operator-name on import" msgstr "Всегда использовать позывной (логин) как имя оператора при импорте" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:32 -#: application/views/interface_assets/footer.php:495 -#: application/views/interface_assets/footer.php:2119 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2133 msgid "DANGER" msgstr "ОПАСНО" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 msgid "Ignore Stationcallsign on import" msgstr "Игнорировать позывной станции при импорте" -#: application/views/adif/import.php:154 +#: application/views/adif/import.php:164 +#, php-format msgid "" -"If selected, Wavelog will try to import all QSO's of the ADIF, " +"If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " "regardless if they match to the chosen station-location." msgstr "" -"Если отмечено, Wavelog попытается импортировать все QSO из ADIF, " -"независимо от соответствия из выбранному расположению станции." +"Если выбрано, Wavelog попытается импортировать %sвсе%s QSO из ADIF, " +"независимо от того, соответствуют ли они выбранному местоположению станции." -#: application/views/adif/import.php:158 application/views/adif/import.php:273 +#: application/views/adif/import.php:168 application/views/adif/import.php:283 #: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 #: application/views/webadif/export.php:55 msgid "Upload" msgstr "Загрузить" -#: application/views/adif/import.php:165 +#: application/views/adif/import.php:175 msgid "Take your logbook file anywhere!" msgstr "Возьми журнал с собой!" -#: application/views/adif/import.php:166 +#: application/views/adif/import.php:176 msgid "" "Exporting ADIFs allows you to import contacts into third party applications " "like LoTW, Awards or just for keeping a backup." @@ -2829,7 +3389,7 @@ msgstr "" "Экспорт ADIF позволяет импортировать QSO в различные приложения (сервисы), " "такие как LoTW, Awards или просто сохранить, как резервную копию." -#: application/views/adif/import.php:176 application/views/adif/import.php:222 +#: application/views/adif/import.php:186 application/views/adif/import.php:232 #: application/views/cfd/index.php:15 application/views/csv/index.php:118 #: application/views/dxatlas/index.php:118 #: application/views/hrdlog/export.php:77 application/views/kml/index.php:103 @@ -2838,7 +3398,7 @@ msgstr "" msgid "From date" msgstr "Начиная с даты" -#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/adif/import.php:189 application/views/adif/import.php:235 #: application/views/cfd/index.php:20 application/views/csv/index.php:123 #: application/views/dxatlas/index.php:123 #: application/views/hrdlog/export.php:82 application/views/kml/index.php:108 @@ -2847,41 +3407,41 @@ msgstr "Начиная с даты" msgid "To date" msgstr "До даты" -#: application/views/adif/import.php:187 +#: application/views/adif/import.php:197 msgid "Mark exported QSOs as uploaded to LoTW" msgstr "Отметить экспортированные QSO как загруженные в LoTW" -#: application/views/adif/import.php:195 +#: application/views/adif/import.php:205 msgid "Export QSOs not uploaded to LoTW" msgstr "Отметить экспортированные QSO как незагруженные в LoTW" -#: application/views/adif/import.php:200 +#: application/views/adif/import.php:210 msgid "Export QSO's" msgstr "Экспорт QSO" -#: application/views/adif/import.php:205 +#: application/views/adif/import.php:215 msgid "Export Satellite-Only QSOs" msgstr "Экспортировать QSO, проведённые через спутник" -#: application/views/adif/import.php:206 +#: application/views/adif/import.php:216 msgid "Export All Satellite QSOs" msgstr "Экспортировать все QSO, проведённые через спутник" -#: application/views/adif/import.php:208 +#: application/views/adif/import.php:218 msgid "Export All Satellite QSOs Confirmed on LoTW" msgstr "" "Экспортировать все QSO, проведённые через спутник, подтверждённые на LoTW" -#: application/views/adif/import.php:220 application/views/hrdlog/export.php:74 +#: application/views/adif/import.php:230 application/views/hrdlog/export.php:74 #: application/views/qrz/export.php:94 application/views/webadif/export.php:94 msgid "If a date range is not selected then all QSOs will be marked!" msgstr "Если диапазон дат не выбран, то будут отмечены все QSO!" -#: application/views/adif/import.php:228 +#: application/views/adif/import.php:238 msgid "Mark QSOs as exported to LoTW" msgstr "Отметить QSO как экспортированные в LoTW" -#: application/views/adif/import.php:242 +#: application/views/adif/import.php:252 #, php-format msgid "" "Go to %s and export your logbook with confirmed DOKs. To speed up the " @@ -2894,11 +3454,11 @@ msgstr "" "указать 'DL' в списке префиксов). Скачанный ADIF файл может быть загружен " "здесь для обновления журнала информацией DOK." -#: application/views/adif/import.php:249 +#: application/views/adif/import.php:259 msgid "Only import DOK data from QSOs confirmed on DCL." msgstr "Импортировать только данные DOK из QSO, подтверждённых на DCL." -#: application/views/adif/import.php:251 +#: application/views/adif/import.php:261 msgid "" "Uncheck if you also want to update DOK with data from unconfirmed QSOs in " "DCL." @@ -2906,12 +3466,12 @@ msgstr "" "Снисите отметку, если вы также хотите обновить данные DOK из QSO, не " "подтверждённых на DCL." -#: application/views/adif/import.php:258 +#: application/views/adif/import.php:268 msgid "Overwrites exisiting DOK in log by DCL (if different)." msgstr "" "Перезаписать информацию DOK в логе информацией из DCL (в случае различия)." -#: application/views/adif/import.php:260 +#: application/views/adif/import.php:270 msgid "" "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " "log." @@ -2919,11 +3479,11 @@ msgstr "" "Если отмеченно, то Wavelog принудительно перезапишет имеющиемя данные DOK " "данными из журнала DCL." -#: application/views/adif/import.php:267 +#: application/views/adif/import.php:277 msgid "Ignore QSOs that cannot be matched." msgstr "Игнорировать несовпадающиe QSO." -#: application/views/adif/import.php:269 +#: application/views/adif/import.php:279 msgid "" "If unchecked, information about QSOs which could not be found in Wavelog " "will be displayed." @@ -2931,6 +3491,20 @@ msgstr "" "Если отмечено, что будет показана информация о QSO, которые не были найдены " "в Wavelog." +#: application/views/adif/import_failed.php:15 +msgid "The ADIF file could not be parsed correctly." +msgstr "Файл ADIF не удалось правильно разобрать." + +#: application/views/adif/import_failed.php:16 +msgid "" +"At least one of the ADIF fields could not be parsed and/or inserted into the " +"database. Please check the imported ADIF file. You can use an online ADIF " +"file checker. For example:" +msgstr "" +"По крайней мере одно из полей ADIF не удалось разобрать и/или вставить в " +"базу данных. Пожалуйста, проверьте импортированный файл ADIF. Вы можете " +"использовать онлайн-проверку файлов ADIF, к примеру:" + #: application/views/adif/import_success.php:15 msgid "Yay, its imported!" msgstr "Готово!" @@ -2983,24 +3557,22 @@ msgstr "Простое название, описывающее назначен #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 -#: application/views/interface_assets/footer.php:43 -#: application/views/interface_assets/footer.php:530 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 -#: application/views/options/appearance.php:107 +#: application/views/options/appearance.php:116 #: application/views/options/dxcluster.php:67 #: application/views/options/email.php:112 #: application/views/options/oqrs.php:63 #: application/views/options/radios.php:45 #: application/views/options/version_dialog.php:78 -#: application/views/qso/components/winkeysettings.php:90 -#: application/views/qso/components/winkeysettings_results.php:90 #: application/views/satellite/create.php:70 #: application/views/simplefle/index.php:22 msgid "Save" msgstr "Сохранить" #: application/views/api/help.php:14 -#: application/views/interface_assets/header.php:431 +#: application/views/interface_assets/header.php:437 msgid "API Keys" msgstr "ключи API" @@ -3032,7 +3604,7 @@ msgid "API URL" msgstr "URL API" #: application/views/api/help.php:19 application/views/api/help.php:38 -#: application/views/cron/index.php:21 application/views/debug/index.php:36 +#: application/views/cron/index.php:22 application/views/debug/index.php:36 msgid "Copy to clipboard" msgstr "Скопировать в буфер обмена" @@ -3041,14 +3613,15 @@ msgid "The API URL for this Wavelog instance is" msgstr "URL API для этого инстанса Wavelog" #: application/views/api/help.php:20 application/views/dxcalendar/index.php:15 -#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:477 -#: application/views/qso/index.php:538 application/views/qso/index.php:583 +#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:504 +#: application/views/qso/index.php:560 application/views/qso/index.php:605 #: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 #: application/views/sattimers/index.php:73 #: application/views/sattimers/index.php:75 +#: application/views/sattimers/index.php:77 #: application/views/search/filter.php:69 msgid "Info" msgstr "Информация" @@ -3064,7 +3637,7 @@ msgid "API Key" msgstr "Ключ API" #: application/views/api/help.php:28 application/views/cron/edit.php:30 -#: application/views/cron/index.php:51 +#: application/views/cron/index.php:53 #: application/views/search/stored_queries.php:8 msgid "Description" msgstr "Описание" @@ -3077,19 +3650,18 @@ msgstr "Использовался последний раз" msgid "Permissions" msgstr "Разрешения" -#: application/views/api/help.php:31 application/views/cron/index.php:52 -#: application/views/lotw_views/index.php:45 +#: application/views/api/help.php:31 application/views/cron/index.php:54 +#: application/views/lotw_views/index.php:41 #: application/views/mode/index.php:31 #: application/views/oqrs/showrequests.php:91 #: application/views/sattimers/index.php:39 #: application/views/stationsetup/stationsetup.php:31 -#: application/views/timeline/index.php:119 -#: application/views/update/index.php:30 +#: application/views/timeline/index.php:152 msgid "Status" msgstr "Статус" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:519 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "Действия" @@ -3125,6 +3697,7 @@ msgstr "Создать ключ с правами 'Только Чтение'" #: application/views/awards/counties/details.php:4 #: application/views/awards/details.php:1 #: application/views/awards/vucc/band.php:4 +#: application/views/distancerecords/details.php:1 #: application/views/timeline/details.php:2 msgid "Filtering on" msgstr "Отфильтровано по" @@ -3135,8 +3708,8 @@ msgstr "Графство" #: application/views/awards/counties/index.php:6 #: application/views/awards/counties/index.php:13 -#: application/views/awards/cq/index.php:17 -#: application/views/awards/cq/index.php:24 +#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:26 #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:13 #: application/views/awards/dxcc/index.php:13 @@ -3145,12 +3718,12 @@ msgstr "Графство" #: application/views/awards/ffma/index.php:14 #: application/views/awards/gridmaster/index.php:6 #: application/views/awards/gridmaster/index.php:13 -#: application/views/awards/helvetia/index.php:17 -#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:26 #: application/views/awards/iota/index.php:15 #: application/views/awards/iota/index.php:22 -#: application/views/awards/itu/index.php:17 -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:26 #: application/views/awards/jcc/index.php:15 #: application/views/awards/jcc/index.php:22 #: application/views/awards/pota/index.php:6 @@ -3163,10 +3736,12 @@ msgstr "Графство" #: application/views/awards/vucc/index.php:13 #: application/views/awards/wab/index.php:11 #: application/views/awards/wab/index.php:18 -#: application/views/awards/waja/index.php:16 -#: application/views/awards/waja/index.php:23 -#: application/views/awards/was/index.php:17 -#: application/views/awards/was/index.php:24 +#: application/views/awards/wac/index.php:7 +#: application/views/awards/wac/index.php:14 +#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:25 +#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:26 #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:13 msgid "Award Info" @@ -3212,17 +3787,18 @@ msgid "Counties Confirmed" msgstr "Подтверждённые графства" #: application/views/awards/counties/index.php:39 -#: application/views/awards/cq/index.php:174 +#: application/views/awards/cq/index.php:176 #: application/views/awards/dok/index.php:174 #: application/views/awards/dxcc/index.php:257 -#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/helvetia/index.php:179 #: application/views/awards/iota/index.php:201 -#: application/views/awards/itu/index.php:174 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:185 -#: application/views/awards/rac/index.php:169 -#: application/views/awards/waja/index.php:177 -#: application/views/awards/was/index.php:177 -#: application/views/dashboard/index.php:217 +#: application/views/awards/rac/index.php:171 +#: application/views/awards/wac/index.php:177 +#: application/views/awards/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:233 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3238,11 +3814,34 @@ msgstr "Подтверждённые графства" msgid "Total" msgstr "Всего" -#: application/views/awards/cq/index.php:18 +#: application/views/awards/cq/index.php:3 +#: application/views/awards/cq/index.php:150 application/views/csv/index.php:80 +#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/logbookadvanced/edit.php:6 +#: application/views/logbookadvanced/index.php:246 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:284 +#: application/views/qso/index.php:390 +#: application/views/search/cqzones_result.php:13 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:264 +#: application/views/timeplotter/index.php:44 +msgid "CQ Zone" +msgstr "Зона CQ" + +#: application/views/awards/cq/index.php:4 +#: application/views/awards/itu/index.php:4 +msgid "Hover over a zone" +msgstr "Наведите курсор на зону CQ / зону ITU" + +#: application/views/awards/cq/index.php:20 msgid "CQ Magazine WAZ Award" msgstr "CQ Magazine WAZ Award" -#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:21 msgid "" "The CQ Magazine is located in the US and one of the most popular amateur " "radio magazines in the world. The magazine first appeared in January 1945 " @@ -3252,7 +3851,7 @@ msgstr "" "радиолюбительских журналов в мире. Журнал впервые вышел в январе 1945 года и " "посвящен дипломам и практическим аспектам радиолюбительства." -#: application/views/awards/cq/index.php:20 +#: application/views/awards/cq/index.php:22 msgid "" "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to " "all 40 CQ Zones along with the corresponding confirmation." @@ -3261,196 +3860,190 @@ msgstr "" "проведения радиосвязи со всеми 40 зонами CQ, а также соответствующего " "подтверждения." -#: application/views/awards/cq/index.php:21 +#: application/views/awards/cq/index.php:23 #, php-format msgctxt "uses 'CQ Magazine'" msgid "You can find all the information and rules on the Website of the %s." msgstr "Всю информацию и правила вы можете найти на сайте %s." -#: application/views/awards/cq/index.php:23 +#: application/views/awards/cq/index.php:25 msgid "Awards - CQ Magazine WAZ" msgstr "Дипломы - CQ Magazine WAZ" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 #: application/views/awards/wab/list.php:6 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:73 -#: application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:362 -#: application/views/interface_assets/footer.php:39 +#: application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:378 +#: application/views/interface_assets/footer.php:40 #: application/views/visitor/index.php:266 msgid "Confirmed" msgstr "Подтверждено" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:256 +#: application/views/dashboard/index.php:372 #: application/views/visitor/index.php:262 msgid "Worked" msgstr "Сработано" -#: application/views/awards/cq/index.php:36 +#: application/views/awards/cq/index.php:38 #: application/views/awards/dok/index.php:41 #: application/views/awards/dxcc/index.php:43 -#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:43 -#: application/views/awards/itu/index.php:36 +#: application/views/awards/itu/index.php:38 #: application/views/awards/jcc/index.php:34 -#: application/views/awards/rac/index.php:27 -#: application/views/awards/waja/index.php:35 -#: application/views/awards/was/index.php:35 +#: application/views/awards/rac/index.php:29 +#: application/views/awards/wac/index.php:26 +#: application/views/awards/waja/index.php:37 +#: application/views/awards/was/index.php:37 msgid "Show worked" msgstr "Показать сработанные" -#: application/views/awards/cq/index.php:40 +#: application/views/awards/cq/index.php:42 #: application/views/awards/dok/index.php:45 #: application/views/awards/dxcc/index.php:47 -#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:47 -#: application/views/awards/itu/index.php:40 +#: application/views/awards/itu/index.php:42 #: application/views/awards/jcc/index.php:38 -#: application/views/awards/rac/index.php:31 -#: application/views/awards/waja/index.php:39 -#: application/views/awards/was/index.php:39 +#: application/views/awards/rac/index.php:33 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/waja/index.php:41 +#: application/views/awards/was/index.php:41 msgid "Show confirmed" msgstr "Показать подтверждённые" -#: application/views/awards/cq/index.php:44 +#: application/views/awards/cq/index.php:46 #: application/views/awards/dxcc/index.php:51 -#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:51 -#: application/views/awards/itu/index.php:44 +#: application/views/awards/itu/index.php:46 #: application/views/awards/jcc/index.php:42 -#: application/views/awards/rac/index.php:35 -#: application/views/awards/waja/index.php:43 -#: application/views/awards/was/index.php:43 +#: application/views/awards/rac/index.php:37 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/waja/index.php:45 +#: application/views/awards/was/index.php:45 msgid "Show not worked" msgstr "Показать не сработанные" -#: application/views/awards/cq/index.php:50 +#: application/views/awards/cq/index.php:52 #: application/views/awards/dok/index.php:51 #: application/views/awards/dxcc/index.php:57 -#: application/views/awards/helvetia/index.php:49 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/helvetia/index.php:51 +#: application/views/awards/itu/index.php:52 #: application/views/awards/jcc/index.php:48 -#: application/views/awards/rac/index.php:41 -#: application/views/awards/waja/index.php:49 -#: application/views/awards/was/index.php:49 +#: application/views/awards/rac/index.php:43 +#: application/views/awards/wac/index.php:40 +#: application/views/awards/waja/index.php:51 +#: application/views/awards/was/index.php:51 msgid "Show QSO with QSL Type" msgstr "Отобразить QSO с типом QSL" -#: application/views/awards/cq/index.php:54 -#: application/views/awards/itu/index.php:54 -#: application/views/interface_assets/footer.php:2098 -#: application/views/qso/edit_ajax.php:378 +#: application/views/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/awards/wac/index.php:44 +#: application/views/interface_assets/footer.php:2112 +#: application/views/qso/edit_ajax.php:405 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "QSL карточка" -#: application/views/awards/cq/index.php:110 +#: application/views/awards/cq/index.php:112 #: application/views/awards/dok/index.php:126 #: application/views/awards/dxcc/index.php:186 -#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/helvetia/index.php:111 #: application/views/awards/iota/index.php:129 -#: application/views/awards/itu/index.php:110 +#: application/views/awards/itu/index.php:112 #: application/views/awards/jcc/index.php:112 -#: application/views/awards/rac/index.php:101 -#: application/views/awards/waja/index.php:113 -#: application/views/awards/was/index.php:109 +#: application/views/awards/rac/index.php:103 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/waja/index.php:115 +#: application/views/awards/was/index.php:111 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:523 +#: application/views/logbookadvanced/index.php:551 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 msgid "Reset" msgstr "Сброс" -#: application/views/awards/cq/index.php:113 +#: application/views/awards/cq/index.php:115 msgid "Show CQ Zone Map" msgstr "Показать карту зон CQ" -#: application/views/awards/cq/index.php:122 +#: application/views/awards/cq/index.php:124 #: application/views/awards/dxcc/index.php:199 -#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/helvetia/index.php:124 #: application/views/awards/iota/index.php:142 -#: application/views/awards/itu/index.php:122 -#: application/views/awards/rac/index.php:114 -#: application/views/awards/waja/index.php:126 -#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:124 +#: application/views/awards/rac/index.php:116 +#: application/views/awards/waja/index.php:128 +#: application/views/awards/was/index.php:124 msgid "Table" msgstr "Таблица" -#: application/views/awards/cq/index.php:125 +#: application/views/awards/cq/index.php:127 #: application/views/awards/dok/index.php:128 #: application/views/awards/dxcc/index.php:202 -#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/helvetia/index.php:127 #: application/views/awards/iota/index.php:145 -#: application/views/awards/itu/index.php:125 +#: application/views/awards/itu/index.php:127 #: application/views/awards/jcc/index.php:129 -#: application/views/awards/rac/index.php:117 +#: application/views/awards/rac/index.php:119 #: application/views/awards/wab/index.php:108 -#: application/views/awards/waja/index.php:129 -#: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:516 +#: application/views/awards/waja/index.php:131 +#: application/views/awards/was/index.php:127 +#: application/views/logbookadvanced/index.php:544 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "Карта" -#: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 -#: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:235 -#: application/views/logbookadvanced/index.php:586 -#: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:90 -#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 -#: application/views/qso/index.php:390 -#: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:106 -#: application/views/station_profile/edit.php:126 -#: application/views/timeline/index.php:231 -#: application/views/timeplotter/index.php:44 -msgid "CQ Zone" -msgstr "Зона CQ" - -#: application/views/awards/cq/index.php:165 +#: application/views/awards/cq/index.php:167 #: application/views/awards/dok/index.php:165 #: application/views/awards/dxcc/index.php:248 -#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/helvetia/index.php:170 #: application/views/awards/iota/index.php:192 -#: application/views/awards/itu/index.php:165 +#: application/views/awards/itu/index.php:167 #: application/views/awards/jcc/index.php:168 -#: application/views/awards/rac/index.php:160 -#: application/views/awards/waja/index.php:168 -#: application/views/awards/was/index.php:168 +#: application/views/awards/rac/index.php:162 +#: application/views/awards/wac/index.php:168 +#: application/views/awards/waja/index.php:170 +#: application/views/awards/was/index.php:170 msgid "Summary" msgstr "Сводка" -#: application/views/awards/cq/index.php:178 +#: application/views/awards/cq/index.php:180 #: application/views/awards/dok/index.php:178 #: application/views/awards/dxcc/index.php:262 -#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:206 -#: application/views/awards/itu/index.php:178 +#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:195 -#: application/views/awards/rac/index.php:173 -#: application/views/awards/waja/index.php:182 -#: application/views/awards/was/index.php:181 +#: application/views/awards/rac/index.php:175 +#: application/views/awards/wac/index.php:181 +#: application/views/awards/waja/index.php:184 +#: application/views/awards/was/index.php:183 msgid "Total worked" msgstr "Всего сработано" -#: application/views/awards/cq/index.php:185 +#: application/views/awards/cq/index.php:187 #: application/views/awards/dok/index.php:185 #: application/views/awards/dxcc/index.php:269 -#: application/views/awards/helvetia/index.php:188 +#: application/views/awards/helvetia/index.php:190 #: application/views/awards/iota/index.php:213 -#: application/views/awards/itu/index.php:185 +#: application/views/awards/itu/index.php:187 #: application/views/awards/jcc/index.php:214 -#: application/views/awards/rac/index.php:180 -#: application/views/awards/waja/index.php:189 -#: application/views/awards/was/index.php:188 +#: application/views/awards/rac/index.php:182 +#: application/views/awards/wac/index.php:188 +#: application/views/awards/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "Всего пожтверждено" @@ -3510,25 +4103,26 @@ msgstr "DOK + SDOK" #: application/views/awards/dok/index.php:37 #: application/views/awards/dxcc/index.php:39 -#: application/views/awards/helvetia/index.php:31 +#: application/views/awards/helvetia/index.php:33 #: application/views/awards/iota/index.php:39 #: application/views/awards/jcc/index.php:30 -#: application/views/awards/rac/index.php:23 -#: application/views/awards/waja/index.php:31 -#: application/views/awards/was/index.php:31 +#: application/views/awards/rac/index.php:25 +#: application/views/awards/waja/index.php:33 +#: application/views/awards/was/index.php:33 msgid "Worked / Confirmed" msgstr "Сработано / Подтверждено" #: application/views/awards/dok/index.php:80 #: application/views/awards/dxcc/index.php:120 -#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/helvetia/index.php:76 #: application/views/awards/iota/index.php:94 #: application/views/awards/jcc/index.php:77 -#: application/views/awards/rac/index.php:66 -#: application/views/awards/waja/index.php:78 -#: application/views/awards/was/index.php:74 +#: application/views/awards/rac/index.php:68 +#: application/views/awards/wac/index.php:66 +#: application/views/awards/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" -msgstr "Все диапазоны" +msgstr "Каждый диапазон" #: application/views/awards/dxcc/index.php:14 msgid "DXCC Award" @@ -3550,10 +4144,12 @@ msgstr "" "W1CBD, под названием %s." #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 msgid "ARRL website" msgstr "Сайт ARRL" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 #, php-format msgid "You can find all information about the DXCC Award on the %s." msgstr "Всю информацию о дипломе DXCC вы можете найти на сайте %s." @@ -3580,63 +4176,77 @@ msgstr "Включая удалённые" #: application/views/awards/dxcc/index.php:87 #: application/views/awards/iota/index.php:61 #: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/logbookadvanced/edit.php:144 +#: application/views/logbookadvanced/index.php:309 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 -#: application/views/view_log/qso.php:250 +#: application/views/view_log/qso.php:253 msgid "Antarctica" msgstr "Антарктика" #: application/views/awards/dxcc/index.php:91 #: application/views/awards/iota/index.php:65 #: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/logbookadvanced/edit.php:143 +#: application/views/logbookadvanced/index.php:308 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 -#: application/views/view_log/qso.php:247 +#: application/views/view_log/qso.php:250 msgid "Africa" msgstr "Африка" #: application/views/awards/dxcc/index.php:95 #: application/views/awards/iota/index.php:69 #: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/logbookadvanced/edit.php:146 +#: application/views/logbookadvanced/index.php:311 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 -#: application/views/view_log/qso.php:253 +#: application/views/view_log/qso.php:256 msgid "Asia" msgstr "Азия" #: application/views/awards/dxcc/index.php:99 #: application/views/awards/iota/index.php:73 #: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/logbookadvanced/edit.php:147 +#: application/views/logbookadvanced/index.php:312 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 -#: application/views/view_log/qso.php:256 +#: application/views/view_log/qso.php:259 msgid "Europe" msgstr "Европа" #: application/views/awards/dxcc/index.php:103 #: application/views/awards/iota/index.php:77 #: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/logbookadvanced/edit.php:145 +#: application/views/logbookadvanced/index.php:310 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 -#: application/views/view_log/qso.php:259 +#: application/views/view_log/qso.php:262 msgid "North America" msgstr "Северная Америка" #: application/views/awards/dxcc/index.php:107 #: application/views/awards/iota/index.php:81 #: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/logbookadvanced/edit.php:148 +#: application/views/logbookadvanced/index.php:313 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:265 +#: application/views/view_log/qso.php:268 msgid "South America" msgstr "Южная Америка" #: application/views/awards/dxcc/index.php:111 #: application/views/awards/iota/index.php:85 #: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/logbookadvanced/edit.php:149 +#: application/views/logbookadvanced/index.php:314 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 -#: application/views/view_log/qso.php:262 +#: application/views/view_log/qso.php:265 msgid "Oceania" msgstr "Океания" @@ -3650,13 +4260,13 @@ msgstr "Название DXCC" #: application/views/awards/dxcc/index.php:226 #: application/views/awards/iota/index.php:170 -#: application/views/timeline/index.php:117 -#: application/views/timeline/index.php:204 +#: application/views/timeline/index.php:150 +#: application/views/timeline/index.php:237 msgid "Prefix" msgstr "Префикс" #: application/views/awards/ffma/index.php:8 -#: application/views/interface_assets/header.php:236 +#: application/views/interface_assets/header.php:240 msgid "Fred Fish Memorial Award" msgstr "Fred Fish Memorial Award" @@ -3730,11 +4340,20 @@ msgstr "веб-страница" msgid "This map shows only QSOs worked on SAT." msgstr "Эта карта отображает только QSO, проведённые через спутники." -#: application/views/awards/helvetia/index.php:18 +#: application/views/awards/helvetia/index.php:3 +msgctxt "Switzerland Canton" +msgid "Canton" +msgstr "Кантон" + +#: application/views/awards/helvetia/index.php:4 +msgid "Hover over a canton" +msgstr "Наведите курсор на кантон" + +#: application/views/awards/helvetia/index.php:20 msgid "HELVETIA 26 | SWITZERLAND AWARD" msgstr "HELVETIA 26 | SWITZERLAND AWARD" -#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:21 msgid "" "The USKA (Union of Swiss Shortwave Amateurs) sponsors two awards, the " "HELVETIA 26 (H26) Award and the SWITZERLAND Award, aimed at promoting " @@ -3746,7 +4365,7 @@ msgstr "" "диапазонах путем поощрения контактов с как можно большим количеством " "швейцарских кантонов на разных диапазонах." -#: application/views/awards/helvetia/index.php:20 +#: application/views/awards/helvetia/index.php:22 msgid "" "These awards come in two versions: one for HF bands and the other for VHF " "(including SHF and UHF) bands. Valid connections for these awards date back " @@ -3756,27 +4375,27 @@ msgstr "" "УКВ-диапазонов (включая СВЧ и УВЧ). В зачёт принимаются QSO проведённые " "начиная 1 января 1980 года" -#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/helvetia/index.php:23 #: application/views/awards/jcc/index.php:19 #: application/views/awards/sota/index.php:10 #: application/views/awards/wab/index.php:15 -#: application/views/awards/waja/index.php:20 +#: application/views/awards/waja/index.php:22 #: application/views/awards/wwff/index.php:10 #, php-format msgid "For more information, please visit: %s." msgstr "" "Для получения дополнительной информации вы можете посетить эту ссылку: %s." -#: application/views/awards/helvetia/index.php:112 +#: application/views/awards/helvetia/index.php:114 msgid "Show Helvetia Map" msgstr "Показать карту Швейцарии" -#: application/views/awards/helvetia/index.php:149 +#: application/views/awards/helvetia/index.php:151 msgid "Canton" msgstr "Кантон" #: application/views/awards/index.php:9 application/views/bands/index.php:46 -#: application/views/interface_assets/header.php:162 +#: application/views/interface_assets/header.php:164 msgid "CQ" msgstr "CQ" @@ -3841,11 +4460,11 @@ msgstr "Показать карту IOTA" #: application/views/awards/iota/index.php:171 #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 -#: application/views/contesting/index.php:153 -#: application/views/contesting/index.php:171 +#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:214 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:559 +#: application/views/logbookadvanced/index.php:587 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3855,12 +4474,12 @@ msgstr "Показать карту IOTA" #: application/views/search/search_result_ajax.php:19 #: application/views/stationsetup/stationsetup.php:30 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:203 application/views/user/edit.php:241 +#: application/views/timeline/index.php:236 application/views/user/edit.php:241 #: application/views/user/edit.php:263 application/views/user/edit.php:285 #: application/views/user/edit.php:307 application/views/user/edit.php:330 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:191 -#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:194 +#: application/views/view_log/qso.php:514 msgid "Name" msgstr "Имя" @@ -3868,7 +4487,19 @@ msgstr "Имя" msgid "Deleted" msgstr "Удалено" -#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:3 +#: application/views/awards/itu/index.php:150 +#: application/views/logbookadvanced/edit.php:10 +#: application/views/logbookadvanced/index.php:257 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:400 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 +msgid "ITU Zone" +msgstr "Зона ITU" + +#: application/views/awards/itu/index.php:21 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -3880,31 +4511,21 @@ msgstr "" "радиостанциями по крайней мере в 70 из 75 зон вещания, определенных " "Международным союзом электросвязи (ITU)." -#: application/views/awards/itu/index.php:20 +#: application/views/awards/itu/index.php:22 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "" "Для получения дополнительной информации вы можете посетить эту ссылку: %s." -#: application/views/awards/itu/index.php:23 +#: application/views/awards/itu/index.php:25 msgid "Awards - ITU Zones" msgstr "Дипломы - зоны ITU" -#: application/views/awards/itu/index.php:113 +#: application/views/awards/itu/index.php:115 msgid "Show ITU Zone Map" msgstr "Показать карту зон ITU" -#: application/views/awards/itu/index.php:148 -#: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:246 -#: application/views/logbookadvanced/index.php:589 -#: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:120 -#: application/views/station_profile/edit.php:143 -msgid "ITU Zone" -msgstr "Зона ITU" - #: application/views/awards/jcc/index.php:16 msgid "JCC - Japan Century Cities Award" msgstr "Диплом JCC - Сто японских городов" @@ -3937,7 +4558,7 @@ msgstr "Показать карту JCC" #: application/views/awards/jcc/index.php:116 #: application/views/cabrillo/index.php:180 application/views/cfd/index.php:25 #: application/views/csv/index.php:128 application/views/dxatlas/index.php:128 -#: application/views/kml/index.php:113 +#: application/views/kml/index.php:113 application/views/reg1test/index.php:145 msgid "Export" msgstr "Экспорт" @@ -3948,18 +4569,19 @@ msgid "Results" msgstr "Результаты" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 +#: application/views/distancerecords/index.php:13 msgid "Number" msgstr "Номер" #: application/views/awards/jcc/index.php:152 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:524 msgid "City" msgstr "Город" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:368 #: application/views/distances/index.php:23 msgid "SAT" msgstr "Спутники" @@ -3999,15 +4621,24 @@ msgstr "" "Для получения дополнительной информации вы можете посетить эту ссылку: %s." #: application/views/awards/pota/index.php:31 -#: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:177 -#: application/views/station_profile/edit.php:245 -#: application/views/user/edit.php:595 application/views/view_log/qso.php:303 -#: application/views/view_log/qso.php:570 +#: application/views/qso/index.php:236 application/views/qso/index.php:492 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 +#: application/views/user/edit.php:595 application/views/view_log/qso.php:306 +#: application/views/view_log/qso.php:573 msgid "POTA Reference(s)" msgstr "Сравочник POTA" -#: application/views/awards/rac/index.php:104 +#: application/views/awards/rac/index.php:3 +msgctxt "Canada Province" +msgid "Province" +msgstr "Провинция" + +#: application/views/awards/rac/index.php:4 +msgid "Hover over a province" +msgstr "Наведите курсор на провинцию" + +#: application/views/awards/rac/index.php:106 msgid "Show RAC Map" msgstr "Показать карту RAC" @@ -4065,7 +4696,7 @@ msgstr "Референция" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:535 +#: application/views/logbookadvanced/index.php:563 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4177,11 +4808,46 @@ msgstr "Список" msgid "WAB Square" msgstr "Квадраты WAB" -#: application/views/awards/waja/index.php:17 +#: application/views/awards/wac/index.php:9 +msgid "" +"Sponsored by the International Amateur Radio Union (IARU), the Worked All " +"Continents award is issued for working and confirming all six continents. " +"These are North America, South America, Oceania, Asia, Europe and Africa." +msgstr "" +"Спонсируемый Международным союзом радиолюбителей (IARU), диплом Worked All " +"Continents выдается за работу и подтверждение связи со всеми шестью " +"континентами. Это Северная Америка, Южная Америка, Океания, Азия, Европа и " +"Африка." + +#: application/views/awards/wac/index.php:13 +msgid "Awards - Worked All Continents (WAC)" +msgstr "Дипломы - Worked All Continents (WAC)" + +#: application/views/awards/wac/index.php:151 +#: application/views/continents/index.php:62 +#: application/views/logbookadvanced/edit.php:25 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 +#: application/views/view_log/qso.php:245 +msgid "Continent" +msgstr "Континент" + +#: application/views/awards/waja/index.php:3 +msgctxt "Japan Prefecture" +msgid "Prefecture" +msgstr "Префектура" + +#: application/views/awards/waja/index.php:4 +msgid "Hover over a prefecture" +msgstr "Наведите курсор на префектуру" + +#: application/views/awards/waja/index.php:19 msgid "WAJA - Worked All Japan prefectures Award" msgstr "Дмплом WAJA - Работал со всеми префектурами Японии" -#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:20 msgid "" "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " "radio operators to work all the prefectures in Japan." @@ -4189,7 +4855,7 @@ msgstr "" "WAJA, Worked All Japan prefectures in Amateur Radio, поощряет " "лицензированных радиооператоров cработать cо всеми префектурами Японии." -#: application/views/awards/waja/index.php:19 +#: application/views/awards/waja/index.php:21 msgid "" "May be claimed for having contacted (heard) and received a QSL card from an " "amateur station located in each of the 47 prefectures of Japan. A list of " @@ -4201,20 +4867,29 @@ msgstr "" "QSL-карточек должен быть расположен в порядке упоминания номера WAJA (HAJA), " "однако названия префектур могут быть опущены." -#: application/views/awards/waja/index.php:116 +#: application/views/awards/waja/index.php:118 msgid "Show WAJA Map" msgstr "Показать карту WAJA" -#: application/views/awards/waja/index.php:152 -#: application/views/timeline/index.php:152 +#: application/views/awards/waja/index.php:154 +#: application/views/timeline/index.php:185 msgid "Prefecture" msgstr "Префектура" -#: application/views/awards/was/index.php:18 +#: application/views/awards/was/index.php:3 +msgctxt "USA State" +msgid "State" +msgstr "Штат" + +#: application/views/awards/was/index.php:4 +msgid "Hover over a state" +msgstr "Наведите курсор на штат" + +#: application/views/awards/was/index.php:20 msgid "WAS Award" msgstr "Диплом WAS" -#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:21 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -4226,7 +4901,7 @@ msgstr "" "существования ARRL изменила дизайн сертификатов и программы в надежде " "упростить и улучшить дипломную программу." -#: application/views/awards/was/index.php:20 +#: application/views/awards/was/index.php:22 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -4240,13 +4915,13 @@ msgstr "" "членами ARRL, чтобы подать заявку на получение WAS. Заявители из-за пределов " "США освобождаются от этого требования." -#: application/views/awards/was/index.php:21 +#: application/views/awards/was/index.php:23 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "Всю информацию и правила ARRL WAS Award можно найти в %s." -#: application/views/awards/was/index.php:112 +#: application/views/awards/was/index.php:114 msgid "Show WAS Map" msgstr "Показать карту WAS" @@ -4276,11 +4951,11 @@ msgstr "" "национальном уровнях." #: application/views/awards/wwff/index.php:31 -#: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:171 -#: application/views/station_profile/edit.php:232 -#: application/views/user/edit.php:591 application/views/view_log/qso.php:296 -#: application/views/view_log/qso.php:563 +#: application/views/qso/index.php:224 application/views/qso/index.php:479 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 +#: application/views/user/edit.php:591 application/views/view_log/qso.php:299 +#: application/views/view_log/qso.php:566 msgid "WWFF Reference" msgstr "Справочник WWFF" @@ -4345,8 +5020,8 @@ msgstr "Список активности на диапазоне" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 #: application/views/contesting/index.php:15 -#: application/views/contesting/index.php:94 -#: application/views/contesting/index.php:169 +#: application/views/contesting/index.php:52 +#: application/views/contesting/index.php:145 #: application/views/qso/index.php:314 msgid "None" msgstr "Нет" @@ -4430,25 +5105,25 @@ msgstr "" "Активные диапазоны будут показаны в выпадающем списке 'Диапазон' формы ввода " "данных QSO, неактивные диапазоны будут скрыты и не смогут быть выбраны." -#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:351 -#: application/views/qso/index.php:248 application/views/qso/index.php:494 -#: application/views/user/edit.php:599 application/views/view_log/qso.php:325 -#: application/views/view_log/qso.php:577 +#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 +#: application/views/qso/index.php:248 application/views/qso/index.php:504 +#: application/views/user/edit.php:599 application/views/view_log/qso.php:328 +#: application/views/view_log/qso.php:580 msgid "Sig" msgstr "Sig" -#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:312 -#: application/views/qso/index.php:433 +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:339 +#: application/views/qso/index.php:443 msgid "USA County" msgstr "Графство США" #: application/views/bands/index.php:58 -#: application/views/interface_assets/header.php:208 +#: application/views/interface_assets/header.php:212 msgid "WAJA" msgstr "WAJA" #: application/views/bands/index.php:59 -#: application/views/interface_assets/header.php:232 +#: application/views/interface_assets/header.php:236 msgid "WAS" msgstr "WAS" @@ -4478,9 +5153,8 @@ msgstr "Лобавить диапазон" #: application/views/bands/index.php:152 #: application/views/contesting/add.php:74 -#: application/views/interface_assets/footer.php:42 -#: application/views/qso/components/winkeysettings.php:91 -#: application/views/qso/components/winkeysettings_results.php:91 +#: application/views/contesting/index.php:83 +#: application/views/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4513,22 +5187,28 @@ msgstr "Деактивировать все" #: application/views/cabrillo/index.php:2 #: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:59 +#: application/views/reg1test/index.php:2 +#: application/views/reg1test/index.php:36 msgid "Proceed" msgstr "Продолжить" #: application/views/cabrillo/index.php:3 +#: application/views/reg1test/index.php:3 msgid "Select Year" msgstr "Выберите год" #: application/views/cabrillo/index.php:4 +#: application/views/reg1test/index.php:4 msgid "Select Contest" msgstr "Выберите контест" #: application/views/cabrillo/index.php:5 +#: application/views/reg1test/index.php:5 msgid "Select Date Range" msgstr "Выберите диапазон дат" #: application/views/cabrillo/index.php:6 +#: application/views/reg1test/index.php:7 msgid "No contests were found for this station location!" msgstr "Для этого профиля QTH контест-сессии не найдены!" @@ -4541,10 +5221,12 @@ msgid "Select Station Location:" msgstr "Выберите профиль QTH:" #: application/views/cabrillo/index.php:44 +#: application/views/reg1test/index.php:53 msgid "Club" msgstr "Клуб" #: application/views/cabrillo/index.php:48 +#: application/views/reg1test/index.php:58 msgid "Category Operator" msgstr "Категория оператора" @@ -4585,10 +5267,12 @@ msgid "Category Overlay" msgstr "Категория оверлей" #: application/views/cabrillo/index.php:150 +#: application/views/reg1test/index.php:70 msgid "Operators" msgstr "Операторы" #: application/views/cabrillo/index.php:155 +#: application/views/reg1test/index.php:139 msgid "Soapbox" msgstr "Soapbox" @@ -4613,6 +5297,7 @@ msgid "Address Country" msgstr "Адрес (страна)" #: application/views/cabrillo/index.php:186 +#: application/views/reg1test/index.php:150 msgid "No contests were found in your log." msgstr "В вашем логе конест-сессий не найдено." @@ -4647,13 +5332,13 @@ msgid "No upcoming activations found. Please check back later." msgstr "Не найдены предстоящие активации. Проверьте позже." #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:158 +#: application/views/contesting/index.php:219 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:629 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 -#: application/views/view_log/qso.php:199 +#: application/views/view_log/qso.php:202 msgid "Comment" msgstr "Комментарий" @@ -4685,9 +5370,9 @@ msgid "No Contests" msgstr "Нет контестов" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/edit.php:21 -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:635 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4715,10 +5400,11 @@ msgid "Show Details" msgstr "Подробно" #: application/views/contestcalendar/index.php:38 -#: application/views/dashboard/index.php:262 -#: application/views/dashboard/index.php:289 -#: application/views/dashboard/index.php:310 -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:278 +#: application/views/dashboard/index.php:305 +#: application/views/dashboard/index.php:326 +#: application/views/dashboard/index.php:347 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "Сегодня" @@ -4756,7 +5442,7 @@ msgstr "название для ADIF" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:466 +#: application/views/interface_assets/header.php:472 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:43 @@ -4814,15 +5500,15 @@ msgid "Name of Contest in ADIF-specification" msgstr "Название контеста в спецификации ADIF" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "Создать" #: application/views/contesting/edit.php:31 -#: application/views/contesting/index.php:24 -#: application/views/qso/edit_ajax.php:548 -#: application/views/view_log/qso.php:275 +#: application/views/contesting/index.php:25 +#: application/views/qso/edit_ajax.php:575 +#: application/views/view_log/qso.php:278 msgid "Contest Name" msgstr "Название контеста" @@ -4844,7 +5530,7 @@ msgstr "Тип обмена" #: application/views/contesting/index.php:16 msgid "Exchange" -msgstr "Обмен" +msgstr "Контрольный номер" #: application/views/contesting/index.php:18 msgid "Serial" @@ -4858,92 +5544,143 @@ msgstr "Порядковый номер + контрольный номер" msgid "Serial + Gridsquare" msgstr "Порядковый номер и квадрат" -#: application/views/contesting/index.php:34 +#: application/views/contesting/index.php:21 +msgid "Serial + Gridsquare + Exchange" +msgstr "Порядковый номер + Квадрат + Контрольный номер" + +#: application/views/contesting/index.php:35 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:539 application/views/qso/index.php:352 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:352 msgid "Operator Callsign" msgstr "Позывной оператора" -#: application/views/contesting/index.php:116 -#: application/views/contesting/index.php:208 -#: application/views/qso/edit_ajax.php:571 -msgid "Serial (S)" -msgstr "Порядковый номер (TX)" +#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:45 +msgid "More Settings" +msgstr "Больше настроек" -#: application/views/contesting/index.php:121 -#: application/views/contesting/index.php:206 -msgid "Exch (S)" -msgstr "Контрольный номер (TX)" - -#: application/views/contesting/index.php:126 -msgid "Gridsquare (S)" -msgstr "Квадрат (TX)" - -#: application/views/contesting/index.php:136 -#: application/views/contesting/index.php:209 -#: application/views/qso/edit_ajax.php:566 -msgid "Serial (R)" -msgstr "Порядковый номер (RX)" - -#: application/views/contesting/index.php:141 -#: application/views/contesting/index.php:207 -msgid "Exch (R)" -msgstr "Контрольный номер (RX)" - -#: application/views/contesting/index.php:146 -msgid "Gridsquare (R)" -msgstr "Квадрат (RX)" - -#: application/views/contesting/index.php:163 -msgid "Reset QSO" -msgstr "Сбросить QSO" - -#: application/views/contesting/index.php:164 -#: application/views/qso/index.php:607 -msgid "Save QSO" -msgstr "Сохранить QSO" - -#: application/views/contesting/index.php:166 +#: application/views/contesting/index.php:49 msgid "Copy received exchange to" msgstr "Копировать принятый контрольный номер в" -#: application/views/contesting/index.php:168 +#: application/views/contesting/index.php:51 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "" "Контрольный номер копируется только в том случае, если он соответствует " "правилам для выбранного поля!" -#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:55 msgid "Age" msgstr "Возраст" -#: application/views/contesting/index.php:174 +#: application/views/contesting/index.php:57 msgid "RX Power (W)" msgstr "Мощность (Вт)" -#: application/views/contesting/index.php:175 +#: application/views/contesting/index.php:58 msgid "Locator" msgstr "Локатор" -#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:59 +#: application/views/qso/edit_ajax.php:177 +msgid "QTH" +msgstr "QTH" + +#: application/views/contesting/index.php:64 +msgid "Sequence of Exchanges" +msgstr "Последовательность контрольных номеров" + +#: application/views/contesting/index.php:67 +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 "" +"Выберите, в каком порядке вы хотите вводить различные отчеты. Однако " +"отображаются только элементы, содержащиеся в выбранном типе контрольного " +"номера." + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Exchange" +msgstr "Контроль" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Grid" +msgstr "Квадрат" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Serial" +msgstr "Номер" + +#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:255 +#: application/views/qso/edit_ajax.php:598 +msgid "Serial (S)" +msgstr "Порядковый номер (TX)" + +#: application/views/contesting/index.php:177 +msgid "Gridsquare (S)" +msgstr "Квадрат (TX)" + +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:253 +msgid "Exch (S)" +msgstr "Контрольный номер (TX)" + +#: application/views/contesting/index.php:196 +#: application/views/contesting/index.php:256 +#: application/views/qso/edit_ajax.php:593 +msgid "Serial (R)" +msgstr "Порядковый номер (RX)" + +#: application/views/contesting/index.php:201 +msgid "Gridsquare (R)" +msgstr "Квадрат (RX)" + +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:254 +msgid "Exch (R)" +msgstr "Контрольный номер (RX)" + +#: application/views/contesting/index.php:224 +msgid "Reset QSO" +msgstr "Сбросить QSO" + +#: application/views/contesting/index.php:225 +#: application/views/qso/index.php:629 +msgid "Save QSO" +msgstr "Сохранить QSO" + +#: application/views/contesting/index.php:234 msgid "Callsign Suggestions" msgstr "Предложение позывных" -#: application/views/contesting/index.php:194 +#: application/views/contesting/index.php:241 msgid "Contest Logbook" msgstr "Журнал контеста" -#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:258 #: application/views/qso/edit_ajax.php:164 msgid "VUCC Gridsquare" msgstr "Квадрат VUCC" -#: application/views/continents/index.php:62 -#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 -#: application/views/view_log/qso.php:242 -msgid "Continent" -msgstr "Континент" - #: application/views/continents/index.php:63 #: application/views/statistics/index.php:19 #: application/views/statistics/index.php:113 @@ -4961,14 +5698,15 @@ msgstr "Идентификатор" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:261 -#: application/views/station_profile/edit.php:314 +#: application/views/options/appearance.php:109 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 msgid "Enabled" msgstr "Включено" -#: application/views/cron/edit.php:36 application/views/cron/index.php:53 +#: application/views/cron/edit.php:36 application/views/cron/index.php:55 msgid "Intervall" msgstr "Интервал" @@ -5018,6 +5756,7 @@ msgstr "Введите собственные настройки Cron" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "Отмена" @@ -5033,7 +5772,7 @@ msgstr "" "Диспетчер Cron помогает администратору управлять расписанием задач без " "необходимости доступа к консоли." -#: application/views/cron/index.php:18 +#: application/views/cron/index.php:19 msgid "" "To execute cron jobs based on the data below, remove all old cron jobs and " "create a new one:" @@ -5041,61 +5780,66 @@ msgstr "" "Для выполнения задач, основанных на данных ниже, удалите старые задачи и " "создайте новую:" -#: application/views/cron/index.php:27 application/views/cron/index.php:31 -msgid "Status Master-Cron" -msgstr "Состояние Master-Cron" +#: application/views/cron/index.php:29 application/views/cron/index.php:33 +msgid "Status Master-Cron:" +msgstr "Состояние Master-Cron:" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgctxt "PHP Version" msgid "Min. Version is" msgstr "Минимальная версия" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgid "PHP Version not supported." msgstr "Версия PHP не поддерживается." -#: application/views/cron/index.php:41 +#: application/views/cron/index.php:43 msgid "Cron List" msgstr "Список задач" -#: application/views/cron/index.php:50 +#: application/views/cron/index.php:52 #: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "ID" -#: application/views/cron/index.php:54 +#: application/views/cron/index.php:56 msgid "Last Run" msgstr "Последний запуск" -#: application/views/cron/index.php:55 +#: application/views/cron/index.php:57 msgid "Next Run" msgstr "Следующий запуск" -#: application/views/cron/index.php:68 +#: application/views/cron/index.php:70 msgid "healthy" msgstr "норма" -#: application/views/cron/index.php:70 +#: application/views/cron/index.php:72 msgid "failed" msgstr "ошибка" -#: application/views/cron/index.php:75 +#: application/views/cron/index.php:74 +msgid "pending" +msgstr "в ожидании" + +#: application/views/cron/index.php:79 msgid "disabled" msgstr "отключено" -#: application/views/cron/index.php:79 application/views/cron/index.php:81 -#: application/views/cron/index.php:83 application/views/debug/index.php:494 +#: application/views/cron/index.php:83 application/views/cron/index.php:85 +#: application/views/cron/index.php:87 application/views/debug/index.php:494 #: application/views/debug/index.php:500 application/views/debug/index.php:505 #: application/views/debug/index.php:510 application/views/debug/index.php:515 #: application/views/debug/index.php:520 application/views/debug/index.php:525 +#: application/views/user/index.php:138 msgid "never" msgstr "никогда" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:102 msgid "Your Mastercron isn't running." msgstr "Master-Cron не запущен." -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:103 msgid "" "Copy the cron above to a external cron service or into your server's cron to " "use this cron manager." @@ -5103,7 +5847,7 @@ msgstr "" "Скопируйте приведенную выше задачу cron во внешнюю службу cron или в cron " "вашего сервера, чтобы использовать этот диспетчер cron." -#: application/views/cron/index.php:100 +#: application/views/cron/index.php:104 msgid "" "On a basic linux server with shell access use this command to edit your " "crons:" @@ -5111,7 +5855,7 @@ msgstr "" "На типичном linux-сервере с доступом к шелл используйте эту команду для " "редактирования расписания задач:" -#: application/views/cron/index.php:107 +#: application/views/cron/index.php:111 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -5131,154 +5875,10 @@ msgstr "Только QSO с информацией SOTA будут экспор #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:411 msgid "Propagation Mode" msgstr "Тип распространения радиоволн" -#: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:214 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 -msgctxt "Propagation Mode" -msgid "Aircraft Scatter" -msgstr "Рассеяние на инверсионном следе самолётов" - -#: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:215 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 -msgctxt "Propagation Mode" -msgid "Aurora" -msgstr "Авроральное" - -#: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:216 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 -msgctxt "Propagation Mode" -msgid "Aurora-E" -msgstr "Авроральное (E)" - -#: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:217 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 -msgctxt "Propagation Mode" -msgid "Back scatter" -msgstr "Пассивные отражатели" - -#: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:218 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 -msgctxt "Propagation Mode" -msgid "EchoLink" -msgstr "Эхолинк" - -#: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:219 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 -msgctxt "Propagation Mode" -msgid "Earth-Moon-Earth" -msgstr "Отражение от Луны" - -#: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:220 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 -msgctxt "Propagation Mode" -msgid "Sporadic E" -msgstr "Спорадическое прохождение (Е)" - -#: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:221 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 -msgctxt "Propagation Mode" -msgid "Field Aligned Irregularities" -msgstr "Анизотропия ионосферы" - -#: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:222 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 -msgctxt "Propagation Mode" -msgid "F2 Reflection" -msgstr "Отражение от слоя F2" - -#: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:223 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 -msgctxt "Propagation Mode" -msgid "Internet-assisted" -msgstr "С помощью Интернет" - -#: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:224 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 -msgctxt "Propagation Mode" -msgid "Ionoscatter" -msgstr "Ионосферное рассеяние" - -#: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:225 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 -msgctxt "Propagation Mode" -msgid "IRLP" -msgstr "IRLP" - -#: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:226 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 -msgctxt "Propagation Mode" -msgid "Meteor scatter" -msgstr "Рассеяние на метеорных следах" - -#: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:227 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 -msgctxt "Propagation Mode" -msgid "Terrestrial or atmospheric repeater or transponder" -msgstr "Наземный или атмосферный репитер или транспондер" - -#: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:228 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 -msgctxt "Propagation Mode" -msgid "Rain scatter" -msgstr "Рассеяние на дожде" - -#: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:229 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 -msgctxt "Propagation Mode" -msgid "Satellite" -msgstr "Спутник" - -#: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:230 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 -msgctxt "Propagation Mode" -msgid "Trans-equatorial" -msgstr "Трансэкваториальное" - -#: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:231 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 -msgctxt "Propagation Mode" -msgid "Tropospheric ducting" -msgstr "Тропосферное прохождение" - #: application/views/dashboard/index.php:5 msgid "RSTS" msgstr "RST (TX)" @@ -5287,31 +5887,48 @@ msgstr "RST (TX)" msgid "RSTR" msgstr "RST (RX)" -#: application/views/dashboard/index.php:56 +#: application/views/dashboard/index.php:58 msgid "" "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" msgstr "Вам нужнго обновить версию PHP. Минимальная версия 7.4. Ваша версия" -#: application/views/dashboard/index.php:63 +#: application/views/dashboard/index.php:65 #, php-format msgctxt "Dashboard Warning" -msgid "You need to update country files! Click %s to do it." -msgstr "Вам нужно обновить файлы стран! Кликните %s для этого." +msgid "You need to update country files! Click %shere%s to do it." +msgstr "Вам нужно обновить файлы стран! Кликните %sздесь%s для этого." -#: application/views/dashboard/index.php:72 +#: application/views/dashboard/index.php:73 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station locations. Click %s to do it:" -msgstr "" -"У вас не настроен профиль QTH. Перейдите по ссылке %s, чтобы настроить:" +msgid "You have no station locations. Click %shere%s to do it." +msgstr "У вас не настроен профиль QTH. Кликните %sздесь%s для этого." #: application/views/dashboard/index.php:81 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station logbook. Click %s to do it:" -msgstr "У вас не настроен журнал. Перейдите по ссылке %s, чтобы настроить:" +msgid "You have no station logbook. Click %shere%s to do it." +msgstr "У вас не настроен журнал. Кликните %sздесь%s для этого." -#: application/views/dashboard/index.php:91 +#: application/views/dashboard/index.php:89 +#, php-format +msgctxt "Dashboard Warning" +msgid "" +"Your active Station Location isn't linked to your Logbook. Click %shere%s to " +"do it." +msgstr "" +"Ваше активное местоположение станции не связано с вашим журналом. Нажмите " +"%sздесь%s, чтобы связать." + +#: application/views/dashboard/index.php:97 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station linked to your Logbook. Click %shere%s to do it." +msgstr "" +"У вас нет станции, связанной с вашим журналом. Нажмите %sздесь%s, чтобы " +"связать." + +#: application/views/dashboard/index.php:106 #, php-format msgid "You have had %d QSO today" msgid_plural "You have had %d QSOs today" @@ -5319,15 +5936,15 @@ msgstr[0] "За сегодня проведено %d QSO" msgstr[1] "За сегодня проведено %d QSO" msgstr[2] "За сегодня проведено %d QSO" -#: application/views/dashboard/index.php:97 +#: application/views/dashboard/index.php:112 msgid "You have made no QSOs today; time to turn on the radio!" msgstr "За сегодня ни одного QSO, время вернуться к радио!" -#: application/views/dashboard/index.php:104 +#: application/views/dashboard/index.php:119 msgid "Attention: you need to set an active station location." msgstr "Внимание: вам нужно назначить активный профиль QTH." -#: application/views/dashboard/index.php:110 +#: application/views/dashboard/index.php:125 msgid "" "You have themes without defined theme mode. Please ask the admin to edit the " "themes." @@ -5335,41 +5952,41 @@ msgstr "" "У вас есть темы без определенного режима темы. Пожалуйста, попросите " "администратора отредактировать темы." -#: application/views/dashboard/index.php:118 +#: application/views/dashboard/index.php:133 msgid "At least one of your LoTW certificates is expired!" msgstr "Один из ваших сертификатов LoTW истёк!" -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:139 msgid "At least one of your LoTW certificates is about to expire!" msgstr "Как минимум, один из ваших сертификатов LoTW скоро истечёт!" -#: application/views/dashboard/index.php:213 +#: application/views/dashboard/index.php:229 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "Статистика QSO" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:252 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "Статистика по странам" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:269 #: application/views/visitor/index.php:275 msgid "Needed" msgstr "Необходимо" -#: application/views/dashboard/index.php:266 -#: application/views/dashboard/index.php:293 -#: application/views/dashboard/index.php:314 -#: application/views/dashboard/index.php:335 +#: application/views/dashboard/index.php:282 +#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:330 +#: application/views/dashboard/index.php:351 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:167 -#: application/views/qso/edit_ajax.php:390 -#: application/views/qso/edit_ajax.php:451 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:550 +#: application/views/qso/edit_ajax.php:417 +#: application/views/qso/edit_ajax.php:478 +#: application/views/qso/edit_ajax.php:518 application/views/qso/index.php:572 #: application/views/search/result_search.php:8 #: application/views/search/search_result_ajax.php:180 #: application/views/search/search_result_ajax.php:260 @@ -5377,91 +5994,91 @@ msgstr "Необходимо" #: application/views/search/search_result_ajax.php:332 #: application/views/search/search_result_ajax.php:362 #: application/views/statistics/custom_result.php:89 -#: application/views/view_log/partial/log_ajax.php:140 -#: application/views/view_log/partial/log_ajax.php:217 -#: application/views/view_log/partial/log_ajax.php:237 -#: application/views/view_log/partial/log_ajax.php:287 -#: application/views/view_log/partial/log_ajax.php:295 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:289 +#: application/views/view_log/partial/log_ajax.php:297 #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 -#: src/QSLManager/QSO.php:371 src/QSLManager/QSO.php:423 -#: src/QSLManager/QSO.php:459 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:270 +#: src/QSLManager/QSO.php:373 src/QSLManager/QSO.php:425 +#: src/QSLManager/QSO.php:461 msgid "Sent" msgstr "Отправлено" -#: application/views/dashboard/index.php:272 -#: application/views/dashboard/index.php:299 -#: application/views/dashboard/index.php:320 -#: application/views/dashboard/index.php:341 +#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:315 +#: application/views/dashboard/index.php:336 +#: application/views/dashboard/index.php:357 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 #: application/views/qslprint/qsolist.php:151 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:423 -#: application/views/qso/edit_ajax.php:464 -#: application/views/qso/edit_ajax.php:503 +#: application/views/qso/edit_ajax.php:450 +#: application/views/qso/edit_ajax.php:491 +#: application/views/qso/edit_ajax.php:530 #: application/views/search/search_result_ajax.php:222 #: application/views/search/search_result_ajax.php:273 #: application/views/search/search_result_ajax.php:313 #: application/views/search/search_result_ajax.php:345 #: application/views/search/search_result_ajax.php:375 -#: application/views/view_log/partial/log_ajax.php:178 -#: application/views/view_log/partial/log_ajax.php:218 -#: application/views/view_log/partial/log_ajax.php:263 -#: application/views/view_log/partial/log_ajax.php:288 -#: application/views/view_log/partial/log_ajax.php:296 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:265 +#: application/views/view_log/partial/log_ajax.php:290 +#: application/views/view_log/partial/log_ajax.php:298 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 -#: src/QSLManager/QSO.php:394 src/QSLManager/QSO.php:436 -#: src/QSLManager/QSO.php:472 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:315 +#: src/QSLManager/QSO.php:396 src/QSLManager/QSO.php:438 +#: src/QSLManager/QSO.php:474 msgid "Received" msgstr "Принято" -#: application/views/dashboard/index.php:278 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:388 -#: application/views/logbookadvanced/index.php:399 +#: application/views/dashboard/index.php:294 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:415 +#: application/views/logbookadvanced/index.php:426 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 -#: application/views/qso/edit_ajax.php:395 -#: application/views/qso/edit_ajax.php:428 -#: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:469 +#: application/views/qso/edit_ajax.php:422 +#: application/views/qso/edit_ajax.php:455 +#: application/views/qso/edit_ajax.php:483 #: application/views/qso/edit_ajax.php:496 -#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:555 +#: application/views/qso/edit_ajax.php:523 +#: application/views/qso/edit_ajax.php:535 application/views/qso/index.php:577 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 -#: application/views/view_log/partial/log_ajax.php:146 -#: application/views/view_log/partial/log_ajax.php:184 -#: application/views/view_log/partial/log_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:273 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 -#: src/QSLManager/QSO.php:319 src/QSLManager/QSO.php:379 -#: src/QSLManager/QSO.php:402 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +#: application/views/view_log/partial/log_ajax.php:249 +#: application/views/view_log/partial/log_ajax.php:275 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:276 +#: src/QSLManager/QSO.php:321 src/QSLManager/QSO.php:381 +#: src/QSLManager/QSO.php:404 msgid "Requested" msgstr "Запрошено" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:304 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:351 +#: application/views/dashboard/index.php:367 msgid "VUCC-Grids" msgstr "Квадраты VUCC" #: application/views/dayswithqso/index.php:2 -#: application/views/interface_assets/header.php:146 +#: application/views/interface_assets/header.php:148 msgid "Days with QSOs" msgstr "Дней с QSO" @@ -5490,7 +6107,7 @@ msgstr "Дата начала" #: application/views/dayswithqso/index.php:58 #: application/views/dayswithqso/index.php:86 #: application/views/dayswithqso/index.php:108 -#: application/views/timeline/index.php:120 +#: application/views/timeline/index.php:153 msgid "End Date" msgstr "Дата окончания" @@ -5556,13 +6173,17 @@ msgid "" "locked due to a previously failed process. Delete the file %s to force the " "migration to run again." msgstr "" +"Текущая миграция не является той версией, которой она должна быть. " +"Перезагрузите эту страницу через %s секунд. Если это предупреждение " +"сохраняется, ваша миграция, вероятно, заблокирована из-за ранее неудавшегося " +"процесса. Удалите файл %s, чтобы принудительно запустить миграцию снова." #: application/views/debug/index.php:47 #, php-format -msgid "" -"Check this wiki article here for " -"more information." +msgid "Check this wiki article %shere%s for more information." msgstr "" +"Проверьте эту статью на вики %sздесь%s для получения дополнительной " +"информации." #: application/views/debug/index.php:48 #, php-format @@ -5714,7 +6335,7 @@ msgstr "Установленные" msgid "Not Installed" msgstr "Не установленные" -#: application/views/debug/index.php:283 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:671 msgid "Settings" msgstr "Настройки" @@ -5771,7 +6392,7 @@ msgstr "Обновление DXCC из Clublog" #: application/views/debug/index.php:506 application/views/debug/index.php:511 #: application/views/debug/index.php:516 application/views/debug/index.php:521 #: application/views/debug/index.php:526 -#: application/views/station_profile/edit.php:22 +#: application/views/station_profile/edit.php:49 msgid "Update" msgstr "Обновить" @@ -5814,9 +6435,8 @@ msgstr[2] "База данных содержит %d QSO без привязан #: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:57 -#: application/views/station_profile/edit.php:46 -#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" @@ -5845,69 +6465,95 @@ msgid "Everything ok" msgstr "Всё ОК" #: application/views/debug/index.php:629 +msgid "Albanian" +msgstr "Албанский" + +#: application/views/debug/index.php:630 +msgid "Bosnian" +msgstr "Боснийский" + +#: application/views/debug/index.php:631 msgid "Bulgarian" msgstr "Болгарский" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:632 msgid "Chinese (Simplified)" msgstr "Китайский (упрощённый)" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:633 +msgid "Croatian" +msgstr "Хорватский" + +#: application/views/debug/index.php:634 msgid "Czech" msgstr "Чешский" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:635 msgid "Dutch" msgstr "Голландский" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:636 msgid "English" msgstr "Английский" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:637 msgid "Finnish" msgstr "Финский" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:638 msgid "French" msgstr "Французский" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:639 msgid "German" msgstr "Немецкий" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:640 msgid "Greek" msgstr "Греческий" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:641 msgid "Italian" msgstr "Итальянский" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:642 +msgid "Montenegrin" +msgstr "Черногорский" + +#: application/views/debug/index.php:643 msgid "Polish" msgstr "Польский" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:644 msgid "Portuguese" msgstr "Португальский" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:645 msgid "Russian" msgstr "Русский" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:646 +msgid "Serbian" +msgstr "Сербский" + +#: application/views/debug/index.php:647 msgid "Spanish" msgstr "Испанский" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:648 msgid "Swedish" msgstr "Шведский" -#: application/views/debug/index.php:644 +#: application/views/debug/index.php:649 msgid "Turkish" msgstr "Турецкий" +#: application/views/distancerecords/index.php:4 +msgid "This page lists distance records per satellite based on gridsquares." +msgstr "" +"На этой странице перечислены рекорды расстояний по спутникам на основе " +"квадратов сетки." + #: application/views/distances/index.php:7 #: application/views/interface_assets/footer.php:30 #: application/views/simplefle/index.php:68 @@ -5915,8 +6561,9 @@ msgid "QSO Data" msgstr "Данные QSO" #: application/views/distances/index.php:9 -msgid "contacts were plotted.
Your furthest contact was with" -msgstr "контакты отображены.
Наиболее дальний контакт с" +#, php-format +msgid "contacts were plotted.%s Your furthest contact was with" +msgstr "контакты были нанесены на карту.%s Ваш самый дальний контакт был с" #: application/views/distances/index.php:10 msgid "in gridsquare" @@ -5959,7 +6606,7 @@ msgid "Date to" msgstr "Дата до" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:366 +#: application/views/view_log/qso.php:369 msgid "QSL Info" msgstr "QSL" @@ -5985,7 +6632,7 @@ msgstr "Загрузить QSO" #: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 #: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 #: application/views/eqsl/tools.php:15 -#: application/views/interface_assets/header.php:243 +#: application/views/interface_assets/header.php:247 msgid "Tools" msgstr "Инструменты" @@ -6149,27 +6796,15 @@ msgid "QSL Date" msgstr "Дата QSL" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2324 -#: application/views/interface_assets/footer.php:2342 -#: application/views/interface_assets/footer.php:2363 -#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2338 +#: application/views/interface_assets/footer.php:2356 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 #: application/views/qslcard/index.php:66 -#: application/views/view_log/qso.php:614 +#: application/views/view_log/qso.php:617 msgid "View" msgstr "Посмотреть" -#: application/views/gridmap/index.php:38 -#: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:604 -#: application/views/logbookadvanced/useroptions.php:118 -msgid "Propagation" -msgstr "Распространение" - -#: application/views/gridmap/index.php:42 -msgid "None/Empty" -msgstr "Нет/Пусто" - #: application/views/gridmap/index.php:43 msgid "All except SAT" msgstr "Все, за исключением спутниковых" @@ -6275,8 +6910,8 @@ msgstr "QSO отмечены, как экспортированные в жур #: application/views/interface_assets/footer.php:31 #: application/views/search/search_result_ajax.php:404 #: application/views/view_log/partial/log.php:135 -#: application/views/view_log/partial/log_ajax.php:318 -#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log_ajax.php:320 +#: application/views/view_log/qso.php:437 msgid "Edit QSO" msgstr "Редактировать QSO" @@ -6284,109 +6919,117 @@ msgstr "Редактировать QSO" msgid "Attention" msgstr "Внимание" -#: application/views/interface_assets/footer.php:36 -msgid "OK" -msgstr "ОК" - -#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/footer.php:38 msgid "Warning! Are you sure you want delete QSO with " msgstr "Предупреждение! Вы уверены в том, что хотите удалить QSO c " -#: application/views/interface_assets/footer.php:38 +#: application/views/interface_assets/footer.php:39 #: application/views/user/edit.php:493 msgid "Colors" msgstr "Цвета" -#: application/views/interface_assets/footer.php:40 +#: application/views/interface_assets/footer.php:41 msgid "Worked not confirmed" msgstr "Сработано, не подтверждено" -#: application/views/interface_assets/footer.php:41 +#: application/views/interface_assets/footer.php:42 msgid "Not worked" msgstr "Не сработано" -#: application/views/interface_assets/footer.php:44 -#: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/interface_assets/footer.php:46 +#: application/views/qso/index.php:623 +#: application/views/visitor/layout/footer.php:246 msgid "Clear" msgstr "Очистить" -#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:47 #: application/views/qso/edit_ajax.php:211 -#: application/views/qso/edit_ajax.php:512 +#: application/views/qso/edit_ajax.php:539 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "Режим распространения не поддерживается LoTW. Поля QSL LoTW отключены." -#: application/views/interface_assets/footer.php:127 -#: application/views/interface_assets/header.php:434 +#: application/views/interface_assets/footer.php:48 +msgid "No states for this DXCC available" +msgstr "Для этого DXCC нет доступных штатов" + +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "Вычислить QRB и QTF" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "Ошибка в локаторах. Пожалуйста, проверьте." + +#: application/views/interface_assets/footer.php:132 +#: application/views/interface_assets/header.php:440 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "Информация о версии" -#: application/views/interface_assets/footer.php:392 +#: application/views/interface_assets/footer.php:398 msgid "Description:" -msgstr "" +msgstr "Описание:" -#: application/views/interface_assets/footer.php:395 +#: application/views/interface_assets/footer.php:401 msgid "Query description" -msgstr "" +msgstr "Описание запроса" -#: application/views/interface_assets/footer.php:411 +#: application/views/interface_assets/footer.php:417 msgid "Your query has been saved!" -msgstr "" +msgstr "Ваш запрос сохранён!" -#: application/views/interface_assets/footer.php:413 +#: application/views/interface_assets/footer.php:419 #: application/views/search/filter.php:46 msgid "Edit queries" msgstr "Редактировать запросы" -#: application/views/interface_assets/footer.php:415 +#: application/views/interface_assets/footer.php:421 msgid "Stored queries:" -msgstr "" +msgstr "Сохранённые запросы:" -#: application/views/interface_assets/footer.php:420 +#: application/views/interface_assets/footer.php:426 #: application/views/search/filter.php:60 msgid "Run Query" msgstr "Выполнить запрос" -#: application/views/interface_assets/footer.php:432 -#: application/views/interface_assets/footer.php:561 -#: application/views/interface_assets/footer.php:625 +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 msgid "Stored Queries" -msgstr "" +msgstr "Сохранённые запросы" -#: application/views/interface_assets/footer.php:437 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 msgid "You need to make a query before you search!" -msgstr "" +msgstr "Сначала нужно сформировать запрос, прежде чем искать!" -#: application/views/interface_assets/footer.php:458 -#: application/views/interface_assets/footer.php:589 +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 #: application/views/search/filter.php:79 msgid "Export to ADIF" msgstr "Экспортировать в ADIF" -#: application/views/interface_assets/footer.php:496 +#: application/views/interface_assets/footer.php:502 msgid "Warning! Are you sure you want delete this stored query?" -msgstr "" +msgstr "Внимание! Вы уверены, что хотите удалить этот сохранённый запрос?" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:516 msgid "The stored query has been deleted!" -msgstr "" +msgstr "Сохранённый запрос был удален!" -#: application/views/interface_assets/footer.php:519 +#: application/views/interface_assets/footer.php:525 msgid "The stored query could not be deleted. Please try again!" -msgstr "" +msgstr "Не удалось удалить сохранённый запрос. Пожалуйста, попробуйте еще раз!" -#: application/views/interface_assets/footer.php:545 +#: application/views/interface_assets/footer.php:551 msgid "The query description has been updated!" -msgstr "" +msgstr "Описание запроса было обновлено!" -#: application/views/interface_assets/footer.php:549 +#: application/views/interface_assets/footer.php:555 msgid "Something went wrong with the save. Please try again!" -msgstr "" +msgstr "Что-то пошло не так с сохранением. Пожалуйста, попробуйте еще раз!" -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:678 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -6396,64 +7039,77 @@ msgstr "" "действителен. Проверьте, какой DXCC для данного конкретного места является " "правильным. Если вы уверены, проигнорируйте это предупреждение." -#: application/views/interface_assets/footer.php:1156 -#, php-format -msgid "You're not logged it. Please login" -msgstr "" +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:533 +msgid "Callsign: " +msgstr "Позывной: " -#: application/views/interface_assets/footer.php:1362 -#: application/views/interface_assets/footer.php:1366 -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1506 -#: application/views/interface_assets/footer.php:1510 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:731 +msgid "Count: " +msgstr "Всего: " + +#: application/views/interface_assets/footer.php:732 +msgid "Grids: " +msgstr "Квадратов: " + +#: application/views/interface_assets/footer.php:1167 +#, php-format +msgid "You're not logged in. Please %slogin%s" +msgstr "Вы не вошли в систему. Пожалуйста, %sвойдите%s" + +#: application/views/interface_assets/footer.php:1375 +#: application/views/interface_assets/footer.php:1379 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1523 +#: application/views/interface_assets/footer.php:1526 msgid "grid square" msgstr "квадрат(/-а/-ов)" -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1526 msgid "Total count" msgstr "Всего" -#: application/views/interface_assets/footer.php:2100 +#: application/views/interface_assets/footer.php:2114 msgid "QSL Card for " -msgstr "" +msgstr "QSL-карточка для " -#: application/views/interface_assets/footer.php:2120 +#: application/views/interface_assets/footer.php:2134 msgid "Warning! Are you sure you want to delete this QSL card?" -msgstr "" +msgstr "Внимание! Вы уверены, что хотите удалить эту QSL-карточку?" -#: application/views/interface_assets/footer.php:2160 +#: application/views/interface_assets/footer.php:2174 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "eQSL-карточка" -#: application/views/interface_assets/footer.php:2162 +#: application/views/interface_assets/footer.php:2176 msgid "eQSL Card for " -msgstr "" +msgstr "eQSL-карточка для " -#: application/views/interface_assets/footer.php:2335 -#: application/views/interface_assets/footer.php:2374 -#: application/views/view_log/qso.php:604 +#: application/views/interface_assets/footer.php:2349 +#: application/views/interface_assets/footer.php:2388 +#: application/views/view_log/qso.php:607 msgid "QSL image file" msgstr "Изображение QSL-карточки" -#: application/views/interface_assets/footer.php:2354 +#: application/views/interface_assets/footer.php:2368 msgid "Front QSL Card:" -msgstr "" +msgstr "Лицевая сторона QSL-карточки:" -#: application/views/interface_assets/footer.php:2392 +#: application/views/interface_assets/footer.php:2406 msgid "Back QSL Card:" -msgstr "" +msgstr "Обратная сторона QSL-карточки:" -#: application/views/interface_assets/footer.php:2403 -#: application/views/interface_assets/footer.php:2428 +#: application/views/interface_assets/footer.php:2417 +#: application/views/interface_assets/footer.php:2442 msgid "Add additional QSOs to a QSL Card" -msgstr "" +msgstr "Добавить дополнительные QSO на QSL-карточку" -#: application/views/interface_assets/footer.php:2439 +#: application/views/interface_assets/footer.php:2453 msgid "Something went wrong. Please try again!" -msgstr "" +msgstr "Что-то пошло не так. Пожалуйста, попробуйте еще раз!" #: application/views/interface_assets/header.php:86 msgid "Developer Mode" @@ -6507,91 +7163,91 @@ msgstr "Аналитика" msgid "Activated Gridsquares" msgstr "Активированные квадраты" -#: application/views/interface_assets/header.php:160 +#: application/views/interface_assets/header.php:162 msgid "International" msgstr "Международные" -#: application/views/interface_assets/header.php:166 +#: application/views/interface_assets/header.php:168 msgid "ITU" msgstr "ITU" -#: application/views/interface_assets/header.php:186 +#: application/views/interface_assets/header.php:190 msgid "Canada" msgstr "Канада" -#: application/views/interface_assets/header.php:192 +#: application/views/interface_assets/header.php:196 msgid "Germany" msgstr "Германия" -#: application/views/interface_assets/header.php:196 +#: application/views/interface_assets/header.php:200 msgid "DL Gridmaster" msgstr "DL Gridmaster" -#: application/views/interface_assets/header.php:200 +#: application/views/interface_assets/header.php:204 msgid "Great Britain" msgstr "Великобритания" -#: application/views/interface_assets/header.php:202 +#: application/views/interface_assets/header.php:206 msgid "WAB" msgstr "WAB" -#: application/views/interface_assets/header.php:206 +#: application/views/interface_assets/header.php:210 msgid "Japan" msgstr "Япония" -#: application/views/interface_assets/header.php:212 +#: application/views/interface_assets/header.php:216 msgid "JA Gridmaster" msgstr "JA Gridmaster" -#: application/views/interface_assets/header.php:216 +#: application/views/interface_assets/header.php:220 msgid "Luxemburg" msgstr "Люксембург" -#: application/views/interface_assets/header.php:218 +#: application/views/interface_assets/header.php:222 msgid "LX Gridmaster" msgstr "LX Gridmaster" -#: application/views/interface_assets/header.php:222 +#: application/views/interface_assets/header.php:226 msgid "Switzerland" msgstr "Швейцария" -#: application/views/interface_assets/header.php:228 +#: application/views/interface_assets/header.php:232 msgid "USA" msgstr "США" -#: application/views/interface_assets/header.php:234 +#: application/views/interface_assets/header.php:238 msgid "US Gridmaster" msgstr "US Gridmaster" -#: application/views/interface_assets/header.php:251 +#: application/views/interface_assets/header.php:255 msgid "Bandmap" msgstr "План диапазонов" -#: application/views/interface_assets/header.php:253 +#: application/views/interface_assets/header.php:257 msgid "SAT Timers" msgstr "Спутниковые таймеры" -#: application/views/interface_assets/header.php:256 +#: application/views/interface_assets/header.php:260 msgid "Satellite Flightpath" -msgstr "" +msgstr "Траектория полета спутника" -#: application/views/interface_assets/header.php:258 +#: application/views/interface_assets/header.php:262 msgid "Satellite Pass" -msgstr "" +msgstr "Прохождение спутника" -#: application/views/interface_assets/header.php:265 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:269 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "Администрирование" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:274 msgid "Global Options" msgstr "Общие настройки" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:280 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:11 +#: application/views/satellite/pass.php:495 #: application/views/statistics/custom.php:20 #: application/views/statistics/custom_result.php:21 #: application/views/statistics/index.php:39 @@ -6599,79 +7255,83 @@ msgstr "Общие настройки" msgid "Satellites" msgstr "Спутники" -#: application/views/interface_assets/header.php:282 +#: application/views/interface_assets/header.php:286 msgid "Update Country Files" msgstr "Обновить файлы стран" -#: application/views/interface_assets/header.php:286 +#: application/views/interface_assets/header.php:290 msgid "Debug Information" msgstr "Отладочная информация" -#: application/views/interface_assets/header.php:333 +#: application/views/interface_assets/header.php:337 msgid "Add/Search Callsign" msgstr "Добавить/найти позывной" -#: application/views/interface_assets/header.php:335 +#: application/views/interface_assets/header.php:339 msgid "Log" msgstr "Журнал" -#: application/views/interface_assets/header.php:342 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:346 +#: application/views/logbookadvanced/index.php:474 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "Поиск позывного" -#: application/views/interface_assets/header.php:371 +#: application/views/interface_assets/header.php:375 #: application/views/user/edit.php:49 msgid "Account" msgstr "Информация об аккаунте" -#: application/views/interface_assets/header.php:386 +#: application/views/interface_assets/header.php:390 msgid "Other Export Options" msgstr "Другие варианты экспорта" -#: application/views/interface_assets/header.php:394 +#: application/views/interface_assets/header.php:398 msgid "Cabrillo Export" msgstr "Экспорт Cabrillo" -#: application/views/interface_assets/header.php:418 +#: application/views/interface_assets/header.php:400 +msgid "EDI Export" +msgstr "Экспорт EDI" + +#: application/views/interface_assets/header.php:424 msgid "QSL Queue" msgstr "Очередь QSL" -#: application/views/interface_assets/header.php:419 +#: application/views/interface_assets/header.php:425 msgid "Labels" msgstr "Наклейки" -#: application/views/interface_assets/header.php:421 +#: application/views/interface_assets/header.php:427 msgid "Third-Party Services" msgstr "Сторонние сервисы" -#: application/views/interface_assets/header.php:424 +#: application/views/interface_assets/header.php:430 msgid "eQSL Import / Export" msgstr "импорт / экспорт eQSL" -#: application/views/interface_assets/header.php:425 +#: application/views/interface_assets/header.php:431 msgid "HRDLog Logbook" msgstr "Журнал HRDLog" -#: application/views/interface_assets/header.php:435 +#: application/views/interface_assets/header.php:441 msgid "Help" msgstr "Помощь" -#: application/views/interface_assets/header.php:436 +#: application/views/interface_assets/header.php:442 msgid "Forum" msgstr "Форум" -#: application/views/interface_assets/header.php:438 +#: application/views/interface_assets/header.php:444 msgid "Logout" msgstr "Выход" -#: application/views/interface_assets/header.php:446 +#: application/views/interface_assets/header.php:452 msgid "Select a Location" msgstr "Выберите профиль QTH" -#: application/views/interface_assets/header.php:525 +#: application/views/interface_assets/header.php:531 msgid "Extras" msgstr "Дополнения" @@ -6949,86 +7609,122 @@ msgid "Start printing at?" msgstr "Начать печать в?" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:405 -#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "QSL через" -#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/edit.php:23 msgid "LoTW Sent" msgstr "LoTW отправлено" -#: application/views/logbookadvanced/edit.php:23 +#: application/views/logbookadvanced/edit.php:24 msgid "LoTW Received" msgstr "LoTW получено" -#: application/views/logbookadvanced/edit.php:73 +#: application/views/logbookadvanced/edit.php:75 msgid "SAT Mode" msgstr "Спутниковый режим" -#: application/views/logbookadvanced/edit.php:87 +#: application/views/logbookadvanced/edit.php:89 msgid "Band RX" msgstr "Диапазон приёма" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "Квадраты" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "Траектории" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "Зоны CQ" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "Зоны ITU" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:174 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "Ночная тень" + +#: application/views/logbookadvanced/index.php:144 msgid "From" msgstr "От" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:148 msgid "To" msgstr "к" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:152 +#: application/views/logbookadvanced/index.php:569 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "DX" -#: application/views/logbookadvanced/index.php:148 +#: application/views/logbookadvanced/index.php:159 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "- NONE - (т.е.. /MM, /AM)" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:224 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "Нет/Пусто" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:540 +msgid "Invalid" +msgstr "Недействительный" + +#: application/views/logbookadvanced/index.php:324 msgid "QSL sent" msgstr "QSL отправлено" -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:375 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:397 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:439 #: application/views/lookup/lotwuser.php:12 -#: application/views/qso/edit_ajax.php:394 -#: application/views/qso/edit_ajax.php:427 -#: application/views/qso/edit_ajax.php:455 -#: application/views/qso/edit_ajax.php:468 +#: application/views/qso/edit_ajax.php:421 +#: application/views/qso/edit_ajax.php:454 +#: application/views/qso/edit_ajax.php:482 #: application/views/qso/edit_ajax.php:495 -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 +#: application/views/qso/edit_ajax.php:522 +#: application/views/qso/edit_ajax.php:534 application/views/qso/index.php:576 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:209 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:236 -#: application/views/station_profile/create.php:275 -#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 #: application/views/station_profile/create.php:293 -#: application/views/station_profile/edit.php:330 -#: application/views/station_profile/edit.php:338 -#: application/views/station_profile/edit.php:364 -#: application/views/station_profile/edit.php:385 -#: application/views/station_profile/edit.php:403 -#: application/views/station_profile/edit.php:410 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 +#: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 #: application/views/user/edit.php:347 application/views/user/edit.php:358 #: application/views/user/edit.php:369 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:399 @@ -7038,35 +7734,35 @@ msgstr "QSL отправлено" msgid "Yes" msgstr "Да" -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 -#: application/views/logbookadvanced/index.php:376 -#: application/views/logbookadvanced/index.php:387 -#: application/views/logbookadvanced/index.php:398 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:440 #: application/views/lookup/lotwuser.php:14 -#: application/views/qso/edit_ajax.php:393 -#: application/views/qso/edit_ajax.php:426 -#: application/views/qso/edit_ajax.php:454 -#: application/views/qso/edit_ajax.php:467 +#: application/views/qso/edit_ajax.php:420 +#: application/views/qso/edit_ajax.php:453 +#: application/views/qso/edit_ajax.php:481 #: application/views/qso/edit_ajax.php:494 -#: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 +#: application/views/qso/edit_ajax.php:521 +#: application/views/qso/edit_ajax.php:533 application/views/qso/index.php:575 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:210 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:237 -#: application/views/station_profile/create.php:276 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/create.php:292 -#: application/views/station_profile/edit.php:331 -#: application/views/station_profile/edit.php:339 -#: application/views/station_profile/edit.php:365 -#: application/views/station_profile/edit.php:386 -#: application/views/station_profile/edit.php:404 -#: application/views/station_profile/edit.php:411 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 #: application/views/user/edit.php:348 application/views/user/edit.php:359 #: application/views/user/edit.php:370 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:400 @@ -7077,32 +7773,32 @@ msgstr "Да" msgid "No" msgstr "Нет" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 -#: application/views/logbookadvanced/index.php:389 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:416 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 -#: application/views/qso/edit_ajax.php:396 -#: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:497 application/views/qso/index.php:556 +#: application/views/qso/edit_ajax.php:423 +#: application/views/qso/edit_ajax.php:484 +#: application/views/qso/edit_ajax.php:524 application/views/qso/index.php:578 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:225 -#: application/views/view_log/partial/log_ajax.php:143 -#: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +#: src/QSLManager/QSO.php:273 src/QSLManager/QSO.php:318 msgid "Queued" msgstr "В очереди" -#: application/views/logbookadvanced/index.php:304 -#: application/views/logbookadvanced/index.php:314 -#: application/views/logbookadvanced/index.php:346 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:368 -#: application/views/logbookadvanced/index.php:378 -#: application/views/logbookadvanced/index.php:390 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:373 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:417 +#: application/views/logbookadvanced/index.php:427 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -7110,42 +7806,42 @@ msgstr "В очереди" #: application/views/qslprint/qsolist.php:109 #: application/views/qslprint/qsolist.php:174 #: application/views/qslprint/qsolist.php:189 -#: application/views/qso/edit_ajax.php:397 -#: application/views/qso/edit_ajax.php:429 -#: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:470 -#: application/views/qso/edit_ajax.php:498 -#: application/views/qso/edit_ajax.php:509 application/views/qso/index.php:557 +#: application/views/qso/edit_ajax.php:424 +#: application/views/qso/edit_ajax.php:456 +#: application/views/qso/edit_ajax.php:485 +#: application/views/qso/edit_ajax.php:497 +#: application/views/qso/edit_ajax.php:525 +#: application/views/qso/edit_ajax.php:536 application/views/qso/index.php:579 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/search/search_result_ajax.php:305 #: application/views/search/search_result_ajax.php:320 -#: application/views/view_log/partial/log_ajax.php:149 -#: application/views/view_log/partial/log_ajax.php:187 -#: application/views/view_log/partial/log_ajax.php:242 -#: application/views/view_log/partial/log_ajax.php:268 -#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 -#: src/QSLManager/QSO.php:375 src/QSLManager/QSO.php:398 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +#: application/views/view_log/partial/log_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:270 +#: src/QSLManager/QSO.php:279 src/QSLManager/QSO.php:324 +#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:400 msgid "Invalid (Ignore)" msgstr "Некорректно (Игнорировать)" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:335 msgid "QSL received" msgstr "QSL получено" -#: application/views/logbookadvanced/index.php:315 -#: application/views/logbookadvanced/index.php:357 -#: application/views/logbookadvanced/index.php:379 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:428 msgid "Verified" msgstr "Верифицировано" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:346 msgid "QSL send. method" msgstr "Способ отправки QSL" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:359 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -7154,268 +7850,264 @@ msgstr "Способ отправки QSL" #: application/views/qslprint/qsolist.php:77 #: application/views/qslprint/qsolist.php:119 #: application/views/qslprint/qsolist.php:210 -#: application/views/qso/edit_ajax.php:408 -#: application/views/qso/edit_ajax.php:441 application/views/qso/index.php:568 +#: application/views/qso/edit_ajax.php:435 +#: application/views/qso/edit_ajax.php:468 application/views/qso/index.php:590 #: application/views/search/search_result_ajax.php:199 #: application/views/search/search_result_ajax.php:241 -#: application/views/view_log/partial/log_ajax.php:162 -#: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +#: src/QSLManager/QSO.php:296 src/QSLManager/QSO.php:339 msgid "Bureau" msgstr "Бюро" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:360 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 #: application/views/qslprint/qsolist.php:80 #: application/views/qslprint/qsolist.php:122 #: application/views/qslprint/qsolist.php:211 -#: application/views/qso/edit_ajax.php:407 -#: application/views/qso/edit_ajax.php:440 application/views/qso/index.php:567 +#: application/views/qso/edit_ajax.php:434 +#: application/views/qso/edit_ajax.php:467 application/views/qso/index.php:589 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 -#: application/views/view_log/partial/log_ajax.php:165 -#: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +#: src/QSLManager/QSO.php:299 src/QSLManager/QSO.php:342 msgid "Direct" msgstr "Напрямую" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 #: application/views/qslprint/qsolist.php:86 #: application/views/qslprint/qsolist.php:128 #: application/views/qslprint/qsolist.php:212 -#: application/views/qso/edit_ajax.php:409 -#: application/views/qso/edit_ajax.php:442 application/views/qso/index.php:569 +#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:591 #: application/views/search/search_result_ajax.php:208 #: application/views/search/search_result_ajax.php:250 -#: application/views/view_log/partial/log_ajax.php:171 -#: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +#: src/QSLManager/QSO.php:305 src/QSLManager/QSO.php:348 msgid "Electronic" msgstr "Электронное" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:362 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 -#: application/views/qso/edit_ajax.php:410 -#: application/views/qso/edit_ajax.php:443 application/views/qso/index.php:570 +#: application/views/qso/edit_ajax.php:437 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:592 #: application/views/search/search_result_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:206 +#: application/views/view_log/partial/log_ajax.php:208 msgid "Manager" msgstr "Менеджер" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:356 msgid "QSL recv. method" msgstr "Способ получения QSL" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:366 msgid "LoTW sent" msgstr "LoTW отправлен" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:377 msgid "LoTW received" msgstr "LoTW получен" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:388 msgid "Clublog sent" msgstr "Отправлено в Clublog" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:399 msgid "Clublog received" msgstr "Получено из Clublog" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:410 msgid "eQSL sent" msgstr "eQSL отправлено" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "eQSL received" msgstr "eQSL получено" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:436 msgid "QSL Images" msgstr "Изображения QSL" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:448 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "Предупреждение! Вы уверены, что хотите удалить отмеченные QSO?" -#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:451 msgid "With selected: " msgstr "С выбранными: " -#: application/views/logbookadvanced/index.php:425 -#: application/views/qso/edit_ajax.php:595 +#: application/views/logbookadvanced/index.php:452 +#: application/views/qso/edit_ajax.php:622 msgid "Update from Callbook" msgstr "Обновить из колбука" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:453 msgid "Queue Bureau" msgstr "В очередь (бюро)" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:454 msgid "Queue Direct" msgstr "В очередь (напрямую)" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Queue Electronic" msgstr "В очередь (электронно)" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:456 msgid "Sent (Bureau)" msgstr "Отправлено (бюро)" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:457 msgid "Sent (Direct)" msgstr "Отправле (напрямую)" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Sent (Electronic)" msgstr "Отправлено (электронно)" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:459 msgid "Not Sent" msgstr "Не отправлено" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:460 msgid "QSL Not Required" msgstr "QSL не требуется" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Not Received" msgstr "Не получена" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:462 msgid "Received (Bureau)" msgstr "Получено (бюро)" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:463 msgid "Received (Direct)" msgstr "Получено (напрямую)" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Received (Electronic)" msgstr "Получено (электронно)" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:465 msgid "Create ADIF" msgstr "Создать ADIF" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:466 msgid "Print Label" msgstr "Напечатать наклейки" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "QSL Slideshow" msgstr "Слайдшоу QSL" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:472 msgid "Quicksearch with selected: " msgstr "Быстрый поиск с выбранными: " -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:477 msgid "Search DXCC" msgstr "Поиск DXCC" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:480 msgid "Search State" msgstr "Поиск штата" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Search Gridsquare" msgstr "Поиск квадрата" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:486 msgid "Search CQ Zone" msgstr "Поиск зоны CQ" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 msgid "Search ITU Zone" msgstr "Поиск зоны ITU" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:492 msgid "Search Mode" msgstr "Поиск вида модуляции" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:495 msgid "Search Band" msgstr "Поиск диапазона" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:498 msgid "Search IOTA" msgstr "Поиск IOTA" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:501 msgid "Search SOTA" msgstr "Поиск SOTA" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 msgid "Search POTA" msgstr "Поиск POTA" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:507 msgid "Search WWFF" msgstr "Поиск WWFF" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Search Operator" msgstr "Поиск оператора" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:516 msgid "Quickfilters" msgstr "Быстрые фильтры" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "QSL Filters" msgstr "QSL фильтры" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:518 #: application/views/mode/index.php:68 msgid "Filters" msgstr "Фильтры" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "# Результаты" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:527 #: application/views/qso/index.php:272 -#: application/views/station_profile/edit.php:65 +#: application/views/station_profile/edit.php:92 msgid "Location" msgstr "QTH" -#: application/views/logbookadvanced/index.php:506 -msgid "Callsign: " -msgstr "Позывной: " - -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:539 msgid "Dupes" msgstr "Дубликаты" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:547 msgid "Globe map" msgstr "Глобус" -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "от" -#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:605 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "сообщение QSL" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:650 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "Мой QTH локатор" @@ -7443,41 +8135,15 @@ msgstr "Включить via" msgid "Column" msgstr "Столбец" -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/useroptions.php:152 msgctxt "Map Options" msgid "Layer" msgstr "Слой" -#: application/views/logbookadvanced/useroptions.php:149 +#: application/views/logbookadvanced/useroptions.php:153 msgid "Default on" msgstr "По умолчанию включено" -#: application/views/logbookadvanced/useroptions.php:154 -#: application/views/stationsetup/exportmapoptions.php:23 -msgctxt "Map Options" -msgid "Path lines" -msgstr "Траектории" - -#: application/views/logbookadvanced/useroptions.php:158 -msgctxt "Map Options" -msgid "Gridsquares" -msgstr "Квадраты" - -#: application/views/logbookadvanced/useroptions.php:162 -msgctxt "Map Options" -msgid "CQ Zones" -msgstr "Зоны CQ" - -#: application/views/logbookadvanced/useroptions.php:166 -msgctxt "Map Options" -msgid "ITU Zones" -msgstr "Зоны ITU" - -#: application/views/logbookadvanced/useroptions.php:170 -msgctxt "Map Options" -msgid "Night Shadow" -msgstr "Ночная тень" - #: application/views/lookup/index.php:8 msgid "US State" msgstr "Штат США" @@ -7588,60 +8254,64 @@ msgstr "Имеющиеся сертификаты" msgid "Upload Certificate" msgstr "Загрузить сертификат" -#: application/views/lotw_views/index.php:41 +#: application/views/lotw_views/index.php:37 msgid "QSO Start Date" msgstr "Дата начала QSO" -#: application/views/lotw_views/index.php:42 +#: application/views/lotw_views/index.php:38 msgid "QSO End Date" msgstr "Дата окончания QSO" -#: application/views/lotw_views/index.php:43 +#: application/views/lotw_views/index.php:39 msgid "Date Created" msgstr "Дата создания" -#: application/views/lotw_views/index.php:44 +#: application/views/lotw_views/index.php:40 msgid "Date Expires" msgstr "Дата окончания срока действия" -#: application/views/lotw_views/index.php:46 -#: application/views/view_log/qso.php:404 +#: application/views/lotw_views/index.php:42 +#: application/views/view_log/qso.php:407 msgid "Last Upload" msgstr "Последняя загрузка" -#: application/views/lotw_views/index.php:91 +#: application/views/lotw_views/index.php:87 msgid "Expired" msgstr "Истёк" -#: application/views/lotw_views/index.php:93 +#: application/views/lotw_views/index.php:89 msgid "Expiring" msgstr "Истекает" -#: application/views/lotw_views/index.php:105 +#: application/views/lotw_views/index.php:91 +msgid "Valid" +msgstr "Действительный" + +#: application/views/lotw_views/index.php:101 #, php-format msgid "Last success: %s" msgstr "Последнее успеное: %s" -#: application/views/lotw_views/index.php:108 +#: application/views/lotw_views/index.php:104 #, php-format msgid "Last fail: %s" msgstr "Последнее неуспешное: %s" -#: application/views/lotw_views/index.php:114 +#: application/views/lotw_views/index.php:110 msgid "Not Synced" msgstr "Не синхронизирован" -#: application/views/lotw_views/index.php:129 +#: application/views/lotw_views/index.php:125 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" "Вам необходимо загрузить сертификат LoTW в формате p12 для использования " "этих функций." -#: application/views/lotw_views/index.php:144 +#: application/views/lotw_views/index.php:140 msgid "Information" msgstr "Информация" -#: application/views/lotw_views/index.php:149 +#: application/views/lotw_views/index.php:145 msgid "Manual Sync" msgstr "Ручная синхронизация" @@ -7871,6 +8541,14 @@ msgstr "" "Это включает кнопку перехода на страницу Wavelog на Github в публичном " "представлении" +#: application/views/options/appearance.php:107 +msgid "Public Login Button" +msgstr "Кнопка общего входа" + +#: application/views/options/appearance.php:112 +msgid "This enables the button to login to Wavelog in the public view" +msgstr "Включить кнопку для входа в Wavelog в публичном режиме" + #: application/views/options/dxcluster.php:38 msgid "Provider of DXClusterCache" msgstr "Провайдер кэша DXCluster" @@ -8201,7 +8879,7 @@ msgstr "Есть ли дополнительная информация, о ко #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:64 #: application/views/oqrs/showrequests.php:87 -#: application/views/user/main.php:48 application/views/user/profile.php:24 +#: application/views/user/index.php:48 application/views/user/profile.php:24 msgid "E-mail" msgstr "Емэйл" @@ -8224,21 +8902,21 @@ msgstr "Отправить запрос 'не в журнале'" #: application/views/search/search_result_ajax.php:127 #: application/views/user/edit.php:478 #: application/views/view_log/partial/log.php:22 -#: application/views/view_log/partial/log_ajax.php:86 -#: application/views/view_log/qso.php:503 -#: application/views/view_log/qso.php:507 -#: application/views/view_log/qso.php:511 -#: application/views/view_log/qso.php:515 -#: application/views/view_log/qso.php:521 -#: application/views/view_log/qso.php:528 -#: application/views/view_log/qso.php:535 -#: application/views/view_log/qso.php:542 -#: application/views/view_log/qso.php:549 -#: application/views/view_log/qso.php:556 -#: application/views/view_log/qso.php:563 -#: application/views/view_log/qso.php:570 -#: application/views/view_log/qso.php:577 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log_ajax.php:88 +#: application/views/view_log/qso.php:506 +#: application/views/view_log/qso.php:510 +#: application/views/view_log/qso.php:514 +#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:531 +#: application/views/view_log/qso.php:538 +#: application/views/view_log/qso.php:545 +#: application/views/view_log/qso.php:552 +#: application/views/view_log/qso.php:559 +#: application/views/view_log/qso.php:566 +#: application/views/view_log/qso.php:573 +#: application/views/view_log/qso.php:580 +#: application/views/view_log/qso.php:585 msgid "Station" msgstr "Профиль QTH" @@ -8246,10 +8924,10 @@ msgstr "Профиль QTH" #: application/views/qslprint/qslprint.php:28 #: application/views/qslprint/qsolist.php:14 #: application/views/qslprint/qsolist.php:83 -#: application/views/qso/index.php:576 +#: application/views/qso/index.php:598 #: application/views/search/search_result_ajax.php:205 -#: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:300 +#: application/views/view_log/partial/log_ajax.php:170 +#: src/QSLManager/QSO.php:302 msgid "Via" msgstr "via" @@ -8493,7 +9171,7 @@ msgid "Remove" msgstr "Убрать" #: application/views/qslprint/qslprint.php:33 -#: application/views/simplefle/index.php:133 +#: application/views/simplefle/index.php:139 msgid "QSO List" msgstr "Список QSO" @@ -8541,35 +9219,20 @@ msgstr "" "Никаких дополнительных QSO не было найдено. Это означает, что они, вероятно, " "уже находятся в очереди." -#: application/views/qso/components/winkeysettings.php:7 -#: application/views/qso/components/winkeysettings_results.php:7 -msgid "Winkey Macros" -msgstr "Макросы Winkey" - -#: application/views/qso/components/winkeysettings.php:12 -#: application/views/qso/components/winkeysettings.php:28 -#: application/views/qso/components/winkeysettings.php:44 -#: application/views/qso/components/winkeysettings.php:60 -#: application/views/qso/components/winkeysettings.php:76 -#: application/views/qso/components/winkeysettings_results.php:12 -#: application/views/qso/components/winkeysettings_results.php:28 -#: application/views/qso/components/winkeysettings_results.php:44 -#: application/views/qso/components/winkeysettings_results.php:60 -#: application/views/qso/components/winkeysettings_results.php:76 -#, php-format -msgid "Function %d - Name" -msgstr "Функция %d - Название" - +#: 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:83 -#: application/views/qso/components/winkeysettings_results.php:19 -#: application/views/qso/components/winkeysettings_results.php:35 -#: application/views/qso/components/winkeysettings_results.php:51 -#: application/views/qso/components/winkeysettings_results.php:67 -#: application/views/qso/components/winkeysettings_results.php:83 +#, 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 #, php-format msgid "Function %d - Macro" msgstr "Функция %d - Макрос" @@ -8595,7 +9258,8 @@ msgid "RX Band" msgstr "Диапазон приёма" #: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:346 -#: application/views/view_log/qso.php:542 +#: application/views/reg1test/index.php:114 +#: application/views/view_log/qso.php:545 msgid "Transmit Power (W)" msgstr "Мощность передачи (Вт)" @@ -8607,10 +9271,6 @@ msgstr "Укажите мощность в Ваттах (только цифры msgid "Used for VUCC MultiGrids" msgstr "Используется для мультиквадратов VUCC" -#: application/views/qso/edit_ajax.php:177 -msgid "QTH" -msgstr "QTH" - #: application/views/qso/edit_ajax.php:258 msgid "Sat Name" msgstr "Название спутника" @@ -8619,71 +9279,87 @@ msgstr "Название спутника" msgid "Sat Mode" msgstr "Вид модуляции (для спутника)" -#: application/views/qso/edit_ajax.php:356 application/views/qso/index.php:255 -#: application/views/qso/index.php:500 application/views/user/edit.php:599 -#: application/views/view_log/qso.php:332 -#: application/views/view_log/qso.php:582 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:545 +msgid "Antenna Azimuth (°)" +msgstr "Азимут антенны (°)" + +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:547 +msgid "Antenna azimuth in decimal degrees." +msgstr "Азимут антенны в десятичных градусах." + +#: application/views/qso/edit_ajax.php:274 application/views/qso/index.php:551 +msgid "Antenna Elevation (°)" +msgstr "Возвышение антенны (°)" + +#: application/views/qso/edit_ajax.php:276 application/views/qso/index.php:553 +msgid "Antenna elevation in decimal degrees." +msgstr "Возвышение антенны в десятичных градусах." + +#: application/views/qso/edit_ajax.php:383 application/views/qso/index.php:255 +#: application/views/qso/index.php:510 application/views/user/edit.php:599 +#: application/views/view_log/qso.php:335 +#: application/views/view_log/qso.php:585 msgid "Sig Info" msgstr "Информация Sig" -#: application/views/qso/edit_ajax.php:369 +#: application/views/qso/edit_ajax.php:396 msgid "Notes (for internal usage only)" msgstr "Заметки (для внутреннего использования)" -#: application/views/qso/edit_ajax.php:403 +#: application/views/qso/edit_ajax.php:430 msgid "Sent Method" msgstr "Способ отправки" -#: application/views/qso/edit_ajax.php:406 -#: application/views/qso/edit_ajax.php:439 application/views/qso/index.php:563 -#: application/views/qso/index.php:566 +#: application/views/qso/edit_ajax.php:433 +#: application/views/qso/edit_ajax.php:466 application/views/qso/index.php:585 +#: application/views/qso/index.php:588 msgid "Method" msgstr "Способ" -#: application/views/qso/edit_ajax.php:416 +#: application/views/qso/edit_ajax.php:443 msgid "Sent Via" msgstr "Отправлено через" -#: application/views/qso/edit_ajax.php:430 -#: application/views/qso/edit_ajax.php:471 -#: application/views/qso/edit_ajax.php:510 +#: application/views/qso/edit_ajax.php:457 +#: application/views/qso/edit_ajax.php:498 +#: application/views/qso/edit_ajax.php:537 msgid "Verified (Match)" msgstr "Проверено (Совпадает)" -#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:463 msgid "Received Method" msgstr "Способ получения" -#: application/views/qso/edit_ajax.php:477 application/views/qso/index.php:583 +#: application/views/qso/edit_ajax.php:504 application/views/qso/index.php:605 msgid "This note content is exported to QSL services like eqsl.cc." msgstr "" "Содержимое этой заметки экспортируется в QSL сервисы, к примеру, eqsl.cc и т." "п." -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:586 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:608 msgid "Get the default message for eQSL, for this station." msgstr "Сообщение в eQSL по умолчанию для этого профиля QTH." -#: application/views/qso/edit_ajax.php:530 +#: application/views/qso/edit_ajax.php:557 msgid "Change Station Profile" msgstr "Изменть профиль QTH" -#: application/views/qso/edit_ajax.php:576 +#: application/views/qso/edit_ajax.php:603 msgid "Exchange (R)" msgstr "Контрольный номер (RX)" -#: application/views/qso/edit_ajax.php:581 +#: application/views/qso/edit_ajax.php:608 msgid "Exchange (S)" msgstr "Контрольный номер (TX)" -#: application/views/qso/edit_ajax.php:593 +#: application/views/qso/edit_ajax.php:620 #: application/views/search/search_result_ajax.php:432 #: application/views/view_log/partial/log.php:156 -#: application/views/view_log/partial/log_ajax.php:346 +#: application/views/view_log/partial/log_ajax.php:348 msgid "Delete QSO" msgstr "Удалить QSO" -#: application/views/qso/edit_ajax.php:596 +#: application/views/qso/edit_ajax.php:623 msgid "Save changes" msgstr "Сохранить изменения" @@ -8691,7 +9367,7 @@ msgstr "Сохранить изменения" msgid "TimeOff is less than TimeOn" msgstr "Время окончания меньше времени начала" -#: application/views/qso/index.php:5 application/views/qso/index.php:694 +#: application/views/qso/index.php:5 application/views/qso/index.php:718 msgid "Previous Contacts" msgstr "Предыдущие QSO" @@ -8731,23 +9407,23 @@ msgstr "Время окончания" msgid "Search DXCluster for latest Spot" msgstr "Поиск в DX кластере последнего спота" -#: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:149 -#: application/views/station_profile/edit.php:191 -#: application/views/user/edit.php:583 application/views/view_log/qso.php:282 -#: application/views/view_log/qso.php:549 +#: application/views/qso/index.php:196 application/views/qso/index.php:449 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 +#: application/views/user/edit.php:583 application/views/view_log/qso.php:285 +#: application/views/view_log/qso.php:552 msgid "IOTA Reference" msgstr "Справочник IOTA" -#: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:165 -#: application/views/station_profile/edit.php:219 -#: application/views/user/edit.php:587 application/views/view_log/qso.php:289 -#: application/views/view_log/qso.php:556 +#: application/views/qso/index.php:212 application/views/qso/index.php:466 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 +#: application/views/user/edit.php:587 application/views/view_log/qso.php:292 +#: application/views/view_log/qso.php:559 msgid "SOTA Reference" msgstr "Справочник SOTA" -#: application/views/qso/index.php:322 application/views/view_log/qso.php:98 +#: application/views/qso/index.php:322 application/views/view_log/qso.php:100 msgid "Frequency (RX)" msgstr "Частота (RX)" @@ -8755,39 +9431,39 @@ msgstr "Частота (RX)" msgid "Band (RX)" msgstr "Диапазон (RX)" -#: application/views/qso/index.php:458 +#: application/views/qso/index.php:468 msgid "For example: GM/NS-001." msgstr "Например: GM/NS-001." -#: application/views/qso/index.php:471 +#: application/views/qso/index.php:481 msgid "For example: DLFF-0069." msgstr "Например: DLFF-0069." -#: application/views/qso/index.php:484 +#: application/views/qso/index.php:494 msgid "For example: PA-0150. Multiple values allowed." msgstr "Например: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:496 +#: application/views/qso/index.php:506 msgid "For example: GMA" msgstr "Например: GMA" -#: application/views/qso/index.php:502 +#: application/views/qso/index.php:512 msgid "For example: DA/NW-357" msgstr "Например: DA/NW-357" -#: application/views/qso/index.php:510 +#: application/views/qso/index.php:520 msgid "For example: Q03" msgstr "Например: Q03" -#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +#: application/views/qso/index.php:529 application/views/view_log/qso.php:210 msgid "Satellite Name" msgstr "Название спутника" -#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +#: application/views/qso/index.php:537 application/views/view_log/qso.php:217 msgid "Satellite Mode" msgstr "Вид модуляции (для спутника)" -#: application/views/qso/index.php:538 +#: application/views/qso/index.php:560 msgid "" "Note content is used within Wavelog only and is not exported to other " "services." @@ -8795,27 +9471,47 @@ msgstr "" "Содержание заметки используется только Wavelog и не экспортируется на другие " "сервисы." -#: application/views/qso/index.php:604 +#: application/views/qso/index.php:626 msgid "Reset to Default" msgstr "Сброс на настройки по умолчанию" -#: application/views/qso/index.php:645 +#: application/views/qso/index.php:667 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:647 +#: application/views/qso/index.php:669 msgid "Connect" msgstr "Подключить" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:678 +msgid "Stop" +msgstr "Стоп" + +#: application/views/qso/index.php:679 +msgid "Tune" +msgstr "Настройка" + +#: application/views/qso/index.php:680 +msgid "Stop Tune" +msgstr "Остановить настройку" + +#: application/views/qso/index.php:686 +msgid "CW Speed" +msgstr "Скорость CW" + +#: application/views/qso/index.php:691 +msgid "Send" +msgstr "Отправить" + +#: application/views/qso/index.php:701 msgid "Suggestions" msgstr "Предложения" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:708 msgid "Profile Picture" msgstr "Изображение профиля" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:732 msgid "Max. 5 previous contacts are shown" msgstr "Показываются максимум 5 предыдущих QSO" @@ -8842,11 +9538,154 @@ msgstr "О том, как использовать %s, вы можете узн #: application/views/radio/index.php:22 msgid "radio functions" -msgstr "функции радиостанции" +msgstr "интерфейс радиостанции" #: application/views/radio/index.php:27 msgid "Please wait..." +msgstr "Пожалуйста, подождите..." + +#: application/views/reg1test/index.php:6 +msgid "Select Band" +msgstr "Выбрать диапазон" + +#: application/views/reg1test/index.php:8 +msgid "" +"Bands below 50Mhz are not valid for the EDI REG1TEST format and will produce " +"invalid files." msgstr "" +"Диапазоны ниже 50 МГц не подходят для формата EDI REG1TEST и приведут к " +"созданию недействительных файлов." + +#: application/views/reg1test/index.php:18 +msgid "Export a contest to a REG1TEST EDI log" +msgstr "Экспортировать соревнование в журнал REG1TEST EDI" + +#: application/views/reg1test/index.php:48 +msgid "Sent Exchange" +msgstr "Отправленный контрольный номер" + +#: application/views/reg1test/index.php:50 +msgid "" +"The exchange which was sent during the contest. Can be any type of " +"information, e.g. Province, DOK, County, State, Power, Name. Max. length: 6 " +"characters." +msgstr "" +"Контрольный номер, отправленный во время контеста. Может быть любая " +"информация, например, провинция, DOK, округ, штат, мощность, имя. " +"Максимальная длина: 6 символов." + +#: 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 "" +"Описывает позывной радиоклуба, членом которого является оператор(ы). " +"Например, может использоваться, если очки начисляются клубу." + +#: application/views/reg1test/index.php:66 +msgid "Callsign of responsible operator" +msgstr "Позывной ответственного оператора" + +#: application/views/reg1test/index.php:72 +msgid "" +"List of all operators. Seperated with a semicolon ';'. The responsible " +"operator is not needed here." +msgstr "" +"Список всех операторов. Разделены точкой с запятой ';'. Ответственный " +"оператор здесь не нужен." + +#: application/views/reg1test/index.php:75 +msgid "Contest Address 1" +msgstr "Адрес контеста 1" + +#: application/views/reg1test/index.php:77 +msgid "Address of the QTH used during the contest." +msgstr "Адрес QTH, использованный во время контеста." + +#: application/views/reg1test/index.php:80 +msgid "Contest Address 2" +msgstr "Адрес контеста 2" + +#: application/views/reg1test/index.php:84 +msgid "Operator Address 1" +msgstr "Адрес оператора 1" + +#: application/views/reg1test/index.php:86 +msgid "Address of the responsible operator." +msgstr "Адрес ответственного оператора." + +#: application/views/reg1test/index.php:89 +msgid "Operator Address 2" +msgstr "Адрес оператора 2" + +#: application/views/reg1test/index.php:93 +msgid "Operator Address Postalcode" +msgstr "Почтовый индекс (адрес оператора)" + +#: application/views/reg1test/index.php:97 +msgid "Operator Address City" +msgstr "Город (адрес оператора)" + +#: application/views/reg1test/index.php:101 +msgid "Operator Address Country" +msgstr "Страна (Оператор Адрес)" + +#: application/views/reg1test/index.php:105 +msgid "Operator Phone Number" +msgstr "Номер телефона оператора" + +#: application/views/reg1test/index.php:109 +msgid "Transmit Equipment Description" +msgstr "Описание передающего оборудования" + +#: application/views/reg1test/index.php:111 +msgid "Short description of the used equipment." +msgstr "Краткое описание используемого оборудования." + +#: application/views/reg1test/index.php:116 +msgid "TX Power during the contest in Watt." +msgstr "Мощность передатчика во время контеста в ваттах." + +#: application/views/reg1test/index.php:119 +msgid "Receive Equipment Description" +msgstr "Описание приёмного оборудования" + +#: application/views/reg1test/index.php:121 +msgid "If you used another gear for RX, then describe it here." +msgstr "" +"Если вы использовали другое оборудование для приема, то опишите его здесь." + +#: application/views/reg1test/index.php:124 +msgid "Antenna Description" +msgstr "Описание антенны" + +#: application/views/reg1test/index.php:126 +msgid "What kind of antenna was used." +msgstr "Какая антенна использовалась." + +#: application/views/reg1test/index.php:129 +msgid "Antenna Height Above Ground (m)" +msgstr "Высота антенны над землей (м)" + +#: application/views/reg1test/index.php:131 +msgid "Height of the antenna above the ground." +msgstr "Высота антенны над землей." + +#: application/views/reg1test/index.php:134 +msgid "Band multiplicator" +msgstr "Множитель диапазона" + +#: 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 "" +"Множитель диапазона. Обычно это 1. Изменяйте это только при необходимости в " +"соответствии с правилами подсчета очков в контесте." + +#: application/views/reg1test/index.php:141 +msgid "Any other remarks." +msgstr "Любые другие замечания." #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 @@ -8935,11 +9774,72 @@ msgstr "Добавить спутник" #: application/views/satellite/pass.php:2 msgid "Satellite passes" -msgstr "" +msgstr "Прохождения спутника" -#: application/views/satellite/pass.php:548 +#: application/views/satellite/pass.php:8 +msgid "Min. Satellite Elevation" +msgstr "Мин. возвышение спутника" + +#: application/views/satellite/pass.php:12 +msgid "Min. Azimuth" +msgstr "Мин. азимут" + +#: application/views/satellite/pass.php:20 +msgid "Max. Azimuth" +msgstr "Макс. азимут" + +#: application/views/satellite/pass.php:32 +msgid "Altitude (meters)" +msgstr "Высота (метры)" + +#: application/views/satellite/pass.php:36 application/views/user/edit.php:179 +msgid "Timezone" +msgstr "Часовой пояс" + +#: application/views/satellite/pass.php:479 +msgid "Min. time" +msgstr "Мин. время" + +#: application/views/satellite/pass.php:487 +msgid "Max. time" +msgstr "Макс. время" + +#: application/views/satellite/pass.php:504 msgid "Load predictions" -msgstr "" +msgstr "Загрузить прогнозы" + +#: application/views/satellite/passtable.php:6 +msgid "AOS Time" +msgstr "Время AOS" + +#: application/views/satellite/passtable.php:7 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "Продолжительность" + +#: application/views/satellite/passtable.php:8 +msgid "AOS Az" +msgstr "AOS Аз" + +#: application/views/satellite/passtable.php:9 +msgid "AOS El" +msgstr "AOS Возв" + +#: application/views/satellite/passtable.php:10 +msgid "Max El" +msgstr "Макс Возв" + +#: application/views/satellite/passtable.php:11 +msgid "LOS Time" +msgstr "Время LOS" + +#: application/views/satellite/passtable.php:12 +msgid "LOS Az" +msgstr "LOS Аз" + +#: application/views/satellite/passtable.php:13 +msgid "LOS El" +msgstr "LOS Возв" #: application/views/sattimers/index.php:15 #, php-format @@ -8963,10 +9863,6 @@ msgstr "Азимут" msgid "Max Elevation" msgstr "Возвышение" -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "Продолжительность" - #: application/views/search/cqzones.php:5 #: application/views/search/lotw_unconfirmed.php:5 #: application/views/search/main.php:5 @@ -9077,50 +9973,50 @@ msgstr "Получено" #: application/views/search/search_result_ajax.php:409 #: application/views/view_log/partial/log.php:140 -#: application/views/view_log/partial/log_ajax.php:323 +#: application/views/view_log/partial/log_ajax.php:325 msgid "Mark QSL Sent (Bureau)" msgstr "Отметить QSL отправленной (через бюро)" #: application/views/search/search_result_ajax.php:410 #: application/views/view_log/partial/log.php:141 -#: application/views/view_log/partial/log_ajax.php:324 +#: application/views/view_log/partial/log_ajax.php:326 msgid "Mark QSL Sent (Direct)" msgstr "Отметить QSL отправленой (напрямую)" #: application/views/search/search_result_ajax.php:417 #: application/views/view_log/partial/log.php:148 -#: application/views/view_log/partial/log_ajax.php:333 -#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log_ajax.php:335 +#: application/views/view_log/qso.php:655 msgid "Mark QSL Received (Bureau)" msgstr "Отметить QSL полученной (через бюро)" #: application/views/search/search_result_ajax.php:418 #: application/views/view_log/partial/log.php:149 -#: application/views/view_log/partial/log_ajax.php:334 -#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log_ajax.php:336 +#: application/views/view_log/qso.php:657 msgid "Mark QSL Received (Direct)" msgstr "Отметить QSL полученной (напрямую)" #: application/views/search/search_result_ajax.php:419 #: application/views/view_log/partial/log.php:150 -#: application/views/view_log/partial/log_ajax.php:325 +#: application/views/view_log/partial/log_ajax.php:327 msgid "Mark QSL Card Requested" msgstr "Отметить запрос QSL-карточки" #: application/views/search/search_result_ajax.php:420 #: application/views/view_log/partial/log.php:151 -#: application/views/view_log/partial/log_ajax.php:326 -#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log_ajax.php:328 +#: application/views/view_log/qso.php:669 msgid "Mark QSL Card Not Required" msgstr "Отметить QSL-карточка не требуется" #: application/views/search/search_result_ajax.php:426 -#: application/views/view_log/partial/log_ajax.php:340 +#: application/views/view_log/partial/log_ajax.php:342 msgid "Lookup on QRZ.com" msgstr "Поиск в QRZ.com" #: application/views/search/search_result_ajax.php:428 -#: application/views/view_log/partial/log_ajax.php:342 +#: application/views/view_log/partial/log_ajax.php:344 msgid "Lookup on HamQTH" msgstr "Поиск в HamQTH" @@ -9165,7 +10061,7 @@ msgstr "" "и работе FLE можно найти в %s." #: application/views/simplefle/index.php:17 -#: application/views/simplefle/index.php:170 +#: application/views/simplefle/index.php:176 msgid "Syntax Help" msgstr "Помощь по синтаксису" @@ -9263,11 +10159,10 @@ msgstr "Позывной/Профиль QTH" #: application/views/simplefle/index.php:107 #, php-format msgid "" -"If you did operate from a new location, first create a new Station Location" +"If you did operate from a new location, first create a new %sStation " +"Location%s" msgstr "" -"Если вы работали с нового места, сначала создайте новый профиль " -"QTH" +"Если вы работали с нового места, сначала создайте новое %sStation Location%s" #: application/views/simplefle/index.php:112 msgid "e.g. OK2CQR" @@ -9281,25 +10176,24 @@ msgstr "Это позывной оператора. Без каких-либо msgid "Enter the Data" msgstr "Введите данные" -#: application/views/simplefle/index.php:148 +#: application/views/simplefle/index.php:154 msgid "Refs" msgstr "Референции" -#: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" -msgstr "" -"Референции могут быть: SOTA, IOTA, POTA или WWFF" +#: application/views/simplefle/index.php:166 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" +msgstr "Рефы могут быть либо %sS%sOTA, %sI%sOTA, %sP%sOTA, либо %sW%sWFF" -#: application/views/simplefle/index.php:167 +#: application/views/simplefle/index.php:173 msgid "Reload QSO List" msgstr "Перезагрузить список QSO" -#: application/views/simplefle/index.php:168 +#: application/views/simplefle/index.php:174 msgid "Save in Wavelog" msgstr "Сохранить в Wavelog" -#: application/views/simplefle/index.php:169 +#: application/views/simplefle/index.php:175 msgid "Clear Logging Session" msgstr "Очистить сессию" @@ -9376,124 +10270,123 @@ msgstr "" #: application/views/simplefle/syntax_help.php:28 #, php-format -msgctxt "uses 'this article'" msgid "" -"A full summary of all commands and the necessary syntax can be found in %s " -"of our Wiki." +"A full summary of all commands and the necessary syntax can be found in " +"%sthis article%s of our Wiki." msgstr "" -"Полное описание всех команд и необходимый синтаксис можно найти в %s нашей " -"Вики." +"Полное описание всех команд и необходимого синтаксиса можно найти в %sэтой " +"статье%s нашей Вики." -#: application/views/station_profile/create.php:51 -#: application/views/station_profile/edit.php:40 +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 msgid "Location Name" msgstr "Название профиля QTH" -#: application/views/station_profile/create.php:52 -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "Домашний QTH" -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "Короткое название профиля QTH. К примеру: %s" -#: application/views/station_profile/create.php:59 -#: application/views/station_profile/edit.php:48 +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 msgid "Station callsign. For example: 4W7EST/P" msgstr "Позывной станции, например: 4W7EST/P" -#: application/views/station_profile/create.php:63 -#: application/views/station_profile/edit.php:52 +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 msgid "Station Power (W)" msgstr "Мощность станции (Вт)" -#: application/views/station_profile/create.php:65 -#: application/views/station_profile/edit.php:54 +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 msgid "Default station power in Watt. Overwritten by CAT." msgstr "Мощность станции по умолчанию в Вт. Перезаписывается данными из CAT." -#: application/views/station_profile/create.php:68 -#: application/views/station_profile/edit.php:69 +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 msgid "Station DXCC" msgstr "DXCC станции" -#: application/views/station_profile/create.php:71 -#: application/views/station_profile/edit.php:72 +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 msgctxt "DXCC selection" msgid "None" msgstr "нет" -#: application/views/station_profile/create.php:78 -#: application/views/station_profile/edit.php:85 +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 msgid "Station DXCC entity. For example: Bolivia" msgstr "Субъект DXCC станции. Например: Боливия" -#: application/views/station_profile/create.php:83 -#: application/views/station_profile/edit.php:91 +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 msgid "Station City" msgstr "город" -#: application/views/station_profile/create.php:85 -#: application/views/station_profile/edit.php:93 +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 msgid "Station city. For example: Oslo" msgstr "Город станции. К примеру, Осло" -#: application/views/station_profile/create.php:94 -#: application/views/station_profile/edit.php:105 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 msgid "Station state. Applies to certain countries only." msgstr "Штат/область станции. Применимо только к некоторым странам." -#: application/views/station_profile/create.php:99 -#: application/views/station_profile/edit.php:110 +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 msgid "Station County" msgstr "Графство/район" -#: application/views/station_profile/create.php:101 -#: application/views/station_profile/edit.php:112 +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "Графство/район станции. (Используется только для некоторых стран)." -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/edit.php:138 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "Если вы не знаете свою зону CQ, то %s, чтобы найти ее!" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:138 -#: application/views/station_profile/edit.php:155 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 msgid "click here" msgstr "кликните здесь" -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/edit.php:155 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "Если вы не знаете свою зону ITU, то %s, чтобы найти ее!" -#: application/views/station_profile/create.php:135 -#: application/views/station_profile/edit.php:167 -#: application/views/station_profile/edit.php:170 +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 msgid "Station Gridsquare" msgstr "Квадрат" -#: application/views/station_profile/create.php:140 -#: application/views/station_profile/edit.php:175 +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 msgid "Get Gridsquare" msgstr "Получить квадрат" -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 #, php-format msgctxt "uses 'click here'" msgid "" @@ -9502,8 +10395,8 @@ msgid "" msgstr "" "Квадрат станции, например: HM54AP. Если вы не знаете свой квадрат, то %s!" -#: application/views/station_profile/create.php:145 -#: application/views/station_profile/edit.php:180 +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." @@ -9511,95 +10404,95 @@ msgstr "" "Если вы располагаетесь на границе квадратов, то укажите квадраты через " "запятую, к примеру: IO77,IO78,IO87,IO88." -#: application/views/station_profile/create.php:160 -#: application/views/station_profile/edit.php:205 +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 msgid "Station IOTA reference. For example: EU-005" msgstr "Референция IOTA станции, к примеру: EU-005" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 msgid "IOTA World website" msgstr "Веб-сайт IOTA" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 #, php-format msgid "You can look up IOTA references at the %s." msgstr "Референции IOTA можно найти на сайте %s." -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 msgid "SOTA Maps website" msgstr "Веб-сайт карт SOTA" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "Референция SOTA станции. Ссылки на референции SOTA можно найти на %s." -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 msgid "GMA Map website" msgstr "Веб-сайт карт GMA" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "Референция WWFF станции. Ссылки на референции WWFF можно найти на %s." -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 msgid "POTA Map website" msgstr "Веб-сайт карт POTA" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 #, php-format msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " "look up POTA references at the %s." msgstr "Референция POTA станции. Ссылки на референции POTA можно найти на %s." -#: application/views/station_profile/create.php:183 -#: application/views/station_profile/edit.php:260 +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 msgid "Signature Name" msgstr "Имя подписи" -#: application/views/station_profile/create.php:185 -#: application/views/station_profile/edit.php:262 +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 msgid "Station Signature (e.g. GMA).." msgstr "Подпись станции (т.е. GMA).." -#: application/views/station_profile/create.php:189 -#: application/views/station_profile/edit.php:266 +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 msgid "Signature Information" msgstr "Информация о подписи" -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/edit.php:268 +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "Информация о подписис станции (т.е. DA/NW-357)." -#: application/views/station_profile/create.php:195 -#: application/views/station_profile/edit.php:281 +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "eQSL QTH Nickname" -#: application/views/station_profile/create.php:197 -#: application/views/station_profile/edit.php:283 +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "Название профиля, который сконфигурирован в eQSL для данного QTH" -#: application/views/station_profile/create.php:201 -#: application/views/station_profile/edit.php:286 +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 msgid "Default QSLMSG" msgstr "Сообщение в QSL (QSLMSG) по умолчанию" -#: application/views/station_profile/create.php:204 -#: application/views/station_profile/edit.php:289 +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." @@ -9607,13 +10500,13 @@ msgstr "" "Определите сообщение по умолчанию, которое будет заполняться и отправляться " "при каждом QSO для данного профиля QTH." -#: application/views/station_profile/create.php:207 -#: application/views/station_profile/edit.php:328 +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 msgid "Ignore Clublog Upload" msgstr "Игнорировать загрузку в Clublog" -#: application/views/station_profile/create.php:212 -#: application/views/station_profile/edit.php:333 +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " "Clublog. If this is deactivated on it's own please check if the Call is " @@ -9623,201 +10516,139 @@ msgstr "" "загружаться в Clublog. Если эта функция отключилась самостоятельно, " "проверьте, правильно ли настроен позыной в Clublog" -#: application/views/station_profile/create.php:215 -#: application/views/station_profile/edit.php:336 +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 msgid "ClubLog Realtime Upload" msgstr "Загрузка в Clublog в реальном времени" -#: application/views/station_profile/create.php:224 -#: application/views/station_profile/edit.php:352 +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 msgid "HRDLog.net Username" msgstr "Имя пользователя в HRDLog.net" -#: application/views/station_profile/create.php:226 -#: application/views/station_profile/edit.php:354 +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" "Имя пользователя, под которым вы зарегистрированы на сайте HRDlog.net " "(обычно это ваш позывной)." -#: application/views/station_profile/create.php:229 -#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 msgid "HRDLog.net API Key" msgstr "Ключ API HRDLog.net" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "Создайте код API на вашей %s" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 msgid "HRDLog.net Userprofile page" msgstr "странице профиля пользователя на HRDLog.net" -#: application/views/station_profile/create.php:234 -#: application/views/station_profile/edit.php:362 +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 msgid "HRDLog.net Logbook Realtime Upload" msgstr "Загрузка в журнал HRDLog.net в реальном времени" -#: application/views/station_profile/create.php:243 -#: application/views/station_profile/edit.php:297 +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 msgid "Subscription Required" msgstr "Требуется подписка" -#: application/views/station_profile/create.php:248 +#: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "Ключ API QRZ.com Logbook" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "Проверить ключ API" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "Ваши ключи API находятся на %s" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 msgid "the QRZ.com Logbook settings page" msgstr "странице настроек QRZ.com Logbook" -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/edit.php:310 +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 msgid "QRZ.com Logbook Upload" msgstr "Загрузка в QRZ.com Logbook" -#: application/views/station_profile/create.php:260 -#: application/views/station_profile/edit.php:313 +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 msgid "Realtime" msgstr "В реальном времени" -#: application/views/station_profile/create.php:268 -#: application/views/station_profile/edit.php:378 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "Ключ API QO-100 Dx Club" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "Создайте ключ API на своей %s" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 msgid "QO-100 Dx Club's profile page" msgstr "странице профиля в QO-100 Dx Club" -#: application/views/station_profile/create.php:273 -#: application/views/station_profile/edit.php:383 +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 msgid "QO-100 Dx Club Realtime Upload" msgstr "Загрузка QO-100 Dx Club в реальном времени" -#: application/views/station_profile/create.php:283 -#: application/views/station_profile/edit.php:401 +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 msgid "OQRS Enabled" msgstr "OQRS включен" -#: application/views/station_profile/create.php:290 -#: application/views/station_profile/edit.php:408 +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 msgid "OQRS Email alert" msgstr "Оповещение о OQRS о емэйл" -#: application/views/station_profile/create.php:295 -#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 msgid "Make sure email is set up under admin and global options." msgstr "" "Убедитесь, что емэйл сконфигурирован администратором в общих настройках." -#: application/views/station_profile/create.php:298 -#: application/views/station_profile/edit.php:416 +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 msgid "OQRS Text" msgstr "Текст OQRS" -#: application/views/station_profile/create.php:300 -#: application/views/station_profile/edit.php:418 +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 msgid "Some info you want to add regarding QSL'ing." msgstr "Информация, которую вы хотите добавить, касающаяся QSL." -#: application/views/station_profile/edit.php:122 +#: application/views/station_profile/edit.php:149 msgid "Zones" msgstr "Зоны" -#: application/views/station_profile/edit.php:257 +#: application/views/station_profile/edit.php:284 msgid "Signature" msgstr "Подпись" -#: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:95 -msgid "" -"Station Locations define operating locations, such as your QTH, a friends " -"QTH, or a portable station." -msgstr "" -"Профили QTH определяют места работы, например, ваш QTH, QTH друзей или " -"портативная станция." - -#: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:96 -msgid "Similar to logbooks, a station profile keeps a set of QSOs together." -msgstr "Также, как и журнал, профиль QTH объединяет набор QSO." - -#: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:97 -msgid "" -"Only one station may be active at a time. In the table below this is shown " -"with the -Active Station- badge." -msgstr "" -"Только один профиль QTH может быть активен в каждый момент. В таблице ниже " -"он отмечена меткой -Активный профиль QTH-." - -#: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:101 -msgid "Create a Station Location" -msgstr "Создать профиль QTH" - -#: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:105 -msgid "" -"Attention: You need to set an active station location. Go to Callsign-" -">Station Location to select one." -msgstr "" -"Внимание. Вам нужно установить активный профиль QTH. Перейдите в меню " -"Позывной->профили QTH, чтобы выбрать активный профиль." - -#: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:111 -msgid "" -"Due to recent changes within Wavelog you need to reassign QSOs to your " -"station profiles." -msgstr "" -"Из-за недавних изменений в Wavelog вам нужно переназначить QSO вашим " -"профилям станции." - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Maintenance" -msgstr "Обслуживание" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Please reassign them at " -msgstr "Пожалуйста, переназначьте их в " - -#: application/views/station_profile/index.php:41 -#: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:122 -msgid "Profile Name" -msgstr "Название профиля" - #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "Имя журнала" @@ -9865,6 +10696,11 @@ msgstr "Выберите доступный профиль QTH" msgid "Link Location" msgstr "Привязать профиль QTH" +#: application/views/stationsetup/linkedlocations.php:31 +#: application/views/stationsetup/stationsetup.php:122 +msgid "Profile Name" +msgstr "Название профиля" + #: application/views/stationsetup/linkedlocations.php:34 msgid "Unlink Station Location" msgstr "Отвязать профиль QTH" @@ -9892,6 +10728,26 @@ msgstr "Публичная страница" msgid "Station Locations" msgstr "Профили QTH" +#: application/views/stationsetup/stationsetup.php:95 +msgid "" +"Station Locations define operating locations, such as your QTH, a friends " +"QTH, or a portable station." +msgstr "" +"Профили QTH определяют места работы, например, ваш QTH, QTH друзей или " +"портативная станция." + +#: application/views/stationsetup/stationsetup.php:96 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "Также, как и журнал, профиль QTH объединяет набор QSO." + +#: application/views/stationsetup/stationsetup.php:97 +msgid "" +"Only one station may be active at a time. In the table below this is shown " +"with the -Active Station- badge." +msgstr "" +"Только один профиль QTH может быть активен в каждый момент. В таблице ниже " +"он отмечена меткой -Активный профиль QTH-." + #: application/views/stationsetup/stationsetup.php:98 msgid "" "The 'Linked' column shows if the station location is linked with the Active " @@ -9900,6 +10756,34 @@ msgstr "" "Столбец \"Привязка\" показывает привязан ли профиль QTH к активному журналу, " "выбранному выше." +#: application/views/stationsetup/stationsetup.php:101 +msgid "Create a Station Location" +msgstr "Создать профиль QTH" + +#: application/views/stationsetup/stationsetup.php:105 +msgid "" +"Attention: You need to set an active station location. Go to Callsign-" +">Station Location to select one." +msgstr "" +"Внимание. Вам нужно установить активный профиль QTH. Перейдите в меню " +"Позывной->профили QTH, чтобы выбрать активный профиль." + +#: application/views/stationsetup/stationsetup.php:111 +msgid "" +"Due to recent changes within Wavelog you need to reassign QSOs to your " +"station profiles." +msgstr "" +"Из-за недавних изменений в Wavelog вам нужно переназначить QSO вашим " +"профилям станции." + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Maintenance" +msgstr "Обслуживание" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Please reassign them at " +msgstr "Пожалуйста, переназначьте их в " + #: application/views/stationsetup/stationsetup.php:127 msgid "Linked" msgstr "Привязка" @@ -10137,12 +11021,13 @@ msgid "4. Step" msgstr "4. Шаг" #: application/views/themes/index.php:73 +#, php-format msgid "" "Click here on 'Add a Theme' and type in the necessary data. Type in the " -"filenames for the logos without the file extension '.png'" +"filenames for the logos %swithout%s the file extension '.png'" msgstr "" -"Кликните по 'Добавить тему' и укажите необходимые данные. Укажите имена " -"файлов для логотипов без расширения файла '.png'" +"Нажмите здесь на «Добавить тему» и введите необходимые данные. Введите имена " +"файлов для логотипов %sбез%s расширения файла «.png»" #: application/views/themes/index.php:83 msgid "Foldername" @@ -10209,6 +11094,10 @@ msgstr "Проверить обновления данных DXCC" msgid "Update DXCC Data" msgstr "Обновить данные DXCC" +#: application/views/update/index.php:30 +msgid "Status:" +msgstr "Статус:" + #: application/views/update/index.php:34 msgid "Apply DXCC Data to Logbook" msgstr "Применить данные DXCC к журналу" @@ -10227,19 +11116,19 @@ msgstr "" "отсутствуют метаданные DXCC, или перепроверить весь журнал\n" "\t\t\t\t\t\t\tи обновить существующие метаданные, если они изменились." -#: application/views/update/index.php:40 +#: application/views/update/index.php:45 msgid "Check QSOs missing DXCC data" msgstr "Проверить QSO на отсутствие данных DXCC" -#: application/views/update/index.php:42 +#: application/views/update/index.php:54 application/views/update/index.php:95 msgid "Re-check all QSOs in logbook" msgstr "Перепроверить все QSO в журнале" -#: application/views/update/index.php:45 +#: application/views/update/index.php:59 msgid "Apply Continent Data to Logbook" msgstr "Применить данные по континентам к журналу" -#: application/views/update/index.php:47 +#: application/views/update/index.php:61 msgid "" "This function can be used to update QSO continent information for all QSOs " "in Wavelog missing that information." @@ -10247,19 +11136,29 @@ msgstr "" "Эта функция может быть использована для обновления информации о континенте " "QSO для всех QSO в Wavelog, в которых эта информация отсутствует." -#: application/views/update/index.php:49 +#: application/views/update/index.php:68 msgid "Check QSOs missing continent data" msgstr "Проверить QSO на отсутствие данных о континенте" -#: application/views/update/index.php:59 +#: application/views/update/index.php:80 msgid "Here you can update QSOs with missing distance information." msgstr "" "Здесь вы можете обновить QSO, в которых отсутствует информация о дистанции." -#: application/views/update/index.php:60 +#: application/views/update/index.php:86 msgid "Update distance data" msgstr "Обновить информацию о дистанции" +#: application/views/update/index.php:89 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" +"Используйте эту кнопку, чтобы обновить информацию о расстоянии для всех " +"ваших QSO. В зависимости от количества QSO это может занять некоторое время. " +"Пожалуйста, будьте терпеливы." + #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "Удалить аккаунт пользователя" @@ -10289,13 +11188,13 @@ msgid "General Information" msgstr "Общая информация" #: application/views/user/edit.php:52 application/views/user/login.php:58 -#: application/views/user/login.php:67 application/views/user/login.php:68 +#: application/views/user/login.php:69 application/views/user/login.php:70 #: application/views/user/profile.php:14 msgid "Username" msgstr "Имя пользователя" #: application/views/user/edit.php:64 application/views/user/login.php:59 -#: application/views/user/login.php:71 application/views/user/login.php:72 +#: application/views/user/login.php:73 application/views/user/login.php:74 #: application/views/user/reset_password.php:21 #: application/views/user/reset_password.php:23 #: application/views/user/reset_password.php:30 @@ -10338,10 +11237,6 @@ msgstr "Язык Wavelog" msgid "Choose Wavelog language." msgstr "Выберите язык Wavelog." -#: application/views/user/edit.php:179 -msgid "Timezone" -msgstr "Часовой пояс" - #: application/views/user/edit.php:187 msgid "Date Format" msgstr "Формат даты" @@ -10694,6 +11589,136 @@ msgstr "Забыли пароль?" msgid "You can reset your password here." msgstr "Вы можете сбросить свой пароль здесь." +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" +"Вы действительно хотите отправить этому пользователю ссылку для сброса " +"пароля?" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "Пожалуйста подождите..." + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "Письма с ссылкой для спроса пароля отправлено пользователю:" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "Список пользователей" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "" +"Для работы Wavelog требуется хотя наличие хотя бы одного пользовательского " +"аккаунта." + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" +"Пользователям могут быть назначены роли, которые предоставляют им различные " +"права, например, добавление QSO в журнал и доступ к API Wavelog." + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" +"Текущий вошедший в систему пользователь отображается в правом верхнем углу " +"каждой страницы." + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" +"С помощью кнопки сброса пароля вы можете отправить пользователю письмо, " +"содержащее ссылку для сброса пароля. Для этого убедитесь, что параметры " +"электронной почты в глобальных параметрах настроены правильно." + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "Добавить пользователя" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "Обновить список" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "Роль" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "Последний логин" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "Сброс пароля" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "Имперсонация" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "Никогда" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "Профилей QTH" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "Журналов" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "Последнее QSO:" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "Количество QSO в журнале" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "Выдавать себя за пользователя" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" +"Вы собираетесь выдавать себя за другого пользователя. Чтобы вернуться в свою " +"учетную запись администратора, вам нужно выйти и снова войти как " +"администратор." + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "Вы хотите выдавать себя за этого пользователя?" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "Имя пользователя:" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "Имя:" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "Позывной:" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "Электронная почта:" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "Последний раз видели:" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "РЕЖИМ ОБСЛУЖИВАНИЯ" @@ -10708,108 +11733,17 @@ msgstr "Эта демонстрация будет сбрасываться ка #: application/views/user/login.php:60 #, php-format -msgid "" -"More Information about Wavelog on Github." -msgstr "" -"Больше информации о Wavelog на Github." +msgid "More Information about Wavelog on %sGithub%s." +msgstr "Больше информации о Wavelog на %sGithub%s." -#: application/views/user/login.php:77 +#: application/views/user/login.php:79 msgid "Forgot your password?" msgstr "Забыли пароль?" -#: application/views/user/login.php:83 +#: application/views/user/login.php:85 msgid "Keep me logged in" msgstr "Оставаться в системе" -#: application/views/user/main.php:2 -msgid "Do you really want to send this user a password-reset link?" -msgstr "" -"Вы действительно хотите отправить этому пользователю ссылку для сброса " -"пароля?" - -#: application/views/user/main.php:6 -msgid "Please Wait ..." -msgstr "Пожалуйста подождите..." - -#: application/views/user/main.php:9 -msgid "Password-reset e-mail sent to user:" -msgstr "Письма с ссылкой для спроса пароля отправлено пользователю:" - -#: application/views/user/main.php:30 -msgid "User List" -msgstr "Список пользователей" - -#: application/views/user/main.php:33 -msgid "Wavelog needs at least one user configured in order to operate." -msgstr "" -"Для работы Wavelog требуется хотя наличие хотя бы одного пользовательского " -"аккаунта." - -#: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" -"Пользователям могут быть назначены роли, которые предоставляют им различные " -"права, например, добавление QSO в журнал и доступ к API Wavelog." - -#: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "" -"Текущий вошедший в систему пользователь отображается в правом верхнем углу " -"каждой страницы." - -#: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." -msgstr "" -"С помощью кнопки сброса пароля вы можете отправить пользователю письмо, " -"содержащее ссылку для сброса пароля. Для этого убедитесь, что параметры " -"электронной почты в глобальных параметрах настроены правильно." - -#: application/views/user/main.php:38 -msgid "Create user" -msgstr "Добавить пользователя" - -#: application/views/user/main.php:39 -msgid "Refresh List" -msgstr "Обновить список" - -#: application/views/user/main.php:49 -msgid "Type" -msgstr "Роль" - -#: application/views/user/main.php:50 -msgid "Last seen" -msgstr "Последний логин" - -#: application/views/user/main.php:53 -msgid "Password Reset" -msgstr "Сброс пароля" - -#: application/views/user/main.php:79 -msgid "Never" -msgstr "Никогда" - -#: application/views/user/main.php:83 -msgid "Locations" -msgstr "Профилей QTH" - -#: application/views/user/main.php:85 -msgid "Logbooks" -msgstr "Журналов" - -#: application/views/user/main.php:87 -msgid "Last QSO:" -msgstr "Последнее QSO:" - -#: application/views/user/main.php:89 -msgid "No QSOs in Log" -msgstr "Количество QSO в журнале" - #: application/views/user/profile.php:19 msgid "Level" msgstr "Уровень" @@ -10862,118 +11796,118 @@ msgstr "Детали QSO" msgid "QSL Management" msgstr "QSL менеджемент" -#: application/views/view_log/qso.php:128 +#: application/views/view_log/qso.php:131 msgid "Total Distance" msgstr "Суммарная дистанция" -#: application/views/view_log/qso.php:221 +#: application/views/view_log/qso.php:224 msgid "Antenna Azimuth" msgstr "Азимут антенны" -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:231 msgid "Antenna Elevation" msgstr "Возвышение антенны" -#: application/views/view_log/qso.php:370 +#: application/views/view_log/qso.php:373 msgid "QSL Card has been sent via the bureau" msgstr "QSL карточка была отправлена через бюро" -#: application/views/view_log/qso.php:372 +#: application/views/view_log/qso.php:375 msgid "QSL Card has been sent via direct" msgstr "QSL карточка была отправлена напрямую" -#: application/views/view_log/qso.php:374 +#: application/views/view_log/qso.php:377 msgid "QSL Card has been sent electronically" msgstr "Электронная QSL карточка была отправлена" -#: application/views/view_log/qso.php:376 +#: application/views/view_log/qso.php:379 msgid "QSL Card has been sent via manager" msgstr "QSL карточка была отправлена через QSL-менеджера" -#: application/views/view_log/qso.php:378 +#: application/views/view_log/qso.php:381 msgid "QSL Card has been sent" msgstr "QSL карточка была отправлена" -#: application/views/view_log/qso.php:387 +#: application/views/view_log/qso.php:390 msgid "QSL Card has been received via the bureau" msgstr "QSL карточка была получена через бюро" -#: application/views/view_log/qso.php:389 +#: application/views/view_log/qso.php:392 msgid "QSL Card has been received via direct" msgstr "QSL карточка была получена напрямую" -#: application/views/view_log/qso.php:391 +#: application/views/view_log/qso.php:394 msgid "QSL Card has been received electronically" msgstr "Электронная QSL карточка была получена" -#: application/views/view_log/qso.php:393 +#: application/views/view_log/qso.php:396 msgid "QSL Card has been received via manager" msgstr "QSL карточка была получена через QSL-менеджера" -#: application/views/view_log/qso.php:395 +#: application/views/view_log/qso.php:398 msgid "QSL Card has been received" msgstr "QSL карточка была получена" -#: application/views/view_log/qso.php:404 +#: application/views/view_log/qso.php:407 msgid "This station uses LoTW." msgstr "Эта станция использует LoTW." -#: application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:414 -#: application/views/view_log/qso.php:419 -#: application/views/view_log/qso.php:424 +#: application/views/view_log/qso.php:412 +#: application/views/view_log/qso.php:417 +#: application/views/view_log/qso.php:422 +#: application/views/view_log/qso.php:427 msgid "This QSO was confirmed on" msgstr "Это QSO было подтверждено" -#: application/views/view_log/qso.php:435 +#: application/views/view_log/qso.php:438 msgid "More QSOs" msgstr "Больше QSO" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:506 msgid "Details" msgstr "Подробно" -#: application/views/view_log/qso.php:630 +#: application/views/view_log/qso.php:633 msgid "Uploaded QSL Card front image" msgstr "Загруженное изображение лицевой стороны QSL карточки" -#: application/views/view_log/qso.php:635 +#: application/views/view_log/qso.php:638 msgid "Upload QSL Card image" msgstr "Загрузить изображение для QSL карточки" -#: application/views/view_log/qso.php:640 +#: application/views/view_log/qso.php:643 msgid "Uploaded QSL Card back image" msgstr "Загруженное изображение оборотной стороны QSL карточки" -#: application/views/view_log/qso.php:656 +#: application/views/view_log/qso.php:659 msgid "Mark QSL Received (Electronic)" msgstr "Отметить QSL полученной (электронно)" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:665 msgid "Mark QSL Card Requested (Bureau)" msgstr "Отметить запрос QSL-карточки (через бюро)" -#: application/views/view_log/qso.php:664 +#: application/views/view_log/qso.php:667 msgid "Mark QSL Card Requested (Direct)" msgstr "Отметить запрос QSL-карточки (напрямую)" -#: application/views/view_log/qso.php:679 +#: application/views/view_log/qso.php:682 msgid "eQSL picture" msgstr "изображение eQSL-карточки" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:242 msgid "CSV" msgstr "CSV" -#: application/views/visitor/layout/header.php:75 +#: application/views/visitor/layout/header.php:74 msgid "OQRS" msgstr "OQRS" -#: application/views/visitor/layout/header.php:83 +#: application/views/visitor/layout/header.php:82 msgid "Visit Wavelog on Github" msgstr "Посетите Wavelog на Gihub" -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Please enter a callsign!" msgstr "Пожалуйста, введите позывной!" @@ -11074,6 +12008,111 @@ msgstr "Ваш позывной:" msgid "Submit Request" msgstr "Отправить запрос" +#~ msgid "Distance Records" +#~ msgstr "Рекорды дальности" + +#~ msgid "Key Disabled" +#~ msgstr "Ключ деактивирован" + +#~ msgid "No Key Found" +#~ msgstr "Ключ не найден" + +#~ msgid "Key Invalid - either not found or disabled" +#~ msgstr "Ключ недействительный — либо не найден, либо отключен" + +#, php-format +#~ msgctxt "Dashboard Warning" +#~ msgid "You need to update country files! Click %s to do it." +#~ msgstr "Вам нужно обновить файлы стран! Кликните %s для этого." + +#, php-format +#~ msgctxt "Dashboard Warning" +#~ msgid "You have no station locations. Click %s to do it:" +#~ msgstr "" +#~ "У вас не настроен профиль QTH. Перейдите по ссылке %s, чтобы настроить:" + +#, php-format +#~ msgctxt "Dashboard Warning" +#~ msgid "You have no station logbook. Click %s to do it:" +#~ msgstr "У вас не настроен журнал. Перейдите по ссылке %s, чтобы настроить:" + +#~ msgid "Status Master-Cron" +#~ msgstr "Состояние Master-Cron" + +#~ msgid "Winkey Macros" +#~ msgstr "Макросы Winkey" + +#~ msgid "User logged in" +#~ msgstr "Пользователь вошёл" + +#~ msgid "" +#~ "If selected, Wavelog will try to import all QSO's of the ADIF, " +#~ "regardless if they match to the chosen station-location." +#~ msgstr "" +#~ "Если отмечено, Wavelog попытается импортировать все QSO из ADIF, " +#~ "независимо от соответствия из выбранному расположению станции." + +#, php-format +#~ msgid "" +#~ "Check this wiki article here for " +#~ "more information." +#~ msgstr "" +#~ "Обратитесь к этой статье в вики здесь для получения дополнительной информации." + +#~ msgid "contacts were plotted.
Your furthest contact was with" +#~ msgstr "контакты отображены.
Наиболее дальний контакт с" + +#, php-format +#~ msgid "You're not logged it. Please
login" +#~ msgstr "" +#~ "Вы не вошли в систему. Пожалуйста, войдите в систему" + +#, php-format +#~ msgid "" +#~ "If you did operate from a new location, first create a new Station Location" +#~ msgstr "" +#~ "Если вы работали с нового места, сначала создайте новый профиль QTH" + +#~ msgid "" +#~ "The Refs can be either SOTA, IOTA, POTA or WWFF" +#~ msgstr "" +#~ "Референции могут быть: SOTA, IOTA, POTA или WWFF" + +#, php-format +#~ msgid "" +#~ "A full summary of all commands and the necessary syntax can be found in " +#~ "this article of our Wiki." +#~ msgstr "" +#~ "Полное описание всех команд и необходимого синтаксиса можно найти в этой статье нашего Вики." + +#~ msgid "" +#~ "Click here on 'Add a Theme' and type in the necessary data. Type in the " +#~ "filenames for the logos without the file extension '.png'" +#~ msgstr "" +#~ "Кликните по 'Добавить тему' и укажите необходимые данные. Укажите имена " +#~ "файлов для логотипов без расширения файла '.png'" + +#, php-format +#~ msgid "" +#~ "More Information about Wavelog on Github." +#~ msgstr "" +#~ "Больше информации о Wavelog на Github." + +#, php-format +#~ msgctxt "uses 'this article'" +#~ msgid "" +#~ "A full summary of all commands and the necessary syntax can be found in " +#~ "%s of our Wiki." +#~ msgstr "" +#~ "Полное описание всех команд и необходимый синтаксис можно найти в %s " +#~ "нашей Вики." + #, php-format #~ msgid "" #~ "The current migration is not the version it is supposed to be. Reload " diff --git a/application/locale/sq/LC_MESSAGES/messages.mo b/application/locale/sq/LC_MESSAGES/messages.mo new file mode 100644 index 000000000..17d212148 Binary files /dev/null and b/application/locale/sq/LC_MESSAGES/messages.mo differ diff --git a/application/locale/sq/LC_MESSAGES/messages.po b/application/locale/sq/LC_MESSAGES/messages.po new file mode 100644 index 000000000..e9824cb4c --- /dev/null +++ b/application/locale/sq/LC_MESSAGES/messages.po @@ -0,0 +1,11417 @@ +# WAVELOG PO FILE +# Copyright (c) 2024 Wavelog by DF2ET, DJ7NT, HB9HIL and LA8AJA. +# This file is distributed under the MIT licence. +# +# Fabian Berg <80885850+HB9HIL@users.noreply.github.com>, 2024. +msgid "" +msgstr "" +"Report-Msgid-Bugs-To: translations@wavelog.org\n" +"POT-Creation-Date: 2024-09-07 07:18+0000\n" +"PO-Revision-Date: 2024-08-17 10:49+0000\n" +"Last-Translator: Anonymous \n" +"Language-Team: Albanian \n" +"Language: sq\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.6.2\n" + +#: application/controllers/Accumulated.php:12 +#: application/controllers/Activators.php:13 +#: application/controllers/Activatorsmap.php:13 +#: application/controllers/Adif.php:13 application/controllers/Awards.php:16 +#: application/controllers/Backup.php:13 application/controllers/Backup.php:26 +#: application/controllers/Backup.php:63 application/controllers/Band.php:15 +#: application/controllers/Bandmap.php:9 +#: application/controllers/Cabrillo.php:16 +#: application/controllers/Cabrillo.php:53 +#: application/controllers/Cabrillo.php:80 +#: application/controllers/Cabrillo.php:135 +#: application/controllers/Calltester.php:11 +#: application/controllers/Cfdexport.php:18 +#: application/controllers/Cfdexport.php:29 +#: application/controllers/Components.php:13 +#: application/controllers/Contestcalendar.php:15 +#: application/controllers/Contesting.php:14 +#: application/controllers/Cron.php:26 application/controllers/Cron.php:162 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: application/controllers/Distancerecords.php:11 +#: application/controllers/Distances.php:11 +#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29 +#: application/controllers/Dxatlas.php:51 +#: application/controllers/Dxatlas.php:108 +#: application/controllers/Dxcalendar.php:8 +#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23 +#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 +#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 +#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:353 +#: application/controllers/Eqsl.php:420 application/controllers/Eqsl.php:436 +#: application/controllers/Eqsl.php:497 application/controllers/Hamsat.php:13 +#: application/controllers/Kmlexport.php:18 +#: application/controllers/Kmlexport.php:33 +#: application/controllers/Labels.php:26 +#: application/controllers/Logbookadvanced.php:16 +#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 +#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 +#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 +#: application/controllers/Notes.php:10 application/controllers/Options.php:15 +#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 +#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 +#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 +#: application/controllers/Qso.php:9 application/controllers/Qso.php:19 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:600 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Reg1test.php:18 +#: application/controllers/Reg1test.php:63 +#: application/controllers/Reg1test.php:102 +#: application/controllers/Reg1test.php:130 +#: application/controllers/Reg1test.php:164 +#: application/controllers/Satellite.php:18 +#: application/controllers/Satellite.php:37 +#: application/controllers/Satellite.php:44 +#: application/controllers/Satellite.php:53 +#: application/controllers/Satellite.php:72 +#: application/controllers/Satellite.php:87 +#: application/controllers/Satellite.php:95 +#: application/controllers/Satellite.php:103 +#: application/controllers/Satellite.php:117 +#: application/controllers/Satellite.php:135 +#: application/controllers/Satellite.php:146 +#: application/controllers/Satellite.php:162 +#: application/controllers/Satellite.php:190 +#: application/controllers/Satellite.php:201 +#: application/controllers/Satellite.php:223 +#: application/controllers/Satellite.php:236 +#: application/controllers/Satellite.php:244 +#: application/controllers/Sattimers.php:9 +#: application/controllers/Search.php:13 +#: application/controllers/Simplefle.php:7 +#: application/controllers/Station.php:17 +#: application/controllers/Stationsetup.php:15 +#: application/controllers/Themes.php:17 +#: application/controllers/Timeline.php:10 +#: application/controllers/Timeplotter.php:11 +#: application/controllers/Update.php:24 application/controllers/Update.php:273 +#: application/controllers/Update.php:284 +#: application/controllers/Update.php:295 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 +#: application/controllers/User_options.php:9 +msgid "You're not allowed to do that!" +msgstr "" + +#: application/controllers/Accumulated.php:19 +#: application/views/interface_assets/header.php:152 +msgid "Accumulated Statistics" +msgstr "" + +#: application/controllers/Activated_gridmap.php:10 +#: application/views/activated_gridmap/index.php:5 +msgid "Activated Gridsquare Map" +msgstr "" + +#: application/controllers/Activated_gridmap.php:31 +#: application/controllers/Awards.php:919 +#: application/controllers/Awards.php:951 +#: application/controllers/Gridmap.php:31 +#: application/controllers/Visitor.php:385 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: application/views/visitor/layout/footer.php:22 +#: application/views/visitor/layout/header.php:68 +msgid "Gridsquares" +msgstr "" + +#: application/controllers/Activated_gridmap.php:32 +#: application/controllers/Gridmap.php:32 +#: application/controllers/Visitor.php:386 +msgid "Gridsquares confirmed" +msgstr "" + +#: application/controllers/Activated_gridmap.php:33 +#: application/controllers/Gridmap.php:33 +#: application/controllers/Visitor.php:387 +msgid "Gridsquares not confirmed" +msgstr "" + +#: application/controllers/Activated_gridmap.php:34 +msgid "Total gridsquares activated" +msgstr "" + +#: application/controllers/Activators.php:20 +#: application/views/activators/index.php:5 +#: application/views/interface_assets/header.php:142 +msgid "Gridsquare Activators" +msgstr "" + +#: application/controllers/Activatorsmap.php:17 +#: application/views/activators/index.php:2 +msgid "Activators Map" +msgstr "" + +#: application/controllers/Adif.php:18 +msgid "valid date" +msgstr "" + +#: application/controllers/Adif.php:20 +msgid "date incorrect" +msgstr "" + +#: application/controllers/Adif.php:29 application/views/adif/import.php:24 +msgid "ADIF Export" +msgstr "" + +#: application/controllers/Adif.php:145 +#: application/views/interface_assets/header.php:388 +msgid "ADIF Import / Export" +msgstr "" + +#: application/controllers/Adif.php:169 application/views/adif/import.php:21 +#: application/views/lotw/import.php:3 +msgid "ADIF Import" +msgstr "" + +#: application/controllers/Adif.php:209 +msgid "Unsupported Filetype" +msgstr "" + +#: application/controllers/Adif.php:240 +#: application/views/adif/import_failed.php:12 +msgid "ADIF Import failed!" +msgstr "" + +#: application/controllers/Adif.php:254 +msgid "Station Profile not valid for User" +msgstr "" + +#: application/controllers/Adif.php:261 +#: application/views/adif/import_success.php:12 +msgid "ADIF Imported" +msgstr "" + +#: application/controllers/Adif.php:272 +msgid "DCL Import" +msgstr "" + +#: application/controllers/Adif.php:328 +msgid "DCL Data Imported" +msgstr "" + +#: application/controllers/Api.php:26 +msgid "API" +msgstr "" + +#: application/controllers/Api.php:50 application/views/api/description.php:26 +msgid "API Description" +msgstr "" + +#: application/controllers/Api.php:51 +msgid "API Key is required. Do not change this field" +msgstr "" + +#: application/controllers/Api.php:57 +msgid "Edit API Description" +msgstr "" + +#: application/controllers/Api.php:69 +#, php-format +msgid "API Key %s description has been updated." +msgstr "" + +#: application/controllers/Api.php:109 +#, php-format +msgid "API Key %s has been deleted" +msgstr "" + +#: application/controllers/Awards.php:22 +#: application/views/interface_assets/header.php:160 +#: application/views/qso/edit_ajax.php:35 +msgid "Awards" +msgstr "" + +#: application/controllers/Awards.php:92 application/controllers/Awards.php:172 +#: application/controllers/Awards.php:327 +#: application/controllers/Awards.php:375 +#: application/controllers/Awards.php:486 +#: application/controllers/Awards.php:503 +#: application/controllers/Awards.php:520 +#: application/controllers/Awards.php:591 +#: application/controllers/Awards.php:652 +#: application/controllers/Awards.php:714 +#: application/controllers/Awards.php:776 +#: application/controllers/Awards.php:856 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:939 +#: application/controllers/Awards.php:1140 +#: application/controllers/Awards.php:1639 +#: application/controllers/Awards.php:1779 +#: application/controllers/Awards.php:1908 +#, php-format +msgid "Awards - %s" +msgstr "" + +#: application/controllers/Awards.php:92 +#: application/views/awards/dok/index.php:149 +#: application/views/bands/index.php:47 +#: application/views/contesting/index.php:53 +#: application/views/interface_assets/header.php:198 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/qso/edit_ajax.php:388 application/views/qso/index.php:264 +#: application/views/qso/index.php:518 application/views/user/edit.php:603 +#: application/views/view_log/qso.php:354 +msgid "DOK" +msgstr "" + +#: application/controllers/Awards.php:172 application/views/awards/index.php:7 +#: application/views/bandmap/list.php:112 application/views/bands/index.php:48 +#: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 +#: application/views/dxcalendar/index.php:11 +#: application/views/interface_assets/header.php:166 +#: application/views/kml/index.php:47 +#: application/views/logbookadvanced/edit.php:7 +#: application/views/logbookadvanced/index.php:156 +#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/lookup/index.php:4 +#: application/views/lotw_views/index.php:36 +#: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 +#: application/views/search/cqzones_result.php:15 +#: application/views/search/result.php:27 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:33 +#: application/views/timeplotter/index.php:24 +msgid "DXCC" +msgstr "" + +#: application/controllers/Awards.php:251 +msgid "Awards - WAJA" +msgstr "" + +#: application/controllers/Awards.php:327 application/views/bands/index.php:51 +#: application/views/interface_assets/header.php:214 +msgid "JCC" +msgstr "" + +#: application/controllers/Awards.php:375 application/views/bands/index.php:57 +#: application/views/interface_assets/header.php:172 +msgid "VUCC" +msgstr "" + +#: application/controllers/Awards.php:405 +msgid "Log View - VUCC" +msgstr "" + +#: application/controllers/Awards.php:453 +#: application/controllers/Distancerecords.php:59 +#: application/controllers/Timeline.php:105 +#: application/controllers/Timeline.php:108 +#: application/controllers/Timeline.php:111 +#: application/controllers/Timeline.php:114 +#: application/controllers/Timeline.php:117 +#: application/controllers/Timeline.php:120 +msgid "Log View" +msgstr "" + +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr "" + +#: application/controllers/Awards.php:457 +msgid " and sat " +msgstr "" + +#: application/controllers/Awards.php:460 +msgid " and orbit type " +msgstr "" + +#: application/controllers/Awards.php:464 +msgid " and propagation " +msgstr "" + +#: application/controllers/Awards.php:467 +msgid " and mode " +msgstr "" + +#: application/controllers/Awards.php:470 +msgid " and " +msgstr "" + +#: application/controllers/Awards.php:486 +#: application/controllers/Logbook.php:1289 +#: application/views/awards/index.php:8 application/views/bands/index.php:55 +#: application/views/dashboard/index.php:9 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/index.php:270 +#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/lookup/index.php:7 +#: application/views/qslcard/searchresult.php:17 +#: application/views/qslcard/searchresult.php:33 +#: application/views/qslcard/searchresult.php:49 +#: application/views/qslcard/searchresult.php:65 +#: application/views/qslcard/searchresult.php:81 +#: application/views/qso/components/previous_contacts.php:82 +#: application/views/qso/edit_ajax.php:363 +#: application/views/search/search_result_ajax.php:9 +#: application/views/station_profile/edit.php:243 +#: application/views/user/edit.php:234 application/views/user/edit.php:256 +#: application/views/user/edit.php:278 application/views/user/edit.php:300 +#: application/views/user/edit.php:323 +#: application/views/view_log/partial/log_ajax.php:9 +#: application/views/visitor/index.php:21 +msgid "SOTA" +msgstr "" + +#: application/controllers/Awards.php:503 +#: application/controllers/Logbook.php:1290 +#: application/views/bands/index.php:60 +#: application/views/dashboard/index.php:10 +#: application/views/interface_assets/header.php:176 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/index.php:290 +#: application/views/logbookadvanced/useroptions.php:134 +#: application/views/lookup/index.php:9 +#: application/views/qso/components/previous_contacts.php:83 +#: application/views/qso/edit_ajax.php:368 +#: application/views/search/search_result_ajax.php:10 +#: application/views/station_profile/edit.php:256 +#: application/views/user/edit.php:235 application/views/user/edit.php:257 +#: application/views/user/edit.php:279 application/views/user/edit.php:301 +#: application/views/user/edit.php:324 +#: application/views/view_log/partial/log_ajax.php:10 +msgid "WWFF" +msgstr "" + +#: application/controllers/Awards.php:520 +#: application/controllers/Logbook.php:1291 +#: application/views/bands/index.php:52 +#: application/views/dashboard/index.php:11 +#: application/views/interface_assets/header.php:186 +#: application/views/logbookadvanced/edit.php:13 +#: application/views/logbookadvanced/index.php:274 +#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/qso/components/previous_contacts.php:84 +#: application/views/qso/edit_ajax.php:373 +#: application/views/search/search_result_ajax.php:11 +#: application/views/station_profile/edit.php:269 +#: application/views/user/edit.php:236 application/views/user/edit.php:258 +#: application/views/user/edit.php:280 application/views/user/edit.php:302 +#: application/views/user/edit.php:325 +#: application/views/view_log/partial/log_ajax.php:11 +msgid "POTA" +msgstr "" + +#: application/controllers/Awards.php:591 +msgid "CQ Magazine WAZ" +msgstr "" + +#: application/controllers/Awards.php:652 +#: application/views/accumulate/index.php:54 +#: application/views/timeline/index.php:45 +msgid "Worked All States (WAS)" +msgstr "" + +#: application/controllers/Awards.php:714 application/views/bands/index.php:53 +#: application/views/interface_assets/header.php:192 +msgid "RAC" +msgstr "" + +#: application/controllers/Awards.php:776 application/views/bands/index.php:49 +msgid "H26" +msgstr "" + +#: application/controllers/Awards.php:856 +msgid "IOTA (Island On The Air)" +msgstr "" + +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 +#: application/views/interface_assets/header.php:234 +msgid "US Counties" +msgstr "" + +#: application/controllers/Awards.php:896 +msgid "Log View - Counties" +msgstr "" + +#: application/controllers/Awards.php:903 +msgid "Awards - " +msgstr "" + +#: application/controllers/Awards.php:920 +#: application/controllers/Awards.php:952 +msgid "Gridsquares worked" +msgstr "" + +#: application/controllers/Awards.php:921 +#: application/controllers/Awards.php:953 +msgid "Gridsquares confirmed on LoTW" +msgstr "" + +#: application/controllers/Awards.php:922 +#: application/controllers/Awards.php:954 +msgid "Gridsquares confirmed by paper QSL" +msgstr "" + +#: application/controllers/Awards.php:939 +msgid "Fred Fish Memorial Award (FFMA)" +msgstr "" + +#: application/controllers/Awards.php:1140 +#: application/views/interface_assets/header.php:170 +#: application/views/logbookadvanced/useroptions.php:138 +msgid "SIG" +msgstr "" + +#: application/controllers/Awards.php:1158 +msgid "Awards - SIG - " +msgstr "" + +#: application/controllers/Awards.php:1779 +#: application/views/awards/itu/index.php:20 +msgid "ITU Zones" +msgstr "" + +#: application/controllers/Awards.php:1908 +#: application/views/awards/wac/index.php:8 +#: application/views/interface_assets/header.php:174 +msgid "Worked All Continents (WAC)" +msgstr "" + +#: application/controllers/Backup.php:15 application/views/backup/main.php:14 +#: application/views/interface_assets/header.php:284 +msgid "Backup" +msgstr "" + +#: application/controllers/Backup.php:50 +msgid "ADIF - Backup" +msgstr "" + +#: application/controllers/Backup.php:84 +msgid "Notes - Backup" +msgstr "" + +#: application/controllers/Band.php:25 application/views/bands/index.php:28 +#: application/views/bands/index.php:32 +#: application/views/interface_assets/header.php:383 +#: application/views/statistics/index.php:16 +#: application/views/statistics/index.php:56 +msgid "Bands" +msgstr "" + +#: application/controllers/Band.php:40 application/controllers/Mode.php:41 +msgid "Create Mode" +msgstr "" + +#: application/controllers/Band.php:59 application/views/bands/index.php:150 +msgid "Edit Band" +msgstr "" + +#: application/controllers/Bandmap.php:28 +#: application/controllers/Bandmap.php:69 +#: application/controllers/Options.php:145 +#: application/controllers/Options.php:156 +#: application/views/options/sidebar.php:10 +msgid "DXCluster" +msgstr "" + +#: application/controllers/Cabrillo.php:20 +msgid "Export Cabrillo" +msgstr "" + +#: application/controllers/Cfdexport.php:20 +#: application/views/interface_assets/header.php:402 +msgid "CFD Export" +msgstr "" + +#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12 +#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19 +#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14 +#: application/controllers/Update.php:16 +msgid "Maintenance Mode is active. Try again later." +msgstr "" + +#: application/controllers/Clublog.php:44 +#: application/controllers/Clublog.php:66 +msgid "No user has configured Clublog." +msgstr "" + +#: application/controllers/Contestcalendar.php:19 +#: application/views/interface_assets/header.php:251 +msgid "Contest Calendar" +msgstr "" + +#: application/controllers/Contesting.php:47 +#: application/views/contesting/index.php:3 +msgid "Contest Logging" +msgstr "" + +#: application/controllers/Contesting.php:113 +#: application/views/interface_assets/header.php:278 +msgid "Contests" +msgstr "" + +#: application/controllers/Contesting.php:127 +msgid "Update Contest" +msgstr "" + +#: application/controllers/Continents.php:25 +#: application/views/awards/dxcc/index.php:83 +#: application/views/awards/iota/index.php:57 +#: application/views/interface_assets/header.php:156 +msgid "Continents" +msgstr "" + +#: application/controllers/Cron.php:38 +#: application/views/interface_assets/header.php:288 +msgid "Cron Manager" +msgstr "" + +#: application/controllers/Cron.php:154 application/views/cron/edit.php:5 +msgid "Edit Cronjob" +msgstr "" + +#: application/controllers/Cron.php:274 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:278 +#, php-format +msgid "" +"Last run occurred more than %s seconds ago.%sPlease check your master cron! " +"It should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:281 +#, php-format +msgid "" +"Last run occurred more than %s minutes ago.%sSeems like your Mastercron " +"isn't running!%sIt should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:286 application/views/cron/index.php:29 +msgctxt "Master Cron" +msgid "Not running" +msgstr "" + +#: application/controllers/Csv.php:20 application/views/csv/index.php:3 +#: application/views/interface_assets/header.php:396 +msgid "SOTA CSV Export" +msgstr "" + +#: application/controllers/Dashboard.php:123 +#: application/controllers/Visitor.php:134 +msgid "Dashboard" +msgstr "" + +#: application/controllers/Dayswithqso.php:18 +msgid "Number of days with QSOs each year" +msgstr "" + +#: application/controllers/Debug.php:93 +msgid "Debug" +msgstr "" + +#: application/controllers/Debug.php:132 +msgid "Migrate data now" +msgstr "" + +#: application/controllers/Debug.php:135 +msgid "Migration already done. Run again?" +msgstr "" + +#: application/controllers/Debug.php:139 +msgid "No data to migrate" +msgstr "" + +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 +msgid "No migration possible" +msgstr "" + +#: application/controllers/Debug.php:213 +msgid "Wavelog was updated successfully!" +msgstr "" + +#: application/controllers/Debug.php:231 +msgid "Selfupdate() not available. Check the Error Log." +msgstr "" + +#: application/controllers/Debug.php:275 +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:278 +msgid "File Migration failed. Please check the Error Log." +msgstr "" + +#: application/controllers/Distancerecords.php:42 +#: application/controllers/Distancerecords.php:59 +#: application/views/interface_assets/header.php:146 +msgid "Satellite Distance Records" +msgstr "" + +#: application/controllers/Distances.php:17 +#: application/views/distances/index.php:5 +#: application/views/distances/index.php:8 +#: application/views/interface_assets/header.php:144 +msgid "Distances Worked" +msgstr "" + +#: application/controllers/Distances.php:83 +#: application/views/distances/index.php:15 +msgid "QSOs with" +msgstr "" + +#: application/controllers/Distances.php:83 +msgid "and band" +msgstr "" + +#: application/controllers/Distances.php:83 +msgid "and propagation" +msgstr "" + +#: application/controllers/Dxatlas.php:19 +#: application/views/interface_assets/header.php:394 +msgid "DX Atlas Gridsquare Export" +msgstr "" + +#: application/controllers/Dxcalendar.php:10 +#: application/views/interface_assets/header.php:249 +msgid "DX Calendar" +msgstr "" + +#: application/controllers/Eqsl.php:34 +#: application/views/dashboard/index.php:325 +#: application/views/eqslcard/index.php:5 +#: application/views/visitor/index.php:306 +msgid "eQSL Cards" +msgstr "" + +#: application/controllers/Eqsl.php:124 +msgid "eQSL Import" +msgstr "" + +#: application/controllers/Eqsl.php:134 +msgid "eQSL Import Information" +msgstr "" + +#: application/controllers/Eqsl.php:158 +msgid "eQSL QSO Upload" +msgstr "" + +#: application/controllers/Eqsl.php:424 +msgid "eQSL Tools" +msgstr "" + +#: application/controllers/Eqsl.php:472 +msgid " / Errors: " +msgstr "" + +#: application/controllers/Eqsl.php:472 +msgid "Successfully downloaded: " +msgstr "" + +#: application/controllers/Eqsl.php:481 +msgid "eQSL Card Image Download" +msgstr "" + +#: application/controllers/Gridmap.php:10 +#: application/views/interface_assets/header.php:138 +msgid "Gridsquare Map" +msgstr "" + +#: application/controllers/Gridmap.php:34 +#: application/controllers/Visitor.php:388 +msgid "Total gridsquares worked" +msgstr "" + +#: application/controllers/Hamsat.php:59 +msgid "Hamsat - Satellite Roving" +msgstr "" + +#: application/controllers/Hrdlog.php:71 +#, php-format +msgid "%d QSO is now uploaded to HRDlog" +msgid_plural "%d QSOs are now uploaded to HRDlog" +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Hrdlog.php:76 +msgid "No QSOs found to upload." +msgstr "" + +#: application/controllers/Kmlexport.php:24 +#: application/views/interface_assets/header.php:392 +#: application/views/kml/index.php:3 +msgid "KML Export" +msgstr "" + +#: application/controllers/Labels.php:40 application/views/labels/index.php:30 +msgid "QSL Card Labels" +msgstr "" + +#: application/controllers/Labels.php:71 +msgid "Create Label Type" +msgstr "" + +#: application/controllers/Labels.php:78 application/controllers/Labels.php:406 +#: application/views/labels/create.php:22 application/views/labels/edit.php:22 +msgid "Label Name" +msgstr "" + +#: application/controllers/Labels.php:79 application/controllers/Labels.php:407 +#: application/views/labels/create.php:28 application/views/labels/edit.php:28 +#: application/views/labels/index.php:76 +msgid "Paper Type" +msgstr "" + +#: application/controllers/Labels.php:80 application/controllers/Labels.php:408 +#: application/views/labels/index.php:42 application/views/labels/index.php:77 +msgid "Measurement" +msgstr "" + +#: application/controllers/Labels.php:81 application/controllers/Labels.php:409 +msgid "Top Margin" +msgstr "" + +#: application/controllers/Labels.php:82 application/controllers/Labels.php:410 +msgid "Left Margin" +msgstr "" + +#: application/controllers/Labels.php:83 application/controllers/Labels.php:411 +msgid "QSLs Horizontally" +msgstr "" + +#: application/controllers/Labels.php:84 application/controllers/Labels.php:412 +msgid "QSLs Vertically" +msgstr "" + +#: application/controllers/Labels.php:85 application/controllers/Labels.php:413 +msgid "Horizontal Space" +msgstr "" + +#: application/controllers/Labels.php:86 application/controllers/Labels.php:414 +msgid "Vertical Space" +msgstr "" + +#: application/controllers/Labels.php:87 application/controllers/Labels.php:415 +msgid "Label width" +msgstr "" + +#: application/controllers/Labels.php:88 application/controllers/Labels.php:416 +msgid "Label height" +msgstr "" + +#: application/controllers/Labels.php:89 application/controllers/Labels.php:417 +msgid "Size of Font" +msgstr "" + +#: application/controllers/Labels.php:90 application/controllers/Labels.php:418 +msgid "Number of QSOs on label" +msgstr "" + +#: application/controllers/Labels.php:115 +msgid "Create Paper Type" +msgstr "" + +#: application/controllers/Labels.php:119 +#: application/controllers/Labels.php:465 +msgid "Paper Name" +msgstr "" + +#: application/controllers/Labels.php:120 +#: application/controllers/Labels.php:466 +msgid "Paper Width" +msgstr "" + +#: application/controllers/Labels.php:121 +#: application/controllers/Labels.php:467 +msgid "Paper Height" +msgstr "" + +#: application/controllers/Labels.php:132 +#: application/controllers/Labels.php:475 +msgid "" +"Your paper could not be saved. Remember that it can't have the same name as " +"existing paper types." +msgstr "" + +#: application/controllers/Labels.php:205 +#: application/controllers/Labels.php:208 +msgid "You need to assign a paperType to the label before printing" +msgstr "" + +#: application/controllers/Labels.php:215 +#: application/controllers/Labels.php:218 +msgid "You need to create a label and set it to be used for print." +msgstr "" + +#: application/controllers/Labels.php:225 +#: application/controllers/Labels.php:228 +msgid "" +"Something went wrong! The label could not be generated. Check label size and " +"font size." +msgstr "" + +#: application/controllers/Labels.php:251 +msgid "0 QSOs found for print!" +msgstr "" + +#: application/controllers/Labels.php:395 +msgid "Edit Label" +msgstr "" + +#: application/controllers/Labels.php:424 +msgid "Label was saved." +msgstr "" + +#: application/controllers/Labels.php:432 +msgid "Label was deleted." +msgstr "" + +#: application/controllers/Labels.php:454 +msgid "Edit Paper" +msgstr "" + +#: application/controllers/Labels.php:479 +msgid "Paper was saved." +msgstr "" + +#: application/controllers/Labels.php:492 +msgid "Paper was deleted." +msgstr "" + +#: application/controllers/Logbook.php:37 +msgid "" +"No logbooks were found. You need to define a logbook under Station Logbooks! " +"Do it here:" +msgstr "" + +#: application/controllers/Logbook.php:37 +#: application/views/stationsetup/stationsetup.php:18 +msgid "Station Logbooks" +msgstr "" + +#: application/controllers/Logbook.php:60 +#: application/views/interface_assets/header.php:97 +#: application/views/logbookadvanced/useroptions.php:4 +#: application/views/view_log/index.php:11 +msgid "Logbook" +msgstr "" + +#: application/controllers/Logbook.php:657 +#: application/controllers/Logbook.php:672 +#: application/views/activated_gridmap/index.php:58 +#: application/views/awards/dok/index.php:55 +#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/helvetia/index.php:55 +#: application/views/awards/jcc/index.php:52 +#: application/views/awards/rac/index.php:47 +#: application/views/awards/vucc/band.php:15 +#: application/views/awards/wab/index.php:72 +#: application/views/awards/waja/index.php:55 +#: application/views/awards/was/index.php:55 +#: application/views/gridmap/index.php:101 +#: application/views/logbookadvanced/index.php:596 +#: application/views/logbookadvanced/useroptions.php:62 +#: application/views/oqrs/qsolist.php:12 +#: application/views/qslprint/qslprint.php:28 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:16 +#: application/views/qso/edit_ajax.php:37 application/views/qso/index.php:42 +#: application/views/search/result_search.php:13 +#: application/views/timeline/index.php:56 application/views/user/edit.php:562 +#: application/views/user/edit.php:649 +msgid "QSL" +msgstr "" + +#: application/controllers/Logbook.php:660 +#: application/views/activated_gridmap/index.php:66 +#: application/views/awards/cq/index.php:60 +#: application/views/awards/dok/index.php:59 +#: application/views/awards/dxcc/index.php:65 +#: application/views/awards/helvetia/index.php:59 +#: application/views/awards/itu/index.php:60 +#: application/views/awards/jcc/index.php:56 +#: application/views/awards/rac/index.php:51 +#: application/views/awards/vucc/band.php:16 +#: application/views/awards/wab/index.php:80 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:260 +#: application/views/gridmap/index.php:109 +#: application/views/logbookadvanced/useroptions.php:66 +#: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 +#: application/views/oqrs/qsolist.php:174 +#: application/views/qslprint/qsolist.php:21 +#: application/views/qslprint/qsolist.php:167 +#: application/views/qslprint/qsolist.php:182 +#: application/views/qso/edit_ajax.php:411 +#: application/views/search/result_search.php:22 +#: application/views/search/search_result_ajax.php:298 +#: application/views/search/search_result_ajax.php:313 +#: application/views/timeline/index.php:60 application/views/user/edit.php:563 +#: application/views/user/edit.php:659 application/views/view_log/qso.php:411 +msgid "LoTW" +msgstr "" + +#: application/controllers/Logbook.php:663 +#: application/views/activated_gridmap/index.php:74 +#: application/views/awards/cq/index.php:64 +#: application/views/awards/dok/index.php:63 +#: application/views/awards/dxcc/index.php:69 +#: application/views/awards/helvetia/index.php:63 +#: application/views/awards/itu/index.php:64 +#: application/views/awards/jcc/index.php:60 +#: application/views/awards/rac/index.php:55 +#: application/views/awards/wab/index.php:88 +#: application/views/awards/wac/index.php:52 +#: application/views/awards/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:260 +#: application/views/gridmap/index.php:117 +#: application/views/logbookadvanced/useroptions.php:70 +#: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:143 +#: application/views/qslprint/qsolist.php:18 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:151 +#: application/views/qso/edit_ajax.php:408 +#: application/views/search/result_search.php:16 +#: application/views/search/search_result_ajax.php:260 +#: application/views/search/search_result_ajax.php:273 +#: application/views/station_profile/edit.php:305 +#: application/views/timeline/index.php:64 application/views/user/edit.php:564 +#: application/views/user/edit.php:667 application/views/user/edit.php:731 +msgid "eQSL" +msgstr "" + +#: application/controllers/Logbook.php:669 +#: application/views/awards/dok/index.php:71 +#: application/views/awards/dxcc/index.php:77 +#: application/views/awards/jcc/index.php:68 +#: application/views/awards/wab/index.php:104 +#: application/views/awards/waja/index.php:71 +#: application/views/logbookadvanced/useroptions.php:74 +#: application/views/search/search_result_ajax.php:124 +#: application/views/station_profile/edit.php:352 +#: application/views/timeline/index.php:68 +#: application/views/update/index.php:20 application/views/user/edit.php:566 +#: application/views/user/edit.php:683 +#: application/views/view_log/partial/log_ajax.php:85 +#: application/views/view_log/qso.php:426 +msgid "Clublog" +msgstr "" + +#: application/controllers/Logbook.php:1284 +#: application/controllers/Radio.php:49 +#: application/views/accumulate/index.php:31 +#: application/views/activated_gridmap/index.php:39 +#: application/views/adif/dcl_success.php:33 +#: application/views/awards/cq/index.php:88 +#: application/views/awards/dok/index.php:91 +#: application/views/awards/dxcc/index.php:162 +#: application/views/awards/helvetia/index.php:87 +#: application/views/awards/iota/index.php:105 +#: application/views/awards/itu/index.php:88 +#: application/views/awards/jcc/index.php:88 +#: application/views/awards/rac/index.php:79 +#: application/views/awards/sig/qso_list.php:12 +#: application/views/awards/wab/index.php:53 +#: application/views/awards/wac/index.php:110 +#: application/views/awards/waja/index.php:91 +#: application/views/awards/was/index.php:87 +#: application/views/components/hamsat/table.php:30 +#: application/views/contesting/index.php:108 +#: application/views/contesting/index.php:250 +#: application/views/continents/index.php:39 application/views/csv/index.php:42 +#: application/views/dashboard/index.php:4 +#: application/views/debug/index.php:548 +#: 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/logbookadvanced/edit.php:11 +#: application/views/logbookadvanced/index.php:181 +#: application/views/logbookadvanced/index.php:572 +#: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/mode/index.php:28 +#: application/views/oqrs/notinlogform.php:11 +#: application/views/oqrs/qsolist.php:9 application/views/oqrs/request.php:18 +#: application/views/oqrs/request_grouped.php:11 +#: application/views/oqrs/showrequests.php:84 +#: application/views/public_search/result.php:15 +#: application/views/qslcard/index.php:29 +#: application/views/qslcard/searchresult.php:12 +#: application/views/qslcard/searchresult.php:28 +#: application/views/qslcard/searchresult.php:44 +#: application/views/qslcard/searchresult.php:60 +#: application/views/qslcard/searchresult.php:76 +#: application/views/qslprint/qslprint.php:24 +#: application/views/qslprint/qsolist.php:9 +#: application/views/qso/components/previous_contacts.php:77 +#: application/views/qso/edit_ajax.php:119 application/views/qso/index.php:136 +#: application/views/satellite/index.php:24 +#: application/views/search/cqzones_result.php:10 +#: application/views/search/lotw_unconfirmed_result.php:8 +#: application/views/search/result_search.php:7 +#: application/views/search/search_result_ajax.php:4 +#: application/views/simplefle/index.php:150 +#: application/views/statistics/custom.php:60 +#: application/views/statistics/custom_result.php:62 +#: application/views/statistics/custom_result.php:88 +#: application/views/statistics/index.php:15 +#: application/views/statistics/index.php:20 +#: application/views/statistics/index.php:53 +#: application/views/timeline/index.php:19 application/views/user/edit.php:229 +#: application/views/user/edit.php:251 application/views/user/edit.php:273 +#: application/views/user/edit.php:295 application/views/user/edit.php:318 +#: application/views/view_log/partial/log.php:9 +#: application/views/view_log/partial/log_ajax.php:4 +#: application/views/view_log/qso.php:107 application/views/visitor/index.php:6 +#: application/views/widgets/qsos.php:29 +msgid "Mode" +msgstr "" + +#: application/controllers/Logbook.php:1285 +#: application/views/awards/pota/index.php:36 +#: application/views/awards/wwff/index.php:36 +#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:251 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/useroptions.php:38 +#: application/views/qslcard/searchresult.php:13 +#: application/views/qslcard/searchresult.php:29 +#: application/views/qslcard/searchresult.php:45 +#: application/views/qslcard/searchresult.php:61 +#: application/views/qslcard/searchresult.php:77 +#: application/views/qslprint/qslprint.php:26 +#: application/views/qslprint/qsolist.php:11 +#: application/views/qso/components/previous_contacts.php:78 +#: application/views/qso/edit_ajax.php:142 application/views/qso/index.php:177 +#: application/views/search/search_result_ajax.php:5 +#: application/views/simplefle/index.php:151 +#: application/views/user/edit.php:230 application/views/user/edit.php:252 +#: application/views/user/edit.php:274 application/views/user/edit.php:296 +#: application/views/user/edit.php:319 +#: application/views/view_log/partial/log.php:10 +#: application/views/view_log/partial/log_ajax.php:5 +#: application/views/view_log/qso.php:112 application/views/visitor/index.php:9 +msgid "RST (S)" +msgstr "" + +#: application/controllers/Logbook.php:1286 +#: application/views/awards/pota/index.php:37 +#: application/views/awards/wwff/index.php:37 +#: application/views/contesting/index.php:189 +#: application/views/contesting/index.php:252 +#: application/views/logbookadvanced/index.php:578 +#: application/views/logbookadvanced/useroptions.php:42 +#: application/views/qslcard/searchresult.php:14 +#: application/views/qslcard/searchresult.php:30 +#: application/views/qslcard/searchresult.php:46 +#: application/views/qslcard/searchresult.php:62 +#: application/views/qslcard/searchresult.php:78 +#: application/views/qslprint/qslprint.php:27 +#: application/views/qslprint/qsolist.php:12 +#: application/views/qso/components/previous_contacts.php:79 +#: application/views/qso/edit_ajax.php:147 application/views/qso/index.php:182 +#: application/views/search/search_result_ajax.php:6 +#: application/views/simplefle/index.php:152 +#: application/views/user/edit.php:231 application/views/user/edit.php:253 +#: application/views/user/edit.php:275 application/views/user/edit.php:297 +#: application/views/user/edit.php:320 +#: application/views/view_log/partial/log.php:11 +#: application/views/view_log/partial/log_ajax.php:6 +#: application/views/view_log/qso.php:117 +#: application/views/visitor/index.php:12 +msgid "RST (R)" +msgstr "" + +#: application/controllers/Logbook.php:1287 +#: application/views/dashboard/index.php:7 +#: application/views/qslcard/searchresult.php:15 +#: application/views/qslcard/searchresult.php:31 +#: application/views/qslcard/searchresult.php:47 +#: application/views/qslcard/searchresult.php:63 +#: application/views/qslcard/searchresult.php:79 +#: application/views/qso/components/previous_contacts.php:80 +#: application/views/search/result_search.php:11 +#: application/views/search/search_result_ajax.php:7 +#: application/views/stationsetup/stationsetup.php:124 +#: application/views/statistics/custom_result.php:92 +#: application/views/timeline/index.php:151 application/views/user/edit.php:232 +#: application/views/user/edit.php:254 application/views/user/edit.php:276 +#: application/views/user/edit.php:298 application/views/user/edit.php:321 +#: application/views/view_log/partial/log.php:13 +#: application/views/view_log/partial/log_ajax.php:7 +#: application/views/view_log/qso.php:238 +#: application/views/view_log/qso.php:531 +#: application/views/visitor/index.php:15 +msgid "Country" +msgstr "" + +#: application/controllers/Logbook.php:1288 +#: application/views/awards/iota/index.php:169 +#: application/views/bands/index.php:50 application/views/dashboard/index.php:8 +#: application/views/interface_assets/header.php:184 +#: application/views/logbookadvanced/edit.php:9 +#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:620 +#: application/views/logbookadvanced/qslcarousel.php:38 +#: application/views/logbookadvanced/useroptions.php:102 +#: application/views/lookup/index.php:6 +#: application/views/qslcard/searchresult.php:16 +#: application/views/qslcard/searchresult.php:32 +#: application/views/qslcard/searchresult.php:48 +#: application/views/qslcard/searchresult.php:64 +#: application/views/qslcard/searchresult.php:80 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/edit_ajax.php:345 +#: application/views/search/search_result_ajax.php:8 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:235 application/views/user/edit.php:233 +#: application/views/user/edit.php:255 application/views/user/edit.php:277 +#: application/views/user/edit.php:299 application/views/user/edit.php:322 +#: application/views/view_log/partial/log_ajax.php:8 +#: application/views/visitor/index.php:18 +msgid "IOTA" +msgstr "" + +#: application/controllers/Logbook.php:1292 +#: application/views/awards/counties/details.php:12 +#: application/views/awards/counties/index.php:20 +#: application/views/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 +#: application/views/contesting/index.php:56 +#: application/views/dashboard/index.php:12 +#: application/views/logbookadvanced/edit.php:21 +#: application/views/logbookadvanced/edit.php:66 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:611 +#: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/qslcard/searchresult.php:18 +#: application/views/qslcard/searchresult.php:34 +#: application/views/qslcard/searchresult.php:50 +#: application/views/qslcard/searchresult.php:66 +#: application/views/qslcard/searchresult.php:82 +#: application/views/qso/components/previous_contacts.php:85 +#: application/views/search/search_result_ajax.php:12 +#: application/views/timeline/index.php:210 application/views/user/edit.php:237 +#: application/views/user/edit.php:259 application/views/user/edit.php:281 +#: application/views/user/edit.php:303 application/views/user/edit.php:326 +#: application/views/view_log/partial/log_ajax.php:12 +#: application/views/visitor/index.php:24 +msgid "State" +msgstr "" + +#: application/controllers/Logbook.php:1293 +#: application/views/activated_gridmap/index.php:106 +#: application/views/awards/ffma/index.php:34 +#: application/views/awards/gridmaster/index.php:33 +#: application/views/awards/vucc/band.php:12 +#: application/views/contesting/index.php:17 +#: application/views/contesting/index.php:257 +#: application/views/dashboard/index.php:13 +#: application/views/distancerecords/index.php:20 +#: application/views/gridmap/index.php:152 +#: application/views/labels/index.php:125 +#: application/views/logbookadvanced/edit.php:8 +#: application/views/logbookadvanced/index.php:10 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/qslcarousel.php:39 +#: application/views/logbookadvanced/useroptions.php:126 +#: application/views/lookup/index.php:5 +#: application/views/qslcard/searchresult.php:19 +#: application/views/qslcard/searchresult.php:35 +#: application/views/qslcard/searchresult.php:51 +#: application/views/qslcard/searchresult.php:67 +#: application/views/qslcard/searchresult.php:83 +#: application/views/qso/components/previous_contacts.php:86 +#: application/views/qso/edit_ajax.php:156 application/views/qso/index.php:279 +#: application/views/satellite/pass.php:28 +#: application/views/search/cqzones_result.php:12 +#: application/views/search/result.php:33 +#: application/views/search/search_result_ajax.php:13 +#: application/views/simplefle/index.php:153 +#: application/views/stationsetup/stationsetup.php:125 +#: application/views/timeline/index.php:290 application/views/user/edit.php:130 +#: application/views/user/edit.php:238 application/views/user/edit.php:260 +#: application/views/user/edit.php:282 application/views/user/edit.php:304 +#: application/views/user/edit.php:327 application/views/user/profile.php:34 +#: application/views/view_log/partial/log_ajax.php:13 +#: application/views/view_log/qso.php:518 +#: application/views/visitor/index.php:27 +msgid "Gridsquare" +msgstr "" + +#: application/controllers/Logbook.php:1294 +#: application/views/activated_gridmap/index.php:108 +#: application/views/awards/ffma/index.php:36 +#: application/views/awards/gridmaster/index.php:35 +#: 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/logbookadvanced/index.php:12 +#: application/views/qslcard/searchresult.php:20 +#: application/views/qslcard/searchresult.php:36 +#: application/views/qslcard/searchresult.php:52 +#: application/views/qslcard/searchresult.php:68 +#: application/views/qslcard/searchresult.php:84 +#: application/views/qso/components/previous_contacts.php:87 +#: application/views/search/search_result_ajax.php:14 +#: application/views/user/edit.php:239 application/views/user/edit.php:261 +#: application/views/user/edit.php:283 application/views/user/edit.php:305 +#: application/views/user/edit.php:328 +#: application/views/view_log/partial/log_ajax.php:14 +#: application/views/visitor/index.php:30 +msgid "Distance" +msgstr "" + +#: application/controllers/Logbook.php:1295 +#: application/views/accumulate/index.php:21 +#: application/views/activated_gridmap/index.php:8 +#: application/views/activators/index.php:10 +#: application/views/adif/dcl_success.php:32 +#: application/views/awards/cq/index.php:74 +#: application/views/awards/dok/index.php:77 +#: application/views/awards/dxcc/index.php:117 +#: application/views/awards/helvetia/index.php:73 +#: application/views/awards/iota/index.php:91 +#: application/views/awards/itu/index.php:74 +#: application/views/awards/jcc/index.php:74 +#: application/views/awards/pota/index.php:35 +#: application/views/awards/rac/index.php:65 +#: application/views/awards/sig/qso_list.php:13 +#: application/views/awards/sota/index.php:26 +#: application/views/awards/vucc/index.php:21 +#: application/views/awards/wab/index.php:22 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/waja/index.php:77 +#: application/views/awards/was/index.php:73 +#: application/views/awards/wwff/index.php:35 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 +#: application/views/bands/create.php:24 application/views/bands/edit.php:6 +#: application/views/bands/index.php:45 +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:249 +#: application/views/continents/index.php:30 application/views/csv/index.php:31 +#: application/views/dashboard/index.php:15 +#: application/views/debug/index.php:549 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/logbookadvanced/edit.php:3 +#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/oqrs/notinlogform.php:10 +#: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 +#: application/views/oqrs/request_grouped.php:10 +#: application/views/oqrs/showrequests.php:83 +#: application/views/public_search/result.php:16 +#: application/views/qslcard/index.php:32 +#: application/views/qslcard/searchresult.php:21 +#: application/views/qslcard/searchresult.php:37 +#: application/views/qslcard/searchresult.php:39 +#: application/views/qslcard/searchresult.php:53 +#: application/views/qslcard/searchresult.php:69 +#: application/views/qslcard/searchresult.php:85 +#: application/views/qslmanagement/index.php:24 +#: application/views/qslprint/qslprint.php:25 +#: application/views/qslprint/qsolist.php:10 +#: application/views/qso/components/previous_contacts.php:88 +#: application/views/qso/edit_ajax.php:83 application/views/qso/index.php:151 +#: application/views/search/cqzones_result.php:11 +#: application/views/search/lotw_unconfirmed_result.php:9 +#: application/views/search/result_search.php:10 +#: application/views/search/search_result_ajax.php:15 +#: application/views/simplefle/index.php:149 +#: application/views/stationsetup/exportmapoptions.php:31 +#: application/views/statistics/custom.php:53 +#: application/views/statistics/custom_result.php:55 +#: application/views/statistics/custom_result.php:91 +#: application/views/statistics/index.php:21 +#: application/views/timeline/index.php:7 +#: application/views/timeplotter/index.php:14 +#: application/views/user/edit.php:227 application/views/user/edit.php:249 +#: application/views/user/edit.php:271 application/views/user/edit.php:293 +#: application/views/user/edit.php:316 +#: application/views/view_log/partial/log.php:12 +#: application/views/view_log/partial/log_ajax.php:15 +#: application/views/view_log/qso.php:87 application/views/visitor/index.php:33 +#: application/views/widgets/qsos.php:32 +msgid "Band" +msgstr "" + +#: application/controllers/Logbook.php:1296 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 +#: application/views/contesting/index.php:138 +#: application/views/dashboard/index.php:16 +#: application/views/qslcard/searchresult.php:22 +#: application/views/qslcard/searchresult.php:38 +#: application/views/qslcard/searchresult.php:54 +#: application/views/qslcard/searchresult.php:70 +#: application/views/qslcard/searchresult.php:86 +#: application/views/qso/components/previous_contacts.php:89 +#: application/views/qso/edit_ajax.php:71 application/views/qso/index.php:169 +#: application/views/search/search_result_ajax.php:16 +#: application/views/user/edit.php:228 application/views/user/edit.php:250 +#: application/views/user/edit.php:272 application/views/user/edit.php:294 +#: application/views/user/edit.php:317 +#: application/views/view_log/partial/log_ajax.php:16 +#: application/views/view_log/qso.php:94 application/views/visitor/index.php:36 +msgid "Frequency" +msgstr "" + +#: application/controllers/Logbook.php:1297 +#: application/views/dashboard/index.php:17 +#: application/views/logbookadvanced/edit.php:12 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:626 +#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/qslcard/searchresult.php:23 +#: application/views/qslcard/searchresult.php:55 +#: application/views/qslcard/searchresult.php:71 +#: application/views/qslcard/searchresult.php:87 +#: application/views/qso/components/previous_contacts.php:90 +#: application/views/search/search_result_ajax.php:17 +#: application/views/simplefle/index.php:112 +#: application/views/user/edit.php:240 application/views/user/edit.php:262 +#: application/views/user/edit.php:284 application/views/user/edit.php:306 +#: application/views/user/edit.php:329 +#: application/views/view_log/partial/log_ajax.php:17 +#: application/views/view_log/qso.php:538 +#: application/views/visitor/index.php:39 +msgid "Operator" +msgstr "" + +#: application/controllers/Logbook.php:1318 +#: application/controllers/Stationsetup.php:381 +#: application/views/awards/dxcc/index.php:28 +#: application/views/awards/dxcc/index.php:238 +#: application/views/csv/index.php:65 application/views/dashboard/index.php:28 +#: application/views/dxatlas/index.php:65 +#: application/views/interface_assets/footer.php:675 +#: application/views/kml/index.php:54 +#: application/views/logbookadvanced/index.php:165 +#: application/views/lookup/index.php:31 +#: application/views/lotw_views/index.php:52 +#: application/views/qso/components/previous_contacts.php:59 +#: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:45 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/timeline/index.php:167 +#: application/views/timeplotter/index.php:33 +#: application/views/view_log/partial/log_ajax.php:29 +#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:532 +msgid "Deleted DXCC" +msgstr "" + +#: application/controllers/Logbookadvanced.php:31 +msgid "Advanced logbook" +msgstr "" + +#: application/controllers/Lookup.php:22 +msgid "Quick Lookup" +msgstr "" + +#: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83 +#: application/controllers/Lotw.php:125 application/views/adif/import.php:27 +#: application/views/interface_assets/header.php:429 +#: application/views/lotw/import.php:3 +#: application/views/lotw_views/index.php:12 +#: application/views/lotw_views/upload_cert.php:3 +#: application/views/user/edit.php:705 application/views/visitor/index.php:324 +msgid "Logbook of the World" +msgstr "" + +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "" + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "" + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "" + +#: application/controllers/Lotw.php:413 +#, 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:617 +msgid "LoTW ADIF Information" +msgstr "" + +#: application/controllers/Lotw.php:725 +msgid "LoTW ADIF Import" +msgstr "" + +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "" + +#: application/controllers/Lotw.php:837 +msgid "LoTW .TQ8 Upload" +msgstr "" + +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "" + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 +msgid "LoTW .TQ8 Sent" +msgstr "" + +#: application/controllers/Lotw.php:946 +msgid "LoTW .TQ8 Not Sent" +msgstr "" + +#: application/controllers/Mode.php:25 +#: application/views/interface_assets/header.php:276 +#: application/views/mode/index.php:15 +msgid "Modes" +msgstr "" + +#: application/controllers/Mode.php:62 +msgid "Edit Mode" +msgstr "" + +#: application/controllers/Notes.php:18 +#: application/views/interface_assets/header.php:128 +#: application/views/notes/add.php:9 application/views/notes/edit.php:10 +#: application/views/notes/main.php:5 application/views/notes/main.php:8 +#: application/views/notes/view.php:6 application/views/notes/view.php:9 +#: application/views/qso/edit_ajax.php:36 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:38 +#: application/views/qso/index.php:563 application/views/qso/index.php:608 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:593 +msgid "Notes" +msgstr "" + +#: application/controllers/Notes.php:37 +msgid "Add Notes" +msgstr "" + +#: application/controllers/Notes.php:64 +#: application/views/oqrs/showrequests.php:88 +msgid "Note" +msgstr "" + +#: application/controllers/Notes.php:92 application/views/notes/edit.php:7 +#: application/views/notes/view.php:19 +msgid "Edit Note" +msgstr "" + +#: application/controllers/Options.php:31 +#: application/controllers/Options.php:41 +#: application/controllers/Options.php:56 +#: application/controllers/Options.php:144 +#: application/controllers/Options.php:155 +#: application/controllers/Options.php:192 +#: application/controllers/Options.php:203 +#: application/controllers/Options.php:236 +#: application/controllers/Options.php:247 +#: application/controllers/Options.php:317 +#: application/controllers/Options.php:327 +#: application/controllers/Options.php:395 +#: application/controllers/Options.php:405 +msgid "Wavelog Options" +msgstr "" + +#: application/controllers/Options.php:42 +#: application/controllers/Options.php:57 +#: application/views/options/sidebar.php:4 +msgid "Appearance" +msgstr "" + +#: application/controllers/Options.php:78 +#: application/controllers/Options.php:86 +#: application/controllers/Options.php:94 +#: application/controllers/Options.php:102 +#: application/controllers/Options.php:110 +#: application/controllers/Options.php:118 +#: application/controllers/Options.php:126 +#: application/controllers/Options.php:134 +msgid "Options saved" +msgstr "" + +#: application/controllers/Options.php:173 +msgid "de continent changed to " +msgstr "" + +#: application/controllers/Options.php:178 +msgid "Maximum age of spots changed to " +msgstr "" + +#: application/controllers/Options.php:183 +msgid "DXCluster Cache URL changed to " +msgstr "" + +#: application/controllers/Options.php:193 +#: application/controllers/Options.php:204 +msgid "Radio Settings" +msgstr "" + +#: application/controllers/Options.php:225 +msgid "Radio Timeout Warning changed to " +msgstr "" + +#: application/controllers/Options.php:237 +#: application/controllers/Options.php:248 +#: application/views/options/sidebar.php:6 +msgid "Email" +msgstr "" + +#: application/controllers/Options.php:305 +msgid "The settings were saved successfully." +msgstr "" + +#: application/controllers/Options.php:307 +msgid "Something went wrong with saving the settings. Try again." +msgstr "" + +#: application/controllers/Options.php:318 +#: application/controllers/Options.php:328 +#: application/views/options/sidebar.php:8 +msgid "OQRS Options" +msgstr "" + +#: application/controllers/Options.php:341 +msgid "OQRS options have been saved." +msgstr "" + +#: application/controllers/Options.php:381 +#: application/controllers/Options.php:386 +msgid "Testmail failed. Something went wrong." +msgstr "" + +#: application/controllers/Options.php:383 +msgid "Testmail sent. Email settings seem to be correct." +msgstr "" + +#: application/controllers/Options.php:396 +#: application/controllers/Options.php:406 +msgid "Version Info Settings" +msgstr "" + +#: application/controllers/Options.php:412 +msgid "Version Info Header changed to" +msgstr "" + +#: application/controllers/Options.php:416 +msgid "Version Info Mode changed to" +msgstr "" + +#: application/controllers/Options.php:421 +msgid "Version Info Custom Text saved!" +msgstr "" + +#: application/controllers/Options.php:432 +msgid "Version Info will be shown to all users again" +msgstr "" + +#: application/controllers/Options.php:440 +msgid "Version Info will not be shown to any user" +msgstr "" + +#: application/controllers/Oqrs.php:46 application/controllers/Oqrs.php:85 +#: application/controllers/Oqrs.php:97 +msgid "Log Search & OQRS" +msgstr "" + +#: application/controllers/Oqrs.php:127 +#: application/views/interface_assets/header.php:419 +msgid "OQRS Requests" +msgstr "" + +#: application/controllers/Qrbcalc.php:17 +msgid "QRB Calculator" +msgstr "" + +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "" + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" + +#: application/controllers/Qrz.php:173 +#: application/views/interface_assets/header.php:432 +msgid "QRZ Logbook" +msgstr "" + +#: application/controllers/Qrz.php:253 +msgid "QRZ QSL Import" +msgstr "" + +#: application/controllers/Qrz.php:307 +msgid "QRZ ADIF Information" +msgstr "" + +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:277 +#: application/views/qslcard/index.php:5 +#: application/views/visitor/index.php:283 +msgid "QSL Cards" +msgstr "" + +#: application/controllers/Qsl.php:35 +msgid "Upload QSL Cards" +msgstr "" + +#: application/controllers/Qslmanagement.php:14 +msgid "QSL Card Management" +msgstr "" + +#: application/controllers/Qslprint.php:46 +msgid "Print Requested QSLs" +msgstr "" + +#: application/controllers/Qso.php:102 +msgid "Add QSO" +msgstr "" + +#: application/controllers/Radio.php:17 +#: application/views/interface_assets/header.php:438 +msgid "Hardware Interfaces" +msgstr "" + +#: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 +#: application/views/bandmap/list.php:60 +#: application/views/contesting/index.php:143 +#: application/views/qso/index.php:312 +msgid "Radio" +msgstr "" + +#: application/controllers/Radio.php:50 +msgid "Timestamp" +msgstr "" + +#: application/controllers/Radio.php:52 +#: application/views/logbookadvanced/index.php:550 +#: application/views/lotw_views/index.php:43 +#: application/views/simplefle/index.php:20 +#: application/views/simplefle/index.php:177 +#: application/views/stationsetup/exportmapoptions.php:5 +#: application/views/statistics/custom.php:31 +#: application/views/statistics/custom_result.php:33 +msgid "Options" +msgstr "" + +#: application/controllers/Radio.php:90 +#: application/views/contesting/index.php:147 +#: application/views/qso/index.php:316 +msgid "last updated" +msgstr "" + +#: application/controllers/Radio.php:97 application/controllers/Radio.php:100 +msgid "Set as default radio" +msgstr "" + +#: application/controllers/Radio.php:102 +msgid "Default (click to release)" +msgstr "" + +#: application/controllers/Radio.php:105 +#: application/controllers/Stationsetup.php:372 +#: application/views/api/help.php:61 application/views/contesting/add.php:62 +#: application/views/interface_assets/footer.php:2337 +#: application/views/interface_assets/footer.php:2355 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:542 +#: application/views/lotw_views/index.php:114 +#: application/views/mode/index.php:55 +#: application/views/oqrs/showrequests.php:71 +#: application/views/qslcard/index.php:65 +#: application/views/satellite/edit.php:40 +#: application/views/satellite/index.php:26 +#: application/views/search/stored_queries.php:22 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:192 +#: application/views/themes/index.php:107 application/views/user/index.php:57 +#: application/views/view_log/qso.php:616 +msgid "Delete" +msgstr "" + +#: application/controllers/Radio.php:111 +msgid "No CAT interfaced radios found." +msgstr "" + +#: application/controllers/Reg1test.php:25 +msgid "Export EDI" +msgstr "" + +#: application/controllers/Satellite.php:39 +msgid "Create Satellite" +msgstr "" + +#: application/controllers/Satellite.php:66 +msgid "Edit Satellite" +msgstr "" + +#: application/controllers/Sattimers.php:41 +#, php-format +msgid "You have no station locations. Go %s to create it!" +msgstr "" + +#: application/controllers/Sattimers.php:41 +#: application/views/awards/counties/index.php:8 +#: application/views/awards/dok/index.php:10 +#: application/views/awards/iota/index.php:19 +#: application/views/awards/was/index.php:23 +#: application/views/simplefle/index.php:16 +msgid "here" +msgstr "" + +#: application/controllers/Sattimers.php:44 +#: application/views/sattimers/index.php:13 +msgid "Satellite Timers" +msgstr "" + +#: application/controllers/Search.php:19 +#: application/views/continents/index.php:49 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:340 +#: application/views/interface_assets/header.php:347 +#: application/views/logbookadvanced/index.php:538 +#: application/views/oqrs/index.php:28 +#: application/views/oqrs/showrequests.php:67 +#: application/views/qslcard/searchform.php:8 +#: application/views/search/cqzones.php:4 +#: application/views/search/cqzones.php:12 +#: application/views/search/cqzones.php:36 +#: application/views/search/filter.php:20 +#: application/views/search/filter.php:38 +#: application/views/search/lotw_unconfirmed.php:4 +#: application/views/search/lotw_unconfirmed.php:12 +#: application/views/search/lotw_unconfirmed.php:37 +#: application/views/search/main.php:4 application/views/search/main.php:12 +#: application/views/search/main.php:33 +#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:98 +msgid "Search" +msgstr "" + +#: application/controllers/Search.php:28 +msgid "Search & Filter Logbook" +msgstr "" + +#: application/controllers/Search.php:58 +msgid "Incorrectly logged CQ zones" +msgstr "" + +#: application/controllers/Search.php:70 +msgid "" +"QSOs unconfirmed on LoTW, but the callsign has uploaded to LoTW after QSO " +"date" +msgstr "" + +#: application/controllers/Station.php:36 +#: application/controllers/Stationsetup.php:226 +msgid "Create Station Location" +msgstr "" + +#: application/controllers/Station.php:51 +msgid "Edit Station Location: " +msgstr "" + +#: application/controllers/Station.php:59 application/views/csv/index.php:19 +#: application/views/dxatlas/index.php:19 +#: application/views/labels/index.php:124 +#: application/views/logbookadvanced/edit.php:19 +#: application/views/qslprint/index.php:20 application/views/qso/index.php:300 +#: application/views/search/search_result_ajax.php:18 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 +#: application/views/user/edit.php:331 +#: application/views/view_log/partial/log_ajax.php:18 +#: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 +#: application/views/webadif/export.php:115 +msgid "Station Location" +msgstr "" + +#: application/controllers/Station.php:73 +msgid "Duplicate Station Location:" +msgstr "" + +#: application/controllers/Stationsetup.php:35 +#: application/views/interface_assets/header.php:381 +#: application/views/interface_assets/header.php:494 +msgid "Station Setup" +msgstr "" + +#: application/controllers/Stationsetup.php:50 +#: application/controllers/Stationsetup.php:68 +#: application/controllers/Stationsetup.php:395 +#: application/controllers/Stationsetup.php:409 +msgid "Not allowed" +msgstr "" + +#: application/controllers/Stationsetup.php:72 +#: application/controllers/Stationsetup.php:86 +#: application/controllers/Stationsetup.php:105 +#: application/controllers/Stationsetup.php:118 +#: application/controllers/Stationsetup.php:131 +#: application/controllers/Stationsetup.php:152 +#: application/controllers/Stationsetup.php:436 +#: application/views/qso/index.php:630 +msgid "Error" +msgstr "" + +#: application/controllers/Stationsetup.php:159 +#: application/views/stationsetup/stationsetup.php:22 +msgid "Create Station Logbook" +msgstr "" + +#: application/controllers/Stationsetup.php:166 +msgid "Edit container name" +msgstr "" + +#: application/controllers/Stationsetup.php:181 +msgid "Edit linked locations" +msgstr "" + +#: application/controllers/Stationsetup.php:190 +msgid "Edit visitor site" +msgstr "" + +#: application/controllers/Stationsetup.php:212 +msgid "Error. Link is already in use!" +msgstr "" + +#: application/controllers/Stationsetup.php:253 +#: application/views/options/appearance.php:57 +#: application/views/options/appearance.php:64 +#: application/views/options/appearance.php:73 +#: application/views/options/appearance.php:83 +#: application/views/options/appearance.php:92 +#: application/views/options/appearance.php:101 +#: application/views/options/appearance.php:110 +#: application/views/options/version_dialog.php:66 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 +#: application/views/stationsetup/stationsetup.php:76 +#: application/views/user/edit.php:451 application/views/user/edit.php:460 +msgid "Disabled" +msgstr "" + +#: application/controllers/Stationsetup.php:261 +#: application/views/stationsetup/stationsetup.php:44 +msgid "Set as Active Logbook" +msgstr "" + +#: application/controllers/Stationsetup.php:263 +#: application/views/interface_assets/header.php:492 +#: application/views/stationsetup/stationsetup.php:46 +#: application/views/view_log/index.php:4 +msgid "Active Logbook" +msgstr "" + +#: application/controllers/Stationsetup.php:270 +#: application/views/stationsetup/stationsetup.php:55 +msgid "" +"Are you sure you want to delete the following station logbook? You must re-" +"link any locations linked here to another logbook.: " +msgstr "" + +#: application/controllers/Stationsetup.php:280 +#: application/views/stationsetup/stationsetup.php:65 +msgid "View Public Page for Logbook: " +msgstr "" + +#: application/controllers/Stationsetup.php:281 +msgid "Are you sure you want to delete the public slug?" +msgstr "" + +#: application/controllers/Stationsetup.php:349 +#: application/views/stationsetup/stationsetup.php:154 +msgid "" +"Are you sure you want to make the following station the active station: " +msgstr "" + +#: application/controllers/Stationsetup.php:349 +#: application/views/stationsetup/stationsetup.php:154 +msgid "Set Active" +msgstr "" + +#: application/controllers/Stationsetup.php:351 +#: application/views/stationsetup/stationsetup.php:156 +msgid "Active Station" +msgstr "" + +#: application/controllers/Stationsetup.php:354 +#: application/views/interface_assets/header.php:113 +#: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 +#: application/views/simplefle/index.php:28 +#: application/views/stationsetup/stationsetup.php:161 +#: application/views/user/index.php:90 application/views/user/index.php:92 +msgid "QSO" +msgstr "" + +#: application/controllers/Stationsetup.php:359 +#: application/views/api/help.php:57 application/views/contesting/add.php:59 +#: application/views/cron/index.php:58 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 +#: application/views/labels/index.php:47 application/views/labels/index.php:83 +#: application/views/logbookadvanced/index.php:541 +#: application/views/mode/index.php:52 application/views/satellite/edit.php:39 +#: application/views/satellite/index.php:25 +#: application/views/search/stored_queries.php:21 +#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:165 +#: application/views/themes/index.php:104 application/views/user/index.php:52 +msgid "Edit" +msgstr "" + +#: application/controllers/Stationsetup.php:363 +#: application/views/stationsetup/stationsetup.php:185 +msgid "Are you sure you want to delete all QSOs within this station profile?" +msgstr "" + +#: application/controllers/Stationsetup.php:363 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:187 +msgid "Empty Log" +msgstr "" + +#: application/controllers/Stationsetup.php:367 +#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:168 +msgid "Copy" +msgstr "" + +#: application/controllers/Stationsetup.php:372 +#: application/views/stationsetup/stationsetup.php:191 +#, php-format +msgid "" +"Are you sure you want delete station profile '%s'? This will delete all QSOs " +"within this station profile." +msgstr "" + +#: application/controllers/Stationsetup.php:379 +#: application/views/qso/edit_ajax.php:221 +msgid "NONE" +msgstr "" + +#: application/controllers/Stationsetup.php:462 +msgid "Edit Export Map options" +msgstr "" + +#: application/controllers/Statistics.php:27 +#: application/views/interface_assets/header.php:134 +msgid "Statistics" +msgstr "" + +#: application/controllers/Statistics.php:50 +msgid "Custom Statistics" +msgstr "" + +#: application/controllers/Statistics.php:232 +#: application/views/interface_assets/header.php:136 +#: application/views/statistics/qsltable.php:5 +msgid "QSL Statistics" +msgstr "" + +#: application/controllers/Themes.php:27 +#: application/views/interface_assets/header.php:282 +msgid "Themes" +msgstr "" + +#: application/controllers/Themes.php:46 +msgid "Create Theme" +msgstr "" + +#: application/controllers/Themes.php:65 +msgid "Edit Theme" +msgstr "" + +#: application/controllers/Timeline.php:15 +#: application/views/interface_assets/header.php:150 +#: application/views/timeline/index.php:2 +msgid "Timeline" +msgstr "" + +#: application/controllers/Timeplotter.php:17 +#: application/views/interface_assets/header.php:154 +#: application/views/timeplotter/index.php:9 +msgid "Timeplotter" +msgstr "" + +#: application/controllers/Update.php:26 +msgid "Updates" +msgstr "" + +#: application/controllers/Update.php:78 +msgid "Preparing DXCC-Entries: " +msgstr "" + +#: application/controllers/Update.php:122 +msgid "Preparing DXCC Exceptions: " +msgstr "" + +#: application/controllers/Update.php:166 +msgid "Preparing DXCC Prefixes: " +msgstr "" + +#: application/controllers/Update.php:230 +msgid "DONE" +msgstr "" + +#: application/controllers/Update.php:244 +msgid "Updating..." +msgstr "" + +#: application/controllers/Update.php:247 +msgid "Dxcc Entities:" +msgstr "" + +#: application/controllers/Update.php:248 +msgid "Dxcc Exceptions:" +msgstr "" + +#: application/controllers/Update.php:249 +msgid "Dxcc Prefixes:" +msgstr "" + +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:272 +msgid "User Accounts" +msgstr "" + +#: application/controllers/User.php:76 +msgid "Add User" +msgstr "" + +#: application/controllers/User.php:190 +msgid "Users" +msgstr "" + +#: application/controllers/User.php:264 application/controllers/User.php:697 +msgid "Edit User" +msgstr "" + +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 +msgid "User" +msgstr "" + +#: application/controllers/User.php:689 application/controllers/User.php:692 +msgid "edited" +msgstr "" + +#: application/controllers/User.php:746 +msgid "Profile" +msgstr "" + +#: application/controllers/User.php:803 +msgid "" +"Congrats! Wavelog was successfully installed. You can now login for the " +"first time." +msgstr "" + +#: application/controllers/User.php:867 application/controllers/User.php:877 +msgid "Login failed. Try again." +msgstr "" + +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:360 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:87 +msgid "Login" +msgstr "" + +#: application/controllers/User.php:922 +msgid "" +"Sorry. This instance is currently in maintenance mode. If this message " +"appears unexpectedly or keeps showing up, please contact an administrator. " +"Only administrators are currently allowed to log in." +msgstr "" + +#: application/controllers/User.php:925 +msgid "Incorrect username or password!" +msgstr "" + +#: application/controllers/User.php:942 +#, php-format +msgid "User %s logged out." +msgstr "" + +#: application/controllers/User.php:956 +msgid "Password Reset is disabled on the Demo!" +msgstr "" + +#: application/controllers/User.php:969 +msgid "Forgot Password" +msgstr "" + +#: application/controllers/User.php:1019 application/views/user/index.php:8 +msgid "Email settings are incorrect." +msgstr "" + +#: application/controllers/User.php:1023 application/controllers/User.php:1028 +msgid "Password Reset Processed." +msgstr "" + +#: application/controllers/User.php:1129 +#: application/views/user/forgot_password.php:51 +#: application/views/user/reset_password.php:8 +#: application/views/user/reset_password.php:35 +msgid "Reset Password" +msgstr "" + +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "" + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "" + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "" + +#: application/controllers/Visitor.php:50 +#: application/controllers/Visitor.php:81 +#: application/controllers/Visitor.php:148 +#: application/controllers/Visitor.php:175 +#: application/controllers/Visitor.php:210 +#: application/controllers/Visitor.php:472 +#: application/controllers/Widgets.php:40 +msgid "Unknown Public Page." +msgstr "" + +#: application/controllers/Visitor.php:76 +#: application/controllers/Visitor.php:171 +#: application/controllers/Visitor.php:206 +#: application/controllers/Visitor.php:468 +#: application/controllers/Widgets.php:36 +msgid "Empty Logbook" +msgstr "" + +#: application/controllers/Visitor.php:216 +msgid "Satellite Gridsquare Map" +msgstr "" + +#: application/controllers/Visitor.php:405 +#: application/views/stationsetup/stationsetup.php:35 +msgid "Public Search" +msgstr "" + +#: application/controllers/Visitor.php:438 +msgid "Export Map" +msgstr "" + +#: application/controllers/Webadif.php:90 +#: application/controllers/Webadif.php:137 +#: application/views/interface_assets/header.php:433 +msgid "QO-100 Dx Club Upload" +msgstr "" + +#: application/controllers/Widgets.php:21 +msgid "Unknown Public Page, please make sure the public slug is correct." +msgstr "" + +#: application/controllers/Widgets.php:54 application/views/oqrs/index.php:69 +msgid "No stations found that are using Wavelog OQRS." +msgstr "" + +#: application/libraries/Subdivisions.php:31 +msgctxt "Division Name (States in various countries)." +msgid "Province" +msgstr "" + +#: application/libraries/Subdivisions.php:39 +msgctxt "Division Name (States in various countries)." +msgid "Oblast" +msgstr "" + +#: application/libraries/Subdivisions.php:41 +#: application/libraries/Subdivisions.php:47 +msgctxt "Division Name (States in various countries)." +msgid "Region" +msgstr "" + +#: application/libraries/Subdivisions.php:45 +msgctxt "Division Name (States in various countries)." +msgid "Department" +msgstr "" + +#: application/libraries/Subdivisions.php:49 +msgctxt "Division Name (States in various countries)." +msgid "Municipality" +msgstr "" + +#: application/libraries/Subdivisions.php:51 +msgctxt "Division Name (States in various countries)." +msgid "Federal State" +msgstr "" + +#: application/libraries/Subdivisions.php:56 +#: application/libraries/Subdivisions.php:94 +msgctxt "Division Name (States in various countries)." +msgid "County" +msgstr "" + +#: application/libraries/Subdivisions.php:60 +#: application/libraries/Subdivisions.php:85 +msgctxt "Division Name (States in various countries)." +msgid "District" +msgstr "" + +#: application/libraries/Subdivisions.php:62 +msgctxt "Division Name (States in various countries)." +msgid "Canton" +msgstr "" + +#: application/libraries/Subdivisions.php:64 +msgctxt "Division Name (States in various countries)." +msgid "US State" +msgstr "" + +#: application/libraries/Subdivisions.php:67 +msgctxt "Division Name (States in various countries)." +msgid "Prefecture" +msgstr "" + +#: application/libraries/Subdivisions.php:69 +msgctxt "Division Name (States in various countries)." +msgid "State" +msgstr "" + +#: application/libraries/Subdivisions.php:78 +msgctxt "Division Name (States in various countries)." +msgid "US County" +msgstr "" + +#: application/libraries/Subdivisions.php:90 +msgctxt "Division Name (States in various countries)." +msgid "DME" +msgstr "" + +#: application/libraries/Subdivisions.php:92 +msgctxt "Division Name (States in various countries)." +msgid "City / Ku / Gun" +msgstr "" + +#: application/models/Eqslmethods_model.php:281 +msgid "Your eQSL username and/or password is incorrect." +msgstr "" + +#: application/models/Eqslmethods_model.php:287 +msgid "Something went wrong with eQSL.cc!" +msgstr "" + +#: application/models/Eqslmethods_model.php:303 +msgid "eQSL.cc is experiencing issues. Please try exporting QSOs later." +msgstr "" + +#: application/models/Eqslmethods_model.php:309 +msgid "" +"There was an error in one of the QSOs. You might want to manually upload " +"them." +msgstr "" + +#: application/models/Eqslmethods_model.php:315 +msgid "" +"It seems that the eQSL site has changed. Please open up an issue on GitHub." +msgstr "" + +#: application/models/Hrdlog_model.php:22 +msgid "" +"HRDlog: QSOs have been uploaded to hrdlog.net for the station callsign: " +msgstr "" + +#: application/models/Hrdlog_model.php:25 +msgid "HRDlog: No QSOs found to upload for the station callsign: " +msgstr "" + +#: application/models/Hrdlog_model.php:31 +msgid "HRDlog: No station profiles with HRDlog Credentials found." +msgstr "" + +#: application/models/Logbook_model.php:4255 +msgid "QSO could not be matched" +msgstr "" + +#: application/models/Logbook_model.php:4261 +msgid "confirmed by LoTW/Clublog/eQSL/Contest" +msgstr "" + +#: application/models/Logbook_model.php:4266 +msgid "confirmed by award manager" +msgstr "" + +#: application/models/Logbook_model.php:4269 +msgid "confirmed by cross-check of DCL data" +msgstr "" + +#: application/models/Logbook_model.php:4272 +msgid "confirmation pending" +msgstr "" + +#: application/models/Logbook_model.php:4275 +msgid "unconfirmed" +msgstr "" + +#: application/models/Logbook_model.php:4278 +msgid "unknown" +msgstr "" + +#: application/views/accumulate/index.php:2 +msgid "Accumulated number of DXCCs worked" +msgstr "" + +#: application/views/accumulate/index.php:3 +msgid "Accumulated number of States worked" +msgstr "" + +#: application/views/accumulate/index.php:4 +msgid "Accumulated number of IOTAs worked" +msgstr "" + +#: application/views/accumulate/index.php:5 +msgid "Accumulated number of CQ Zones worked" +msgstr "" + +#: application/views/accumulate/index.php:6 +msgid "Accumulated number of VUCC Grids worked" +msgstr "" + +#: application/views/accumulate/index.php:7 +msgid "Accumulated number of WAJA worked" +msgstr "" + +#: application/views/accumulate/index.php:8 +#: application/views/dashboard/index.php:238 +#: application/views/dayswithqso/index.php:16 +#: application/views/statistics/index.php:18 +#: application/views/visitor/index.php:246 +msgid "Year" +msgstr "" + +#: application/views/accumulate/index.php:9 +#: application/views/accumulate/index.php:67 +msgid "Yearly" +msgstr "" + +#: application/views/accumulate/index.php:10 +#: application/views/dashboard/index.php:243 +#: application/views/visitor/index.php:251 +msgid "Month" +msgstr "" + +#: application/views/accumulate/index.php:11 +#: application/views/accumulate/index.php:73 +msgid "Monthly" +msgstr "" + +#: application/views/accumulate/index.php:12 +msgid "Difference" +msgstr "" + +#: application/views/accumulate/index.php:24 +#: application/views/accumulate/index.php:34 +#: application/views/accumulate/index.php:83 +#: application/views/activated_gridmap/index.php:10 +#: application/views/activated_gridmap/index.php:22 +#: application/views/activated_gridmap/index.php:32 +#: application/views/activated_gridmap/index.php:41 +#: application/views/activators/index.php:13 +#: application/views/awards/cq/index.php:77 +#: application/views/awards/cq/index.php:91 +#: application/views/awards/dok/index.php:94 +#: application/views/awards/dxcc/index.php:134 +#: application/views/awards/dxcc/index.php:150 +#: application/views/awards/dxcc/index.php:165 +#: application/views/awards/helvetia/index.php:90 +#: application/views/awards/iota/index.php:108 +#: application/views/awards/itu/index.php:77 +#: application/views/awards/itu/index.php:91 +#: application/views/awards/jcc/index.php:91 +#: application/views/awards/rac/index.php:82 +#: application/views/awards/wab/index.php:24 +#: application/views/awards/wab/index.php:36 +#: application/views/awards/wab/index.php:46 +#: application/views/awards/wab/index.php:55 +#: application/views/awards/wac/index.php:81 +#: application/views/awards/wac/index.php:97 +#: application/views/awards/wac/index.php:113 +#: application/views/awards/waja/index.php:94 +#: application/views/awards/was/index.php:90 +#: application/views/bandmap/list.php:71 application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:90 application/views/bands/index.php:117 +#: application/views/cabrillo/index.php:65 +#: application/views/continents/index.php:32 +#: application/views/continents/index.php:41 application/views/csv/index.php:21 +#: application/views/csv/index.php:33 application/views/csv/index.php:44 +#: application/views/csv/index.php:60 application/views/csv/index.php:82 +#: application/views/csv/index.php:94 application/views/distances/index.php:21 +#: application/views/distances/index.php:36 +#: application/views/distances/index.php:46 +#: application/views/distances/index.php:56 +#: application/views/dxatlas/index.php:21 +#: application/views/dxatlas/index.php:33 +#: application/views/dxatlas/index.php:44 +#: 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/interface_assets/footer.php:1448 +#: application/views/interface_assets/footer.php:1587 +#: application/views/kml/index.php:21 application/views/kml/index.php:33 +#: application/views/kml/index.php:49 application/views/kml/index.php:67 +#: application/views/kml/index.php:79 +#: application/views/logbookadvanced/index.php:183 +#: application/views/logbookadvanced/index.php:194 +#: application/views/logbookadvanced/index.php:205 +#: application/views/logbookadvanced/index.php:214 +#: application/views/logbookadvanced/index.php:223 +#: application/views/logbookadvanced/index.php:248 +#: application/views/logbookadvanced/index.php:259 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:423 +#: application/views/lotw/import.php:54 +#: application/views/oqrs/showrequests.php:33 +#: application/views/oqrs/showrequests.php:49 +#: application/views/oqrs/showrequests.php:62 +#: application/views/qslprint/index.php:22 +#: application/views/search/cqzones.php:30 +#: application/views/search/lotw_unconfirmed.php:31 +#: application/views/stationsetup/exportmapoptions.php:33 +#: application/views/timeline/index.php:10 +#: application/views/timeline/index.php:22 +#: application/views/timeline/index.php:77 +#: application/views/timeplotter/index.php:17 +#: application/views/timeplotter/index.php:27 +#: application/views/timeplotter/index.php:47 +#: application/views/user/edit.php:633 +#: application/views/visitor/layout/footer.php:171 +msgid "All" +msgstr "" + +#: application/views/accumulate/index.php:50 +#: application/views/timeline/index.php:41 +msgid "Award" +msgstr "" + +#: application/views/accumulate/index.php:53 +#: application/views/timeline/index.php:44 +msgid "DX Century Club (DXCC)" +msgstr "" + +#: application/views/accumulate/index.php:55 +#: application/views/timeline/index.php:46 +msgid "Islands On The Air (IOTA)" +msgstr "" + +#: application/views/accumulate/index.php:56 +#: application/views/timeline/index.php:47 +msgid "Worked All Zones (WAZ)" +msgstr "" + +#: application/views/accumulate/index.php:57 +#: application/views/timeline/index.php:48 +msgid "VHF / UHF Century Club (VUCC)" +msgstr "" + +#: application/views/accumulate/index.php:58 +#: application/views/timeline/index.php:49 +msgid "Worked All Japan (WAJA)" +msgstr "" + +#: application/views/accumulate/index.php:62 +msgid "Period" +msgstr "" + +#: application/views/accumulate/index.php:80 +#: application/views/distances/index.php:53 +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/timeline/index.php:74 +msgid "Propagation" +msgstr "" + +#: application/views/accumulate/index.php:84 +#: application/views/distances/index.php:57 +#: application/views/timeline/index.php:78 +msgid "All but SAT" +msgstr "" + +#: application/views/accumulate/index.php:85 +#: application/views/distances/index.php:58 +#: application/views/gridmap/index.php:42 +#: application/views/logbookadvanced/edit.php:142 +#: application/views/logbookadvanced/index.php:307 +#: application/views/timeline/index.php:79 +msgid "None/Empty" +msgstr "" + +#: application/views/accumulate/index.php:86 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/logbookadvanced/index.php:225 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:414 +#: application/views/timeline/index.php:80 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/accumulate/index.php:87 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/logbookadvanced/index.php:226 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:415 +#: application/views/timeline/index.php:81 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/accumulate/index.php:88 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/logbookadvanced/index.php:227 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:416 +#: application/views/timeline/index.php:82 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/accumulate/index.php:89 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/logbookadvanced/index.php:228 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:417 +#: application/views/timeline/index.php:83 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/accumulate/index.php:90 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/logbookadvanced/index.php:229 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:418 +#: application/views/timeline/index.php:84 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/accumulate/index.php:91 +#: 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/logbookadvanced/index.php:230 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:419 +#: application/views/timeline/index.php:85 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/accumulate/index.php:92 +#: 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/logbookadvanced/index.php:231 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:420 +#: application/views/timeline/index.php:86 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/accumulate/index.php:93 +#: 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/logbookadvanced/index.php:232 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:421 +#: application/views/timeline/index.php:87 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/accumulate/index.php:94 +#: 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/logbookadvanced/index.php:233 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:422 +#: application/views/timeline/index.php:88 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/accumulate/index.php:95 +#: 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/logbookadvanced/index.php:234 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:423 +#: application/views/timeline/index.php:89 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/accumulate/index.php:96 +#: 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/logbookadvanced/index.php:235 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:424 +#: application/views/timeline/index.php:90 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/accumulate/index.php:97 +#: 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/logbookadvanced/index.php:236 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:425 +#: application/views/timeline/index.php:91 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/accumulate/index.php:98 +#: 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/logbookadvanced/index.php:237 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:426 +#: application/views/timeline/index.php:92 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/accumulate/index.php:99 +#: 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/logbookadvanced/index.php:238 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:427 +#: application/views/timeline/index.php:93 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/accumulate/index.php:100 +#: 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/logbookadvanced/index.php:239 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:428 +#: application/views/timeline/index.php:94 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/accumulate/index.php:101 +#: 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/logbookadvanced/index.php:240 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:429 +#: application/views/timeline/index.php:95 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "" + +#: application/views/accumulate/index.php:102 +#: 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/logbookadvanced/index.php:241 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:430 +#: application/views/timeline/index.php:96 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/accumulate/index.php:103 +#: 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/logbookadvanced/index.php:242 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:431 +#: application/views/timeline/index.php:97 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/accumulate/index.php:112 +#: application/views/activators/index.php:53 +#: application/views/awards/cq/index.php:113 +#: application/views/awards/dok/index.php:127 +#: application/views/awards/dxcc/index.php:187 +#: application/views/awards/helvetia/index.php:112 +#: application/views/awards/iota/index.php:130 +#: application/views/awards/itu/index.php:113 +#: application/views/awards/jcc/index.php:113 +#: application/views/awards/rac/index.php:104 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:79 +#: application/views/logbookadvanced/useroptions.php:17 +#: application/views/lookup/index.php:63 +#: application/views/stationsetup/exportmapoptions.php:6 +#: application/views/timeline/index.php:105 +#: application/views/timeline/index.php:170 +#: application/views/timeline/index.php:197 +#: application/views/timeline/index.php:222 +#: application/views/timeline/index.php:251 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:303 +#: application/views/timeplotter/index.php:59 +msgid "Show" +msgstr "" + +#: application/views/activated_gridmap/index.php:20 +#: application/views/awards/dxcc/index.php:131 +#: application/views/awards/wab/index.php:34 +#: application/views/awards/wac/index.php:78 +#: 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/logbookadvanced/edit.php:17 +#: application/views/logbookadvanced/index.php:203 +#: application/views/satellite/flightpath.php:34 +#: application/views/satellite/passtable.php:5 +#: application/views/sattimers/index.php:38 +#: application/views/statistics/index.php:112 +msgid "Satellite" +msgstr "" + +#: application/views/activated_gridmap/index.php:30 +#: application/views/awards/dxcc/index.php:147 +#: application/views/awards/wab/index.php:44 +#: application/views/awards/wac/index.php:94 +#: application/views/distances/index.php:44 +#: application/views/gridmap/index.php:80 +#: application/views/logbookadvanced/index.php:212 +#: application/views/satellite/create.php:35 +#: application/views/satellite/edit.php:19 +#: application/views/satellite/index.php:23 +msgid "Orbit" +msgstr "" + +#: application/views/activated_gridmap/index.php:50 +#: application/views/awards/wab/index.php:64 +#: application/views/gridmap/index.php:92 +#: application/views/timeline/index.php:52 +msgid "Confirmation" +msgstr "" + +#: application/views/activated_gridmap/index.php:82 +#: application/views/awards/cq/index.php:68 +#: application/views/awards/dok/index.php:67 +#: application/views/awards/dxcc/index.php:73 +#: application/views/awards/helvetia/index.php:67 +#: application/views/awards/itu/index.php:68 +#: application/views/awards/jcc/index.php:64 +#: application/views/awards/rac/index.php:59 +#: application/views/awards/wab/index.php:96 +#: application/views/awards/wac/index.php:56 +#: application/views/awards/waja/index.php:67 +#: application/views/awards/was/index.php:67 +#: application/views/gridmap/index.php:125 application/views/user/edit.php:675 +msgid "QRZ.com" +msgstr "" + +#: application/views/activated_gridmap/index.php:86 +#: application/views/gridmap/index.php:130 +#: application/views/satellite/flightpath.php:42 +msgid "Plot" +msgstr "" + +#: application/views/activated_gridmap/index.php:87 +#: application/views/gridmap/index.php:131 +msgid "Clear Markers" +msgstr "" + +#: application/views/activated_gridmap/index.php:102 +#: application/views/awards/ffma/index.php:30 +#: application/views/awards/gridmaster/index.php:29 +#: application/views/gridmap/index.php:148 +#: application/views/logbookadvanced/index.php:8 +msgid "Latitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:104 +#: application/views/awards/ffma/index.php:32 +#: application/views/awards/gridmaster/index.php:31 +#: application/views/gridmap/index.php:150 +#: application/views/logbookadvanced/index.php:9 +msgid "Longitude" +msgstr "" + +#: application/views/activated_gridmap/index.php:110 +#: application/views/awards/ffma/index.php:38 +#: application/views/awards/gridmaster/index.php:37 +#: application/views/gridmap/index.php:156 +#: application/views/logbookadvanced/index.php:13 +msgid "Bearing" +msgstr "" + +#: application/views/activators/index.php:26 +msgctxt "Orbiter LEO or GEO" +msgid "Both" +msgstr "" + +#: application/views/activators/index.php:33 +msgid "Minimum Count" +msgstr "" + +#: application/views/activators/index.php:76 +#: application/views/awards/counties/details.php:27 +#: application/views/awards/counties/index.php:46 +#: application/views/awards/cq/index.php:198 +#: application/views/awards/dok/index.php:196 +#: application/views/awards/dxcc/index.php:280 +#: application/views/awards/helvetia/index.php:200 +#: application/views/awards/iota/index.php:224 +#: application/views/awards/itu/index.php:198 +#: application/views/awards/jcc/index.php:236 +#: application/views/awards/pota/index.php:67 +#: application/views/awards/rac/index.php:192 +#: application/views/awards/sig/index.php:45 +#: application/views/awards/sota/index.php:53 +#: application/views/awards/vucc/band.php:41 +#: application/views/awards/vucc/index.php:39 +#: application/views/awards/wac/index.php:199 +#: application/views/awards/waja/index.php:202 +#: application/views/awards/was/index.php:200 +#: application/views/awards/wwff/index.php:64 +#: application/views/distancerecords/index.php:50 +#: application/views/public_search/empty.php:3 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:135 +msgid "Nothing found!" +msgstr "" + +#: application/views/activators/index.php:98 +#: application/views/adif/import.php:66 application/views/adif/import.php:182 +#: application/views/adif/import.php:227 +#: application/views/awards/pota/index.php:34 +#: application/views/awards/sig/qso_list.php:11 +#: application/views/awards/sota/index.php:25 +#: application/views/awards/wwff/index.php:34 +#: application/views/cabrillo/index.php:31 +#: application/views/components/hamsat/table.php:27 +#: application/views/contesting/index.php:156 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:168 +#: application/views/distancerecords/index.php:18 +#: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41 +#: application/views/eqslcard/index.php:28 +#: application/views/hamsat/index.php:30 application/views/labels/index.php:123 +#: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/lotw_views/index.php:35 +#: application/views/oqrs/qsolist.php:6 +#: application/views/oqrs/request_grouped.php:12 +#: application/views/qslcard/index.php:28 +#: application/views/qslcard/searchform.php:3 +#: application/views/qslprint/index.php:24 +#: application/views/qslprint/qslprint.php:21 +#: application/views/qslprint/qsolist.php:6 +#: application/views/qso/edit_ajax.php:62 application/views/qso/index.php:124 +#: application/views/reg1test/index.php:33 +#: application/views/search/cqzones.php:32 +#: application/views/search/cqzones_result.php:9 +#: application/views/search/lotw_unconfirmed.php:33 +#: application/views/search/lotw_unconfirmed_result.php:6 +#: application/views/search/result.php:11 +#: application/views/simplefle/index.php:148 +#: application/views/station_profile/edit.php:63 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 +#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:510 +msgid "Callsign" +msgstr "" + +#: application/views/activators/index.php:99 +msgid "Count" +msgstr "" + +#: application/views/activators/index.php:101 +#: application/views/timeline/index.php:154 +#: application/views/timeline/index.php:186 +#: application/views/timeline/index.php:211 +#: application/views/timeline/index.php:238 +#: application/views/timeline/index.php:265 +#: application/views/timeline/index.php:291 +msgid "Show QSO's" +msgstr "" + +#: application/views/activators/index.php:102 +msgid "Show Map" +msgstr "" + +#: application/views/adif/dcl_success.php:12 +msgid "Results of DCL DOK Update" +msgstr "" + +#: application/views/adif/dcl_success.php:17 +msgid "DCL information for DOKs has been updated." +msgstr "" + +#: application/views/adif/dcl_success.php:19 +msgid "No QSOs found which could be updated." +msgstr "" + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs ignored" +msgstr "" + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs unmatched" +msgstr "" + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs updated" +msgstr "" + +#: application/views/adif/dcl_success.php:25 +msgid "DOK Errors" +msgstr "" + +#: application/views/adif/dcl_success.php:26 +msgid "There is different data for DOK in your log compared to DCL" +msgstr "" + +#: application/views/adif/dcl_success.php:29 +#: application/views/awards/pota/index.php:32 +#: application/views/awards/wwff/index.php:32 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:25 +#: application/views/contesting/index.php:93 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:163 +#: application/views/debug/index.php:545 +#: application/views/distancerecords/index.php:16 +#: application/views/eqsl/analysis.php:36 +#: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 +#: application/views/eqslcard/index.php:30 +#: application/views/hamsat/index.php:28 +#: application/views/logbookadvanced/edit.php:4 +#: application/views/oqrs/notinlogform.php:8 +#: application/views/oqrs/qsolist.php:7 application/views/oqrs/request.php:15 +#: application/views/oqrs/request_grouped.php:8 +#: application/views/public_search/result.php:13 +#: application/views/qslcard/index.php:30 +#: application/views/qslcard/searchresult.php:4 +#: application/views/qslprint/qslprint.php:22 +#: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:64 +#: application/views/qso/index.php:100 application/views/satellite/pass.php:473 +#: application/views/search/cqzones_result.php:7 +#: application/views/search/result_search.php:4 +#: application/views/search/search_result_ajax.php:89 +#: application/views/simplefle/index.php:146 +#: application/views/statistics/custom.php:38 +#: application/views/statistics/custom_result.php:40 +#: application/views/statistics/custom_result.php:85 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:184 +#: application/views/timeline/index.php:209 +#: application/views/timeline/index.php:234 +#: application/views/timeline/index.php:263 +#: application/views/timeline/index.php:288 +#: application/views/view_log/partial/log.php:4 +#: application/views/view_log/partial/log_ajax.php:59 +#: application/views/visitor/index.php:147 +#: application/views/widgets/qsos.php:24 +msgid "Date" +msgstr "" + +#: application/views/adif/dcl_success.php:30 +#: application/views/awards/pota/index.php:33 +#: application/views/awards/wwff/index.php:33 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:26 +#: application/views/contesting/index.php:98 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:166 +#: application/views/debug/index.php:546 +#: application/views/distancerecords/index.php:17 +#: application/views/eqsl/analysis.php:37 +#: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 +#: application/views/eqslcard/index.php:31 +#: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 +#: application/views/qslcard/index.php:31 +#: application/views/qslcard/searchresult.php:6 +#: application/views/qslprint/qslprint.php:23 +#: application/views/qslprint/qsolist.php:8 application/views/qso/index.php:105 +#: application/views/search/cqzones_result.php:8 +#: application/views/search/result_search.php:5 +#: application/views/search/search_result_ajax.php:91 +#: application/views/simplefle/index.php:147 +#: application/views/statistics/custom_result.php:86 +#: application/views/timeline/index.php:289 +#: application/views/timeplotter/index.php:5 +#: application/views/view_log/partial/log.php:6 +#: application/views/view_log/partial/log_ajax.php:61 +#: application/views/visitor/index.php:150 +#: application/views/widgets/qsos.php:26 +msgid "Time" +msgstr "" + +#: application/views/adif/dcl_success.php:31 +#: application/views/awards/vucc/band.php:18 +#: application/views/bandmap/list.php:111 +#: application/views/contesting/index.php:248 +#: application/views/debug/index.php:547 application/views/debug/index.php:582 +#: application/views/dxcalendar/index.php:12 +#: application/views/eqsl/analysis.php:38 +#: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 +#: application/views/public_search/result.php:14 +#: application/views/qslcard/searchresult.php:8 +#: application/views/qso/components/previous_contacts.php:7 +#: application/views/search/result_search.php:6 +#: application/views/search/search_result_ajax.php:93 +#: application/views/statistics/custom_result.php:87 +#: application/views/view_log/partial/log.php:8 +#: application/views/view_log/partial/log_ajax.php:63 +#: application/views/visitor/index.php:152 +#: application/views/widgets/qsos.php:28 +msgid "Call" +msgstr "" + +#: application/views/adif/dcl_success.php:34 +msgid "DOK in Log" +msgstr "" + +#: application/views/adif/dcl_success.php:35 +msgid "DOK in DCL" +msgstr "" + +#: application/views/adif/dcl_success.php:36 +msgid "DCL QSL Status" +msgstr "" + +#: application/views/adif/import.php:36 application/views/adif/import.php:252 +msgid "DARC DCL" +msgstr "" + +#: application/views/adif/import.php:55 +#: application/views/dashboard/index.php:112 +#: application/views/dashboard/index.php:133 +#: application/views/dashboard/index.php:139 +#: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 +#: application/views/lotw_views/index.php:4 +msgid "Important" +msgstr "" + +#: application/views/adif/import.php:55 +msgid "Log Files must have the file type *.adi" +msgstr "" + +#: application/views/adif/import.php:56 application/views/view_log/qso.php:625 +msgid "Maximum file upload size is " +msgstr "" + +#: application/views/adif/import.php:56 application/views/adif/import.php:230 +#: application/views/adif/import.php:268 application/views/debug/index.php:175 +#: application/views/debug/index.php:192 application/views/debug/index.php:537 +#: application/views/hrdlog/export.php:25 +#: application/views/hrdlog/export.php:74 +#: application/views/interface_assets/footer.php:34 +#: application/views/qrz/export.php:73 application/views/qrz/export.php:94 +#: application/views/stationsetup/stationsetup.php:111 +#: application/views/view_log/qso.php:625 +#: application/views/webadif/export.php:34 +#: application/views/webadif/export.php:94 +msgid "Warning" +msgstr "" + +#: application/views/adif/import.php:60 application/views/adif/import.php:62 +#: application/views/adif/import.php:178 application/views/adif/import.php:225 +#: application/views/eqsl/import.php:36 application/views/hrdlog/export.php:69 +#: application/views/qrz/export.php:89 application/views/reg1test/index.php:30 +#: application/views/webadif/export.php:89 +msgid "Select Station Location" +msgstr "" + +#: application/views/adif/import.php:69 +msgid "Add QSOs to Contest" +msgstr "" + +#: application/views/adif/import.php:71 +#: application/views/simplefle/index.php:82 +msgid "No Contest" +msgstr "" + +#: application/views/adif/import.php:77 +msgid "ADIF File" +msgstr "" + +#: application/views/adif/import.php:84 +msgid "Import duplicate QSOs" +msgstr "" + +#: application/views/adif/import.php:93 +msgid "Mark imported QSOs as uploaded to LoTW" +msgstr "" + +#: application/views/adif/import.php:95 application/views/adif/import.php:105 +#: application/views/adif/import.php:115 application/views/adif/import.php:125 +#: application/views/adif/import.php:135 +msgid "Select if ADIF being imported does not contain this information." +msgstr "" + +#: application/views/adif/import.php:103 +msgid "Mark imported QSOs as uploaded to eQSL Logbook" +msgstr "" + +#: application/views/adif/import.php:113 +msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" +msgstr "" + +#: application/views/adif/import.php:123 +msgid "Mark imported QSOs as uploaded to QRZ Logbook" +msgstr "" + +#: application/views/adif/import.php:133 +msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgstr "" + +#: application/views/adif/import.php:143 +msgid "Use DXCC information from ADIF" +msgstr "" + +#: application/views/adif/import.php:145 +msgid "" +"If not selected, Wavelog will attempt to determine DXCC information " +"automatically." +msgstr "" + +#: application/views/adif/import.php:153 +msgid "Always use login-callsign as operator-name on import" +msgstr "" + +#: application/views/adif/import.php:162 +#: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2133 +msgid "DANGER" +msgstr "" + +#: application/views/adif/import.php:162 +msgid "Ignore Stationcallsign on import" +msgstr "" + +#: application/views/adif/import.php:164 +#, php-format +msgid "" +"If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " +"regardless if they match to the chosen station-location." +msgstr "" + +#: application/views/adif/import.php:168 application/views/adif/import.php:283 +#: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 +#: application/views/webadif/export.php:55 +msgid "Upload" +msgstr "" + +#: application/views/adif/import.php:175 +msgid "Take your logbook file anywhere!" +msgstr "" + +#: application/views/adif/import.php:176 +msgid "" +"Exporting ADIFs allows you to import contacts into third party applications " +"like LoTW, Awards or just for keeping a backup." +msgstr "" + +#: application/views/adif/import.php:186 application/views/adif/import.php:232 +#: application/views/cfd/index.php:15 application/views/csv/index.php:118 +#: application/views/dxatlas/index.php:118 +#: application/views/hrdlog/export.php:77 application/views/kml/index.php:103 +#: application/views/lotw/import.php:38 application/views/qrz/export.php:76 +#: application/views/qrz/export.php:97 application/views/webadif/export.php:97 +msgid "From date" +msgstr "" + +#: application/views/adif/import.php:189 application/views/adif/import.php:235 +#: application/views/cfd/index.php:20 application/views/csv/index.php:123 +#: application/views/dxatlas/index.php:123 +#: application/views/hrdlog/export.php:82 application/views/kml/index.php:108 +#: application/views/qrz/export.php:102 +#: application/views/webadif/export.php:102 +msgid "To date" +msgstr "" + +#: application/views/adif/import.php:197 +msgid "Mark exported QSOs as uploaded to LoTW" +msgstr "" + +#: application/views/adif/import.php:205 +msgid "Export QSOs not uploaded to LoTW" +msgstr "" + +#: application/views/adif/import.php:210 +msgid "Export QSO's" +msgstr "" + +#: application/views/adif/import.php:215 +msgid "Export Satellite-Only QSOs" +msgstr "" + +#: application/views/adif/import.php:216 +msgid "Export All Satellite QSOs" +msgstr "" + +#: application/views/adif/import.php:218 +msgid "Export All Satellite QSOs Confirmed on LoTW" +msgstr "" + +#: application/views/adif/import.php:230 application/views/hrdlog/export.php:74 +#: application/views/qrz/export.php:94 application/views/webadif/export.php:94 +msgid "If a date range is not selected then all QSOs will be marked!" +msgstr "" + +#: application/views/adif/import.php:238 +msgid "Mark QSOs as exported to LoTW" +msgstr "" + +#: application/views/adif/import.php:252 +#, php-format +msgid "" +"Go to %s and export your logbook with confirmed DOKs. To speed up the " +"process you can select only DL QSOs to download (i.e. put 'DL' into Prefix " +"List). The downloaded ADIF file can be uploaded here in order to update QSOs " +"with DOK info." +msgstr "" + +#: application/views/adif/import.php:259 +msgid "Only import DOK data from QSOs confirmed on DCL." +msgstr "" + +#: application/views/adif/import.php:261 +msgid "" +"Uncheck if you also want to update DOK with data from unconfirmed QSOs in " +"DCL." +msgstr "" + +#: application/views/adif/import.php:268 +msgid "Overwrites exisiting DOK in log by DCL (if different)." +msgstr "" + +#: application/views/adif/import.php:270 +msgid "" +"If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " +"log." +msgstr "" + +#: application/views/adif/import.php:277 +msgid "Ignore QSOs that cannot be matched." +msgstr "" + +#: application/views/adif/import.php:279 +msgid "" +"If unchecked, information about QSOs which could not be found in Wavelog " +"will be displayed." +msgstr "" + +#: application/views/adif/import_failed.php:15 +msgid "The ADIF file could not be parsed correctly." +msgstr "" + +#: application/views/adif/import_failed.php:16 +msgid "" +"At least one of the ADIF fields could not be parsed and/or inserted into the " +"database. Please check the imported ADIF file. You can use an online ADIF " +"file checker. For example:" +msgstr "" + +#: application/views/adif/import_success.php:15 +msgid "Yay, its imported!" +msgstr "" + +#: application/views/adif/import_success.php:16 +msgid "The ADIF File has been imported." +msgstr "" + +#: application/views/adif/import_success.php:18 +msgid "Dupes were inserted!" +msgstr "" + +#: application/views/adif/import_success.php:20 +msgid "Dupes were skipped." +msgstr "" + +#: application/views/adif/import_success.php:24 +msgid "ADIF Errors" +msgstr "" + +#: application/views/adif/import_success.php:25 +msgid "" +"You have ADIF errors, the QSOs have still been added but these fields have " +"not been populated." +msgstr "" + +#: application/views/adif/mark_lotw.php:12 +#: application/views/hrdlog/mark_hrdlog.php:12 +#: application/views/qrz/mark_qrz.php:12 +#: application/views/webadif/mark_webadif.php:12 +msgid "QSOs marked" +msgstr "" + +#: application/views/adif/mark_lotw.php:15 +msgid "Yay, its done!" +msgstr "" + +#: application/views/adif/mark_lotw.php:16 +msgid "The QSOs are marked as exported to LoTW." +msgstr "" + +#: application/views/api/description.php:15 +msgid "Editing Description for API Key" +msgstr "" + +#: application/views/api/description.php:28 +msgid "Simple name to describe what you use this API for." +msgstr "" + +#: application/views/api/description.php:33 +#: application/views/bands/create.php:49 application/views/bands/edit.php:31 +#: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 +#: application/views/operator/index.php:23 +#: application/views/options/appearance.php:116 +#: application/views/options/dxcluster.php:67 +#: application/views/options/email.php:112 +#: application/views/options/oqrs.php:63 +#: application/views/options/radios.php:45 +#: application/views/options/version_dialog.php:78 +#: application/views/satellite/create.php:70 +#: application/views/simplefle/index.php:22 +msgid "Save" +msgstr "" + +#: application/views/api/help.php:14 +#: application/views/interface_assets/header.php:437 +msgid "API Keys" +msgstr "" + +#: application/views/api/help.php:17 +msgid "" +"The Wavelog API (Application Programming Interface) lets third party systems " +"access Wavelog in a controlled way. Access to the API is managed via API " +"keys." +msgstr "" + +#: application/views/api/help.php:18 +msgid "" +"You will need to generate an API key for each tool you wish to use (e.g. " +"WLgate). Generate a read-write key if the application needs to send data to " +"Wavelog. Generate a read-only key if the application only needs to obtain " +"data from Wavelog." +msgstr "" + +#: application/views/api/help.php:19 +msgid "API URL" +msgstr "" + +#: application/views/api/help.php:19 application/views/api/help.php:38 +#: application/views/cron/index.php:22 application/views/debug/index.php:36 +msgid "Copy to clipboard" +msgstr "" + +#: application/views/api/help.php:19 +msgid "The API URL for this Wavelog instance is" +msgstr "" + +#: application/views/api/help.php:20 application/views/dxcalendar/index.php:15 +#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:504 +#: application/views/qso/index.php:560 application/views/qso/index.php:605 +#: application/views/radio/index.php:22 +#: application/views/sattimers/index.php:67 +#: application/views/sattimers/index.php:69 +#: application/views/sattimers/index.php:71 +#: application/views/sattimers/index.php:73 +#: application/views/sattimers/index.php:75 +#: application/views/sattimers/index.php:77 +#: application/views/search/filter.php:69 +msgid "Info" +msgstr "" + +#: application/views/api/help.php:20 +msgid "" +"It's good practice to delete a key if you are no longer using the associated " +"application." +msgstr "" + +#: application/views/api/help.php:27 +msgid "API Key" +msgstr "" + +#: application/views/api/help.php:28 application/views/cron/edit.php:30 +#: application/views/cron/index.php:53 +#: application/views/search/stored_queries.php:8 +msgid "Description" +msgstr "" + +#: application/views/api/help.php:29 +msgid "Last Used" +msgstr "" + +#: application/views/api/help.php:30 +msgid "Permissions" +msgstr "" + +#: application/views/api/help.php:31 application/views/cron/index.php:54 +#: application/views/lotw_views/index.php:41 +#: application/views/mode/index.php:31 +#: application/views/oqrs/showrequests.php:91 +#: application/views/sattimers/index.php:39 +#: application/views/stationsetup/stationsetup.php:31 +#: application/views/timeline/index.php:152 +msgid "Status" +msgstr "" + +#: application/views/api/help.php:32 application/views/hrdlog/export.php:39 +#: application/views/logbookadvanced/index.php:519 +#: application/views/qrz/export.php:43 application/views/webadif/export.php:45 +msgid "Actions" +msgstr "" + +#: application/views/api/help.php:45 +msgid "Read & Write" +msgstr "" + +#: application/views/api/help.php:47 +msgid "Read-Only" +msgstr "" + +#: application/views/api/help.php:49 +msgid "Unknown" +msgstr "" + +#: application/views/api/help.php:59 +msgid "Test" +msgstr "" + +#: application/views/api/help.php:71 +msgid "You have no API Keys." +msgstr "" + +#: application/views/api/help.php:75 +msgid "Create a read & write key" +msgstr "" + +#: application/views/api/help.php:76 +msgid "Create a read-only key" +msgstr "" + +#: application/views/awards/counties/details.php:4 +#: application/views/awards/details.php:1 +#: application/views/awards/vucc/band.php:4 +#: application/views/distancerecords/details.php:1 +#: application/views/timeline/details.php:2 +msgid "Filtering on" +msgstr "" + +#: application/views/awards/counties/details.php:13 +msgid "County" +msgstr "" + +#: application/views/awards/counties/index.php:6 +#: application/views/awards/counties/index.php:13 +#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:26 +#: application/views/awards/dok/index.php:6 +#: application/views/awards/dok/index.php:13 +#: application/views/awards/dxcc/index.php:13 +#: application/views/awards/dxcc/index.php:20 +#: application/views/awards/ffma/index.php:7 +#: application/views/awards/ffma/index.php:14 +#: application/views/awards/gridmaster/index.php:6 +#: application/views/awards/gridmaster/index.php:13 +#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:26 +#: application/views/awards/iota/index.php:15 +#: application/views/awards/iota/index.php:22 +#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:26 +#: application/views/awards/jcc/index.php:15 +#: application/views/awards/jcc/index.php:22 +#: application/views/awards/pota/index.php:6 +#: application/views/awards/pota/index.php:13 +#: application/views/awards/sig/index.php:6 +#: application/views/awards/sig/index.php:13 +#: application/views/awards/sota/index.php:6 +#: application/views/awards/sota/index.php:13 +#: application/views/awards/vucc/index.php:6 +#: application/views/awards/vucc/index.php:13 +#: application/views/awards/wab/index.php:11 +#: application/views/awards/wab/index.php:18 +#: application/views/awards/wac/index.php:7 +#: application/views/awards/wac/index.php:14 +#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:25 +#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:26 +#: application/views/awards/wwff/index.php:6 +#: application/views/awards/wwff/index.php:13 +msgid "Award Info" +msgstr "" + +#: application/views/awards/counties/index.php:7 +msgid "US County Award" +msgstr "" + +#: application/views/awards/counties/index.php:8 +#, php-format +msgid "" +"The United States of America Counties Award (USA-CA), sponsored by CQ " +"magazine, is issued for confirmed two-way radio contacts with specified " +"numbers of U.S. counties under rules and conditions you can find %s." +msgstr "" + +#: application/views/awards/counties/index.php:9 +msgid "" +"USA-CA is available to all licensed amateurs worldwide and is issued to " +"individuals for all county contacts made, regardless of callsigns used, " +"operating locations, or dates." +msgstr "" + +#: application/views/awards/counties/index.php:10 +msgid "Special USA-CA awards are also available to SWLs on a heard basis." +msgstr "" + +#: application/views/awards/counties/index.php:21 +msgid "Counties Worked" +msgstr "" + +#: application/views/awards/counties/index.php:22 +msgid "Counties Confirmed" +msgstr "" + +#: application/views/awards/counties/index.php:39 +#: application/views/awards/cq/index.php:176 +#: application/views/awards/dok/index.php:174 +#: application/views/awards/dxcc/index.php:257 +#: application/views/awards/helvetia/index.php:179 +#: application/views/awards/iota/index.php:201 +#: application/views/awards/itu/index.php:176 +#: application/views/awards/jcc/index.php:185 +#: application/views/awards/rac/index.php:171 +#: application/views/awards/wac/index.php:177 +#: application/views/awards/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:233 +#: application/views/simplefle/index.php:27 +#: application/views/statistics/qsltable.php:54 +#: application/views/statistics/qsltable.php:109 +#: application/views/statistics/qsotable.php:10 +#: application/views/statistics/qsotable.php:23 +#: application/views/statistics/satqsotable.php:10 +#: application/views/statistics/satqsotable.php:22 +#: application/views/statistics/satuniquetable.php:10 +#: application/views/statistics/satuniquetable.php:22 +#: application/views/statistics/uniquetable.php:10 +#: application/views/statistics/uniquetable.php:23 +#: application/views/visitor/index.php:241 +msgid "Total" +msgstr "" + +#: application/views/awards/cq/index.php:3 +#: application/views/awards/cq/index.php:150 application/views/csv/index.php:80 +#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/logbookadvanced/edit.php:6 +#: application/views/logbookadvanced/index.php:246 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:284 +#: application/views/qso/index.php:390 +#: application/views/search/cqzones_result.php:13 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:264 +#: application/views/timeplotter/index.php:44 +msgid "CQ Zone" +msgstr "" + +#: application/views/awards/cq/index.php:4 +#: application/views/awards/itu/index.php:4 +msgid "Hover over a zone" +msgstr "" + +#: application/views/awards/cq/index.php:20 +msgid "CQ Magazine WAZ Award" +msgstr "" + +#: application/views/awards/cq/index.php:21 +msgid "" +"The CQ Magazine is located in the US and one of the most popular amateur " +"radio magazines in the world. The magazine first appeared in January 1945 " +"and focuses on awards and the practical aspects of amateur radio." +msgstr "" + +#: application/views/awards/cq/index.php:22 +msgid "" +"The WAZ Award stands for 'Worked All Zones' and requires radio contacts to " +"all 40 CQ Zones along with the corresponding confirmation." +msgstr "" + +#: application/views/awards/cq/index.php:23 +#, php-format +msgctxt "uses 'CQ Magazine'" +msgid "You can find all the information and rules on the Website of the %s." +msgstr "" + +#: application/views/awards/cq/index.php:25 +msgid "Awards - CQ Magazine WAZ" +msgstr "" + +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wab/list.php:6 +#: application/views/awards/wac/index.php:22 +#: application/views/bandmap/list.php:73 +#: application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:378 +#: application/views/interface_assets/footer.php:40 +#: application/views/visitor/index.php:266 +msgid "Confirmed" +msgstr "" + +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wac/index.php:22 +#: application/views/bandmap/list.php:72 +#: application/views/dashboard/index.php:256 +#: application/views/dashboard/index.php:372 +#: application/views/visitor/index.php:262 +msgid "Worked" +msgstr "" + +#: application/views/awards/cq/index.php:38 +#: application/views/awards/dok/index.php:41 +#: application/views/awards/dxcc/index.php:43 +#: application/views/awards/helvetia/index.php:37 +#: application/views/awards/iota/index.php:43 +#: application/views/awards/itu/index.php:38 +#: application/views/awards/jcc/index.php:34 +#: application/views/awards/rac/index.php:29 +#: application/views/awards/wac/index.php:26 +#: application/views/awards/waja/index.php:37 +#: application/views/awards/was/index.php:37 +msgid "Show worked" +msgstr "" + +#: application/views/awards/cq/index.php:42 +#: application/views/awards/dok/index.php:45 +#: application/views/awards/dxcc/index.php:47 +#: application/views/awards/helvetia/index.php:41 +#: application/views/awards/iota/index.php:47 +#: application/views/awards/itu/index.php:42 +#: application/views/awards/jcc/index.php:38 +#: application/views/awards/rac/index.php:33 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/waja/index.php:41 +#: application/views/awards/was/index.php:41 +msgid "Show confirmed" +msgstr "" + +#: application/views/awards/cq/index.php:46 +#: application/views/awards/dxcc/index.php:51 +#: application/views/awards/helvetia/index.php:45 +#: application/views/awards/iota/index.php:51 +#: application/views/awards/itu/index.php:46 +#: application/views/awards/jcc/index.php:42 +#: application/views/awards/rac/index.php:37 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/waja/index.php:45 +#: application/views/awards/was/index.php:45 +msgid "Show not worked" +msgstr "" + +#: application/views/awards/cq/index.php:52 +#: application/views/awards/dok/index.php:51 +#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/helvetia/index.php:51 +#: application/views/awards/itu/index.php:52 +#: application/views/awards/jcc/index.php:48 +#: application/views/awards/rac/index.php:43 +#: application/views/awards/wac/index.php:40 +#: application/views/awards/waja/index.php:51 +#: application/views/awards/was/index.php:51 +msgid "Show QSO with QSL Type" +msgstr "" + +#: application/views/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/awards/wac/index.php:44 +#: application/views/interface_assets/footer.php:2112 +#: application/views/qso/edit_ajax.php:405 +#: application/views/view_log/qso.php:25 +msgid "QSL Card" +msgstr "" + +#: application/views/awards/cq/index.php:112 +#: application/views/awards/dok/index.php:126 +#: application/views/awards/dxcc/index.php:186 +#: application/views/awards/helvetia/index.php:111 +#: application/views/awards/iota/index.php:129 +#: application/views/awards/itu/index.php:112 +#: application/views/awards/jcc/index.php:112 +#: application/views/awards/rac/index.php:103 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/waja/index.php:115 +#: application/views/awards/was/index.php:111 +#: application/views/continents/index.php:50 +#: application/views/logbookadvanced/index.php:551 +#: application/views/oqrs/showrequests.php:68 +#: application/views/qrbcalc/index.php:19 +#: application/views/search/filter.php:40 application/views/user/edit.php:607 +msgid "Reset" +msgstr "" + +#: application/views/awards/cq/index.php:115 +msgid "Show CQ Zone Map" +msgstr "" + +#: application/views/awards/cq/index.php:124 +#: application/views/awards/dxcc/index.php:199 +#: application/views/awards/helvetia/index.php:124 +#: application/views/awards/iota/index.php:142 +#: application/views/awards/itu/index.php:124 +#: application/views/awards/rac/index.php:116 +#: application/views/awards/waja/index.php:128 +#: application/views/awards/was/index.php:124 +msgid "Table" +msgstr "" + +#: application/views/awards/cq/index.php:127 +#: application/views/awards/dok/index.php:128 +#: application/views/awards/dxcc/index.php:202 +#: application/views/awards/helvetia/index.php:127 +#: application/views/awards/iota/index.php:145 +#: application/views/awards/itu/index.php:127 +#: application/views/awards/jcc/index.php:129 +#: application/views/awards/rac/index.php:119 +#: application/views/awards/wab/index.php:108 +#: application/views/awards/waja/index.php:131 +#: application/views/awards/was/index.php:127 +#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/useroptions.php:7 +msgid "Map" +msgstr "" + +#: application/views/awards/cq/index.php:167 +#: application/views/awards/dok/index.php:165 +#: application/views/awards/dxcc/index.php:248 +#: application/views/awards/helvetia/index.php:170 +#: application/views/awards/iota/index.php:192 +#: application/views/awards/itu/index.php:167 +#: application/views/awards/jcc/index.php:168 +#: application/views/awards/rac/index.php:162 +#: application/views/awards/wac/index.php:168 +#: application/views/awards/waja/index.php:170 +#: application/views/awards/was/index.php:170 +msgid "Summary" +msgstr "" + +#: application/views/awards/cq/index.php:180 +#: application/views/awards/dok/index.php:178 +#: application/views/awards/dxcc/index.php:262 +#: application/views/awards/helvetia/index.php:183 +#: application/views/awards/iota/index.php:206 +#: application/views/awards/itu/index.php:180 +#: application/views/awards/jcc/index.php:195 +#: application/views/awards/rac/index.php:175 +#: application/views/awards/wac/index.php:181 +#: application/views/awards/waja/index.php:184 +#: application/views/awards/was/index.php:183 +msgid "Total worked" +msgstr "" + +#: application/views/awards/cq/index.php:187 +#: application/views/awards/dok/index.php:185 +#: application/views/awards/dxcc/index.php:269 +#: application/views/awards/helvetia/index.php:190 +#: application/views/awards/iota/index.php:213 +#: application/views/awards/itu/index.php:187 +#: application/views/awards/jcc/index.php:214 +#: application/views/awards/rac/index.php:182 +#: application/views/awards/wac/index.php:188 +#: application/views/awards/waja/index.php:191 +#: application/views/awards/was/index.php:190 +msgid "Total confirmed" +msgstr "" + +#: application/views/awards/dok/index.php:7 +msgid "DOK Award" +msgstr "" + +#: application/views/awards/dok/index.php:8 +msgid "" +"Germany extends over 630 km from East to West and nearly 900 km from North " +"to South. Around 70,000 of Germany's 82 million inhabitants are licensed " +"hams, with more than 40,000 of them being members of DARC. DOK is a system " +"that provides individual local chapters with an identifier and means " +"'Deutscher Ortsverband Kenner' (English: 'German Local Association " +"Identifier')." +msgstr "" + +#: application/views/awards/dok/index.php:9 +msgid "" +"The DOK consists of a letter for the district and a two-digit number for the " +"local chapter, like P03 Friedrichshafen (city of the 'Hamradio exhibition') " +"or F41 Baunatal (location of the DARC headquarters). Note: A zero in a DOK " +"is a common mistake, often being logged as the letter O." +msgstr "" + +#: application/views/awards/dok/index.php:10 +msgid "DARC website" +msgstr "" + +#: application/views/awards/dok/index.php:10 +#, php-format +msgctxt "uses 'DARC Website' and 'here'" +msgid "" +"This information is provided by the %s. Information about the DOK Awards and " +"its rules can be found %s." +msgstr "" + +#: application/views/awards/dok/index.php:20 +msgid "DOK / SDOK" +msgstr "" + +#: application/views/awards/dok/index.php:23 +msgid "DOK + SDOK" +msgstr "" + +#: application/views/awards/dok/index.php:37 +#: application/views/awards/dxcc/index.php:39 +#: application/views/awards/helvetia/index.php:33 +#: application/views/awards/iota/index.php:39 +#: application/views/awards/jcc/index.php:30 +#: application/views/awards/rac/index.php:25 +#: application/views/awards/waja/index.php:33 +#: application/views/awards/was/index.php:33 +msgid "Worked / Confirmed" +msgstr "" + +#: application/views/awards/dok/index.php:80 +#: application/views/awards/dxcc/index.php:120 +#: application/views/awards/helvetia/index.php:76 +#: application/views/awards/iota/index.php:94 +#: application/views/awards/jcc/index.php:77 +#: application/views/awards/rac/index.php:68 +#: application/views/awards/wac/index.php:66 +#: application/views/awards/waja/index.php:80 +#: application/views/awards/was/index.php:76 +msgid "Every band" +msgstr "" + +#: application/views/awards/dxcc/index.php:14 +msgid "DXCC Award" +msgstr "" + +#: application/views/awards/dxcc/index.php:15 +msgid "'How to Count Countries Worked, A New DX Scoring System'" +msgstr "" + +#: application/views/awards/dxcc/index.php:15 +#, php-format +msgid "" +"DXCC stands for 'DX Century Club,' an award based on worked countries. The " +"DXCC List is based on an article created in 1935 by Clinton B. DeSoto, " +"W1CBD, titled %s." +msgstr "" + +#: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 +msgid "ARRL website" +msgstr "" + +#: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 +#, php-format +msgid "You can find all information about the DXCC Award on the %s." +msgstr "" + +#: application/views/awards/dxcc/index.php:17 +msgid "" +"Important Note: Over time, the criteria for the DXCC List have changed. The " +"List remains unchanged until an entity no longer satisfies the criteria " +"under which it was added, at which time it is moved to the Deleted List. You " +"will find Deleted DXCC entities also in the lists on Wavelog. Be aware that " +"these DXCC entities are outdated and no longer valid." +msgstr "" + +#: application/views/awards/dxcc/index.php:32 +#: application/views/awards/iota/index.php:33 +msgid "Include deleted" +msgstr "" + +#: application/views/awards/dxcc/index.php:87 +#: application/views/awards/iota/index.php:61 +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/logbookadvanced/edit.php:144 +#: application/views/logbookadvanced/index.php:309 +#: application/views/options/dxcluster.php:56 +#: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 +#: application/views/view_log/qso.php:253 +msgid "Antarctica" +msgstr "" + +#: application/views/awards/dxcc/index.php:91 +#: application/views/awards/iota/index.php:65 +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/logbookadvanced/edit.php:143 +#: application/views/logbookadvanced/index.php:308 +#: application/views/options/dxcluster.php:55 +#: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 +#: application/views/view_log/qso.php:250 +msgid "Africa" +msgstr "" + +#: application/views/awards/dxcc/index.php:95 +#: application/views/awards/iota/index.php:69 +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/logbookadvanced/edit.php:146 +#: application/views/logbookadvanced/index.php:311 +#: application/views/options/dxcluster.php:57 +#: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 +#: application/views/view_log/qso.php:256 +msgid "Asia" +msgstr "" + +#: application/views/awards/dxcc/index.php:99 +#: application/views/awards/iota/index.php:73 +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/logbookadvanced/edit.php:147 +#: application/views/logbookadvanced/index.php:312 +#: application/views/options/dxcluster.php:58 +#: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 +#: application/views/view_log/qso.php:259 +msgid "Europe" +msgstr "" + +#: application/views/awards/dxcc/index.php:103 +#: application/views/awards/iota/index.php:77 +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/logbookadvanced/edit.php:145 +#: application/views/logbookadvanced/index.php:310 +#: application/views/options/dxcluster.php:59 +#: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 +#: application/views/view_log/qso.php:262 +msgid "North America" +msgstr "" + +#: application/views/awards/dxcc/index.php:107 +#: application/views/awards/iota/index.php:81 +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/logbookadvanced/edit.php:148 +#: application/views/logbookadvanced/index.php:313 +#: application/views/options/dxcluster.php:61 +#: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 +#: application/views/view_log/qso.php:268 +msgid "South America" +msgstr "" + +#: application/views/awards/dxcc/index.php:111 +#: application/views/awards/iota/index.php:85 +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/logbookadvanced/edit.php:149 +#: application/views/logbookadvanced/index.php:314 +#: application/views/options/dxcluster.php:60 +#: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 +#: application/views/view_log/qso.php:265 +msgid "Oceania" +msgstr "" + +#: application/views/awards/dxcc/index.php:189 +msgid "Show DXCC Map" +msgstr "" + +#: application/views/awards/dxcc/index.php:225 +msgid "DXCC Name" +msgstr "" + +#: application/views/awards/dxcc/index.php:226 +#: application/views/awards/iota/index.php:170 +#: application/views/timeline/index.php:150 +#: application/views/timeline/index.php:237 +msgid "Prefix" +msgstr "" + +#: application/views/awards/ffma/index.php:8 +#: application/views/interface_assets/header.php:240 +msgid "Fred Fish Memorial Award" +msgstr "" + +#: application/views/awards/ffma/index.php:9 +msgid "" +"The Fred Fish Memorial Award was created in honor of Fred Fish, W5FF (SK), " +"who was the first amateur to have worked and confirmed all 488 Maidenhead " +"grid squares in the 48 contiguous United States on 6 Meters." +msgstr "" + +#: application/views/awards/ffma/index.php:10 +msgid "" +"The award will be given to any amateur who can duplicate W5FF's " +"accomplishment." +msgstr "" + +#: application/views/awards/ffma/index.php:11 +#, php-format +msgid "For more information, you can visit this link: %s." +msgstr "" + +#: application/views/awards/gridmaster/index.php:7 +msgid "US Gridmaster Award" +msgstr "" + +#: application/views/awards/gridmaster/index.php:8 +msgid "" +"The GridMaster Award is the most prestigious AMSAT award, first introduced " +"in 2014 by the Star Comm Group. It is available to all amateur radio " +"operators worldwide who manage to work all 488 grid squares in the USA via " +"satellite and can provide QSL confirmations for each contact." +msgstr "" + +#: application/views/awards/gridmaster/index.php:9 +#, php-format +msgid "" +"Official information from the %s: Two-way communication must be established " +"via amateur satellite with each grid. There is no minimum signal report " +"required. Contacts must be made from the same location or from locations no " +"two of which are more than 200 kilometers apart. The applicant's attestation " +"in the award application serves as affirmation of abidance by the distance " +"rule. Individuals may apply for and be granted multiple GridMaster awards " +"when achieved from another location, which is in a different 200-kilometer " +"circle." +msgstr "" + +#: application/views/awards/gridmaster/index.php:9 +msgid "website" +msgstr "" + +#: application/views/awards/gridmaster/index.php:10 +msgid "This map shows only QSOs worked on SAT." +msgstr "" + +#: application/views/awards/helvetia/index.php:3 +msgctxt "Switzerland Canton" +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:4 +msgid "Hover over a canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:20 +msgid "HELVETIA 26 | SWITZERLAND AWARD" +msgstr "" + +#: application/views/awards/helvetia/index.php:21 +msgid "" +"The USKA (Union of Swiss Shortwave Amateurs) sponsors two awards, the " +"HELVETIA 26 (H26) Award and the SWITZERLAND Award, aimed at promoting " +"activities on the bands by encouraging contacts across as many Swiss cantons " +"as possible on multiple bands." +msgstr "" + +#: application/views/awards/helvetia/index.php:22 +msgid "" +"These awards come in two versions: one for HF bands and the other for VHF " +"(including SHF and UHF) bands. Valid connections for these awards date back " +"to January 1, 1980" +msgstr "" + +#: application/views/awards/helvetia/index.php:23 +#: application/views/awards/jcc/index.php:19 +#: application/views/awards/sota/index.php:10 +#: application/views/awards/wab/index.php:15 +#: application/views/awards/waja/index.php:22 +#: application/views/awards/wwff/index.php:10 +#, php-format +msgid "For more information, please visit: %s." +msgstr "" + +#: application/views/awards/helvetia/index.php:114 +msgid "Show Helvetia Map" +msgstr "" + +#: application/views/awards/helvetia/index.php:151 +msgid "Canton" +msgstr "" + +#: application/views/awards/index.php:9 application/views/bands/index.php:46 +#: application/views/interface_assets/header.php:164 +msgid "CQ" +msgstr "" + +#: application/views/awards/iota/index.php:16 +msgid "IOTA Awards" +msgstr "" + +#: application/views/awards/iota/index.php:17 +msgid "" +"IOTA is an exciting and innovative activity program that has captured the " +"interest of thousands of radio amateurs worldwide. Established in 1964, it " +"promotes radio contacts with stations located on islands around the world to " +"enhance the experience of all those active on the amateur bands. To achieve " +"this, it draws on the widespread mystique surrounding islands." +msgstr "" + +#: application/views/awards/iota/index.php:18 +msgid "" +"It is administered by Islands On The Air (IOTA) Ltd (referred to as IOTA " +"Management) in partnership with the Radio Society of Great Britain (RSGB). " +"IOTA Management has grouped the world's islands into approximately 1200 " +"'IOTA groups,' each having varying numbers of 'counters,' which are " +"qualifying islands. These listings are published in the IOTA Directory and " +"on the IOTA website. The objective for the IOTA Island Chaser is to make " +"radio contact with at least one counter in as many of these groups as " +"possible. The program has a well-defined set of rules and encourages " +"friendly competition among chasers by publishing participant performance in " +"an Honor Roll and annual listings, as well as recognizing it with " +"certificates and prestigious awards." +msgstr "" + +#: application/views/awards/iota/index.php:19 +#, php-format +msgid "You can also find this information on %s." +msgstr "" + +#: application/views/awards/iota/index.php:29 +msgid "Deleted IOTA" +msgstr "" + +#: application/views/awards/iota/index.php:132 +msgid "Show IOTA Map" +msgstr "" + +#: application/views/awards/iota/index.php:171 +#: application/views/contesting/add.php:25 +#: application/views/contesting/create.php:24 +#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:214 +#: application/views/dashboard/index.php:18 +#: application/views/labels/index.php:41 application/views/labels/index.php:75 +#: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/qslcarousel.php:34 +#: application/views/logbookadvanced/useroptions.php:54 +#: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 +#: application/views/satellite/edit.php:34 +#: application/views/satellite/index.php:21 +#: application/views/search/result.php:16 +#: application/views/search/search_result_ajax.php:19 +#: application/views/stationsetup/stationsetup.php:30 +#: application/views/themes/index.php:82 +#: application/views/timeline/index.php:236 application/views/user/edit.php:241 +#: application/views/user/edit.php:263 application/views/user/edit.php:285 +#: application/views/user/edit.php:307 application/views/user/edit.php:330 +#: application/views/view_log/partial/log_ajax.php:19 +#: application/views/view_log/qso.php:194 +#: application/views/view_log/qso.php:514 +msgid "Name" +msgstr "" + +#: application/views/awards/iota/index.php:173 +msgid "Deleted" +msgstr "" + +#: application/views/awards/itu/index.php:3 +#: application/views/awards/itu/index.php:150 +#: application/views/logbookadvanced/edit.php:10 +#: application/views/logbookadvanced/index.php:257 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:400 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 +msgid "ITU Zone" +msgstr "" + +#: application/views/awards/itu/index.php:21 +msgid "" +"The Classic Worked ITU Zones award may be claimed by producing evidence of " +"having contacted land based amateur radio stations in at least 70 of the 75 " +"broadcasting zones as defined by the International Telecommunications Union " +"(ITU)." +msgstr "" + +#: application/views/awards/itu/index.php:22 +#, php-format +msgctxt "uses 'RSGB'" +msgid "You can find more information on the website of %s." +msgstr "" + +#: application/views/awards/itu/index.php:25 +msgid "Awards - ITU Zones" +msgstr "" + +#: application/views/awards/itu/index.php:115 +msgid "Show ITU Zone Map" +msgstr "" + +#: application/views/awards/jcc/index.php:16 +msgid "JCC - Japan Century Cities Award" +msgstr "" + +#: application/views/awards/jcc/index.php:17 +msgid "" +"May be claimed for having contacted (heard) and received a QSL card from an " +"amateur station located in each of at least 100 different cities of Japan." +msgstr "" + +#: application/views/awards/jcc/index.php:18 +msgid "" +"JCC-200, 300, 400, 500, 600, 700 and 800 will be issued as separate awards. " +"A list of QSL cards should be arranged in order of JCC reference number, " +"however names of city may be omitted. An additional sticker will be issued " +"at every 50 contacts like 150, 250, 350, 450, 550, 650, 750 cities." +msgstr "" + +#: application/views/awards/jcc/index.php:115 +msgid "Show JCC Map" +msgstr "" + +#: application/views/awards/jcc/index.php:116 +#: application/views/cabrillo/index.php:180 application/views/cfd/index.php:25 +#: application/views/csv/index.php:128 application/views/dxatlas/index.php:128 +#: application/views/kml/index.php:113 application/views/reg1test/index.php:145 +msgid "Export" +msgstr "" + +#: application/views/awards/jcc/index.php:126 +#: application/views/public_search/empty.php:2 +#: application/views/public_search/result.php:2 +msgid "Results" +msgstr "" + +#: application/views/awards/jcc/index.php:151 +#: application/views/awards/waja/index.php:153 +#: application/views/distancerecords/index.php:13 +msgid "Number" +msgstr "" + +#: application/views/awards/jcc/index.php:152 +#: application/views/search/result.php:21 +#: application/views/view_log/qso.php:524 +msgid "City" +msgstr "" + +#: application/views/awards/jcc/index.php:187 +#: application/views/dashboard/index.php:368 +#: application/views/distances/index.php:23 +msgid "SAT" +msgstr "" + +#: application/views/awards/pota/index.php:7 +msgid "POTA Awards" +msgstr "" + +#: application/views/awards/pota/index.php:8 +msgid "" +"Parks on the Air® (POTA) started in early 2017 when the ARRL's National " +"Parks on the Air special event ended. A group of volunteers wanted to " +"continue the fun beyond the one-year event, and thus, POTA was born." +msgstr "" + +#: application/views/awards/pota/index.php:9 +msgid "" +"POTA works similarly to SOTA, with Activators and Hunters. For the awards, " +"there are several categories based on the number of parks, geographic areas, " +"and more." +msgstr "" + +#: application/views/awards/pota/index.php:10 +#, php-format +msgctxt "uses 'the website'" +msgid "" +"For more information about the available awards and categories, please visit " +"the %s." +msgstr "" + +#: application/views/awards/pota/index.php:31 +#: application/views/qso/index.php:236 application/views/qso/index.php:492 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 +#: application/views/user/edit.php:595 application/views/view_log/qso.php:306 +#: application/views/view_log/qso.php:573 +msgid "POTA Reference(s)" +msgstr "" + +#: application/views/awards/rac/index.php:3 +msgctxt "Canada Province" +msgid "Province" +msgstr "" + +#: application/views/awards/rac/index.php:4 +msgid "Hover over a province" +msgstr "" + +#: application/views/awards/rac/index.php:106 +msgid "Show RAC Map" +msgstr "" + +#: application/views/awards/sig/index.php:7 +msgid "SIG Information" +msgstr "" + +#: application/views/awards/sig/index.php:8 +msgid "" +"The SIG or Signature Category provides the possibility to use any kind of " +"'Award Signature' for awards that are not implemented in Wavelog." +msgstr "" + +#: application/views/awards/sig/index.php:9 +msgid "" +"The reason for this is that the common ADIF format provides only a few " +"dedicated fields for certain awards. SIG still makes it possible to use and " +"evaluate all other types of signature markers." +msgstr "" + +#: application/views/awards/sig/index.php:10 +msgid "" +"In the QSO processing, you will find two fields: 'SIG' contains the actual " +"marker, which is also visible in the award evaluation, and 'SIG INFO,' which " +"contains a description of the signature. Both fields are freely customizable." +msgstr "" + +#: application/views/awards/sig/index.php:21 +msgid "Award Type" +msgstr "" + +#: application/views/awards/sig/index.php:22 +#: application/views/continents/index.php:17 +#: application/views/distances/index.php:12 +#: application/views/timeplotter/index.php:4 +msgid "Number of QSOs" +msgstr "" + +#: application/views/awards/sig/index.php:23 +msgid "Number of Refs" +msgstr "" + +#: application/views/awards/sig/qso_list.php:9 +#: application/views/awards/sota/index.php:23 +msgid "Reference" +msgstr "" + +#: application/views/awards/sig/qso_list.php:10 +#: application/views/awards/sota/index.php:24 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/logbookadvanced/useroptions.php:22 +#: application/views/qslmanagement/index.php:23 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/search/lotw_unconfirmed_result.php:7 +#: application/views/view_log/qso.php:71 +msgid "Date/Time" +msgstr "" + +#: application/views/awards/sig/qso_list.php:14 +#: application/views/awards/sota/index.php:27 +msgid "RST Sent" +msgstr "" + +#: application/views/awards/sig/qso_list.php:15 +#: application/views/awards/sota/index.php:28 +msgid "RST Received" +msgstr "" + +#: application/views/awards/sig/qso_list.php:34 +msgid "Export QSOs to ADIF" +msgstr "" + +#: application/views/awards/sota/index.php:7 +msgid "SOTA Awards" +msgstr "" + +#: application/views/awards/sota/index.php:8 +msgid "" +"SOTA (Summits On The Air) is an award scheme for radio amateurs that " +"encourages portable operation in mountainous areas." +msgstr "" + +#: application/views/awards/sota/index.php:9 +msgid "" +"It is fully operational in nearly a hundred countries worldwide. Each " +"country has its own Association that defines the recognized SOTA summits " +"within that Association. Each summit earns the activators and chasers a " +"score related to the height of the summit. Certificates are available for " +"various scores, leading to the prestigious 'Mountain Goat' and 'Shack Sloth' " +"trophies. An Honor Roll for Activators and Chasers is maintained in the SOTA " +"online database." +msgstr "" + +#: application/views/awards/vucc/index.php:7 +msgid "VUCC - VHF/UHF Century Club Award" +msgstr "" + +#: application/views/awards/vucc/index.php:8 +msgid "" +"The VHF/UHF Century Club Award is given for a minimum number of worked and " +"confirmed gridsquares on a desired band." +msgstr "" + +#: application/views/awards/vucc/index.php:9 +#, php-format +msgid "Official information and the rules can be found in this document: %s." +msgstr "" + +#: application/views/awards/vucc/index.php:10 +msgid "Only VHF/UHF bands are relevant." +msgstr "" + +#: application/views/awards/vucc/index.php:22 +msgid "Grids Worked" +msgstr "" + +#: application/views/awards/vucc/index.php:23 +msgid "Grids Confirmed" +msgstr "" + +#: application/views/awards/wab/index.php:12 +msgid "WAB - Worked All Britain Award" +msgstr "" + +#: application/views/awards/wab/index.php:13 +msgid "" +"WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham " +"radio operators to work all the squares in Great Britain." +msgstr "" + +#: application/views/awards/wab/index.php:14 +msgid "" +"May be claimed for having contacted an amateur station located in the " +"required amount of squares, described on the page linked below." +msgstr "" + +#: application/views/awards/wab/index.php:109 +msgid "List" +msgstr "" + +#: application/views/awards/wab/list.php:5 +msgid "WAB Square" +msgstr "" + +#: application/views/awards/wac/index.php:9 +msgid "" +"Sponsored by the International Amateur Radio Union (IARU), the Worked All " +"Continents award is issued for working and confirming all six continents. " +"These are North America, South America, Oceania, Asia, Europe and Africa." +msgstr "" + +#: application/views/awards/wac/index.php:13 +msgid "Awards - Worked All Continents (WAC)" +msgstr "" + +#: application/views/awards/wac/index.php:151 +#: application/views/continents/index.php:62 +#: application/views/logbookadvanced/edit.php:25 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 +#: application/views/view_log/qso.php:245 +msgid "Continent" +msgstr "" + +#: application/views/awards/waja/index.php:3 +msgctxt "Japan Prefecture" +msgid "Prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:4 +msgid "Hover over a prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:19 +msgid "WAJA - Worked All Japan prefectures Award" +msgstr "" + +#: application/views/awards/waja/index.php:20 +msgid "" +"WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " +"radio operators to work all the prefectures in Japan." +msgstr "" + +#: application/views/awards/waja/index.php:21 +msgid "" +"May be claimed for having contacted (heard) and received a QSL card from an " +"amateur station located in each of the 47 prefectures of Japan. A list of " +"QSL cards should be arranged in order of WAJA (HAJA) reference number, " +"however names of prefectures may be omitted." +msgstr "" + +#: application/views/awards/waja/index.php:118 +msgid "Show WAJA Map" +msgstr "" + +#: application/views/awards/waja/index.php:154 +#: application/views/timeline/index.php:185 +msgid "Prefecture" +msgstr "" + +#: application/views/awards/was/index.php:3 +msgctxt "USA State" +msgid "State" +msgstr "" + +#: application/views/awards/was/index.php:4 +msgid "Hover over a state" +msgstr "" + +#: application/views/awards/was/index.php:20 +msgid "WAS Award" +msgstr "" + +#: application/views/awards/was/index.php:21 +msgid "" +"ARRL's most popular award is the Worked All States Award. Thousands upon " +"thousands of awards have been issued to hams around the world. In ARRL's " +"101st year, they have redesigned the certificates and the program in hopes " +"of streamlining and improving the award program." +msgstr "" + +#: application/views/awards/was/index.php:22 +msgid "" +"The WAS (Worked All States) Award is available to all amateurs worldwide who " +"submit proof with written confirmation of contacts with each of the 50 " +"states of the United States of America. Amateurs in the U.S. and its " +"possessions must be members of ARRL to apply for a WAS. Applicants from " +"outside the U.S. are exempt from this requirement." +msgstr "" + +#: application/views/awards/was/index.php:23 +#, php-format +msgctxt "uses 'here'" +msgid "All information and rules for the ARRL WAS Award can be found %s." +msgstr "" + +#: application/views/awards/was/index.php:114 +msgid "Show WAS Map" +msgstr "" + +#: application/views/awards/wwff/index.php:7 +msgid "WWFF - World Wide Flora and Fauna Award" +msgstr "" + +#: application/views/awards/wwff/index.php:8 +msgid "" +"WWFF, World Wide Flora and Fauna in Amateur Radio, encourages licensed ham " +"radio operators to leave their shacks and operate portable in Protected " +"Flora & Fauna areas (PFF) worldwide." +msgstr "" + +#: application/views/awards/wwff/index.php:9 +msgid "" +"More than 26,000 Protected Flora & Fauna (PFF) areas worldwide are already " +"registered in the WWFF Directory. Hunters and Activators can apply for " +"colorful awards, both globally and nationally." +msgstr "" + +#: application/views/awards/wwff/index.php:31 +#: application/views/qso/index.php:224 application/views/qso/index.php:479 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 +#: application/views/user/edit.php:591 application/views/view_log/qso.php:299 +#: application/views/view_log/qso.php:566 +msgid "WWFF Reference" +msgstr "" + +#: application/views/backup/adif_view.php:7 +msgid "" +"The backup of your log completed successfully. The output can be found at" +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 "" + +#: application/views/backup/adif_view.php:13 +#: application/views/backup/notes_view.php:13 +msgid "" +"Something went wrong during the backup process. Check that the backup folder " +"exists and is writeable by your web server user / group." +msgstr "" + +#: application/views/backup/main.php:17 +msgid "" +"Some of the data stored in Wavelog can be exported so that you can keep a " +"backup copy elsewhere." +msgstr "" + +#: application/views/backup/main.php:18 +msgid "" +"It's recommended to create backups on a regular basis to protect your data." +msgstr "" + +#: application/views/backup/main.php:19 +msgid "Backup ADIF data" +msgstr "" + +#: application/views/backup/main.php:20 +msgid "Backup Notes" +msgstr "" + +#: application/views/backup/notes_view.php:7 +msgid "" +"The backup of your notes completed successfully. The output can be found at" +msgstr "" + +#: application/views/bandmap/index.php:15 application/views/bandmap/list.php:49 +msgid "BandMap" +msgstr "" + +#: application/views/bandmap/index.php:18 application/views/bandmap/list.php:52 +msgid "BandList" +msgstr "" + +#: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 +#: application/views/contesting/index.php:15 +#: application/views/contesting/index.php:52 +#: application/views/contesting/index.php:145 +#: application/views/qso/index.php:314 +msgid "None" +msgstr "" + +#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:76 +msgid "Spots de" +msgstr "" + +#: application/views/bandmap/list.php:69 +msgid "DXCC-Status" +msgstr "" + +#: application/views/bandmap/list.php:74 +msgid "Not Confirmed" +msgstr "" + +#: application/views/bandmap/list.php:113 +msgid "Spotter" +msgstr "" + +#: application/views/bandmap/list.php:114 +#: application/views/oqrs/notinlogform.php:28 +#: application/views/oqrs/request.php:54 +#: application/views/oqrs/request_grouped.php:58 +msgid "Message" +msgstr "" + +#: application/views/bands/create.php:26 application/views/bands/edit.php:8 +msgid "Name of Band (E.g. 20m)" +msgstr "" + +#: application/views/bands/create.php:29 application/views/bands/edit.php:11 +#: application/views/bands/index.php:61 +msgid "Bandgroup" +msgstr "" + +#: application/views/bands/create.php:31 application/views/bands/edit.php:13 +msgid "Name of bandgroup (E.g. hf, vhf, uhf, shf)" +msgstr "" + +#: application/views/bands/create.php:34 application/views/bands/edit.php:16 +#: application/views/bands/index.php:62 +msgid "SSB QRG" +msgstr "" + +#: application/views/bands/create.php:36 application/views/bands/edit.php:18 +msgid "Frequency for SSB QRG in band (must be in Hz)" +msgstr "" + +#: application/views/bands/create.php:39 application/views/bands/edit.php:21 +#: application/views/bands/index.php:63 +msgid "DATA QRG" +msgstr "" + +#: application/views/bands/create.php:41 application/views/bands/edit.php:23 +msgid "Frequency for DATA QRG in band (must be in Hz)" +msgstr "" + +#: application/views/bands/create.php:44 application/views/bands/edit.php:26 +#: application/views/bands/index.php:64 +msgid "CW QRG" +msgstr "" + +#: application/views/bands/create.php:46 application/views/bands/edit.php:28 +msgid "Frequency for CW QRG in band (must be in Hz)" +msgstr "" + +#: application/views/bands/index.php:36 +msgid "" +"Using the band list you can control which bands are shown when creating a " +"new QSO." +msgstr "" + +#: application/views/bands/index.php:37 +msgid "" +"Active bands will be shown in the QSO 'Band' drop-down, while inactive bands " +"will be hidden and cannot be selected." +msgstr "" + +#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 +#: application/views/qso/index.php:248 application/views/qso/index.php:504 +#: application/views/user/edit.php:599 application/views/view_log/qso.php:328 +#: application/views/view_log/qso.php:580 +msgid "Sig" +msgstr "" + +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:339 +#: application/views/qso/index.php:443 +msgid "USA County" +msgstr "" + +#: application/views/bands/index.php:58 +#: application/views/interface_assets/header.php:212 +msgid "WAJA" +msgstr "" + +#: application/views/bands/index.php:59 +#: application/views/interface_assets/header.php:236 +msgid "WAS" +msgstr "" + +#: application/views/bands/index.php:65 +msgid "QRG Unit" +msgstr "" + +#: application/views/bands/index.php:98 +msgid "Hz" +msgstr "" + +#: application/views/bands/index.php:99 +msgid "kHz" +msgstr "" + +#: application/views/bands/index.php:100 +msgid "MHz" +msgstr "" + +#: application/views/bands/index.php:101 +msgid "GHz" +msgstr "" + +#: application/views/bands/index.php:151 application/views/bands/index.php:157 +msgid "Create a band" +msgstr "" + +#: application/views/bands/index.php:152 +#: application/views/contesting/add.php:74 +#: application/views/contesting/index.php:83 +#: application/views/interface_assets/footer.php:44 +#: application/views/simplefle/index.php:21 +#: application/views/version_dialog/index.php:79 +msgid "Close" +msgstr "" + +#: application/views/bands/index.php:153 +msgid "Warning! Are you sure you want to delete the following band: " +msgstr "" + +#: application/views/bands/index.php:154 +msgid "Warning! Are you sure you want to activate all bands?" +msgstr "" + +#: application/views/bands/index.php:155 +msgid "Warning! Are you sure you want to deactivate all bands?" +msgstr "" + +#: application/views/bands/index.php:158 +#: application/views/contesting/add.php:77 application/views/mode/index.php:77 +msgid "Activate All" +msgstr "" + +#: application/views/bands/index.php:159 +#: application/views/contesting/add.php:78 application/views/mode/index.php:78 +msgid "Deactivate All" +msgstr "" + +#: application/views/cabrillo/index.php:2 +#: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:59 +#: application/views/reg1test/index.php:2 +#: application/views/reg1test/index.php:36 +msgid "Proceed" +msgstr "" + +#: application/views/cabrillo/index.php:3 +#: application/views/reg1test/index.php:3 +msgid "Select Year" +msgstr "" + +#: application/views/cabrillo/index.php:4 +#: application/views/reg1test/index.php:4 +msgid "Select Contest" +msgstr "" + +#: application/views/cabrillo/index.php:5 +#: application/views/reg1test/index.php:5 +msgid "Select Date Range" +msgstr "" + +#: application/views/cabrillo/index.php:6 +#: application/views/reg1test/index.php:7 +msgid "No contests were found for this station location!" +msgstr "" + +#: application/views/cabrillo/index.php:16 +msgid "Export a contest to a Cabrillo log" +msgstr "" + +#: application/views/cabrillo/index.php:28 +msgid "Select Station Location:" +msgstr "" + +#: application/views/cabrillo/index.php:44 +#: application/views/reg1test/index.php:53 +msgid "Club" +msgstr "" + +#: application/views/cabrillo/index.php:48 +#: application/views/reg1test/index.php:58 +msgid "Category Operator" +msgstr "" + +#: application/views/cabrillo/index.php:56 +msgid "Category Assisted" +msgstr "" + +#: application/views/cabrillo/index.php:63 +msgid "Category Band" +msgstr "" + +#: application/views/cabrillo/index.php:89 +msgid "Light/Laser" +msgstr "" + +#: application/views/cabrillo/index.php:90 +msgid "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)" +msgstr "" + +#: application/views/cabrillo/index.php:94 +msgid "Category Mode" +msgstr "" + +#: application/views/cabrillo/index.php:105 +msgid "Category Power" +msgstr "" + +#: application/views/cabrillo/index.php:113 +msgid "Category Station" +msgstr "" + +#: application/views/cabrillo/index.php:129 +msgid "Category Transmitter" +msgstr "" + +#: application/views/cabrillo/index.php:139 +msgid "Category Overlay" +msgstr "" + +#: application/views/cabrillo/index.php:150 +#: application/views/reg1test/index.php:70 +msgid "Operators" +msgstr "" + +#: application/views/cabrillo/index.php:155 +#: application/views/reg1test/index.php:139 +msgid "Soapbox" +msgstr "" + +#: application/views/cabrillo/index.php:159 +msgid "Address" +msgstr "" + +#: application/views/cabrillo/index.php:163 +msgid "Address City" +msgstr "" + +#: application/views/cabrillo/index.php:167 +msgid "Address State/Province" +msgstr "" + +#: application/views/cabrillo/index.php:171 +msgid "Address Postalcode" +msgstr "" + +#: application/views/cabrillo/index.php:175 +msgid "Address Country" +msgstr "" + +#: application/views/cabrillo/index.php:186 +#: application/views/reg1test/index.php:150 +msgid "No contests were found in your log." +msgstr "" + +#: application/views/cfd/index.php:7 +#, php-format +msgid "Export of CFD-File for DARC-Toplist (See %s)" +msgstr "" + +#: application/views/components/hamsat/table.php:3 +#: application/views/hamsat/index.php:7 +msgid "Hamsat - Satellite Rovers" +msgstr "" + +#: application/views/components/hamsat/table.php:4 +#: application/views/contestcalendar/index.php:4 +#: application/views/dxcalendar/index.php:4 +#: application/views/hamsat/index.php:8 +msgid "This data comes from" +msgstr "" + +#: application/views/components/hamsat/table.php:11 +msgid "Show All Passes" +msgstr "" + +#: application/views/components/hamsat/table.php:14 +msgid "Private feed key empty. Please set the feed key in your profile." +msgstr "" + +#: application/views/components/hamsat/table.php:19 +msgid "No upcoming activations found. Please check back later." +msgstr "" + +#: application/views/components/hamsat/table.php:28 +#: application/views/contesting/index.php:219 +#: application/views/hamsat/index.php:31 +#: application/views/logbookadvanced/edit.php:5 +#: application/views/logbookadvanced/index.php:629 +#: application/views/logbookadvanced/useroptions.php:114 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 +#: application/views/view_log/qso.php:202 +msgid "Comment" +msgstr "" + +#: application/views/components/hamsat/table.php:31 +#: application/views/hamsat/index.php:34 +msgid "Gridsquare(s)" +msgstr "" + +#: application/views/components/hamsat/table.php:32 +#: application/views/hamsat/index.php:35 +msgid "Workable" +msgstr "" + +#: application/views/components/hamsat/table.php:134 +msgctxt "Hamsat - Track Satellites" +msgid "Track" +msgstr "" + +#: application/views/components/hamsat/table.php:146 +msgid "Sked" +msgstr "" + +#: application/views/components/radio_display_table.php:5 +msgid "Radio Status" +msgstr "" + +#: application/views/contestcalendar/index.php:9 +msgid "No Contests" +msgstr "" + +#: application/views/contestcalendar/index.php:14 +#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:635 +#: application/views/logbookadvanced/useroptions.php:122 +#: application/views/qso/edit_ajax.php:39 +#: application/views/simplefle/index.php:80 +msgid "Contest" +msgstr "" + +#: application/views/contestcalendar/index.php:15 +#: application/views/statistics/custom.php:41 +#: application/views/statistics/custom_result.php:43 +msgid "Start" +msgstr "" + +#: application/views/contestcalendar/index.php:16 +#: application/views/statistics/custom.php:46 +#: application/views/statistics/custom_result.php:48 +msgid "End" +msgstr "" + +#: application/views/contestcalendar/index.php:17 +msgid "Link" +msgstr "" + +#: application/views/contestcalendar/index.php:26 +msgid "Show Details" +msgstr "" + +#: application/views/contestcalendar/index.php:38 +#: application/views/dashboard/index.php:278 +#: application/views/dashboard/index.php:305 +#: application/views/dashboard/index.php:326 +#: application/views/dashboard/index.php:347 +#: application/views/satellite/pass.php:475 +msgid "Today" +msgstr "" + +#: application/views/contestcalendar/index.php:48 +msgid "Weekend" +msgstr "" + +#: application/views/contestcalendar/index.php:59 +msgid "Next Week" +msgstr "" + +#: application/views/contesting/add.php:16 +msgid "" +"Using the contest list, you can control which Contests are shown when " +"logging QSOs in a contest." +msgstr "" + +#: application/views/contesting/add.php:19 +msgid "" +"Active contests will be shown in the Contest Name drop-down, while inactive " +"contests will be hidden and cannot be selected." +msgstr "" + +#: application/views/contesting/add.php:26 +#: application/views/contesting/create.php:30 +msgid "ADIF Name" +msgstr "" + +#: application/views/contesting/add.php:27 +#: application/views/contesting/add.php:41 +#: application/views/contesting/add.php:44 +#: application/views/contesting/edit.php:43 +#: application/views/contesting/edit.php:46 +#: application/views/interface_assets/header.php:472 +#: application/views/mode/create.php:46 application/views/mode/create.php:48 +#: application/views/mode/edit.php:57 application/views/mode/edit.php:60 +#: application/views/mode/index.php:43 +msgid "Active" +msgstr "" + +#: application/views/contesting/add.php:39 +#: application/views/contesting/add.php:44 +#: application/views/contesting/edit.php:49 +msgid "Not Active" +msgstr "" + +#: application/views/contesting/add.php:40 +#: application/views/contesting/add.php:49 application/views/mode/index.php:48 +msgid "Activate" +msgstr "" + +#: application/views/contesting/add.php:42 +#: application/views/contesting/add.php:47 application/views/mode/index.php:46 +msgid "Deactivate" +msgstr "" + +#: application/views/contesting/add.php:54 +msgid "DANGER!" +msgstr "" + +#: application/views/contesting/add.php:55 +msgid "Warning! Are you sure you want to delete the following contest: " +msgstr "" + +#: application/views/contesting/add.php:56 +msgid "Warning! Are you sure you want to activate all contests?" +msgstr "" + +#: application/views/contesting/add.php:57 +msgid "Warning! Are you sure you want to deactivate all contests?" +msgstr "" + +#: application/views/contesting/add.php:73 +#: application/views/contesting/add.php:76 +msgid "Add a Contest" +msgstr "" + +#: application/views/contesting/create.php:26 +#: application/views/contesting/edit.php:33 +msgid "Name of the Contest" +msgstr "" + +#: application/views/contesting/create.php:32 +#: application/views/contesting/edit.php:39 +msgid "Name of Contest in ADIF-specification" +msgstr "" + +#: application/views/contesting/create.php:35 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 +msgid "Create" +msgstr "" + +#: application/views/contesting/edit.php:31 +#: application/views/contesting/index.php:25 +#: application/views/qso/edit_ajax.php:575 +#: application/views/view_log/qso.php:278 +msgid "Contest Name" +msgstr "" + +#: application/views/contesting/edit.php:37 +msgid "Contest ADIF Name" +msgstr "" + +#: application/views/contesting/edit.php:52 +msgid "Set to active if to be listed in Contest-list" +msgstr "" + +#: application/views/contesting/index.php:2 +msgid "Start new Contest Session" +msgstr "" + +#: application/views/contesting/index.php:11 +msgid "Exchange Type" +msgstr "" + +#: application/views/contesting/index.php:16 +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:18 +msgid "Serial" +msgstr "" + +#: application/views/contesting/index.php:19 +msgid "Serial + Exchange" +msgstr "" + +#: application/views/contesting/index.php:20 +msgid "Serial + Gridsquare" +msgstr "" + +#: application/views/contesting/index.php:21 +msgid "Serial + Gridsquare + Exchange" +msgstr "" + +#: application/views/contesting/index.php:35 +#: application/views/operator/index.php:5 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:352 +msgid "Operator Callsign" +msgstr "" + +#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:45 +msgid "More Settings" +msgstr "" + +#: application/views/contesting/index.php:49 +msgid "Copy received exchange to" +msgstr "" + +#: application/views/contesting/index.php:51 +msgid "Exchange is only copied if it is matching rules for the selected field!" +msgstr "" + +#: application/views/contesting/index.php:55 +msgid "Age" +msgstr "" + +#: application/views/contesting/index.php:57 +msgid "RX Power (W)" +msgstr "" + +#: application/views/contesting/index.php:58 +msgid "Locator" +msgstr "" + +#: application/views/contesting/index.php:59 +#: application/views/qso/edit_ajax.php:177 +msgid "QTH" +msgstr "" + +#: application/views/contesting/index.php:64 +msgid "Sequence of Exchanges" +msgstr "" + +#: application/views/contesting/index.php:67 +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 "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Grid" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Serial" +msgstr "" + +#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:255 +#: application/views/qso/edit_ajax.php:598 +msgid "Serial (S)" +msgstr "" + +#: application/views/contesting/index.php:177 +msgid "Gridsquare (S)" +msgstr "" + +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:253 +msgid "Exch (S)" +msgstr "" + +#: application/views/contesting/index.php:196 +#: application/views/contesting/index.php:256 +#: application/views/qso/edit_ajax.php:593 +msgid "Serial (R)" +msgstr "" + +#: application/views/contesting/index.php:201 +msgid "Gridsquare (R)" +msgstr "" + +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:254 +msgid "Exch (R)" +msgstr "" + +#: application/views/contesting/index.php:224 +msgid "Reset QSO" +msgstr "" + +#: application/views/contesting/index.php:225 +#: application/views/qso/index.php:629 +msgid "Save QSO" +msgstr "" + +#: application/views/contesting/index.php:234 +msgid "Callsign Suggestions" +msgstr "" + +#: application/views/contesting/index.php:241 +msgid "Contest Logbook" +msgstr "" + +#: application/views/contesting/index.php:258 +#: application/views/qso/edit_ajax.php:164 +msgid "VUCC Gridsquare" +msgstr "" + +#: application/views/continents/index.php:63 +#: application/views/statistics/index.php:19 +#: application/views/statistics/index.php:113 +msgid "# of QSO's worked" +msgstr "" + +#: application/views/cron/edit.php:11 +msgid "Identifier" +msgstr "" + +#: application/views/cron/edit.php:22 +#: application/views/options/appearance.php:56 +#: application/views/options/appearance.php:63 +#: application/views/options/appearance.php:72 +#: application/views/options/appearance.php:82 +#: application/views/options/appearance.php:91 +#: application/views/options/appearance.php:100 +#: application/views/options/appearance.php:109 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 +#: application/views/stationsetup/stationsetup.php:73 +#: application/views/user/edit.php:452 application/views/user/edit.php:461 +msgid "Enabled" +msgstr "" + +#: application/views/cron/edit.php:36 application/views/cron/index.php:55 +msgid "Intervall" +msgstr "" + +#: application/views/cron/edit.php:38 +msgid "Choose a preset from the dropdown" +msgstr "" + +#: application/views/cron/edit.php:43 +msgid "Every 5 Minutes" +msgstr "" + +#: application/views/cron/edit.php:44 +msgid "Every 15 Minutes" +msgstr "" + +#: application/views/cron/edit.php:45 +msgid "Every Hour" +msgstr "" + +#: application/views/cron/edit.php:46 +msgid "Every 2 Hours" +msgstr "" + +#: application/views/cron/edit.php:47 +msgid "Every Day at Midnight" +msgstr "" + +#: application/views/cron/edit.php:48 +msgid "Every Monday at 03:00" +msgstr "" + +#: application/views/cron/edit.php:49 +msgid "First Day of Every Month at midnight" +msgstr "" + +#: application/views/cron/edit.php:50 +msgid "Every 2 Months at 02:00" +msgstr "" + +#: application/views/cron/edit.php:62 +msgid "OR" +msgstr "" + +#: application/views/cron/edit.php:63 +msgid "Enter your own Cron Expression" +msgstr "" + +#: application/views/cron/edit.php:74 +#: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 +msgid "Cancel" +msgstr "" + +#: application/views/cron/index.php:9 +msgid "How it works" +msgstr "" + +#: application/views/cron/index.php:15 +msgid "" +"The Cron Manager assists the administrator in managing cron jobs without " +"requiring CLI access." +msgstr "" + +#: application/views/cron/index.php:19 +msgid "" +"To execute cron jobs based on the data below, remove all old cron jobs and " +"create a new one:" +msgstr "" + +#: application/views/cron/index.php:29 application/views/cron/index.php:33 +msgid "Status Master-Cron:" +msgstr "" + +#: application/views/cron/index.php:33 +msgctxt "PHP Version" +msgid "Min. Version is" +msgstr "" + +#: application/views/cron/index.php:33 +msgid "PHP Version not supported." +msgstr "" + +#: application/views/cron/index.php:43 +msgid "Cron List" +msgstr "" + +#: application/views/cron/index.php:52 +#: application/views/stationsetup/stationsetup.php:121 +msgid "ID" +msgstr "" + +#: application/views/cron/index.php:56 +msgid "Last Run" +msgstr "" + +#: application/views/cron/index.php:57 +msgid "Next Run" +msgstr "" + +#: application/views/cron/index.php:70 +msgid "healthy" +msgstr "" + +#: application/views/cron/index.php:72 +msgid "failed" +msgstr "" + +#: application/views/cron/index.php:74 +msgid "pending" +msgstr "" + +#: application/views/cron/index.php:79 +msgid "disabled" +msgstr "" + +#: application/views/cron/index.php:83 application/views/cron/index.php:85 +#: application/views/cron/index.php:87 application/views/debug/index.php:494 +#: application/views/debug/index.php:500 application/views/debug/index.php:505 +#: application/views/debug/index.php:510 application/views/debug/index.php:515 +#: application/views/debug/index.php:520 application/views/debug/index.php:525 +#: application/views/user/index.php:138 +msgid "never" +msgstr "" + +#: application/views/cron/index.php:102 +msgid "Your Mastercron isn't running." +msgstr "" + +#: application/views/cron/index.php:103 +msgid "" +"Copy the cron above to a external cron service or into your server's cron to " +"use this cron manager." +msgstr "" + +#: application/views/cron/index.php:104 +msgid "" +"On a basic linux server with shell access use this command to edit your " +"crons:" +msgstr "" + +#: application/views/cron/index.php:111 +#, php-format +msgid "" +"You need to upgrade your PHP version. Minimum version is %s. Your Version is " +"%s" +msgstr "" + +#: application/views/csv/index.php:7 +msgid "Export your logbook for SOTA uploads." +msgstr "" + +#: application/views/csv/index.php:11 +msgid "Only QSOs with SOTA information will be exported!" +msgstr "" + +#: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 +#: application/views/eqsl/download.php:42 +#: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:411 +msgid "Propagation Mode" +msgstr "" + +#: application/views/dashboard/index.php:5 +msgid "RSTS" +msgstr "" + +#: application/views/dashboard/index.php:6 +msgid "RSTR" +msgstr "" + +#: application/views/dashboard/index.php:58 +msgid "" +"You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +msgstr "" + +#: application/views/dashboard/index.php:65 +#, php-format +msgctxt "Dashboard Warning" +msgid "You need to update country files! Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:73 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station locations. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:81 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station logbook. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:89 +#, php-format +msgctxt "Dashboard Warning" +msgid "" +"Your active Station Location isn't linked to your Logbook. Click %shere%s to " +"do it." +msgstr "" + +#: application/views/dashboard/index.php:97 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station linked to your Logbook. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:106 +#, php-format +msgid "You have had %d QSO today" +msgid_plural "You have had %d QSOs today" +msgstr[0] "" +msgstr[1] "" + +#: application/views/dashboard/index.php:112 +msgid "You have made no QSOs today; time to turn on the radio!" +msgstr "" + +#: application/views/dashboard/index.php:119 +msgid "Attention: you need to set an active station location." +msgstr "" + +#: application/views/dashboard/index.php:125 +msgid "" +"You have themes without defined theme mode. Please ask the admin to edit the " +"themes." +msgstr "" + +#: application/views/dashboard/index.php:133 +msgid "At least one of your LoTW certificates is expired!" +msgstr "" + +#: application/views/dashboard/index.php:139 +msgid "At least one of your LoTW certificates is about to expire!" +msgstr "" + +#: application/views/dashboard/index.php:229 +#: application/views/visitor/index.php:237 +msgid "QSOs Breakdown" +msgstr "" + +#: application/views/dashboard/index.php:252 +#: application/views/visitor/index.php:258 +msgid "Countries Breakdown" +msgstr "" + +#: application/views/dashboard/index.php:269 +#: application/views/visitor/index.php:275 +msgid "Needed" +msgstr "" + +#: application/views/dashboard/index.php:282 +#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:330 +#: application/views/dashboard/index.php:351 +#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:159 +#: application/views/qslprint/qsolist.php:58 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:167 +#: application/views/qso/edit_ajax.php:417 +#: application/views/qso/edit_ajax.php:478 +#: application/views/qso/edit_ajax.php:518 application/views/qso/index.php:572 +#: application/views/search/result_search.php:8 +#: application/views/search/search_result_ajax.php:180 +#: application/views/search/search_result_ajax.php:260 +#: application/views/search/search_result_ajax.php:298 +#: application/views/search/search_result_ajax.php:332 +#: application/views/search/search_result_ajax.php:362 +#: application/views/statistics/custom_result.php:89 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:289 +#: application/views/view_log/partial/log_ajax.php:297 +#: application/views/visitor/index.php:287 +#: application/views/visitor/index.php:310 +#: application/views/visitor/index.php:328 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:270 +#: src/QSLManager/QSO.php:373 src/QSLManager/QSO.php:425 +#: src/QSLManager/QSO.php:461 +msgid "Sent" +msgstr "" + +#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:315 +#: application/views/dashboard/index.php:336 +#: application/views/dashboard/index.php:357 +#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 +#: application/views/oqrs/qsolist.php:174 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:151 +#: application/views/qslprint/qsolist.php:182 +#: application/views/qso/edit_ajax.php:450 +#: application/views/qso/edit_ajax.php:491 +#: application/views/qso/edit_ajax.php:530 +#: application/views/search/search_result_ajax.php:222 +#: application/views/search/search_result_ajax.php:273 +#: application/views/search/search_result_ajax.php:313 +#: application/views/search/search_result_ajax.php:345 +#: application/views/search/search_result_ajax.php:375 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:265 +#: application/views/view_log/partial/log_ajax.php:290 +#: application/views/view_log/partial/log_ajax.php:298 +#: application/views/visitor/index.php:292 +#: application/views/visitor/index.php:315 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:315 +#: src/QSLManager/QSO.php:396 src/QSLManager/QSO.php:438 +#: src/QSLManager/QSO.php:474 +msgid "Received" +msgstr "" + +#: application/views/dashboard/index.php:294 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:415 +#: application/views/logbookadvanced/index.php:426 +#: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 +#: application/views/qslprint/qsolist.php:64 +#: application/views/qslprint/qsolist.php:106 +#: application/views/qso/edit_ajax.php:422 +#: application/views/qso/edit_ajax.php:455 +#: application/views/qso/edit_ajax.php:483 +#: application/views/qso/edit_ajax.php:496 +#: application/views/qso/edit_ajax.php:523 +#: application/views/qso/edit_ajax.php:535 application/views/qso/index.php:577 +#: application/views/search/search_result_ajax.php:186 +#: application/views/search/search_result_ajax.php:228 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +#: application/views/view_log/partial/log_ajax.php:249 +#: application/views/view_log/partial/log_ajax.php:275 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:276 +#: src/QSLManager/QSO.php:321 src/QSLManager/QSO.php:381 +#: src/QSLManager/QSO.php:404 +msgid "Requested" +msgstr "" + +#: application/views/dashboard/index.php:304 +msgctxt "Probably no translation needed as this is a name." +msgid "Logbook of the World" +msgstr "" + +#: application/views/dashboard/index.php:367 +msgid "VUCC-Grids" +msgstr "" + +#: application/views/dayswithqso/index.php:2 +#: application/views/interface_assets/header.php:148 +msgid "Days with QSOs" +msgstr "" + +#: application/views/dayswithqso/index.php:25 +msgid "Days" +msgstr "" + +#: application/views/dayswithqso/index.php:37 +msgid "Longest streak with QSOs in the log" +msgstr "" + +#: application/views/dayswithqso/index.php:38 +msgid "A maximum of the 10 longest streaks are shown!" +msgstr "" + +#: application/views/dayswithqso/index.php:56 +msgid "Streak (continuous days with QSOs)" +msgstr "" + +#: application/views/dayswithqso/index.php:57 +#: application/views/dayswithqso/index.php:85 +#: application/views/dayswithqso/index.php:107 +msgid "Start Date" +msgstr "" + +#: application/views/dayswithqso/index.php:58 +#: application/views/dayswithqso/index.php:86 +#: application/views/dayswithqso/index.php:108 +#: application/views/timeline/index.php:153 +msgid "End Date" +msgstr "" + +#: application/views/dayswithqso/index.php:74 +msgctxt "Days with QSOs" +msgid "No streak found!" +msgstr "" + +#: application/views/dayswithqso/index.php:78 +msgid "Current streak with QSOs in the log" +msgstr "" + +#: application/views/dayswithqso/index.php:84 +#: application/views/dayswithqso/index.php:106 +msgid "Current streak (continuous days with QSOs)" +msgstr "" + +#: application/views/dayswithqso/index.php:101 +msgid "" +"If you make a QSO today, you can continue to extend your streak... or else " +"your current streak will be broken!" +msgstr "" + +#: application/views/dayswithqso/index.php:122 +msgid "No current streak found!" +msgstr "" + +#: application/views/debug/index.php:23 +msgid "Wavelog Information" +msgstr "" + +#: application/views/debug/index.php:27 +msgid "Version" +msgstr "" + +#: application/views/debug/index.php:31 +msgid "Language" +msgstr "" + +#: application/views/debug/index.php:35 +msgid "Base URL" +msgstr "" + +#: application/views/debug/index.php:39 +msgid "Migration" +msgstr "" + +#: application/views/debug/index.php:40 +msgid "There is something wrong with your Migration in Database!" +msgstr "" + +#: application/views/debug/index.php:45 +msgid "Migration is outdated and locked!" +msgstr "" + +#: application/views/debug/index.php:46 +#, php-format +msgid "" +"The current migration is not the version it is supposed to be. Reload this " +"page after %s seconds. If this warning persists, your migration is likely " +"locked due to a previously failed process. Delete the file %s to force the " +"migration to run again." +msgstr "" + +#: application/views/debug/index.php:47 +#, php-format +msgid "Check this wiki article %shere%s for more information." +msgstr "" + +#: application/views/debug/index.php:48 +#, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format +msgid "Migration should be %s" +msgstr "" + +#: application/views/debug/index.php:54 +msgid "Environment" +msgstr "" + +#: application/views/debug/index.php:62 +msgid "Total QSO on this instance" +msgstr "" + +#: application/views/debug/index.php:70 +msgid "Server Information" +msgstr "" + +#: application/views/debug/index.php:74 +msgid "Server Software" +msgstr "" + +#: application/views/debug/index.php:79 +msgid "PHP Version" +msgstr "" + +#: application/views/debug/index.php:85 +msgid "Deprecated" +msgstr "" + +#: application/views/debug/index.php:92 +msgid "MySQL Version" +msgstr "" + +#: application/views/debug/index.php:96 +msgid "Codeigniter Version" +msgstr "" + +#: application/views/debug/index.php:104 +msgid "Folder Permissions" +msgstr "" + +#: application/views/debug/index.php:106 +msgid "" +"This verifies that the folders used by Wavelog have read and write " +"permissions by PHP." +msgstr "" + +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 +msgid "Success" +msgstr "" + +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 +msgid "Failed" +msgstr "" + +#: application/views/debug/index.php:169 +msgid "Config Maintenance" +msgstr "" + +#: application/views/debug/index.php:175 +msgid "Your authentication mode is outdated and possibly unsafe" +msgstr "" + +#: application/views/debug/index.php:177 application/views/debug/index.php:194 +#, php-format +msgid "Please edit your %s File:" +msgstr "" + +#: application/views/debug/index.php:178 +msgid "" +"Go to your application/config Folder and compare config.sample.php with your " +"config.php" +msgstr "" + +#: application/views/debug/index.php:179 +#, php-format +msgid "Change %s to the value %s (Strongly recommended)" +msgstr "" + +#: application/views/debug/index.php:185 +msgid "Authentication Mode is set correctly" +msgstr "" + +#: application/views/debug/index.php:185 application/views/debug/index.php:202 +msgid "Ok" +msgstr "" + +#: application/views/debug/index.php:192 +msgid "You use the default encryption key. You should change it!" +msgstr "" + +#: application/views/debug/index.php:195 +msgid "This will also enable the 'Keep me logged in' feature." +msgstr "" + +#: application/views/debug/index.php:196 +#, php-format +msgid "" +"Change the value of %s to a new encryption key other then " +"'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" +msgstr "" + +#: application/views/debug/index.php:202 +msgid "You do not use the default encryption key" +msgstr "" + +#: application/views/debug/index.php:209 +msgid "Migrate Userdata" +msgstr "" + +#: application/views/debug/index.php:211 +msgid "" +"Here you can migrate existing QSL cards and eQSL cards to the new userdata " +"folder." +msgstr "" + +#: application/views/debug/index.php:224 +msgid "Modules" +msgstr "" + +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 +msgid "Installed" +msgstr "" + +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 +msgid "Not Installed" +msgstr "" + +#: application/views/debug/index.php:283 application/views/qso/index.php:671 +msgid "Settings" +msgstr "" + +#: application/views/debug/index.php:412 +msgid "Git Information" +msgstr "" + +#: application/views/debug/index.php:416 +msgid "Branch" +msgstr "" + +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 +msgid "n/a" +msgstr "" + +#: application/views/debug/index.php:433 +msgid "Commit" +msgstr "" + +#: application/views/debug/index.php:443 +msgid "Tag" +msgstr "" + +#: application/views/debug/index.php:453 +msgid "Last Fetch" +msgstr "" + +#: application/views/debug/index.php:465 +msgid "Check for new version" +msgstr "" + +#: application/views/debug/index.php:466 +msgid "Update now" +msgstr "" + +#: application/views/debug/index.php:484 +msgid "File download date" +msgstr "" + +#: application/views/debug/index.php:488 +msgid "File" +msgstr "" + +#: application/views/debug/index.php:489 +msgid "Last update" +msgstr "" + +#: application/views/debug/index.php:493 +msgid "DXCC update from Club Log" +msgstr "" + +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 +#: application/views/station_profile/edit.php:49 +msgid "Update" +msgstr "" + +#: application/views/debug/index.php:499 +msgid "DOK file download" +msgstr "" + +#: application/views/debug/index.php:504 +msgid "LoTW users download" +msgstr "" + +#: application/views/debug/index.php:509 +msgid "POTA file download" +msgstr "" + +#: application/views/debug/index.php:514 +msgid "SCP file download" +msgstr "" + +#: application/views/debug/index.php:519 +msgid "SOTA file download" +msgstr "" + +#: application/views/debug/index.php:524 +msgid "WWFF file download" +msgstr "" + +#: application/views/debug/index.php:533 +msgid "QSO-DB Maintenance" +msgstr "" + +#: application/views/debug/index.php:537 +#, 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] "" +msgstr[1] "" + +#: application/views/debug/index.php:550 +#: application/views/public_search/result.php:17 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 +#: application/views/stationsetup/linkedlocations.php:32 +#: application/views/stationsetup/stationsetup.php:123 +msgid "Station Callsign" +msgstr "" + +#: application/views/debug/index.php:575 +msgid "Please mark QSOs and reassign them to an existing station location:" +msgstr "" + +#: application/views/debug/index.php:583 +msgctxt "Stationlocation" +msgid "Target Location" +msgstr "" + +#: application/views/debug/index.php:584 application/views/debug/index.php:595 +msgid "Reassign" +msgstr "" + +#: application/views/debug/index.php:604 +msgid "Every QSO in your Database is assigned to a station-profile (location)" +msgstr "" + +#: application/views/debug/index.php:604 +msgid "Everything ok" +msgstr "" + +#: application/views/debug/index.php:629 +msgid "Albanian" +msgstr "" + +#: application/views/debug/index.php:630 +msgid "Bosnian" +msgstr "" + +#: application/views/debug/index.php:631 +msgid "Bulgarian" +msgstr "" + +#: application/views/debug/index.php:632 +msgid "Chinese (Simplified)" +msgstr "" + +#: application/views/debug/index.php:633 +msgid "Croatian" +msgstr "" + +#: application/views/debug/index.php:634 +msgid "Czech" +msgstr "" + +#: application/views/debug/index.php:635 +msgid "Dutch" +msgstr "" + +#: application/views/debug/index.php:636 +msgid "English" +msgstr "" + +#: application/views/debug/index.php:637 +msgid "Finnish" +msgstr "" + +#: application/views/debug/index.php:638 +msgid "French" +msgstr "" + +#: application/views/debug/index.php:639 +msgid "German" +msgstr "" + +#: application/views/debug/index.php:640 +msgid "Greek" +msgstr "" + +#: application/views/debug/index.php:641 +msgid "Italian" +msgstr "" + +#: application/views/debug/index.php:642 +msgid "Montenegrin" +msgstr "" + +#: application/views/debug/index.php:643 +msgid "Polish" +msgstr "" + +#: application/views/debug/index.php:644 +msgid "Portuguese" +msgstr "" + +#: application/views/debug/index.php:645 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:646 +msgid "Serbian" +msgstr "" + +#: application/views/debug/index.php:647 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:648 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:649 +msgid "Turkish" +msgstr "" + +#: application/views/distancerecords/index.php:4 +msgid "This page lists distance records per satellite based on gridsquares." +msgstr "" + +#: application/views/distances/index.php:7 +#: application/views/interface_assets/footer.php:30 +#: application/views/simplefle/index.php:68 +msgid "QSO Data" +msgstr "" + +#: application/views/distances/index.php:9 +#, php-format +msgid "contacts were plotted.%s Your furthest contact was with" +msgstr "" + +#: application/views/distances/index.php:10 +msgid "in gridsquare" +msgstr "" + +#: application/views/distances/index.php:11 +msgid "the distance was" +msgstr "" + +#: application/views/distances/index.php:14 +msgid "Callsign(s) worked (max 5 shown)" +msgstr "" + +#: application/views/distances/index.php:19 +msgid "Band selection" +msgstr "" + +#: application/views/dxatlas/index.php:3 +msgid "DX Atlas Export" +msgstr "" + +#: application/views/dxatlas/index.php:7 +msgid "" +"Export your logbook for use in DX Atlas to display worked / confirmed " +"gridsquares." +msgstr "" + +#: application/views/dxatlas/index.php:11 application/views/kml/index.php:11 +msgid "Only QSOs with a gridsquare defined will be exported!" +msgstr "" + +#: application/views/dxcalendar/index.php:9 +msgid "Date from" +msgstr "" + +#: application/views/dxcalendar/index.php:10 +msgid "Date to" +msgstr "" + +#: application/views/dxcalendar/index.php:13 +#: application/views/view_log/qso.php:369 +msgid "QSL Info" +msgstr "" + +#: application/views/dxcalendar/index.php:14 +msgid "Source" +msgstr "" + +#: application/views/eqsl/analysis.php:11 application/views/eqsl/download.php:9 +#: application/views/eqsl/export.php:8 application/views/eqsl/import.php:7 +#: application/views/eqsl/result.php:11 application/views/eqsl/tools.php:7 +#: application/views/qrz/export.php:14 +msgid "Download QSOs" +msgstr "" + +#: application/views/eqsl/analysis.php:14 +#: application/views/eqsl/download.php:13 application/views/eqsl/export.php:12 +#: application/views/eqsl/import.php:11 application/views/eqsl/result.php:14 +#: application/views/eqsl/tools.php:11 +msgid "Upload QSOs" +msgstr "" + +#: application/views/eqsl/analysis.php:17 +#: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 +#: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 +#: application/views/eqsl/tools.php:15 +#: application/views/interface_assets/header.php:247 +msgid "Tools" +msgstr "" + +#: application/views/eqsl/analysis.php:20 +#: application/views/eqsl/download.php:20 application/views/eqsl/export.php:19 +#: application/views/eqsl/import.php:18 application/views/eqsl/result.php:20 +#: application/views/eqsl/tools.php:19 +msgid "Download eQSL cards" +msgstr "" + +#: application/views/eqsl/analysis.php:40 +#: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 +msgid "Submode" +msgstr "" + +#: application/views/eqsl/analysis.php:41 +msgid "Log Status" +msgstr "" + +#: application/views/eqsl/analysis.php:42 application/views/eqsl/result.php:38 +msgid "eQSL Status" +msgstr "" + +#: application/views/eqsl/analysis.php:62 +msgid "There are no QSO confirmations waiting for you at eQSL.cc" +msgstr "" + +#: application/views/eqsl/download.php:31 +msgid "" +"Below is a table of QSOs that have been confirmed on eQSL but QSL images " +"have not been downloaded yet." +msgstr "" + +#: application/views/eqsl/download.php:43 +msgid "Action" +msgstr "" + +#: application/views/eqsl/download.php:60 +msgid "View/Download" +msgstr "" + +#: application/views/eqsl/download.php:71 application/views/eqsl/import.php:53 +msgid "" +"Wavelog will use the eQSL credentials from your Wavelog user profile to " +"connect to eQSL and download confirmations." +msgstr "" + +#: application/views/eqsl/download.php:73 +msgid "" +"Due to a rate limit of approximately 10 seconds per eQSL picture download " +"calling this function will take a long time to complete! Thus you may have " +"to call this function several times depending on the amount of outstanding " +"cards. This may run into a script timeout depending on the PHP configuration." +msgstr "" + +#: application/views/eqsl/download.php:81 +msgid "" +"There are no QSOs whose eQSL card images have not yet been downloaded. Go " +"log some more QSOs!" +msgstr "" + +#: application/views/eqsl/export.php:31 +msgid "Below is a table of QSOs that have not yet been sent to eQSL." +msgstr "" + +#: application/views/eqsl/export.php:33 +msgid "" +"Please make sure the 'eQSL QTH Nickname' field is set in your station " +"profile and that the value matches the QTH Nickname you set within eQSL." +msgstr "" + +#: application/views/eqsl/export.php:37 +msgid "Clicking 'Upload QSOs' will send QSO information to eQSL.cc." +msgstr "" + +#: application/views/eqsl/export.php:46 +msgid "The following QSOs were sent to eQSL." +msgstr "" + +#: application/views/eqsl/export.php:51 +msgid "" +"There are no QSOs that need to be sent to eQSL at this time. Go log some " +"more QSOs!" +msgstr "" + +#: application/views/eqsl/import.php:30 +msgid "Import from file..." +msgstr "" + +#: application/views/eqsl/import.php:33 +msgid "Download Inbox" +msgstr "" + +#: application/views/eqsl/import.php:33 +#, php-format +msgid "" +"Upload the Exported ADIF file from eQSL from the %s page, to mark QSOs as " +"confirmed on eQSL." +msgstr "" + +#: application/views/eqsl/import.php:34 +msgid "Choose Station(location) eQSL File belongs to:" +msgstr "" + +#: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 +msgid "Log files must have the file type .adi" +msgstr "" + +#: application/views/eqsl/import.php:52 +msgid "Import directly from eQSL" +msgstr "" + +#: application/views/eqsl/tools.php:27 +msgid "" +"This does NOT upload any QSOs. It only marks QSOs as sent. If you use this " +"button you need to upload them manually on the eQSL.cc website." +msgstr "" + +#: application/views/eqsl/tools.php:29 +msgid "Mark All QSOs as Sent to eQSL" +msgstr "" + +#: application/views/eqsl/tools.php:29 +msgid "" +"Use this if you have lots of QSOs to upload to eQSL it will save the server " +"timing out." +msgstr "" + +#: application/views/eqslcard/index.php:10 +#, php-format +msgid "You are using %s of disk space to store eQSL Card assets" +msgstr "" + +#: application/views/eqslcard/index.php:34 +#: application/views/qslcard/index.php:33 +msgid "QSL Date" +msgstr "" + +#: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2338 +#: application/views/interface_assets/footer.php:2356 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 +#: application/views/qslcard/index.php:66 +#: application/views/view_log/qso.php:617 +msgid "View" +msgstr "" + +#: application/views/gridmap/index.php:43 +msgid "All except SAT" +msgstr "" + +#: application/views/hamsat/index.php:22 +#, php-format +msgid "" +"Cannot filter workable passes only without private feed key. Please set the " +"feed key in %s." +msgstr "" + +#: application/views/hamsat/index.php:22 +msgid "your profile" +msgstr "" + +#: application/views/hrdlog/export.php:10 application/views/qrz/export.php:10 +#: application/views/webadif/export.php:10 +msgid "Upload Logbook" +msgstr "" + +#: application/views/hrdlog/export.php:13 application/views/qrz/export.php:18 +#: application/views/webadif/export.php:13 +msgid "Mark QSOs" +msgstr "" + +#: application/views/hrdlog/export.php:22 +msgid "" +"Here you can see all QSOs which have not been previously uploaded to a " +"HRDLog logbook." +msgstr "" + +#: application/views/hrdlog/export.php:23 +msgid "" +"You need to set a HRDLog Logbook API Code in your station profile. Only " +"station profiles with an API Key set are displayed." +msgstr "" + +#: application/views/hrdlog/export.php:24 +#, php-format +msgid "The Code can be requested at %s" +msgstr "" + +#: application/views/hrdlog/export.php:25 +#: application/views/webadif/export.php:34 +msgid "This might take a while as QSO uploads are processed sequentially." +msgstr "" + +#: application/views/hrdlog/export.php:34 application/views/qrz/export.php:38 +#: application/views/webadif/export.php:41 +msgid "Profile name" +msgstr "" + +#: application/views/hrdlog/export.php:35 +#: application/views/oqrs/showrequests.php:86 +#: application/views/qrz/export.php:39 application/views/webadif/export.php:42 +msgid "Station callsign" +msgstr "" + +#: application/views/hrdlog/export.php:36 application/views/qrz/export.php:40 +msgid "Edited QSOs not uploaded" +msgstr "" + +#: application/views/hrdlog/export.php:37 application/views/qrz/export.php:41 +#: application/views/webadif/export.php:43 +msgid "Total QSOs not uploaded" +msgstr "" + +#: application/views/hrdlog/export.php:38 application/views/qrz/export.php:42 +#: application/views/webadif/export.php:44 +msgid "Total QSOs uploaded" +msgstr "" + +#: application/views/hrdlog/export.php:60 +msgid "" +"No Station Locations with valid HRDlog-Settings found. Check the HRDlog " +"Credentials in the Station Location Settings!" +msgstr "" + +#: application/views/hrdlog/export.php:87 +msgid "Mark QSOs as exported to HRDLog Logbook" +msgstr "" + +#: application/views/hrdlog/mark_hrdlog.php:15 +#: application/views/qrz/mark_qrz.php:15 +#: application/views/webadif/mark_webadif.php:15 +msgid "Yay, it's done!" +msgstr "" + +#: application/views/hrdlog/mark_hrdlog.php:16 +msgid "The QSOs are marked as exported to HRDLog Logbook." +msgstr "" + +#: application/views/interface_assets/footer.php:31 +#: application/views/search/search_result_ajax.php:404 +#: application/views/view_log/partial/log.php:135 +#: application/views/view_log/partial/log_ajax.php:320 +#: application/views/view_log/qso.php:437 +msgid "Edit QSO" +msgstr "" + +#: application/views/interface_assets/footer.php:33 +msgid "Attention" +msgstr "" + +#: application/views/interface_assets/footer.php:38 +msgid "Warning! Are you sure you want delete QSO with " +msgstr "" + +#: application/views/interface_assets/footer.php:39 +#: application/views/user/edit.php:493 +msgid "Colors" +msgstr "" + +#: application/views/interface_assets/footer.php:41 +msgid "Worked not confirmed" +msgstr "" + +#: application/views/interface_assets/footer.php:42 +msgid "Not worked" +msgstr "" + +#: application/views/interface_assets/footer.php:46 +#: application/views/qso/index.php:623 +#: application/views/visitor/layout/footer.php:246 +msgid "Clear" +msgstr "" + +#: application/views/interface_assets/footer.php:47 +#: application/views/qso/edit_ajax.php:211 +#: application/views/qso/edit_ajax.php:539 +msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." +msgstr "" + +#: application/views/interface_assets/footer.php:48 +msgid "No states for this DXCC available" +msgstr "" + +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "" + +#: application/views/interface_assets/footer.php:132 +#: application/views/interface_assets/header.php:440 +#: application/views/options/sidebar.php:11 +msgid "Version Info" +msgstr "" + +#: application/views/interface_assets/footer.php:398 +msgid "Description:" +msgstr "" + +#: application/views/interface_assets/footer.php:401 +msgid "Query description" +msgstr "" + +#: application/views/interface_assets/footer.php:417 +msgid "Your query has been saved!" +msgstr "" + +#: application/views/interface_assets/footer.php:419 +#: application/views/search/filter.php:46 +msgid "Edit queries" +msgstr "" + +#: application/views/interface_assets/footer.php:421 +msgid "Stored queries:" +msgstr "" + +#: application/views/interface_assets/footer.php:426 +#: application/views/search/filter.php:60 +msgid "Run Query" +msgstr "" + +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 +msgid "Stored Queries" +msgstr "" + +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 +msgid "You need to make a query before you search!" +msgstr "" + +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 +#: application/views/search/filter.php:79 +msgid "Export to ADIF" +msgstr "" + +#: application/views/interface_assets/footer.php:502 +msgid "Warning! Are you sure you want delete this stored query?" +msgstr "" + +#: application/views/interface_assets/footer.php:516 +msgid "The stored query has been deleted!" +msgstr "" + +#: application/views/interface_assets/footer.php:525 +msgid "The stored query could not be deleted. Please try again!" +msgstr "" + +#: application/views/interface_assets/footer.php:551 +msgid "The query description has been updated!" +msgstr "" + +#: application/views/interface_assets/footer.php:555 +msgid "Something went wrong with the save. Please try again!" +msgstr "" + +#: application/views/interface_assets/footer.php:678 +msgid "" +"Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " +"Check which DXCC for this particular location is the correct one. If you are " +"sure, ignore this warning." +msgstr "" + +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:533 +msgid "Callsign: " +msgstr "" + +#: application/views/interface_assets/footer.php:731 +msgid "Count: " +msgstr "" + +#: application/views/interface_assets/footer.php:732 +msgid "Grids: " +msgstr "" + +#: application/views/interface_assets/footer.php:1167 +#, php-format +msgid "You're not logged in. Please %slogin%s" +msgstr "" + +#: application/views/interface_assets/footer.php:1375 +#: application/views/interface_assets/footer.php:1379 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1523 +#: application/views/interface_assets/footer.php:1526 +msgid "grid square" +msgstr "" + +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1526 +msgid "Total count" +msgstr "" + +#: application/views/interface_assets/footer.php:2114 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2134 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2174 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2176 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2349 +#: application/views/interface_assets/footer.php:2388 +#: application/views/view_log/qso.php:607 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2368 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2406 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2417 +#: application/views/interface_assets/footer.php:2442 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2453 +msgid "Something went wrong. Please try again!" +msgstr "" + +#: application/views/interface_assets/header.php:86 +msgid "Developer Mode" +msgstr "" + +#: application/views/interface_assets/header.php:89 +msgid "Maintenance Mode" +msgstr "" + +#: application/views/interface_assets/header.php:99 +msgid "Overview" +msgstr "" + +#: application/views/interface_assets/header.php:101 +msgid "Advanced" +msgstr "" + +#: application/views/interface_assets/header.php:104 +msgid "View QSL Cards" +msgstr "" + +#: application/views/interface_assets/header.php:107 +msgid "View eQSL Cards" +msgstr "" + +#: application/views/interface_assets/header.php:115 +msgid "Live QSO" +msgstr "" + +#: application/views/interface_assets/header.php:117 +msgid "Post QSO" +msgstr "" + +#: application/views/interface_assets/header.php:119 +msgid "Simple Fast Log Entry" +msgstr "" + +#: application/views/interface_assets/header.php:121 +msgid "Live Contest Logging" +msgstr "" + +#: application/views/interface_assets/header.php:123 +msgid "Post Contest Logging" +msgstr "" + +#: application/views/interface_assets/header.php:132 +msgid "Analytics" +msgstr "" + +#: application/views/interface_assets/header.php:140 +msgid "Activated Gridsquares" +msgstr "" + +#: application/views/interface_assets/header.php:162 +msgid "International" +msgstr "" + +#: application/views/interface_assets/header.php:168 +msgid "ITU" +msgstr "" + +#: application/views/interface_assets/header.php:190 +msgid "Canada" +msgstr "" + +#: application/views/interface_assets/header.php:196 +msgid "Germany" +msgstr "" + +#: application/views/interface_assets/header.php:200 +msgid "DL Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:204 +msgid "Great Britain" +msgstr "" + +#: application/views/interface_assets/header.php:206 +msgid "WAB" +msgstr "" + +#: application/views/interface_assets/header.php:210 +msgid "Japan" +msgstr "" + +#: application/views/interface_assets/header.php:216 +msgid "JA Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:220 +msgid "Luxemburg" +msgstr "" + +#: application/views/interface_assets/header.php:222 +msgid "LX Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:226 +msgid "Switzerland" +msgstr "" + +#: application/views/interface_assets/header.php:232 +msgid "USA" +msgstr "" + +#: application/views/interface_assets/header.php:238 +msgid "US Gridmaster" +msgstr "" + +#: application/views/interface_assets/header.php:255 +msgid "Bandmap" +msgstr "" + +#: application/views/interface_assets/header.php:257 +msgid "SAT Timers" +msgstr "" + +#: application/views/interface_assets/header.php:260 +msgid "Satellite Flightpath" +msgstr "" + +#: application/views/interface_assets/header.php:262 +msgid "Satellite Pass" +msgstr "" + +#: application/views/interface_assets/header.php:269 +#: application/views/stationsetup/stationsetup.php:113 +msgid "Admin" +msgstr "" + +#: application/views/interface_assets/header.php:274 +msgid "Global Options" +msgstr "" + +#: application/views/interface_assets/header.php:280 +#: application/views/notes/add.php:38 application/views/notes/edit.php:39 +#: application/views/satellite/index.php:11 +#: application/views/satellite/pass.php:495 +#: application/views/statistics/custom.php:20 +#: application/views/statistics/custom_result.php:21 +#: application/views/statistics/index.php:39 +#: application/views/statistics/index.php:93 +msgid "Satellites" +msgstr "" + +#: application/views/interface_assets/header.php:286 +msgid "Update Country Files" +msgstr "" + +#: application/views/interface_assets/header.php:290 +msgid "Debug Information" +msgstr "" + +#: application/views/interface_assets/header.php:337 +msgid "Add/Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:339 +msgid "Log" +msgstr "" + +#: application/views/interface_assets/header.php:346 +#: application/views/logbookadvanced/index.php:474 +#: application/views/oqrs/index.php:27 application/views/user/edit.php:441 +#: application/views/visitor/layout/header.php:95 +msgid "Search Callsign" +msgstr "" + +#: application/views/interface_assets/header.php:375 +#: application/views/user/edit.php:49 +msgid "Account" +msgstr "" + +#: application/views/interface_assets/header.php:390 +msgid "Other Export Options" +msgstr "" + +#: application/views/interface_assets/header.php:398 +msgid "Cabrillo Export" +msgstr "" + +#: application/views/interface_assets/header.php:400 +msgid "EDI Export" +msgstr "" + +#: application/views/interface_assets/header.php:424 +msgid "QSL Queue" +msgstr "" + +#: application/views/interface_assets/header.php:425 +msgid "Labels" +msgstr "" + +#: application/views/interface_assets/header.php:427 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:430 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:431 +msgid "HRDLog Logbook" +msgstr "" + +#: application/views/interface_assets/header.php:441 +msgid "Help" +msgstr "" + +#: application/views/interface_assets/header.php:442 +msgid "Forum" +msgstr "" + +#: application/views/interface_assets/header.php:444 +msgid "Logout" +msgstr "" + +#: application/views/interface_assets/header.php:452 +msgid "Select a Location" +msgstr "" + +#: application/views/interface_assets/header.php:531 +msgid "Extras" +msgstr "" + +#: application/views/kml/index.php:7 +msgid "Export your logbook to a KML file for use in Google Earth." +msgstr "" + +#: application/views/labels/create.php:24 +msgid "" +"Label name used for display purposes, so pick something meaningful, perhaps " +"the label style." +msgstr "" + +#: 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 "" + +#: application/views/labels/create.php:42 +#: application/views/labels/createpaper.php:44 +#: application/views/labels/edit.php:44 +#: application/views/labels/editpaper.php:44 +msgid "Millimeters" +msgstr "" + +#: application/views/labels/create.php:43 +#: application/views/labels/createpaper.php:45 +#: application/views/labels/edit.php:45 +#: application/views/labels/editpaper.php:45 +msgid "Inches" +msgstr "" + +#: application/views/labels/create.php:49 application/views/labels/edit.php:51 +msgid "Margin Top" +msgstr "" + +#: application/views/labels/create.php:52 application/views/labels/edit.php:54 +msgid "Top margin of labels" +msgstr "" + +#: application/views/labels/create.php:55 application/views/labels/edit.php:57 +msgid "Margin Left" +msgstr "" + +#: application/views/labels/create.php:58 application/views/labels/edit.php:60 +msgid "Left margin of labels." +msgstr "" + +#: application/views/labels/create.php:63 application/views/labels/edit.php:65 +msgid "Labels horizontally" +msgstr "" + +#: application/views/labels/create.php:66 application/views/labels/edit.php:68 +msgid "Number of labels horizontally across the page." +msgstr "" + +#: application/views/labels/create.php:69 application/views/labels/edit.php:71 +msgid "Labels vertically" +msgstr "" + +#: application/views/labels/create.php:72 application/views/labels/edit.php:74 +msgid "Number of labels vertically across the page." +msgstr "" + +#: application/views/labels/create.php:77 application/views/labels/edit.php:79 +msgid "Horizontal space" +msgstr "" + +#: application/views/labels/create.php:80 application/views/labels/edit.php:82 +msgid "Horizontal space between 2 labels." +msgstr "" + +#: application/views/labels/create.php:83 application/views/labels/edit.php:85 +msgid "Vertical space" +msgstr "" + +#: application/views/labels/create.php:86 application/views/labels/edit.php:88 +msgid "Vertical space between 2 labels." +msgstr "" + +#: application/views/labels/create.php:91 application/views/labels/edit.php:93 +msgid "Width of label" +msgstr "" + +#: application/views/labels/create.php:94 application/views/labels/edit.php:96 +msgid "Total width of one label." +msgstr "" + +#: application/views/labels/create.php:97 application/views/labels/edit.php:99 +msgid "Height of label" +msgstr "" + +#: application/views/labels/create.php:100 +#: application/views/labels/edit.php:102 +msgid "Total height of one label" +msgstr "" + +#: application/views/labels/create.php:105 +#: application/views/labels/edit.php:107 application/views/labels/index.php:80 +msgid "Font Size" +msgstr "" + +#: 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 "" + +#: application/views/labels/create.php:111 +#: application/views/labels/edit.php:113 +msgid "QSOs on label" +msgstr "" + +#: application/views/labels/create.php:117 +#: application/views/labels/edit.php:118 +msgid "Save Label Type" +msgstr "" + +#: application/views/labels/createpaper.php:36 +#: application/views/labels/editpaper.php:36 +msgid "Paper Type Name" +msgstr "" + +#: application/views/labels/createpaper.php:39 +#: application/views/labels/editpaper.php:39 +msgid "Paper name used for display purposes, so pick something meaningful." +msgstr "" + +#: application/views/labels/createpaper.php:51 +#: application/views/labels/editpaper.php:51 +msgid "Width of paper" +msgstr "" + +#: application/views/labels/createpaper.php:54 +#: application/views/labels/editpaper.php:54 +#: application/views/labels/editpaper.php:60 +msgid "Total width of paper." +msgstr "" + +#: application/views/labels/createpaper.php:57 +#: application/views/labels/editpaper.php:57 +msgid "Height of paper" +msgstr "" + +#: application/views/labels/createpaper.php:60 +msgid "Total height of paper" +msgstr "" + +#: 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 "" + +#: application/views/labels/createpaper.php:68 +#: application/views/labels/editpaper.php:68 +#: application/views/labels/index.php:60 +msgctxt "Orientation" +msgid "Landscape" +msgstr "" + +#: application/views/labels/createpaper.php:69 +#: application/views/labels/editpaper.php:69 +#: application/views/labels/index.php:60 +msgctxt "Orientation" +msgid "Portrait" +msgstr "" + +#: application/views/labels/createpaper.php:75 +#: application/views/labels/editpaper.php:75 +msgid "Save Paper Type" +msgstr "" + +#: application/views/labels/edit.php:24 +msgid "" +"Label name used for display purposes so pick something meaningful perhaps " +"the label style." +msgstr "" + +#: application/views/labels/index.php:2 +#: application/views/logbookadvanced/startatform.php:27 +msgid "Mark QSL as printed" +msgstr "" + +#: application/views/labels/index.php:3 application/views/labels/index.php:128 +msgid "Print" +msgstr "" + +#: application/views/labels/index.php:33 +msgid "Create New Label Type" +msgstr "" + +#: application/views/labels/index.php:34 +msgid "Create New Paper Type" +msgstr "" + +#: application/views/labels/index.php:37 +msgid "Paper types" +msgstr "" + +#: application/views/labels/index.php:43 application/views/labels/index.php:78 +msgid "Width" +msgstr "" + +#: application/views/labels/index.php:44 application/views/labels/index.php:79 +msgid "Height" +msgstr "" + +#: application/views/labels/index.php:45 +msgid "Used by labels" +msgstr "" + +#: application/views/labels/index.php:46 +msgid "Orientation" +msgstr "" + +#: application/views/labels/index.php:71 +msgid "Label types" +msgstr "" + +#: application/views/labels/index.php:81 +#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:96 +#: application/views/widgets/qsos.php:3 +msgid "QSOs" +msgstr "" + +#: application/views/labels/index.php:82 +msgid "Use For Print" +msgstr "" + +#: application/views/labels/index.php:92 +msgid "No paper assigned" +msgstr "" + +#: application/views/labels/index.php:117 +msgid "QSL Card Labels Pending" +msgstr "" + +#: application/views/labels/index.php:126 +msgid "QSOs Waiting" +msgstr "" + +#: application/views/labels/index.php:127 +msgid "View QSOs" +msgstr "" + +#: application/views/labels/startatform.php:4 +#: application/views/logbookadvanced/startatform.php:3 +msgid "Include Grid?" +msgstr "" + +#: application/views/labels/startatform.php:10 +#: application/views/logbookadvanced/startatform.php:9 +msgid "" +"Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" +msgstr "" + +#: application/views/labels/startatform.php:16 +msgid "Include Via (if filled)?" +msgstr "" + +#: application/views/labels/startatform.php:22 +#: application/views/logbookadvanced/startatform.php:21 +msgid "Start printing at?" +msgstr "" + +#: application/views/logbookadvanced/edit.php:15 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/useroptions.php:58 +msgid "QSL via" +msgstr "" + +#: application/views/logbookadvanced/edit.php:23 +msgid "LoTW Sent" +msgstr "" + +#: application/views/logbookadvanced/edit.php:24 +msgid "LoTW Received" +msgstr "" + +#: application/views/logbookadvanced/edit.php:75 +msgid "SAT Mode" +msgstr "" + +#: application/views/logbookadvanced/edit.php:89 +msgid "Band RX" +msgstr "" + +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:174 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:144 +msgid "From" +msgstr "" + +#: application/views/logbookadvanced/index.php:148 +msgid "To" +msgstr "" + +#: application/views/logbookadvanced/index.php:152 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/useroptions.php:30 +#: application/views/oqrs/showrequests.php:42 +msgid "Dx" +msgstr "" + +#: application/views/logbookadvanced/index.php:159 +msgctxt "Logbook Advanced DXCC Select" +msgid "- NONE - (e.g. /MM, /AM)" +msgstr "" + +#: application/views/logbookadvanced/index.php:224 +msgctxt "Propagation Mode" +msgid "None/Empty" +msgstr "" + +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:540 +msgid "Invalid" +msgstr "" + +#: application/views/logbookadvanced/index.php:324 +msgid "QSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:439 +#: application/views/lookup/lotwuser.php:12 +#: application/views/qso/edit_ajax.php:421 +#: application/views/qso/edit_ajax.php:454 +#: application/views/qso/edit_ajax.php:482 +#: application/views/qso/edit_ajax.php:495 +#: application/views/qso/edit_ajax.php:522 +#: application/views/qso/edit_ajax.php:534 application/views/qso/index.php:576 +#: application/views/search/result.php:58 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 +#: application/views/station_profile/create.php:293 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 +#: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 +#: application/views/user/edit.php:347 application/views/user/edit.php:358 +#: application/views/user/edit.php:369 application/views/user/edit.php:379 +#: application/views/user/edit.php:389 application/views/user/edit.php:399 +#: application/views/user/edit.php:419 application/views/user/edit.php:430 +#: application/views/user/edit.php:540 application/views/user/edit.php:802 +#: application/views/user/edit.php:834 application/views/user/edit.php:859 +msgid "Yes" +msgstr "" + +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:440 +#: application/views/lookup/lotwuser.php:14 +#: application/views/qso/edit_ajax.php:420 +#: application/views/qso/edit_ajax.php:453 +#: application/views/qso/edit_ajax.php:481 +#: application/views/qso/edit_ajax.php:494 +#: application/views/qso/edit_ajax.php:521 +#: application/views/qso/edit_ajax.php:533 application/views/qso/index.php:575 +#: application/views/search/result.php:60 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 +#: application/views/station_profile/create.php:292 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 +#: application/views/user/edit.php:348 application/views/user/edit.php:359 +#: application/views/user/edit.php:370 application/views/user/edit.php:380 +#: application/views/user/edit.php:390 application/views/user/edit.php:400 +#: application/views/user/edit.php:420 application/views/user/edit.php:431 +#: application/views/user/edit.php:522 application/views/user/edit.php:526 +#: application/views/user/edit.php:541 application/views/user/edit.php:803 +#: application/views/user/edit.php:833 application/views/user/edit.php:858 +msgid "No" +msgstr "" + +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:416 +#: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 +#: application/views/qslprint/qsolist.php:61 +#: application/views/qslprint/qsolist.php:103 +#: application/views/qso/edit_ajax.php:423 +#: application/views/qso/edit_ajax.php:484 +#: application/views/qso/edit_ajax.php:524 application/views/qso/index.php:578 +#: application/views/search/search_result_ajax.php:183 +#: application/views/search/search_result_ajax.php:225 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +#: src/QSLManager/QSO.php:273 src/QSLManager/QSO.php:318 +msgid "Queued" +msgstr "" + +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:373 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:417 +#: application/views/logbookadvanced/index.php:427 +#: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 +#: application/views/oqrs/qsolist.php:166 +#: application/views/oqrs/qsolist.php:181 +#: application/views/qslprint/qsolist.php:67 +#: application/views/qslprint/qsolist.php:109 +#: application/views/qslprint/qsolist.php:174 +#: application/views/qslprint/qsolist.php:189 +#: application/views/qso/edit_ajax.php:424 +#: application/views/qso/edit_ajax.php:456 +#: application/views/qso/edit_ajax.php:485 +#: application/views/qso/edit_ajax.php:497 +#: application/views/qso/edit_ajax.php:525 +#: application/views/qso/edit_ajax.php:536 application/views/qso/index.php:579 +#: application/views/search/search_result_ajax.php:189 +#: application/views/search/search_result_ajax.php:231 +#: application/views/search/search_result_ajax.php:305 +#: application/views/search/search_result_ajax.php:320 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +#: application/views/view_log/partial/log_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:270 +#: src/QSLManager/QSO.php:279 src/QSLManager/QSO.php:324 +#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:400 +msgid "Invalid (Ignore)" +msgstr "" + +#: application/views/logbookadvanced/index.php:335 +msgid "QSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:428 +msgid "Verified" +msgstr "" + +#: application/views/logbookadvanced/index.php:346 +msgid "QSL send. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:359 +#: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 +#: application/views/oqrs/request.php:45 +#: application/views/oqrs/request_grouped.php:49 +#: application/views/oqrs/showrequests.php:12 +#: application/views/qslprint/qslprint.php:5 +#: application/views/qslprint/qsolist.php:77 +#: application/views/qslprint/qsolist.php:119 +#: application/views/qslprint/qsolist.php:210 +#: application/views/qso/edit_ajax.php:435 +#: application/views/qso/edit_ajax.php:468 application/views/qso/index.php:590 +#: application/views/search/search_result_ajax.php:199 +#: application/views/search/search_result_ajax.php:241 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +#: src/QSLManager/QSO.php:296 src/QSLManager/QSO.php:339 +msgid "Bureau" +msgstr "" + +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:360 +#: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 +#: application/views/oqrs/showrequests.php:13 +#: application/views/qslprint/qslprint.php:6 +#: application/views/qslprint/qsolist.php:80 +#: application/views/qslprint/qsolist.php:122 +#: application/views/qslprint/qsolist.php:211 +#: application/views/qso/edit_ajax.php:434 +#: application/views/qso/edit_ajax.php:467 application/views/qso/index.php:589 +#: application/views/search/search_result_ajax.php:202 +#: application/views/search/search_result_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +#: src/QSLManager/QSO.php:299 src/QSLManager/QSO.php:342 +msgid "Direct" +msgstr "" + +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 +#: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 +#: application/views/oqrs/showrequests.php:14 +#: application/views/qslprint/qslprint.php:7 +#: application/views/qslprint/qsolist.php:86 +#: application/views/qslprint/qsolist.php:128 +#: application/views/qslprint/qsolist.php:212 +#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:591 +#: application/views/search/search_result_ajax.php:208 +#: application/views/search/search_result_ajax.php:250 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +#: src/QSLManager/QSO.php:305 src/QSLManager/QSO.php:348 +msgid "Electronic" +msgstr "" + +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:362 +#: application/views/oqrs/qsolist.php:117 +#: application/views/qslprint/qsolist.php:125 +#: application/views/qso/edit_ajax.php:437 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:592 +#: application/views/search/search_result_ajax.php:247 +#: application/views/view_log/partial/log_ajax.php:208 +msgid "Manager" +msgstr "" + +#: application/views/logbookadvanced/index.php:356 +msgid "QSL recv. method" +msgstr "" + +#: application/views/logbookadvanced/index.php:366 +msgid "LoTW sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:377 +msgid "LoTW received" +msgstr "" + +#: application/views/logbookadvanced/index.php:388 +msgid "Clublog sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:399 +msgid "Clublog received" +msgstr "" + +#: application/views/logbookadvanced/index.php:410 +msgid "eQSL sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:421 +msgid "eQSL received" +msgstr "" + +#: application/views/logbookadvanced/index.php:436 +msgid "QSL Images" +msgstr "" + +#: application/views/logbookadvanced/index.php:448 +msgid "Warning! Are you sure you want to delete the marked QSO(s)?" +msgstr "" + +#: application/views/logbookadvanced/index.php:451 +msgid "With selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:452 +#: application/views/qso/edit_ajax.php:622 +msgid "Update from Callbook" +msgstr "" + +#: application/views/logbookadvanced/index.php:453 +msgid "Queue Bureau" +msgstr "" + +#: application/views/logbookadvanced/index.php:454 +msgid "Queue Direct" +msgstr "" + +#: application/views/logbookadvanced/index.php:455 +msgid "Queue Electronic" +msgstr "" + +#: application/views/logbookadvanced/index.php:456 +msgid "Sent (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:457 +msgid "Sent (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:458 +msgid "Sent (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:459 +msgid "Not Sent" +msgstr "" + +#: application/views/logbookadvanced/index.php:460 +msgid "QSL Not Required" +msgstr "" + +#: application/views/logbookadvanced/index.php:461 +msgid "Not Received" +msgstr "" + +#: application/views/logbookadvanced/index.php:462 +msgid "Received (Bureau)" +msgstr "" + +#: application/views/logbookadvanced/index.php:463 +msgid "Received (Direct)" +msgstr "" + +#: application/views/logbookadvanced/index.php:464 +msgid "Received (Electronic)" +msgstr "" + +#: application/views/logbookadvanced/index.php:465 +msgid "Create ADIF" +msgstr "" + +#: application/views/logbookadvanced/index.php:466 +msgid "Print Label" +msgstr "" + +#: application/views/logbookadvanced/index.php:467 +msgid "QSL Slideshow" +msgstr "" + +#: application/views/logbookadvanced/index.php:472 +msgid "Quicksearch with selected: " +msgstr "" + +#: application/views/logbookadvanced/index.php:477 +msgid "Search DXCC" +msgstr "" + +#: application/views/logbookadvanced/index.php:480 +msgid "Search State" +msgstr "" + +#: application/views/logbookadvanced/index.php:483 +msgid "Search Gridsquare" +msgstr "" + +#: application/views/logbookadvanced/index.php:486 +msgid "Search CQ Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:489 +msgid "Search ITU Zone" +msgstr "" + +#: application/views/logbookadvanced/index.php:492 +msgid "Search Mode" +msgstr "" + +#: application/views/logbookadvanced/index.php:495 +msgid "Search Band" +msgstr "" + +#: application/views/logbookadvanced/index.php:498 +msgid "Search IOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:501 +msgid "Search SOTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:504 +msgid "Search POTA" +msgstr "" + +#: application/views/logbookadvanced/index.php:507 +msgid "Search WWFF" +msgstr "" + +#: application/views/logbookadvanced/index.php:510 +msgid "Search Operator" +msgstr "" + +#: application/views/logbookadvanced/index.php:516 +msgid "Quickfilters" +msgstr "" + +#: application/views/logbookadvanced/index.php:517 +msgid "QSL Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:518 +#: application/views/mode/index.php:68 +msgid "Filters" +msgstr "" + +#: application/views/logbookadvanced/index.php:520 +#: application/views/oqrs/showrequests.php:56 +msgid "# Results" +msgstr "" + +#: application/views/logbookadvanced/index.php:527 +#: application/views/qso/index.php:272 +#: application/views/station_profile/edit.php:92 +msgid "Location" +msgstr "" + +#: application/views/logbookadvanced/index.php:539 +msgid "Dupes" +msgstr "" + +#: application/views/logbookadvanced/index.php:547 +msgid "Globe map" +msgstr "" + +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/useroptions.php:26 +#: application/views/oqrs/showrequests.php:31 +msgid "De" +msgstr "" + +#: application/views/logbookadvanced/index.php:605 +#: application/views/logbookadvanced/useroptions.php:78 +msgid "QSL Msg" +msgstr "" + +#: application/views/logbookadvanced/index.php:650 +#: application/views/logbookadvanced/useroptions.php:50 +msgid "My Refs" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:59 +#: application/views/qslcard/qslcarousel.php:25 +msgid "QSL picture #" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:67 +#: application/views/qslcard/qslcarousel.php:32 +msgid "Previous" +msgstr "" + +#: application/views/logbookadvanced/qslcarousel.php:71 +#: application/views/qslcard/qslcarousel.php:36 +msgid "Next" +msgstr "" + +#: application/views/logbookadvanced/startatform.php:15 +msgid "Include Via" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:16 +msgid "Column" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:152 +msgctxt "Map Options" +msgid "Layer" +msgstr "" + +#: application/views/logbookadvanced/useroptions.php:153 +msgid "Default on" +msgstr "" + +#: application/views/lookup/index.php:8 +msgid "US State" +msgstr "" + +#: application/views/lookup/index.php:10 +msgid "LoTW user" +msgstr "" + +#: application/views/lookup/index.php:46 +msgid "Choose a State" +msgstr "" + +#: application/views/lookup/lotwuser.php:2 +#: application/views/lookup/lotwuser.php:12 +#: application/views/search/result.php:46 +#: application/views/search/result.php:58 +msgid "LoTW User" +msgstr "" + +#: application/views/lookup/lotwuser.php:12 +#: application/views/search/result.php:58 +#, php-format +msgid "%d day ago" +msgid_plural "%d days ago" +msgstr[0] "" +msgstr[1] "" + +#: application/views/lookup/lotwuser.php:12 +#: application/views/search/result.php:58 +msgid "last upload" +msgstr "" + +#: application/views/lookup/lotwuser.php:14 +msgid "No LoTW User" +msgstr "" + +#: 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 "" + +#: application/views/lotw/import.php:12 +msgid "Import Options" +msgstr "" + +#: application/views/lotw/import.php:22 +msgid "Upload a File" +msgstr "" + +#: application/views/lotw/import.php:24 +msgid "Download Report" +msgstr "" + +#: application/views/lotw/import.php:24 +#, php-format +msgid "" +"Upload the Exported ADIF file from LoTW from the %s Area, to mark QSOs as " +"confirmed on LoTW." +msgstr "" + +#: application/views/lotw/import.php:27 +msgid "Choose file" +msgstr "" + +#: application/views/lotw/import.php:36 +msgid "Pull LoTW data for me" +msgstr "" + +#: application/views/lotw/import.php:47 +msgid "Select callsign to pull LoTW confirmations for." +msgstr "" + +#: application/views/lotw/import.php:61 +msgid "" +"Wavelog will use the LoTW username and password stored in your user profile " +"to download a report from LoTW for you. The report Wavelog downloads will " +"have all confirmations since chosen date, or since your last LoTW " +"confirmation (fetched from your log), up until now." +msgstr "" + +#: application/views/lotw/import.php:64 +msgid "Import LoTW Matches" +msgstr "" + +#: application/views/lotw_views/index.php:4 +msgid "Upload folder is not writable. Please contact your admin." +msgstr "" + +#: application/views/lotw_views/index.php:10 +msgid "LoTW Import" +msgstr "" + +#: application/views/lotw_views/index.php:17 +msgid "Available Certificates" +msgstr "" + +#: application/views/lotw_views/index.php:17 +msgid "Upload Certificate" +msgstr "" + +#: application/views/lotw_views/index.php:37 +msgid "QSO Start Date" +msgstr "" + +#: application/views/lotw_views/index.php:38 +msgid "QSO End Date" +msgstr "" + +#: application/views/lotw_views/index.php:39 +msgid "Date Created" +msgstr "" + +#: application/views/lotw_views/index.php:40 +msgid "Date Expires" +msgstr "" + +#: application/views/lotw_views/index.php:42 +#: application/views/view_log/qso.php:407 +msgid "Last Upload" +msgstr "" + +#: application/views/lotw_views/index.php:87 +msgid "Expired" +msgstr "" + +#: application/views/lotw_views/index.php:89 +msgid "Expiring" +msgstr "" + +#: application/views/lotw_views/index.php:91 +msgid "Valid" +msgstr "" + +#: application/views/lotw_views/index.php:101 +#, php-format +msgid "Last success: %s" +msgstr "" + +#: application/views/lotw_views/index.php:104 +#, php-format +msgid "Last fail: %s" +msgstr "" + +#: application/views/lotw_views/index.php:110 +msgid "Not Synced" +msgstr "" + +#: application/views/lotw_views/index.php:125 +msgid "You need to upload some LoTW p12 certificates to use this area." +msgstr "" + +#: application/views/lotw_views/index.php:140 +msgid "Information" +msgstr "" + +#: application/views/lotw_views/index.php:145 +msgid "Manual Sync" +msgstr "" + +#: application/views/lotw_views/upload_cert.php:8 +#: application/views/lotw_views/upload_cert.php:31 +msgid "Upload Logbook of the World .p12 Certificate" +msgstr "" + +#: application/views/lotw_views/upload_cert.php:19 +msgid "Export .p12 File Instructions" +msgstr "" + +#: application/views/lotw_views/upload_cert.php:22 +msgid "Open TQSL and go to the Callsign Certificates Tab" +msgstr "" + +#: application/views/lotw_views/upload_cert.php:23 +msgid "Right click on desired Callsign" +msgstr "" + +#: application/views/lotw_views/upload_cert.php:24 +msgid "Click 'Save Callsign Certificate File' and do not add a password" +msgstr "" + +#: application/views/lotw_views/upload_cert.php:25 +msgid "Upload File below." +msgstr "" + +#: application/views/lotw_views/upload_cert.php:35 +msgid "Upload File" +msgstr "" + +#: application/views/mode/create.php:24 application/views/mode/edit.php:33 +msgctxt "Name of mode in ADIF-specification" +msgid "ADIF Mode" +msgstr "" + +#: application/views/mode/create.php:26 application/views/mode/edit.php:35 +msgid "Name of mode in ADIF-specification" +msgstr "" + +#: application/views/mode/create.php:30 application/views/mode/edit.php:39 +msgctxt "Name of sub-mode in ADIF-specification" +msgid "ADIF Sub-Mode" +msgstr "" + +#: application/views/mode/create.php:32 application/views/mode/edit.php:41 +msgid "Name of sub-mode in ADIF-specification" +msgstr "" + +#: application/views/mode/create.php:42 application/views/mode/edit.php:53 +msgid "Defines the QRG-segment in bandplan." +msgstr "" + +#: application/views/mode/create.php:49 application/views/mode/edit.php:61 +#: application/views/mode/index.php:43 +msgid "Not active" +msgstr "" + +#: application/views/mode/create.php:51 application/views/mode/edit.php:64 +msgid "Set to active if to be listed in Modes-list" +msgstr "" + +#: application/views/mode/create.php:54 +msgid "Create mode" +msgstr "" + +#: application/views/mode/edit.php:67 +msgid "Update mode" +msgstr "" + +#: application/views/mode/index.php:19 +msgid "" +"Using the modes list you can control which modes are shown when creating a " +"new QSO." +msgstr "" + +#: application/views/mode/index.php:22 +msgid "" +"Active modes will be shown in the QSO 'Mode' drop-down, while inactive modes " +"will be hidden and cannot be selected." +msgstr "" + +#: application/views/mode/index.php:29 +msgid "Sub-Mode" +msgstr "" + +#: application/views/mode/index.php:76 +msgid "Create a Mode" +msgstr "" + +#: application/views/notes/add.php:6 application/views/notes/add.php:12 +#: application/views/notes/edit.php:13 application/views/notes/main.php:11 +#: application/views/notes/view.php:12 +msgid "Create Note" +msgstr "" + +#: application/views/notes/add.php:29 application/views/notes/edit.php:30 +msgid "Title" +msgstr "" + +#: application/views/notes/add.php:34 application/views/notes/edit.php:35 +msgid "Category" +msgstr "" + +#: application/views/notes/add.php:36 application/views/notes/edit.php:37 +#: application/views/qso/index.php:28 +#: application/views/statistics/custom.php:17 +#: application/views/statistics/custom_result.php:18 +#: application/views/statistics/index.php:35 +#: application/views/user/edit.php:154 +msgid "General" +msgstr "" + +#: application/views/notes/add.php:37 application/views/notes/edit.php:38 +msgid "Antennas" +msgstr "" + +#: application/views/notes/add.php:43 application/views/notes/edit.php:44 +msgid "Note Contents" +msgstr "" + +#: application/views/notes/add.php:48 application/views/notes/edit.php:50 +msgid "Save Note" +msgstr "" + +#: application/views/notes/main.php:22 +msgid "Your Notes" +msgstr "" + +#: application/views/notes/main.php:32 +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 " +"than paper as you can't lose them!" +msgstr "" + +#: application/views/notes/view.php:21 +msgid "Delete Note" +msgstr "" + +#: application/views/operator/index.php:9 +msgid "" +"Please provide your personal call sign. This makes sure that QSOs are logged " +"and exported with correct operator information." +msgstr "" + +#: application/views/operator/index.php:13 +msgid "Your personal Callsign:" +msgstr "" + +#: application/views/operator/index.php:16 +msgid "You have to provide your personal callsign." +msgstr "" + +#: application/views/options/appearance.php:39 +#: application/views/user/edit.php:157 +msgid "Theme" +msgstr "" + +#: application/views/options/appearance.php:51 +msgid "Global Theme Choice, this is used when users arent logged in." +msgstr "" + +#: application/views/options/appearance.php:61 +msgid "Dashboard Notification Banner" +msgstr "" + +#: application/views/options/appearance.php:66 +msgid "This allows to disable the global notification banner on the dashboard." +msgstr "" + +#: application/views/options/appearance.php:70 +msgid "Dashboard Map" +msgstr "" + +#: application/views/options/appearance.php:74 +msgid "Map at right" +msgstr "" + +#: application/views/options/appearance.php:76 +msgid "" +"This allows the map on the dashboard to be disabled or placed on the right." +msgstr "" + +#: application/views/options/appearance.php:80 +msgid "Logbook Map" +msgstr "" + +#: application/views/options/appearance.php:85 +msgid "This allows to disable the map in the logbook." +msgstr "" + +#: application/views/options/appearance.php:89 +msgid "Public Maps" +msgstr "" + +#: application/views/options/appearance.php:94 +msgid "" +"This allows to disable all maps in the public view. This affects the main " +"map and the gridsquares map." +msgstr "" + +#: application/views/options/appearance.php:98 +msgid "Public Github Button" +msgstr "" + +#: application/views/options/appearance.php:103 +msgid "This enables the button to Wavelog's Github page in the public view" +msgstr "" + +#: application/views/options/appearance.php:107 +msgid "Public Login Button" +msgstr "" + +#: application/views/options/appearance.php:112 +msgid "This enables the button to login to Wavelog in the public view" +msgstr "" + +#: application/views/options/dxcluster.php:38 +msgid "Provider of DXClusterCache" +msgstr "" + +#: application/views/options/dxcluster.php:39 +msgid "DXClusterAPI" +msgstr "" + +#: application/views/options/dxcluster.php:39 +#, php-format +msgid "" +"The Provider of the DXCluster-Cache. You can set up your own Cache with %s " +"or use a public one" +msgstr "" + +#: application/views/options/dxcluster.php:41 +#, php-format +msgid "URL of the DXCluster-Cache. e.g. %s" +msgstr "" + +#: application/views/options/dxcluster.php:44 +msgid "Maximum Age of spots taken care of" +msgstr "" + +#: application/views/options/dxcluster.php:46 +msgid "2 Hours" +msgstr "" + +#: application/views/options/dxcluster.php:47 +msgid "60 Minutes" +msgstr "" + +#: application/views/options/dxcluster.php:48 +msgid "30 Minutes" +msgstr "" + +#: application/views/options/dxcluster.php:50 +msgid "The Age in Minutes of spots, that will be taken care at bandplan/lookup" +msgstr "" + +#: application/views/options/dxcluster.php:53 +msgid "Show spots which are spotted from following continent" +msgstr "" + +#: application/views/options/dxcluster.php:63 +msgid "Only spots by spotters from this continent are shown" +msgstr "" + +#: application/views/options/email.php:45 +msgid "Outgoing Protocol" +msgstr "" + +#: application/views/options/email.php:50 +msgid "The protocol that will be used to send out emails." +msgstr "" + +#: application/views/options/email.php:54 +msgid "SMTP Encryption" +msgstr "" + +#: application/views/options/email.php:56 +msgid "No Encryption" +msgstr "" + +#: application/views/options/email.php:60 +msgid "Choose whether emails should be sent with TLS or SSL." +msgstr "" + +#: application/views/options/email.php:64 +msgid "Email Sender Name" +msgstr "" + +#: application/views/options/email.php:67 +msgid "The email sender name, e.g. 'Wavelog'" +msgstr "" + +#: application/views/options/email.php:72 application/views/user/edit.php:58 +#: application/views/user/forgot_password.php:47 +msgid "Email Address" +msgstr "" + +#: application/views/options/email.php:75 +msgid "" +"The email address from which the emails are sent, e.g. 'wavelog@example.com'" +msgstr "" + +#: application/views/options/email.php:80 +msgid "SMTP Host" +msgstr "" + +#: application/views/options/email.php:83 +msgid "" +"The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' " +"or 'tls://')" +msgstr "" + +#: application/views/options/email.php:88 +msgid "SMTP Port" +msgstr "" + +#: application/views/options/email.php:91 +msgid "" +"The SMTP port of the mail server, e.g. if TLS is used -> '587', if SSL is " +"used -> '465'" +msgstr "" + +#: application/views/options/email.php:96 +msgid "SMTP Username" +msgstr "" + +#: application/views/options/email.php:99 +msgid "" +"The username to log in to the mail server, usually this is the email address " +"that is used." +msgstr "" + +#: application/views/options/email.php:104 +msgid "SMTP Password" +msgstr "" + +#: application/views/options/email.php:107 +msgid "The password to log in to the mail server." +msgstr "" + +#: application/views/options/email.php:116 +msgid "Send Test-Mail" +msgstr "" + +#: application/views/options/email.php:117 +msgid "The email will be sent to the address defined in your account settings." +msgstr "" + +#: application/views/options/index.php:13 +msgid "" +"Wavelog Options are global settings used for all users of the installation, " +"which are overridden if there's a setting on a user level." +msgstr "" + +#: application/views/options/oqrs.php:39 +msgid "Global text" +msgstr "" + +#: application/views/options/oqrs.php:41 +msgid "" +"This text is an optional text that can be displayed on top of the OQRS page." +msgstr "" + +#: application/views/options/oqrs.php:45 +msgid "Grouped search" +msgstr "" + +#: application/views/options/oqrs.php:47 application/views/options/oqrs.php:56 +msgid "Off" +msgstr "" + +#: application/views/options/oqrs.php:48 application/views/options/oqrs.php:57 +msgid "On" +msgstr "" + +#: application/views/options/oqrs.php:50 +msgid "" +"When this is on, all station locations with OQRS active, will be searched at " +"once." +msgstr "" + +#: application/views/options/oqrs.php:54 +msgid "Show station location name in grouped search results" +msgstr "" + +#: application/views/options/oqrs.php:59 +msgid "" +"If grouped search is ON, you can decide if the name of the station location " +"shall be shown in the results table." +msgstr "" + +#: application/views/options/radios.php:38 +msgid "Radio Timeout Warning" +msgstr "" + +#: application/views/options/radios.php:39 +msgid "" +"The Radio Timeout Warning is used on the QSO entry panel to alert you to " +"radio interface disconnects." +msgstr "" + +#: application/views/options/radios.php:41 +msgid "This number is in seconds." +msgstr "" + +#: application/views/options/sidebar.php:5 +msgid "Radios" +msgstr "" + +#: application/views/options/version_dialog.php:47 +msgid "Version Info Header" +msgstr "" + +#: application/views/options/version_dialog.php:49 +msgid "You can change the header of the version info dialog." +msgstr "" + +#: application/views/options/version_dialog.php:53 +msgid "Version Info Mode" +msgstr "" + +#: application/views/options/version_dialog.php:57 +msgid "Only Release Notes" +msgstr "" + +#: application/views/options/version_dialog.php:60 +msgid "Only Custom Text" +msgstr "" + +#: application/views/options/version_dialog.php:63 +msgid "Release Notes and Custom Text" +msgstr "" + +#: application/views/options/version_dialog.php:68 +msgid "" +"The Version Info is shown to every user. The user has the option to dismiss " +"the dialog after he read it. Select if you want to show only release notes " +"(fetched from github), only custom text or both." +msgstr "" + +#: application/views/options/version_dialog.php:72 +msgid "Version Info Custom Text" +msgstr "" + +#: application/views/options/version_dialog.php:74 +msgid "This is the custom text which is shown in the dialog." +msgstr "" + +#: application/views/options/version_dialog.php:84 +msgid "Show/Hide Version Info Dialog for all Users" +msgstr "" + +#: application/views/options/version_dialog.php:97 +msgid "Show for all Users" +msgstr "" + +#: application/views/options/version_dialog.php:99 +msgid "" +"This will show the version dialog automatically to all users on their next " +"page reload." +msgstr "" + +#: application/views/options/version_dialog.php:104 +msgid "Hide for all Users" +msgstr "" + +#: application/views/options/version_dialog.php:106 +msgid "" +"This will deactivate the automatic popup of the version dialog for all users." +msgstr "" + +#: application/views/oqrs/index.php:9 +msgid "Request a QSL card" +msgstr "" + +#: application/views/oqrs/index.php:26 +msgid "Enter your callsign" +msgstr "" + +#: application/views/oqrs/index.php:26 +msgid "This search will search in all station locations where OQRS is active." +msgstr "" + +#: application/views/oqrs/index.php:53 +msgid "Select station" +msgstr "" + +#: application/views/oqrs/notinlogform.php:2 +msgid "" +"If you can't find your QSO in the log, please fill out the form below. You " +"will be contacted after the log has been checked." +msgstr "" + +#: application/views/oqrs/notinlogform.php:9 +#: application/views/oqrs/request.php:16 +#: application/views/oqrs/request_grouped.php:9 +msgid "Time (UTC)" +msgstr "" + +#: application/views/oqrs/notinlogform.php:24 +msgid "Add line" +msgstr "" + +#: application/views/oqrs/notinlogform.php:30 +#: application/views/oqrs/request.php:56 +#: application/views/oqrs/request_grouped.php:60 +msgid "Any extra information we need to know about?" +msgstr "" + +#: application/views/oqrs/notinlogform.php:34 +#: application/views/oqrs/request.php:60 +#: application/views/oqrs/request_grouped.php:64 +#: application/views/oqrs/showrequests.php:87 +#: application/views/user/index.php:48 application/views/user/profile.php:24 +msgid "E-mail" +msgstr "" + +#: application/views/oqrs/notinlogform.php:36 +#: application/views/oqrs/request.php:62 +#: application/views/oqrs/request_grouped.php:66 +msgid "Your e-mail address where we can contact you" +msgstr "" + +#: application/views/oqrs/notinlogform.php:40 +msgid "Send not in log request" +msgstr "" + +#: application/views/oqrs/qsolist.php:11 +#: application/views/qslprint/qslprint.php:29 +#: application/views/qslprint/qsolist.php:13 +#: application/views/qso/edit_ajax.php:38 application/views/qso/index.php:24 +#: application/views/search/cqzones_result.php:16 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/search_result_ajax.php:127 +#: application/views/user/edit.php:478 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:88 +#: application/views/view_log/qso.php:506 +#: application/views/view_log/qso.php:510 +#: application/views/view_log/qso.php:514 +#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:531 +#: application/views/view_log/qso.php:538 +#: application/views/view_log/qso.php:545 +#: application/views/view_log/qso.php:552 +#: application/views/view_log/qso.php:559 +#: application/views/view_log/qso.php:566 +#: application/views/view_log/qso.php:573 +#: application/views/view_log/qso.php:580 +#: application/views/view_log/qso.php:585 +msgid "Station" +msgstr "" + +#: application/views/oqrs/qsolist.php:75 +#: application/views/qslprint/qslprint.php:28 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:83 +#: application/views/qso/index.php:598 +#: application/views/search/search_result_ajax.php:205 +#: application/views/view_log/partial/log_ajax.php:170 +#: src/QSLManager/QSO.php:302 +msgid "Via" +msgstr "" + +#: application/views/oqrs/qsolist.php:188 +#: application/views/qslprint/qsolist.php:196 +msgid "Add to print queue" +msgstr "" + +#: application/views/oqrs/qsolist.php:197 +msgid "No QSO's were found. It seems you were not active at this time." +msgstr "" + +#: application/views/oqrs/request.php:9 +#: application/views/oqrs/request_grouped.php:3 +msgid "" +"The following QSO(s) were found. Please fill out the date and time and " +"submit your request." +msgstr "" + +#: application/views/oqrs/request.php:40 +#: application/views/oqrs/request_grouped.php:44 +msgid "QSL Route" +msgstr "" + +#: application/views/oqrs/request.php:50 +#: application/views/oqrs/request_grouped.php:54 +msgid "Direct (write address in message below)" +msgstr "" + +#: application/views/oqrs/request.php:66 +#: application/views/oqrs/request_grouped.php:70 +msgid "Submit request" +msgstr "" + +#: application/views/oqrs/request_grouped.php:16 +msgid "Station Name" +msgstr "" + +#: application/views/oqrs/request_grouped.php:73 +#: application/views/oqrs/result.php:40 +msgid "No QSOs found in the log." +msgstr "" + +#: application/views/oqrs/result.php:5 +#, php-format +msgid "Log search result for %s" +msgstr "" + +#: application/views/oqrs/result.php:30 +#, php-format +msgid "has %d band slot" +msgid_plural "has %d band slots" +msgstr[0] "" +msgstr[1] "" + +#: application/views/oqrs/result.php:33 +#, php-format +msgid "and has %d QSO in the log" +msgid_plural "and has %d QSOs in the log" +msgstr[0] "" +msgstr[1] "" + +#: application/views/oqrs/result.php:37 +msgid "Request QSL" +msgstr "" + +#: application/views/oqrs/result.php:44 +msgid "Not in log?" +msgstr "" + +#: application/views/oqrs/showrequests.php:5 +#: application/views/oqrs/showrequests.php:50 +msgid "Open request" +msgstr "" + +#: application/views/oqrs/showrequests.php:6 +#: application/views/oqrs/showrequests.php:51 +msgid "Not in log request" +msgstr "" + +#: application/views/oqrs/showrequests.php:7 +#: application/views/oqrs/showrequests.php:52 +msgid "Request done" +msgstr "" + +#: application/views/oqrs/showrequests.php:47 +msgid "OQRS Status" +msgstr "" + +#: application/views/oqrs/showrequests.php:69 +msgid "With selected" +msgstr "" + +#: application/views/oqrs/showrequests.php:70 +msgid "Mark as done" +msgstr "" + +#: application/views/oqrs/showrequests.php:80 +msgid "Time of request" +msgstr "" + +#: application/views/oqrs/showrequests.php:81 +#: application/views/simplefle/index.php:74 +msgid "QSO Date" +msgstr "" + +#: application/views/oqrs/showrequests.php:82 +msgid "QSO Time" +msgstr "" + +#: application/views/oqrs/showrequests.php:85 +msgid "Request callsign" +msgstr "" + +#: application/views/oqrs/showrequests.php:89 +msgid "QSL route" +msgstr "" + +#: application/views/oqrs/showrequests.php:90 +msgid "Check log" +msgstr "" + +#: application/views/public_search/empty.php:2 +#: application/views/public_search/result.php:2 +msgid "Searching for" +msgstr "" + +#: application/views/qrbcalc/index.php:3 +msgid "Locator 1" +msgstr "" + +#: application/views/qrbcalc/index.php:10 +msgid "Locator 2" +msgstr "" + +#: application/views/qrbcalc/index.php:20 +msgid "Calculate" +msgstr "" + +#: application/views/qrz/export.php:27 +msgid "" +"Here you can see all QSOs which have not been previously uploaded to a QRZ " +"logbook." +msgstr "" + +#: application/views/qrz/export.php:28 +msgid "" +"You need to set a QRZ Logbook API key in your station profile. Only station " +"profiles with an API Key set are displayed." +msgstr "" + +#: application/views/qrz/export.php:73 +msgid "" +"If no startdate is given then all QSOs after last confirmation will be " +"downloaded/updated!" +msgstr "" + +#: application/views/qrz/export.php:81 +msgid "Download from QRZ Logbook" +msgstr "" + +#: application/views/qrz/export.php:107 +msgid "Mark QSOs as exported to QRZ Logbook" +msgstr "" + +#: application/views/qrz/mark_qrz.php:16 +msgid "The QSOs are marked as exported to QRZ Logbook." +msgstr "" + +#: application/views/qslcard/index.php:10 +#, php-format +msgid "You are using %s of disk space to store QSL Card assets" +msgstr "" + +#: application/views/qslcard/index.php:67 +msgid "Add Qsos" +msgstr "" + +#: application/views/qslcard/searchresult.php:193 +msgid "Add to QSL" +msgstr "" + +#: application/views/qslmanagement/index.php:13 +msgid "Incoming QSL Cards" +msgstr "" + +#: application/views/qslmanagement/index.php:25 +msgid "Report" +msgstr "" + +#: application/views/qslmanagement/index.php:26 +msgid "Option" +msgstr "" + +#: application/views/qslmanagement/index.php:46 +msgid "Outgoing QSL Cards" +msgstr "" + +#: application/views/qslprint/index.php:16 +msgid "Export Requested QSLs for Printing" +msgstr "" + +#: application/views/qslprint/index.php:29 +msgid "" +"Here you can export requested QSLs as CSV or ADIF files for printing and, " +"optionally, mark them as sent." +msgstr "" + +#: application/views/qslprint/index.php:30 +msgid "" +"Requested QSLs are any QSOs with a value of 'Requested' or 'Queued' in their " +"'QSL Sent' field." +msgstr "" + +#: application/views/qslprint/qslprint.php:30 +#: application/views/qslprint/qsolist.php:15 +msgid "Send Method" +msgstr "" + +#: application/views/qslprint/qslprint.php:31 +msgid "Mark as sent" +msgstr "" + +#: application/views/qslprint/qslprint.php:32 +msgid "Remove" +msgstr "" + +#: application/views/qslprint/qslprint.php:33 +#: application/views/simplefle/index.php:139 +msgid "QSO List" +msgstr "" + +#: application/views/qslprint/qslprint.php:67 +msgid "Mark selected QSOs as printed" +msgstr "" + +#: application/views/qslprint/qslprint.php:69 +msgid "Remove selected QSOs from the queue" +msgstr "" + +#: application/views/qslprint/qslprint.php:71 +msgid "Export CSV-file" +msgstr "" + +#: application/views/qslprint/qslprint.php:71 +msgid "Export requested QSLs to CSV-file" +msgstr "" + +#: application/views/qslprint/qslprint.php:73 +msgid "Export ADIF" +msgstr "" + +#: application/views/qslprint/qslprint.php:73 +msgid "Export requested QSLs to ADIF-file" +msgstr "" + +#: application/views/qslprint/qslprint.php:75 +msgid "Mark QSLs as printed" +msgstr "" + +#: application/views/qslprint/qslprint.php:75 +msgid "Mark requested QSLs as sent" +msgstr "" + +#: application/views/qslprint/qslprint.php:79 +msgid "No QSLs to print were found!" +msgstr "" + +#: application/views/qslprint/qsolist.php:205 +msgid "" +"No additional QSO's were found. That means they are probably already in the " +"queue." +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 +#, 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 +#, php-format +msgid "Function %d - Macro" +msgstr "" + +#: application/views/qso/edit_ajax.php:34 +msgid "Sats" +msgstr "" + +#: application/views/qso/edit_ajax.php:51 +msgid "Start Date/Time" +msgstr "" + +#: application/views/qso/edit_ajax.php:56 +msgid "End Date/Time" +msgstr "" + +#: application/views/qso/edit_ajax.php:76 +msgid "RX Frequency" +msgstr "" + +#: application/views/qso/edit_ajax.php:99 +msgid "RX Band" +msgstr "" + +#: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:346 +#: application/views/reg1test/index.php:114 +#: application/views/view_log/qso.php:545 +msgid "Transmit Power (W)" +msgstr "" + +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:348 +msgid "Give power value in Watts. Include only numbers in the input." +msgstr "" + +#: application/views/qso/edit_ajax.php:166 +msgid "Used for VUCC MultiGrids" +msgstr "" + +#: application/views/qso/edit_ajax.php:258 +msgid "Sat Name" +msgstr "" + +#: application/views/qso/edit_ajax.php:263 +msgid "Sat Mode" +msgstr "" + +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:545 +msgid "Antenna Azimuth (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:547 +msgid "Antenna azimuth in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:274 application/views/qso/index.php:551 +msgid "Antenna Elevation (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:276 application/views/qso/index.php:553 +msgid "Antenna elevation in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:383 application/views/qso/index.php:255 +#: application/views/qso/index.php:510 application/views/user/edit.php:599 +#: application/views/view_log/qso.php:335 +#: application/views/view_log/qso.php:585 +msgid "Sig Info" +msgstr "" + +#: application/views/qso/edit_ajax.php:396 +msgid "Notes (for internal usage only)" +msgstr "" + +#: application/views/qso/edit_ajax.php:430 +msgid "Sent Method" +msgstr "" + +#: application/views/qso/edit_ajax.php:433 +#: application/views/qso/edit_ajax.php:466 application/views/qso/index.php:585 +#: application/views/qso/index.php:588 +msgid "Method" +msgstr "" + +#: application/views/qso/edit_ajax.php:443 +msgid "Sent Via" +msgstr "" + +#: application/views/qso/edit_ajax.php:457 +#: application/views/qso/edit_ajax.php:498 +#: application/views/qso/edit_ajax.php:537 +msgid "Verified (Match)" +msgstr "" + +#: application/views/qso/edit_ajax.php:463 +msgid "Received Method" +msgstr "" + +#: application/views/qso/edit_ajax.php:504 application/views/qso/index.php:605 +msgid "This note content is exported to QSL services like eqsl.cc." +msgstr "" + +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:608 +msgid "Get the default message for eQSL, for this station." +msgstr "" + +#: application/views/qso/edit_ajax.php:557 +msgid "Change Station Profile" +msgstr "" + +#: application/views/qso/edit_ajax.php:603 +msgid "Exchange (R)" +msgstr "" + +#: application/views/qso/edit_ajax.php:608 +msgid "Exchange (S)" +msgstr "" + +#: application/views/qso/edit_ajax.php:620 +#: application/views/search/search_result_ajax.php:432 +#: application/views/view_log/partial/log.php:156 +#: application/views/view_log/partial/log_ajax.php:348 +msgid "Delete QSO" +msgstr "" + +#: application/views/qso/edit_ajax.php:623 +msgid "Save changes" +msgstr "" + +#: application/views/qso/index.php:4 +msgid "TimeOff is less than TimeOn" +msgstr "" + +#: application/views/qso/index.php:5 application/views/qso/index.php:718 +msgid "Previous Contacts" +msgstr "" + +#: application/views/qso/index.php:6 +msgid "times worked before" +msgstr "" + +#: application/views/qso/index.php:7 +msgid "Not worked before" +msgstr "" + +#: application/views/qso/index.php:20 +msgid "LIVE" +msgstr "" + +#: application/views/qso/index.php:20 +msgid "POST" +msgstr "" + +#: application/views/qso/index.php:33 +msgid "Sat" +msgstr "" + +#: application/views/qso/index.php:48 +msgid "Add Band/Mode to Favs" +msgstr "" + +#: application/views/qso/index.php:69 +msgid "Time on" +msgstr "" + +#: application/views/qso/index.php:81 +msgid "Time off" +msgstr "" + +#: application/views/qso/index.php:124 +msgid "Search DXCluster for latest Spot" +msgstr "" + +#: application/views/qso/index.php:196 application/views/qso/index.php:449 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 +#: application/views/user/edit.php:583 application/views/view_log/qso.php:285 +#: application/views/view_log/qso.php:552 +msgid "IOTA Reference" +msgstr "" + +#: application/views/qso/index.php:212 application/views/qso/index.php:466 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 +#: application/views/user/edit.php:587 application/views/view_log/qso.php:292 +#: application/views/view_log/qso.php:559 +msgid "SOTA Reference" +msgstr "" + +#: application/views/qso/index.php:322 application/views/view_log/qso.php:100 +msgid "Frequency (RX)" +msgstr "" + +#: application/views/qso/index.php:327 +msgid "Band (RX)" +msgstr "" + +#: application/views/qso/index.php:468 +msgid "For example: GM/NS-001." +msgstr "" + +#: application/views/qso/index.php:481 +msgid "For example: DLFF-0069." +msgstr "" + +#: application/views/qso/index.php:494 +msgid "For example: PA-0150. Multiple values allowed." +msgstr "" + +#: application/views/qso/index.php:506 +msgid "For example: GMA" +msgstr "" + +#: application/views/qso/index.php:512 +msgid "For example: DA/NW-357" +msgstr "" + +#: application/views/qso/index.php:520 +msgid "For example: Q03" +msgstr "" + +#: application/views/qso/index.php:529 application/views/view_log/qso.php:210 +msgid "Satellite Name" +msgstr "" + +#: application/views/qso/index.php:537 application/views/view_log/qso.php:217 +msgid "Satellite Mode" +msgstr "" + +#: application/views/qso/index.php:560 +msgid "" +"Note content is used within Wavelog only and is not exported to other " +"services." +msgstr "" + +#: application/views/qso/index.php:626 +msgid "Reset to Default" +msgstr "" + +#: application/views/qso/index.php:667 +msgid "Winkey" +msgstr "" + +#: application/views/qso/index.php:669 +msgid "Connect" +msgstr "" + +#: application/views/qso/index.php:678 +msgid "Stop" +msgstr "" + +#: application/views/qso/index.php:679 +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:680 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:686 +msgid "CW Speed" +msgstr "" + +#: application/views/qso/index.php:691 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:701 +msgid "Suggestions" +msgstr "" + +#: application/views/qso/index.php:708 +msgid "Profile Picture" +msgstr "" + +#: application/views/qso/index.php:732 +msgid "Max. 5 previous contacts are shown" +msgstr "" + +#: application/views/radio/index.php:16 +msgid "Active Radios" +msgstr "" + +#: application/views/radio/index.php:19 +msgid "Below is a list of active radios that are connected to Wavelog." +msgstr "" + +#: application/views/radio/index.php:20 +msgid "" +"If you haven't connected any radios yet, see the API page to generate API " +"keys." +msgstr "" + +#: application/views/radio/index.php:22 application/views/search/filter.php:69 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "" + +#: application/views/radio/index.php:22 +msgid "radio functions" +msgstr "" + +#: application/views/radio/index.php:27 +msgid "Please wait..." +msgstr "" + +#: application/views/reg1test/index.php:6 +msgid "Select Band" +msgstr "" + +#: application/views/reg1test/index.php:8 +msgid "" +"Bands below 50Mhz are not valid for the EDI REG1TEST format and will produce " +"invalid files." +msgstr "" + +#: application/views/reg1test/index.php:18 +msgid "Export a contest to a REG1TEST EDI log" +msgstr "" + +#: application/views/reg1test/index.php:48 +msgid "Sent Exchange" +msgstr "" + +#: application/views/reg1test/index.php:50 +msgid "" +"The exchange which was sent during the contest. Can be any type of " +"information, e.g. Province, DOK, County, State, Power, Name. Max. length: 6 " +"characters." +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:66 +msgid "Callsign of responsible operator" +msgstr "" + +#: application/views/reg1test/index.php:72 +msgid "" +"List of all operators. Seperated with a semicolon ';'. The responsible " +"operator is not needed here." +msgstr "" + +#: application/views/reg1test/index.php:75 +msgid "Contest Address 1" +msgstr "" + +#: application/views/reg1test/index.php:77 +msgid "Address of the QTH used during the contest." +msgstr "" + +#: application/views/reg1test/index.php:80 +msgid "Contest Address 2" +msgstr "" + +#: application/views/reg1test/index.php:84 +msgid "Operator Address 1" +msgstr "" + +#: application/views/reg1test/index.php:86 +msgid "Address of the responsible operator." +msgstr "" + +#: application/views/reg1test/index.php:89 +msgid "Operator Address 2" +msgstr "" + +#: application/views/reg1test/index.php:93 +msgid "Operator Address Postalcode" +msgstr "" + +#: application/views/reg1test/index.php:97 +msgid "Operator Address City" +msgstr "" + +#: application/views/reg1test/index.php:101 +msgid "Operator Address Country" +msgstr "" + +#: application/views/reg1test/index.php:105 +msgid "Operator Phone Number" +msgstr "" + +#: application/views/reg1test/index.php:109 +msgid "Transmit Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:111 +msgid "Short description of the used equipment." +msgstr "" + +#: application/views/reg1test/index.php:116 +msgid "TX Power during the contest in Watt." +msgstr "" + +#: application/views/reg1test/index.php:119 +msgid "Receive Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:121 +msgid "If you used another gear for RX, then describe it here." +msgstr "" + +#: application/views/reg1test/index.php:124 +msgid "Antenna Description" +msgstr "" + +#: application/views/reg1test/index.php:126 +msgid "What kind of antenna was used." +msgstr "" + +#: application/views/reg1test/index.php:129 +msgid "Antenna Height Above Ground (m)" +msgstr "" + +#: application/views/reg1test/index.php:131 +msgid "Height of the antenna above the ground." +msgstr "" + +#: application/views/reg1test/index.php:134 +msgid "Band multiplicator" +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:141 +msgid "Any other remarks." +msgstr "" + +#: application/views/satellite/create.php:23 +#: application/views/satellite/edit.php:7 +msgid "Satellite name" +msgstr "" + +#: application/views/satellite/create.php:25 +msgid "The name of the Satellite" +msgstr "" + +#: application/views/satellite/create.php:28 +#: application/views/satellite/edit.php:12 +#: application/views/satellite/index.php:22 +msgid "Export Name" +msgstr "" + +#: application/views/satellite/create.php:30 +#: application/views/satellite/edit.php:14 +msgid "If external services uses another name for the satellite, like LoTW" +msgstr "" + +#: application/views/satellite/create.php:37 +#: application/views/satellite/edit.php:21 +msgid "Enter which orbit the satellite has (LEO, MEO, GEO)" +msgstr "" + +#: application/views/satellite/create.php:40 +msgid "Satellite mode name" +msgstr "" + +#: application/views/satellite/create.php:42 +msgid "Enter satellite mode" +msgstr "" + +#: application/views/satellite/create.php:47 +#: application/views/satellite/edit.php:35 +msgid "Uplink mode" +msgstr "" + +#: application/views/satellite/create.php:49 +msgid "Enter modulation used for uplink" +msgstr "" + +#: application/views/satellite/create.php:52 +#: application/views/satellite/edit.php:36 +msgid "Uplink frequency" +msgstr "" + +#: application/views/satellite/create.php:54 +msgid "Enter frequency (in Hz) used for uplink" +msgstr "" + +#: application/views/satellite/create.php:59 +#: application/views/satellite/edit.php:37 +msgid "Downlink mode" +msgstr "" + +#: application/views/satellite/create.php:61 +msgid "Enter modulation used for downlink" +msgstr "" + +#: application/views/satellite/create.php:64 +#: application/views/satellite/edit.php:38 +msgid "Downlink frequency" +msgstr "" + +#: application/views/satellite/create.php:66 +msgid "Enter frequency (in Hz) used for downlink" +msgstr "" + +#: application/views/satellite/edit.php:9 +msgid "Name of the Satellite" +msgstr "" + +#: application/views/satellite/edit.php:25 +msgid "Save satellite" +msgstr "" + +#: application/views/satellite/edit.php:59 +msgid "Add satellite mode" +msgstr "" + +#: application/views/satellite/index.php:15 +msgid "Add a satellite" +msgstr "" + +#: application/views/satellite/pass.php:2 +msgid "Satellite passes" +msgstr "" + +#: application/views/satellite/pass.php:8 +msgid "Min. Satellite Elevation" +msgstr "" + +#: application/views/satellite/pass.php:12 +msgid "Min. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:20 +msgid "Max. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:32 +msgid "Altitude (meters)" +msgstr "" + +#: application/views/satellite/pass.php:36 application/views/user/edit.php:179 +msgid "Timezone" +msgstr "" + +#: application/views/satellite/pass.php:479 +msgid "Min. time" +msgstr "" + +#: application/views/satellite/pass.php:487 +msgid "Max. time" +msgstr "" + +#: application/views/satellite/pass.php:504 +msgid "Load predictions" +msgstr "" + +#: application/views/satellite/passtable.php:6 +msgid "AOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:7 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "" + +#: application/views/satellite/passtable.php:8 +msgid "AOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:9 +msgid "AOS El" +msgstr "" + +#: application/views/satellite/passtable.php:10 +msgid "Max El" +msgstr "" + +#: application/views/satellite/passtable.php:11 +msgid "LOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:12 +msgid "LOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:13 +msgid "LOS El" +msgstr "" + +#: application/views/sattimers/index.php:15 +#, php-format +msgid "" +"This data comes from %s and is calculated for the current stationlocation " +"grid %s." +msgstr "" + +#: application/views/sattimers/index.php:40 +msgid "Time(d)-Out" +msgstr "" + +#: application/views/sattimers/index.php:43 +#: application/views/sattimers/index.php:44 +msgid "Azimuth" +msgstr "" + +#: application/views/sattimers/index.php:45 +msgid "Max Elevation" +msgstr "" + +#: application/views/search/cqzones.php:5 +#: application/views/search/lotw_unconfirmed.php:5 +#: application/views/search/main.php:5 +msgid "Ready to find a QSO?" +msgstr "" + +#: application/views/search/cqzones.php:15 +#: application/views/search/filter.php:4 application/views/search/filter.php:23 +#: application/views/search/lotw_unconfirmed.php:15 +#: application/views/search/main.php:15 +msgid "Advanced Search" +msgstr "" + +#: application/views/search/cqzones.php:18 +#: application/views/search/filter.php:26 +#: application/views/search/lotw_unconfirmed.php:18 +#: application/views/search/main.php:18 +msgid "Incorrect CQ Zones" +msgstr "" + +#: application/views/search/cqzones.php:21 +#: application/views/search/filter.php:29 +#: application/views/search/lotw_unconfirmed.php:21 +#: application/views/search/main.php:21 +msgid "QSOs unconfirmed on LoTW" +msgstr "" + +#: application/views/search/cqzones.php:28 +msgid "Station location:" +msgstr "" + +#: application/views/search/cqzones_result.php:3 +msgid "" +"The following QSOs were found to have an incorrect CQ zone that this DXCC " +"normally has:" +msgstr "" + +#: application/views/search/cqzones_result.php:14 +msgid "DXCC CQ Zone" +msgstr "" + +#: application/views/search/cqzones_result.php:51 +msgid "No incorrect CQ Zones were found." +msgstr "" + +#: application/views/search/filter.php:43 +msgid "Save query" +msgstr "" + +#: application/views/search/filter.php:50 +msgid "Stored queries" +msgstr "" + +#: application/views/search/filter.php:69 +msgid "search filter functions" +msgstr "" + +#: application/views/search/filter.php:79 +msgid "Search Results" +msgstr "" + +#: application/views/search/lotw_unconfirmed.php:26 +msgid "" +"The search displays QSOs which are unconfirmed on LoTW, but the callsign " +"worked has uploaded to LoTW after your QSO date." +msgstr "" + +#: application/views/search/lotw_unconfirmed.php:29 +msgid "Station location" +msgstr "" + +#: application/views/search/lotw_unconfirmed_result.php:10 +msgid "Last LoTW upload" +msgstr "" + +#: application/views/search/lotw_unconfirmed_result.php:41 +msgid "No QSOs with outstanding LoTW upload were found." +msgstr "" + +#: application/views/search/main.php:28 +msgid "Callsign / Gridsquare" +msgstr "" + +#: application/views/search/result.php:2 +#, php-format +msgid "Results for %s" +msgstr "" + +#: application/views/search/result.php:4 +#, php-format +msgid "Sorry, but we didn't find any past QSOs with %s" +msgstr "" + +#: application/views/search/result.php:6 +#, php-format +msgid "Callbook Search for %s" +msgstr "" + +#: application/views/search/result_search.php:9 +#: application/views/statistics/custom_result.php:90 +#: application/views/widgets/qsos.php:31 +msgid "Rcvd" +msgstr "" + +#: application/views/search/search_result_ajax.php:409 +#: application/views/view_log/partial/log.php:140 +#: application/views/view_log/partial/log_ajax.php:325 +msgid "Mark QSL Sent (Bureau)" +msgstr "" + +#: application/views/search/search_result_ajax.php:410 +#: application/views/view_log/partial/log.php:141 +#: application/views/view_log/partial/log_ajax.php:326 +msgid "Mark QSL Sent (Direct)" +msgstr "" + +#: application/views/search/search_result_ajax.php:417 +#: application/views/view_log/partial/log.php:148 +#: application/views/view_log/partial/log_ajax.php:335 +#: application/views/view_log/qso.php:655 +msgid "Mark QSL Received (Bureau)" +msgstr "" + +#: application/views/search/search_result_ajax.php:418 +#: application/views/view_log/partial/log.php:149 +#: application/views/view_log/partial/log_ajax.php:336 +#: application/views/view_log/qso.php:657 +msgid "Mark QSL Received (Direct)" +msgstr "" + +#: application/views/search/search_result_ajax.php:419 +#: application/views/view_log/partial/log.php:150 +#: application/views/view_log/partial/log_ajax.php:327 +msgid "Mark QSL Card Requested" +msgstr "" + +#: application/views/search/search_result_ajax.php:420 +#: application/views/view_log/partial/log.php:151 +#: application/views/view_log/partial/log_ajax.php:328 +#: application/views/view_log/qso.php:669 +msgid "Mark QSL Card Not Required" +msgstr "" + +#: application/views/search/search_result_ajax.php:426 +#: application/views/view_log/partial/log_ajax.php:342 +msgid "Lookup on QRZ.com" +msgstr "" + +#: application/views/search/search_result_ajax.php:428 +#: application/views/view_log/partial/log_ajax.php:344 +msgid "Lookup on HamQTH" +msgstr "" + +#: application/views/search/stored_queries.php:9 +msgid "Query" +msgstr "" + +#: application/views/simplefle/index.php:13 +msgid "Simple Fast Log Entry (FLE)" +msgstr "" + +#: application/views/simplefle/index.php:14 +msgid "" +"'Fast Log Entry', or simply 'FLE' is a system to log QSOs very quickly and " +"efficiently. Due to its syntax, only a minimum of input is required to log " +"many QSOs with as little effort as possible." +msgstr "" + +#: application/views/simplefle/index.php:15 +msgid "" +"FLE was originally written by DF3CB. He offers a program for Windows on his " +"website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides " +"a web interface to log QSOs." +msgstr "" + +#: application/views/simplefle/index.php:16 +#, php-format +msgid "" +"A common use-case is if you have to import your paperlogs from an outdoor " +"session and now SimpleFLE is also available in Wavelog. Information about " +"the syntax and how FLE works can be found %s." +msgstr "" + +#: application/views/simplefle/index.php:17 +#: application/views/simplefle/index.php:176 +msgid "Syntax Help" +msgstr "" + +#: application/views/simplefle/index.php:18 +msgid "Syntax for FLE" +msgstr "" + +#: application/views/simplefle/index.php:19 +msgid "Close and Load Sample Data" +msgstr "" + +#: application/views/simplefle/index.php:23 +msgid "Band is missing!" +msgstr "" + +#: application/views/simplefle/index.php:24 +msgid "Mode is missing!" +msgstr "" + +#: application/views/simplefle/index.php:25 +msgid "Time is not set!" +msgstr "" + +#: application/views/simplefle/index.php:26 +msgid "Invalid date" +msgstr "" + +#: application/views/simplefle/index.php:29 +msgid "Station Call is not selected" +msgstr "" + +#: application/views/simplefle/index.php:30 +msgid "'Operator' Field is empty" +msgstr "" + +#: application/views/simplefle/index.php:31 +msgid "Warning! Do you really want to reset everything?" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: application/views/simplefle/index.php:34 +msgid "" +"Attention! The Data Field containes example data. First Clear Logging " +"Session!" +msgstr "" + +#: application/views/simplefle/index.php:35 +msgid "" +"Are you sure that you want to add these QSO to the Log and clear the session?" +msgstr "" + +#: application/views/simplefle/index.php:36 +msgid "QSO Logged!" +msgstr "" + +#: application/views/simplefle/index.php:37 +msgid "The QSO were successfully logged in the logbook!" +msgstr "" + +#: application/views/simplefle/index.php:40 +msgid "What is that?" +msgstr "" + +#: application/views/simplefle/index.php:43 +msgid "Current UTC Time" +msgstr "" + +#: application/views/simplefle/index.php:76 +msgid "If you don't choose a date, today's date will be used." +msgstr "" + +#: application/views/simplefle/index.php:88 +msgid "You can add the entered QSOs to a contest." +msgstr "" + +#: application/views/simplefle/index.php:95 +msgid "Station Call/Location" +msgstr "" + +#: application/views/simplefle/index.php:107 +#, php-format +msgid "" +"If you did operate from a new location, first create a new %sStation " +"Location%s" +msgstr "" + +#: application/views/simplefle/index.php:112 +msgid "e.g. OK2CQR" +msgstr "" + +#: application/views/simplefle/index.php:115 +msgid "This is callsign of the operator. Without any pre- or suffixes." +msgstr "" + +#: application/views/simplefle/index.php:125 +msgid "Enter the Data" +msgstr "" + +#: application/views/simplefle/index.php:154 +msgid "Refs" +msgstr "" + +#: application/views/simplefle/index.php:166 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" +msgstr "" + +#: application/views/simplefle/index.php:173 +msgid "Reload QSO List" +msgstr "" + +#: application/views/simplefle/index.php:174 +msgid "Save in Wavelog" +msgstr "" + +#: application/views/simplefle/index.php:175 +msgid "Clear Logging Session" +msgstr "" + +#: application/views/simplefle/options.php:20 +msgid "No Options yet" +msgstr "" + +#: application/views/simplefle/syntax_help.php:1 +msgid "Before starting to log a QSO, please note the basic rules." +msgstr "" + +#: application/views/simplefle/syntax_help.php:2 +msgid "- Each new QSO should be on a new line." +msgstr "" + +#: application/views/simplefle/syntax_help.php:3 +msgid "" +"- On each new line, only write data that has changed from the previous QSO." +msgstr "" + +#: application/views/simplefle/syntax_help.php:4 +msgid "" +"To begin, ensure you have already filled in the form on the left with the " +"date, station call, and operator's call. The main data includes the band (or " +"QRG in MHz, e.g., '7.145'), mode, and time. After the time, you provide the " +"first QSO, which is essentially the callsign." +msgstr "" + +#: application/views/simplefle/syntax_help.php:9 +msgid "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB." +msgstr "" + +#: application/views/simplefle/syntax_help.php:10 +msgid "" +"If you don't provide any RST information, the syntax will use 59 (599 for " +"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 "" + +#: application/views/simplefle/syntax_help.php:16 +msgid "" +"The first QSO was at 21:34, and the second one 2 minutes later at 21:36. We " +"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 "" + +#: application/views/simplefle/syntax_help.php:17 +msgid "" +"For our next QSO at 21:40 on 14th May, 2021, we changed the band to 40m but " +"still on SSB. If no RST information is given, the syntax will use 59 for " +"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 "" + +#: application/views/simplefle/syntax_help.php:28 +#, php-format +msgid "" +"A full summary of all commands and the necessary syntax can be found in " +"%sthis article%s of our Wiki." +msgstr "" + +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 +msgid "Location Name" +msgstr "" + +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 +msgctxt "Station Location Setup" +msgid "Home QTH" +msgstr "" + +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 +#, php-format +msgid "Shortname for the station location. For example: %s" +msgstr "" + +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 +msgid "Station callsign. For example: 4W7EST/P" +msgstr "" + +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 +msgid "Station Power (W)" +msgstr "" + +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 +msgid "Default station power in Watt. Overwritten by CAT." +msgstr "" + +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 +msgid "Station DXCC" +msgstr "" + +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 +msgctxt "DXCC selection" +msgid "None" +msgstr "" + +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 +msgid "Station DXCC entity. For example: Bolivia" +msgstr "" + +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 +msgid "Station City" +msgstr "" + +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 +msgid "Station city. For example: Oslo" +msgstr "" + +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 +msgid "Station state. Applies to certain countries only." +msgstr "" + +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 +msgid "Station County" +msgstr "" + +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 +msgid "Station County (Only used for USA/Alaska/Hawaii)." +msgstr "" + +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 +#, php-format +msgctxt "uses 'click here'" +msgid "If you don't know your CQ Zone then %s to find it!" +msgstr "" + +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 +msgid "click here" +msgstr "" + +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 +#, php-format +msgctxt "uses 'click here'" +msgid "If you don't know your ITU Zone then %s to find it!" +msgstr "" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 +msgid "Station Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 +msgid "Get Gridsquare" +msgstr "" + +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 +#, php-format +msgctxt "uses 'click here'" +msgid "" +"Station gridsquare. For example: HM54AP. If you don't know your grid square " +"then %s!" +msgstr "" + +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 +msgid "" +"If you are located on a grid line, enter multiple grid squares separated " +"with commas. For example: IO77,IO78,IO87,IO88." +msgstr "" + +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 +msgid "Station IOTA reference. For example: EU-005" +msgstr "" + +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 +msgid "IOTA World website" +msgstr "" + +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 +#, php-format +msgid "You can look up IOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 +msgid "SOTA Maps website" +msgstr "" + +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 +#, php-format +msgid "Station SOTA reference. You can look up SOTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 +msgid "GMA Map website" +msgstr "" + +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 +#, php-format +msgid "Station WWFF reference. You can look up WWFF references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 +msgid "POTA Map website" +msgstr "" + +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 +#, php-format +msgid "" +"Station POTA reference(s). Multiple comma separated values allowed. You can " +"look up POTA references at the %s." +msgstr "" + +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 +msgid "Signature Name" +msgstr "" + +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 +msgid "Station Signature (e.g. GMA).." +msgstr "" + +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 +msgid "Signature Information" +msgstr "" + +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 +msgid "Station Signature Info (e.g. DA/NW-357)." +msgstr "" + +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 +msgctxt "Probably no translation needed" +msgid "eQSL QTH Nickname" +msgstr "" + +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 +msgid "The QTH Nickname which is configured in your eQSL Profile" +msgstr "" + +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 +msgid "Default QSLMSG" +msgstr "" + +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 +msgid "" +"Define a default message that will be populated and sent for each QSO for " +"this station location." +msgstr "" + +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 +msgid "Ignore Clublog Upload" +msgstr "" + +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 +msgid "" +"If enabled, the QSOs made from this location will not be uploaded to " +"Clublog. If this is deactivated on it's own please check if the Call is " +"properly configured at Clublog" +msgstr "" + +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 +msgid "ClubLog Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 +msgid "HRDLog.net Username" +msgstr "" + +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 +msgid "" +"The username you are registered with at HRDlog.net (usually your callsign)." +msgstr "" + +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 +msgid "HRDLog.net API Key" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 +#, php-format +msgctxt "HRDLog.net Userprofile page" +msgid "Create your API Code on your %s" +msgstr "" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 +msgid "HRDLog.net Userprofile page" +msgstr "" + +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 +msgid "HRDLog.net Logbook Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 +msgid "Subscription Required" +msgstr "" + +#: application/views/station_profile/create.php:255 +msgctxt "Probably no translation needed" +msgid "QRZ.com Logbook API Key" +msgstr "" + +#: application/views/station_profile/create.php:258 +msgid "Test API-Key" +msgstr "" + +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 +#, php-format +msgctxt "the QRZ.com Logbook settings page" +msgid "Find your API key on %s" +msgstr "" + +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 +msgid "the QRZ.com Logbook settings page" +msgstr "" + +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 +msgid "QRZ.com Logbook Upload" +msgstr "" + +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 +msgid "Realtime" +msgstr "" + +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 +msgctxt "Probably no translation needed" +msgid "QO-100 Dx Club API Key" +msgstr "" + +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 +#, php-format +msgctxt "QO-100 Dx Club's profile page" +msgid "Create your API key on your %s" +msgstr "" + +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 +msgid "QO-100 Dx Club's profile page" +msgstr "" + +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 +msgid "QO-100 Dx Club Realtime Upload" +msgstr "" + +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 +msgid "OQRS Enabled" +msgstr "" + +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 +msgid "OQRS Email alert" +msgstr "" + +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 +msgid "Make sure email is set up under admin and global options." +msgstr "" + +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 +msgid "OQRS Text" +msgstr "" + +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 +msgid "Some info you want to add regarding QSL'ing." +msgstr "" + +#: application/views/station_profile/edit.php:149 +msgid "Zones" +msgstr "" + +#: application/views/station_profile/edit.php:284 +msgid "Signature" +msgstr "" + +#: application/views/stationsetup/create.php:17 +msgid "Station Logbook Name" +msgstr "" + +#: application/views/stationsetup/create.php:19 +msgid "You can call a station logbook anything." +msgstr "" + +#: application/views/stationsetup/edit.php:18 +msgid "Container name" +msgstr "" + +#: application/views/stationsetup/edit.php:20 +msgid "You can call a container anything." +msgstr "" + +#: application/views/stationsetup/exportmapoptions.php:11 +msgctxt "Map Options" +msgid "CQ Zone overlay" +msgstr "" + +#: application/views/stationsetup/exportmapoptions.php:15 +msgctxt "Map Options" +msgid "Gridsquare overlay" +msgstr "" + +#: application/views/stationsetup/exportmapoptions.php:19 +msgctxt "Map Options" +msgid "Night shadow overlay" +msgstr "" + +#: application/views/stationsetup/exportmapoptions.php:27 +msgid "# QSOs shown" +msgstr "" + +#: application/views/stationsetup/exportmapoptions.php:46 +msgid "Visit export map" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:13 +msgid "Select Available Station Locations" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:25 +msgid "Link Location" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:31 +#: application/views/stationsetup/stationsetup.php:122 +msgid "Profile Name" +msgstr "" + +#: application/views/stationsetup/linkedlocations.php:34 +msgid "Unlink Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:21 +msgid "" +"Station Logbooks allow you to group Station Locations, this allows you to " +"see all the locations across one session from the logbook areas to the " +"analytics. Great for when your operating in multiple locations but they are " +"part of the same DXCC or VUCC Circle." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:32 +msgid "Linked locations" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:34 +msgid "Visitor site" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:91 +msgid "Station Locations" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:95 +msgid "" +"Station Locations define operating locations, such as your QTH, a friends " +"QTH, or a portable station." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:96 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:97 +msgid "" +"Only one station may be active at a time. In the table below this is shown " +"with the -Active Station- badge." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:98 +msgid "" +"The 'Linked' column shows if the station location is linked with the Active " +"Logbook selected above." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:101 +msgid "Create a Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:105 +msgid "" +"Attention: You need to set an active station location. Go to Callsign-" +">Station Location to select one." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:111 +msgid "" +"Due to recent changes within Wavelog you need to reassign QSOs to your " +"station profiles." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Maintenance" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Please reassign them at " +msgstr "" + +#: application/views/stationsetup/stationsetup.php:127 +msgid "Linked" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:134 +msgid "Favorite" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:180 +msgid "mark/unmark as favorite" +msgstr "" + +#: application/views/stationsetup/visitor.php:2 +msgid "" +"Setting a public slug allows you to share your logbook with anyone via a " +"custom website address, this slug can contain letters & numbers only." +msgstr "" + +#: application/views/stationsetup/visitor.php:3 +msgid "Later it looks like this:" +msgstr "" + +#: application/views/stationsetup/visitor.php:4 +msgid "[your slug]" +msgstr "" + +#: application/views/stationsetup/visitor.php:10 +msgid "Type in Public Slug choice" +msgstr "" + +#: application/views/stationsetup/visitor.php:17 +msgid "Visit Public Page" +msgstr "" + +#: application/views/statistics/custom.php:12 +#: application/views/statistics/custom_result.php:12 +#: application/views/statistics/index.php:28 +msgid "Explore the logbook." +msgstr "" + +#: application/views/statistics/custom.php:23 +#: application/views/statistics/custom_result.php:24 +msgid "Custom" +msgstr "" + +#: application/views/statistics/custom.php:27 +#: application/views/statistics/custom_result.php:29 +msgid "This is a work in-progress" +msgstr "" + +#: application/views/statistics/custom.php:74 +#: application/views/statistics/custom_result.php:71 +msgid "Finished your selection? time to search!" +msgstr "" + +#: application/views/statistics/custom.php:86 +msgid "Results go here" +msgstr "" + +#: application/views/statistics/index.php:14 +#: application/views/statistics/index.php:50 +msgid "Years" +msgstr "" + +#: application/views/statistics/index.php:17 +msgid "Number of QSOs worked each year" +msgstr "" + +#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:99 +msgid "Unique callsigns" +msgstr "" + +#: application/views/themes/add.php:4 application/views/themes/edit.php:4 +msgid "Theme Name" +msgstr "" + +#: application/views/themes/add.php:6 application/views/themes/edit.php:6 +msgid "This is the name that is used to display the theme in the theme list." +msgstr "" + +#: application/views/themes/add.php:10 application/views/themes/edit.php:10 +msgid "Folder Name" +msgstr "" + +#: application/views/themes/add.php:12 application/views/themes/edit.php:12 +msgid "" +"This is the name of the folder where your CSS-files are placed under assets/" +"css." +msgstr "" + +#: application/views/themes/add.php:16 application/views/themes/edit.php:16 +#: application/views/themes/index.php:84 +msgid "Theme Mode" +msgstr "" + +#: application/views/themes/add.php:18 application/views/themes/edit.php:18 +msgid "Light" +msgstr "" + +#: application/views/themes/add.php:19 application/views/themes/edit.php:19 +msgid "Dark" +msgstr "" + +#: application/views/themes/add.php:21 +msgid "This defines wherever the theme is a light or a dark one." +msgstr "" + +#: application/views/themes/add.php:25 application/views/themes/edit.php:25 +#: application/views/themes/index.php:85 +msgid "Header Logo" +msgstr "" + +#: application/views/themes/add.php:27 application/views/themes/add.php:33 +#: application/views/themes/edit.php:27 application/views/themes/edit.php:33 +msgid "Only PNG files with a size ratio of 1:1 are allowed." +msgstr "" + +#: application/views/themes/add.php:27 application/views/themes/edit.php:27 +#, php-format +msgid "" +"This is the name of the file which is used as %s small %s Logo in the header " +"placed in assets/logo." +msgstr "" + +#: application/views/themes/add.php:31 application/views/themes/edit.php:31 +#: application/views/themes/index.php:86 +msgid "Main Logo" +msgstr "" + +#: application/views/themes/add.php:33 application/views/themes/edit.php:33 +#, php-format +msgid "" +"This is the name of the file which is used as %s big %s Logo in the login " +"screen placed in assets/logo." +msgstr "" + +#: application/views/themes/add.php:36 +msgid "Add theme" +msgstr "" + +#: application/views/themes/edit.php:21 +msgid "" +"This defines wherever the theme is a light or a dark one. On this basis the " +"Logo is chosen." +msgstr "" + +#: application/views/themes/edit.php:36 +msgid "Update theme" +msgstr "" + +#: application/views/themes/index.php:22 +msgid "Themes list" +msgstr "" + +#: application/views/themes/index.php:28 +msgid "" +"In this menu you can add and edit themes to Wavelog. The process of adding a " +"theme is not really straightforward and should only be done by an admin who " +"is aware of their actions." +msgstr "" + +#: application/views/themes/index.php:29 +msgid "Also, it has to be said that this feature is still under development." +msgstr "" + +#: application/views/themes/index.php:35 +msgid "Process of adding a new theme" +msgstr "" + +#: application/views/themes/index.php:41 +msgid "1. Step" +msgstr "" + +#: application/views/themes/index.php:44 +#, php-format +msgid "" +"Create a new folder in 'assets/css/' and upload a 'bootstrap.min.css' file " +"which contains basic styling rules. We use the themes from %s" +msgstr "" + +#: application/views/themes/index.php:50 +msgid "2. Step" +msgstr "" + +#: application/views/themes/index.php:53 +msgid "" +"Create a file in this folder called 'overrides.css'. Place your custom CSS " +"code in there." +msgstr "" + +#: application/views/themes/index.php:59 +msgid "3. Step" +msgstr "" + +#: application/views/themes/index.php:62 +msgid "" +"For each new theme, you need two logo files. One for the login screen and " +"one for the header." +msgstr "" + +#: application/views/themes/index.php:63 +msgid "" +"Only PNG files are allowed, and they should have a pixel ratio of 1:1 (e.g., " +"1000px height and 1000px width)." +msgstr "" + +#: application/views/themes/index.php:64 +msgid "Place the two logo files in the folder 'assets/logo/'" +msgstr "" + +#: application/views/themes/index.php:70 +msgid "4. Step" +msgstr "" + +#: application/views/themes/index.php:73 +#, php-format +msgid "" +"Click here on 'Add a Theme' and type in the necessary data. Type in the " +"filenames for the logos %swithout%s the file extension '.png'" +msgstr "" + +#: application/views/themes/index.php:83 +msgid "Foldername" +msgstr "" + +#: application/views/themes/index.php:99 +msgid "Please edit" +msgstr "" + +#: application/views/themes/index.php:116 +msgid "Add a Theme" +msgstr "" + +#: application/views/timeplotter/index.php:2 +msgid "contacts were plotted" +msgstr "" + +#: application/views/timeplotter/index.php:3 +msgid "Time Distribution" +msgstr "" + +#: application/views/timeplotter/index.php:6 +msgid "Callsign(s) worked (max 5)" +msgstr "" + +#: application/views/timeplotter/index.php:10 +msgid "" +"The Timeplotter is used to analyze your logbook and find out at what times " +"you worked certain CQ zones or DXCC countries on a selected band." +msgstr "" + +#: application/views/update/index.php:8 +msgid "DXCC Lookup Data" +msgstr "" + +#: application/views/update/index.php:12 +msgid "Distance Data" +msgstr "" + +#: application/views/update/index.php:19 +msgid "" +"Here you can update the DXCC lookup data that is used for displaying " +"callsign information." +msgstr "" + +#: application/views/update/index.php:20 +msgid "This data is provided by" +msgstr "" + +#: application/views/update/index.php:24 +msgid "You must install php-xml for this to work." +msgstr "" + +#: application/views/update/index.php:27 +msgid "Check for DXCC Data Updates" +msgstr "" + +#: application/views/update/index.php:28 +msgid "Update DXCC Data" +msgstr "" + +#: application/views/update/index.php:30 +msgid "Status:" +msgstr "" + +#: application/views/update/index.php:34 +msgid "Apply DXCC Data to Logbook" +msgstr "" + +#: application/views/update/index.php:36 +msgid "" +"After updating, Wavelog can fill in missing callsign information in the " +"logbook using the newly-obtained DXCC data.\n" +"\t\t\t\t\t\t\tYou can choose to check just the QSOs in the logbook that are " +"missing DXCC metadata or to re-check the entire logbook\n" +"\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." +msgstr "" + +#: application/views/update/index.php:45 +msgid "Check QSOs missing DXCC data" +msgstr "" + +#: application/views/update/index.php:54 application/views/update/index.php:95 +msgid "Re-check all QSOs in logbook" +msgstr "" + +#: application/views/update/index.php:59 +msgid "Apply Continent Data to Logbook" +msgstr "" + +#: application/views/update/index.php:61 +msgid "" +"This function can be used to update QSO continent information for all QSOs " +"in Wavelog missing that information." +msgstr "" + +#: application/views/update/index.php:68 +msgid "Check QSOs missing continent data" +msgstr "" + +#: application/views/update/index.php:80 +msgid "Here you can update QSOs with missing distance information." +msgstr "" + +#: application/views/update/index.php:86 +msgid "Update distance data" +msgstr "" + +#: application/views/update/index.php:89 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" + +#: application/views/user/delete.php:5 +msgid "Delete User Account" +msgstr "" + +#: application/views/user/delete.php:10 +msgid "Are you sure you want to delete the user account" +msgstr "" + +#: application/views/user/delete.php:14 +msgid "No, do not delete this user" +msgstr "" + +#: application/views/user/delete.php:14 +msgid "Yes, delete this user" +msgstr "" + +#: application/views/user/edit.php:4 +msgid "Create User Account" +msgstr "" + +#: application/views/user/edit.php:6 +msgid "Edit Account" +msgstr "" + +#: application/views/user/edit.php:41 +msgid "General Information" +msgstr "" + +#: application/views/user/edit.php:52 application/views/user/login.php:58 +#: application/views/user/login.php:69 application/views/user/login.php:70 +#: application/views/user/profile.php:14 +msgid "Username" +msgstr "" + +#: application/views/user/edit.php:64 application/views/user/login.php:59 +#: application/views/user/login.php:73 application/views/user/login.php:74 +#: application/views/user/reset_password.php:21 +#: application/views/user/reset_password.php:23 +#: application/views/user/reset_password.php:30 +msgid "Password" +msgstr "" + +#: application/views/user/edit.php:77 +msgid "User Role" +msgstr "" + +#: application/views/user/edit.php:99 +msgid "Personal" +msgstr "" + +#: application/views/user/edit.php:102 +msgid "First Name" +msgstr "" + +#: application/views/user/edit.php:109 +msgid "Last Name" +msgstr "" + +#: application/views/user/edit.php:120 +msgid "Ham Radio" +msgstr "" + +#: application/views/user/edit.php:146 +msgid "Wavelog Preferences" +msgstr "" + +#: application/views/user/edit.php:157 +msgid "Stylesheet" +msgstr "" + +#: application/views/user/edit.php:169 +msgid "Wavelog Language" +msgstr "" + +#: application/views/user/edit.php:176 +msgid "Choose Wavelog language." +msgstr "" + +#: application/views/user/edit.php:187 +msgid "Date Format" +msgstr "" + +#: application/views/user/edit.php:200 +msgid "Select how you would like dates shown when logged into your account." +msgstr "" + +#: application/views/user/edit.php:204 +msgid "Measurement preference" +msgstr "" + +#: application/views/user/edit.php:208 +msgid "Kilometers" +msgstr "" + +#: application/views/user/edit.php:209 +msgid "Miles" +msgstr "" + +#: application/views/user/edit.php:210 +msgid "Nautical miles" +msgstr "" + +#: application/views/user/edit.php:212 +msgid "Choose which unit distances will be shown in" +msgstr "" + +#: application/views/user/edit.php:221 +msgid "Logbook fields" +msgstr "" + +#: application/views/user/edit.php:224 +msgid "Choose column 1" +msgstr "" + +#: application/views/user/edit.php:246 +msgid "Choose column 2" +msgstr "" + +#: application/views/user/edit.php:268 +msgid "Choose column 3" +msgstr "" + +#: application/views/user/edit.php:290 +msgid "Choose column 4" +msgstr "" + +#: application/views/user/edit.php:312 +msgid "Choose column 5 (only for logbook)" +msgstr "" + +#: application/views/user/edit.php:341 +msgid "QSO Logging Options" +msgstr "" + +#: application/views/user/edit.php:344 +msgid "Log End Times for QSOs Separately" +msgstr "" + +#: application/views/user/edit.php:350 +msgid "" +"Choose yes here if you want to log QSO start and end times separately. If " +"set to 'No' the end time will be the same as start time." +msgstr "" + +#: application/views/user/edit.php:355 +msgid "" +"Show profile picture of QSO partner from qrz.com/hamqth.com profile in the " +"log QSO section." +msgstr "" + +#: application/views/user/edit.php:361 +msgid "" +"Please set your qrz.com/hamqth.com credentials in the general config file." +msgstr "" + +#: application/views/user/edit.php:366 +msgid "Location auto lookup." +msgstr "" + +#: application/views/user/edit.php:372 +msgid "If set, gridsquare is fetched based on location name." +msgstr "" + +#: application/views/user/edit.php:376 +msgid "SOTA auto lookup gridsquare and name for summit." +msgstr "" + +#: application/views/user/edit.php:382 application/views/user/edit.php:392 +#: application/views/user/edit.php:402 +msgid "" +"If set, name and gridsquare is fetched from the API and filled in location " +"and locator." +msgstr "" + +#: application/views/user/edit.php:386 +msgid "WWFF auto lookup gridsquare and name for reference." +msgstr "" + +#: application/views/user/edit.php:396 +msgid "POTA auto lookup gridsquare and name for park." +msgstr "" + +#: application/views/user/edit.php:413 +msgid "Menu Options" +msgstr "" + +#: application/views/user/edit.php:416 +msgid "Show notes in the main menu." +msgstr "" + +#: application/views/user/edit.php:427 +msgid "Quicklog Field" +msgstr "" + +#: application/views/user/edit.php:433 +msgid "" +"With this feature, you can log callsigns using the search field in the " +"header." +msgstr "" + +#: application/views/user/edit.php:437 +msgid "Quicklog - Action on press Enter" +msgstr "" + +#: application/views/user/edit.php:440 +msgid "Log Callsign" +msgstr "" + +#: application/views/user/edit.php:443 +msgid "" +"What action should be performed when Enter is pressed in the quicklog field?" +msgstr "" + +#: application/views/user/edit.php:449 +msgid "Station Locations Quickswitch" +msgstr "" + +#: application/views/user/edit.php:454 +msgid "Show the Station Locations Quickswitch in the main menu" +msgstr "" + +#: application/views/user/edit.php:458 +msgid "UTC Time in Menu" +msgstr "" + +#: application/views/user/edit.php:463 +msgid "Show the current UTC Time in the menu" +msgstr "" + +#: application/views/user/edit.php:474 +msgid "Map Settings" +msgstr "" + +#: application/views/user/edit.php:481 +msgid "Icon" +msgstr "" + +#: application/views/user/edit.php:484 application/views/user/edit.php:488 +msgid "Not display" +msgstr "" + +#: application/views/user/edit.php:497 +msgid "QSO (by default)" +msgstr "" + +#: application/views/user/edit.php:516 +msgid "QSO (confirmed)" +msgstr "" + +#: application/views/user/edit.php:517 +msgid "(If 'No', displayed as 'QSO (by default))'" +msgstr "" + +#: application/views/user/edit.php:536 +msgid "Show Locator" +msgstr "" + +#: application/views/user/edit.php:555 +msgid "Previous QSL Type" +msgstr "" + +#: application/views/user/edit.php:559 +msgid "Select the type of QSL to show in the previous QSOs section." +msgstr "" + +#: application/views/user/edit.php:565 +msgid "QRZ" +msgstr "" + +#: application/views/user/edit.php:576 +msgid "Show Reference Fields on QSO Tab" +msgstr "" + +#: application/views/user/edit.php:580 +msgid "" +"The enabled items will be shown on the QSO tab rather than the General tab." +msgstr "" + +#: application/views/user/edit.php:619 +msgid "Default Values" +msgstr "" + +#: application/views/user/edit.php:627 +msgid "Settings for Default Band and Confirmation" +msgstr "" + +#: application/views/user/edit.php:630 +msgid "Default Band" +msgstr "" + +#: application/views/user/edit.php:640 +msgid "Default QSL-Methods" +msgstr "" + +#: application/views/user/edit.php:697 +msgid "Third Party Services" +msgstr "" + +#: application/views/user/edit.php:708 +msgid "Logbook of The World (LoTW) Username" +msgstr "" + +#: application/views/user/edit.php:714 +msgid "Logbook of The World (LoTW) Password" +msgstr "" + +#: application/views/user/edit.php:734 +msgid "eQSL.cc Username" +msgstr "" + +#: application/views/user/edit.php:740 +msgid "eQSL.cc Password" +msgstr "" + +#: application/views/user/edit.php:757 +msgid "Club Log" +msgstr "" + +#: application/views/user/edit.php:760 +msgid "Club Log Email/Callsign" +msgstr "" + +#: application/views/user/edit.php:762 +msgid "The Email or Callsign you use to login to Club Log" +msgstr "" + +#: application/views/user/edit.php:767 +msgid "Club Log Password" +msgstr "" + +#: application/views/user/edit.php:788 +msgid "Miscellaneous" +msgstr "" + +#: application/views/user/edit.php:796 +msgid "AMSAT Status Upload" +msgstr "" + +#: application/views/user/edit.php:799 +msgid "Upload status of SAT QSOs to" +msgstr "" + +#: application/views/user/edit.php:813 +msgid "Mastodonserver" +msgstr "" + +#: application/views/user/edit.php:816 +msgid "URL of Mastodonserver" +msgstr "" + +#: application/views/user/edit.php:818 +#, php-format +msgid "Main URL of your Mastodon server, e.g. %s" +msgstr "" + +#: application/views/user/edit.php:827 +msgid "Experimental" +msgstr "" + +#: application/views/user/edit.php:827 +msgid "Winkeyer" +msgstr "" + +#: application/views/user/edit.php:830 +msgid "Winkeyer Features Enabled" +msgstr "" + +#: application/views/user/edit.php:836 +#, php-format +msgid "" +"Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " +"before enabling." +msgstr "" + +#: application/views/user/edit.php:847 +msgid "Hams.at" +msgstr "" + +#: application/views/user/edit.php:850 +msgid "Private Feed Key" +msgstr "" + +#: application/views/user/edit.php:852 +#, php-format +msgctxt "Hint for Hamsat API Key; uses Link" +msgid "See your profile at %s." +msgstr "" + +#: application/views/user/edit.php:855 +msgid "Show Workable Passes Only" +msgstr "" + +#: application/views/user/edit.php:861 +msgid "" +"If enabled shows only workable passes based on the gridsquare set in your " +"hams.at account. Requires private feed key to be set." +msgstr "" + +#: application/views/user/edit.php:873 +msgid "Save Account" +msgstr "" + +#: application/views/user/forgot_password.php:33 +msgid "Forgot Password?" +msgstr "" + +#: application/views/user/forgot_password.php:34 +#: application/views/user/reset_password.php:9 +msgid "You can reset your password here." +msgstr "" + +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "" + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "" + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "" + +#: application/views/user/login.php:36 +msgid "MAINTENANCE MODE" +msgstr "" + +#: application/views/user/login.php:56 +msgid "Welcome to the Demo of Wavelog" +msgstr "" + +#: application/views/user/login.php:57 +msgid "This demo will be reset every night at 0200z." +msgstr "" + +#: application/views/user/login.php:60 +#, php-format +msgid "More Information about Wavelog on %sGithub%s." +msgstr "" + +#: application/views/user/login.php:79 +msgid "Forgot your password?" +msgstr "" + +#: application/views/user/login.php:85 +msgid "Keep me logged in" +msgstr "" + +#: application/views/user/profile.php:19 +msgid "Level" +msgstr "" + +#: application/views/user/profile.php:39 +msgid "First name" +msgstr "" + +#: application/views/user/profile.php:44 +msgid "Last name" +msgstr "" + +#: application/views/user/profile.php:50 +msgid "Edit profile" +msgstr "" + +#: application/views/user/reset_password.php:28 +msgid "Confirm Password" +msgstr "" + +#: application/views/version_dialog/index.php:20 +msgid "No Version Dialog text set. Go to the Admin Menu and set one." +msgstr "" + +#: application/views/version_dialog/index.php:60 +msgid "Error at parsing JSON-Data or got empty result from github." +msgstr "" + +#: application/views/version_dialog/index.php:63 +msgid "Error at getting the data from GitHub." +msgstr "" + +#: application/views/version_dialog/index.php:75 +msgid "Don't show again" +msgstr "" + +#: application/views/view_log/index.php:4 +msgid "" +"Displaying all QSOs of station locations which are linked to this logbook" +msgstr "" + +#: application/views/view_log/qso.php:6 +msgid "QSO Details" +msgstr "" + +#: application/views/view_log/qso.php:29 +msgid "QSL Management" +msgstr "" + +#: application/views/view_log/qso.php:131 +msgid "Total Distance" +msgstr "" + +#: application/views/view_log/qso.php:224 +msgid "Antenna Azimuth" +msgstr "" + +#: application/views/view_log/qso.php:231 +msgid "Antenna Elevation" +msgstr "" + +#: application/views/view_log/qso.php:373 +msgid "QSL Card has been sent via the bureau" +msgstr "" + +#: application/views/view_log/qso.php:375 +msgid "QSL Card has been sent via direct" +msgstr "" + +#: application/views/view_log/qso.php:377 +msgid "QSL Card has been sent electronically" +msgstr "" + +#: application/views/view_log/qso.php:379 +msgid "QSL Card has been sent via manager" +msgstr "" + +#: application/views/view_log/qso.php:381 +msgid "QSL Card has been sent" +msgstr "" + +#: application/views/view_log/qso.php:390 +msgid "QSL Card has been received via the bureau" +msgstr "" + +#: application/views/view_log/qso.php:392 +msgid "QSL Card has been received via direct" +msgstr "" + +#: application/views/view_log/qso.php:394 +msgid "QSL Card has been received electronically" +msgstr "" + +#: application/views/view_log/qso.php:396 +msgid "QSL Card has been received via manager" +msgstr "" + +#: application/views/view_log/qso.php:398 +msgid "QSL Card has been received" +msgstr "" + +#: application/views/view_log/qso.php:407 +msgid "This station uses LoTW." +msgstr "" + +#: application/views/view_log/qso.php:412 +#: application/views/view_log/qso.php:417 +#: application/views/view_log/qso.php:422 +#: application/views/view_log/qso.php:427 +msgid "This QSO was confirmed on" +msgstr "" + +#: application/views/view_log/qso.php:438 +msgid "More QSOs" +msgstr "" + +#: application/views/view_log/qso.php:506 +msgid "Details" +msgstr "" + +#: application/views/view_log/qso.php:633 +msgid "Uploaded QSL Card front image" +msgstr "" + +#: application/views/view_log/qso.php:638 +msgid "Upload QSL Card image" +msgstr "" + +#: application/views/view_log/qso.php:643 +msgid "Uploaded QSL Card back image" +msgstr "" + +#: application/views/view_log/qso.php:659 +msgid "Mark QSL Received (Electronic)" +msgstr "" + +#: application/views/view_log/qso.php:665 +msgid "Mark QSL Card Requested (Bureau)" +msgstr "" + +#: application/views/view_log/qso.php:667 +msgid "Mark QSL Card Requested (Direct)" +msgstr "" + +#: application/views/view_log/qso.php:682 +msgid "eQSL picture" +msgstr "" + +#: application/views/visitor/layout/footer.php:242 +msgid "CSV" +msgstr "" + +#: application/views/visitor/layout/header.php:74 +msgid "OQRS" +msgstr "" + +#: application/views/visitor/layout/header.php:82 +msgid "Visit Wavelog on Github" +msgstr "" + +#: application/views/visitor/layout/header.php:95 +msgid "Please enter a callsign!" +msgstr "" + +#: application/views/webadif/export.php:22 +msgid "" +"Here you can see and upload all QSOs which have not been previously uploaded " +"to QO-100 Dx Club." +msgstr "" + +#: application/views/webadif/export.php:33 +msgid "" +"You need to set a QO-100 Dx Club API key in your station profile. Only " +"station profiles with an API Key are displayed." +msgstr "" + +#: application/views/webadif/export.php:63 +msgid "" +"There are currently no outstanding QSOs that need to be uploaded to the " +"QO-100 Dx Club's API." +msgstr "" + +#: application/views/webadif/export.php:64 +msgid "Go ahead and turn on your QO-100 station!" +msgstr "" + +#: application/views/webadif/export.php:73 +#: application/views/webadif/export.php:113 +msgid "" +"None of your Logbooks are configured to export data to the QO-100 Dx Club's " +"API." +msgstr "" + +#: application/views/webadif/export.php:74 +#: application/views/webadif/export.php:114 +msgid "QO-100 Dx Club" +msgstr "" + +#: application/views/webadif/export.php:74 +#: application/views/webadif/export.php:114 +#, php-format +msgid "" +"To configure this feature, go to your profile page at the %s and %s Create " +"%s an API key." +msgstr "" + +#: application/views/webadif/export.php:75 +#: application/views/webadif/export.php:115 +#, php-format +msgid "" +"Then, navigate to your %s and configure your station with the key you have " +"created at the club." +msgstr "" + +#: application/views/webadif/export.php:83 +msgid "" +"Here you can mark as uploaded your QSOs which have not been previously " +"uploaded to QO-100 Dx Club." +msgstr "" + +#: application/views/webadif/export.php:107 +msgid "Mark QSOs as exported to QO-100 Dx Club" +msgstr "" + +#: application/views/webadif/mark_webadif.php:16 +msgid "The QSOs are marked as exported to QO-100 Dx Club." +msgstr "" + +#: application/views/widgets/oqrs.php:21 +msgid "Wavelog OQRS" +msgstr "" + +#: application/views/widgets/oqrs.php:76 +msgid "Wavelog OQRS Request" +msgstr "" + +#: application/views/widgets/oqrs.php:79 +#, php-format +msgid "Request a QSL card for your QSO with %s." +msgstr "" + +#: application/views/widgets/oqrs.php:83 +msgid "Your Callsign:" +msgstr "" + +#: application/views/widgets/oqrs.php:90 +msgid "Submit Request" +msgstr "" diff --git a/application/locale/sq/index.html b/application/locale/sq/index.html new file mode 100644 index 000000000..67f2d8864 --- /dev/null +++ b/application/locale/sq/index.html @@ -0,0 +1,11 @@ + + + + 403 Forbidden + + + +

Directory access is forbidden.

+ + + diff --git a/application/locale/sr/LC_MESSAGES/messages.mo b/application/locale/sr/LC_MESSAGES/messages.mo new file mode 100644 index 000000000..63536ccd1 Binary files /dev/null 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 new file mode 100644 index 000000000..2bb24c245 --- /dev/null +++ b/application/locale/sr/LC_MESSAGES/messages.po @@ -0,0 +1,12019 @@ +# WAVELOG PO FILE +# Copyright (c) 2024 Wavelog by DF2ET, DJ7NT, HB9HIL and LA8AJA. +# This file is distributed under the MIT licence. +# +# Fabian Berg <80885850+HB9HIL@users.noreply.github.com>, 2024. +# Dragan Đorđević <4o4a.dragan@gmail.com>, 2024. +# Fabian Berg , 2024. +msgid "" +msgstr "" +"Report-Msgid-Bugs-To: translations@wavelog.org\n" +"POT-Creation-Date: 2024-09-07 07:18+0000\n" +"PO-Revision-Date: 2024-09-05 09:30+0000\n" +"Last-Translator: Dragan Đorđević <4o4a.dragan@gmail.com>\n" +"Language-Team: Serbian \n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 5.7.1\n" + +#: application/controllers/Accumulated.php:12 +#: application/controllers/Activators.php:13 +#: application/controllers/Activatorsmap.php:13 +#: application/controllers/Adif.php:13 application/controllers/Awards.php:16 +#: application/controllers/Backup.php:13 application/controllers/Backup.php:26 +#: application/controllers/Backup.php:63 application/controllers/Band.php:15 +#: application/controllers/Bandmap.php:9 +#: application/controllers/Cabrillo.php:16 +#: application/controllers/Cabrillo.php:53 +#: application/controllers/Cabrillo.php:80 +#: application/controllers/Cabrillo.php:135 +#: application/controllers/Calltester.php:11 +#: application/controllers/Cfdexport.php:18 +#: application/controllers/Cfdexport.php:29 +#: application/controllers/Components.php:13 +#: application/controllers/Contestcalendar.php:15 +#: application/controllers/Contesting.php:14 +#: application/controllers/Cron.php:26 application/controllers/Cron.php:162 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: application/controllers/Distancerecords.php:11 +#: application/controllers/Distances.php:11 +#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29 +#: application/controllers/Dxatlas.php:51 +#: application/controllers/Dxatlas.php:108 +#: application/controllers/Dxcalendar.php:8 +#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23 +#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 +#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 +#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:353 +#: application/controllers/Eqsl.php:420 application/controllers/Eqsl.php:436 +#: application/controllers/Eqsl.php:497 application/controllers/Hamsat.php:13 +#: application/controllers/Kmlexport.php:18 +#: application/controllers/Kmlexport.php:33 +#: application/controllers/Labels.php:26 +#: application/controllers/Logbookadvanced.php:16 +#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 +#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 +#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 +#: application/controllers/Notes.php:10 application/controllers/Options.php:15 +#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 +#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 +#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 +#: application/controllers/Qso.php:9 application/controllers/Qso.php:19 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:600 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Reg1test.php:18 +#: application/controllers/Reg1test.php:63 +#: application/controllers/Reg1test.php:102 +#: application/controllers/Reg1test.php:130 +#: application/controllers/Reg1test.php:164 +#: application/controllers/Satellite.php:18 +#: application/controllers/Satellite.php:37 +#: application/controllers/Satellite.php:44 +#: application/controllers/Satellite.php:53 +#: application/controllers/Satellite.php:72 +#: application/controllers/Satellite.php:87 +#: application/controllers/Satellite.php:95 +#: application/controllers/Satellite.php:103 +#: application/controllers/Satellite.php:117 +#: application/controllers/Satellite.php:135 +#: application/controllers/Satellite.php:146 +#: application/controllers/Satellite.php:162 +#: application/controllers/Satellite.php:190 +#: application/controllers/Satellite.php:201 +#: application/controllers/Satellite.php:223 +#: application/controllers/Satellite.php:236 +#: application/controllers/Satellite.php:244 +#: application/controllers/Sattimers.php:9 +#: application/controllers/Search.php:13 +#: application/controllers/Simplefle.php:7 +#: application/controllers/Station.php:17 +#: application/controllers/Stationsetup.php:15 +#: application/controllers/Themes.php:17 +#: application/controllers/Timeline.php:10 +#: application/controllers/Timeplotter.php:11 +#: application/controllers/Update.php:24 application/controllers/Update.php:273 +#: application/controllers/Update.php:284 +#: application/controllers/Update.php:295 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 +#: application/controllers/User_options.php:9 +msgid "You're not allowed to do that!" +msgstr "Nije vam dozvoljeno da to uradite!" + +#: application/controllers/Accumulated.php:19 +#: application/views/interface_assets/header.php:152 +msgid "Accumulated Statistics" +msgstr "Zbirna satistika" + +#: application/controllers/Activated_gridmap.php:10 +#: application/views/activated_gridmap/index.php:5 +msgid "Activated Gridsquare Map" +msgstr "Mapa aktiviranih polja" + +#: application/controllers/Activated_gridmap.php:31 +#: application/controllers/Awards.php:919 +#: application/controllers/Awards.php:951 +#: application/controllers/Gridmap.php:31 +#: application/controllers/Visitor.php:385 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: application/views/visitor/layout/footer.php:22 +#: application/views/visitor/layout/header.php:68 +msgid "Gridsquares" +msgstr "Polja" + +#: application/controllers/Activated_gridmap.php:32 +#: application/controllers/Gridmap.php:32 +#: application/controllers/Visitor.php:386 +msgid "Gridsquares confirmed" +msgstr "Potvrđena polja" + +#: application/controllers/Activated_gridmap.php:33 +#: application/controllers/Gridmap.php:33 +#: application/controllers/Visitor.php:387 +msgid "Gridsquares not confirmed" +msgstr "Nepotvrđena polja" + +#: application/controllers/Activated_gridmap.php:34 +msgid "Total gridsquares activated" +msgstr "Ukupno aktiviranih polja" + +#: application/controllers/Activators.php:20 +#: application/views/activators/index.php:5 +#: application/views/interface_assets/header.php:142 +msgid "Gridsquare Activators" +msgstr "Aktivatori polja" + +#: application/controllers/Activatorsmap.php:17 +#: application/views/activators/index.php:2 +msgid "Activators Map" +msgstr "Mapa aktivatora" + +#: application/controllers/Adif.php:18 +msgid "valid date" +msgstr "važeći datum" + +#: application/controllers/Adif.php:20 +msgid "date incorrect" +msgstr "netačan datum" + +#: application/controllers/Adif.php:29 application/views/adif/import.php:24 +msgid "ADIF Export" +msgstr "ADIF izvoz" + +#: application/controllers/Adif.php:145 +#: application/views/interface_assets/header.php:388 +msgid "ADIF Import / Export" +msgstr "ADIF uvoz/izvoz" + +#: application/controllers/Adif.php:169 application/views/adif/import.php:21 +#: application/views/lotw/import.php:3 +msgid "ADIF Import" +msgstr "Uvoz ADIF" + +#: application/controllers/Adif.php:209 +msgid "Unsupported Filetype" +msgstr "Nepodržana vrsta datoteke" + +#: application/controllers/Adif.php:240 +#: application/views/adif/import_failed.php:12 +msgid "ADIF Import failed!" +msgstr "Uvoz ADIF podataka nije uspelo!" + +#: application/controllers/Adif.php:254 +msgid "Station Profile not valid for User" +msgstr "Profil stanice nije validan za ovog korisnika" + +#: application/controllers/Adif.php:261 +#: application/views/adif/import_success.php:12 +msgid "ADIF Imported" +msgstr "ADIF uvezen" + +#: application/controllers/Adif.php:272 +msgid "DCL Import" +msgstr "Uvoz DCL" + +#: application/controllers/Adif.php:328 +msgid "DCL Data Imported" +msgstr "DCL podaci uvezeni" + +#: application/controllers/Api.php:26 +msgid "API" +msgstr "API" + +#: application/controllers/Api.php:50 application/views/api/description.php:26 +msgid "API Description" +msgstr "Opis API" + +#: application/controllers/Api.php:51 +msgid "API Key is required. Do not change this field" +msgstr "Zahtevan je API ključ. Nemojte menjati ovo polje" + +#: application/controllers/Api.php:57 +msgid "Edit API Description" +msgstr "Uredite opis API" + +#: application/controllers/Api.php:69 +#, php-format +msgid "API Key %s description has been updated." +msgstr "Opis API ključa %s je ažuriran." + +#: application/controllers/Api.php:109 +#, php-format +msgid "API Key %s has been deleted" +msgstr "API ključ %s je izbrisan" + +#: application/controllers/Awards.php:22 +#: application/views/interface_assets/header.php:160 +#: application/views/qso/edit_ajax.php:35 +msgid "Awards" +msgstr "Diplome" + +#: application/controllers/Awards.php:92 application/controllers/Awards.php:172 +#: application/controllers/Awards.php:327 +#: application/controllers/Awards.php:375 +#: application/controllers/Awards.php:486 +#: application/controllers/Awards.php:503 +#: application/controllers/Awards.php:520 +#: application/controllers/Awards.php:591 +#: application/controllers/Awards.php:652 +#: application/controllers/Awards.php:714 +#: application/controllers/Awards.php:776 +#: application/controllers/Awards.php:856 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:939 +#: application/controllers/Awards.php:1140 +#: application/controllers/Awards.php:1639 +#: application/controllers/Awards.php:1779 +#: application/controllers/Awards.php:1908 +#, php-format +msgid "Awards - %s" +msgstr "Diplome - %s" + +#: application/controllers/Awards.php:92 +#: application/views/awards/dok/index.php:149 +#: application/views/bands/index.php:47 +#: application/views/contesting/index.php:53 +#: application/views/interface_assets/header.php:198 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/qso/edit_ajax.php:388 application/views/qso/index.php:264 +#: application/views/qso/index.php:518 application/views/user/edit.php:603 +#: application/views/view_log/qso.php:354 +msgid "DOK" +msgstr "DOK" + +#: application/controllers/Awards.php:172 application/views/awards/index.php:7 +#: application/views/bandmap/list.php:112 application/views/bands/index.php:48 +#: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 +#: application/views/dxcalendar/index.php:11 +#: application/views/interface_assets/header.php:166 +#: application/views/kml/index.php:47 +#: application/views/logbookadvanced/edit.php:7 +#: application/views/logbookadvanced/index.php:156 +#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/qslcarousel.php:35 +#: application/views/logbookadvanced/useroptions.php:82 +#: application/views/lookup/index.php:4 +#: application/views/lotw_views/index.php:36 +#: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 +#: application/views/search/cqzones_result.php:15 +#: application/views/search/result.php:27 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:33 +#: application/views/timeplotter/index.php:24 +msgid "DXCC" +msgstr "DXCC" + +#: application/controllers/Awards.php:251 +msgid "Awards - WAJA" +msgstr "Diplome - WAJA" + +#: application/controllers/Awards.php:327 application/views/bands/index.php:51 +#: application/views/interface_assets/header.php:214 +msgid "JCC" +msgstr "JCC" + +#: application/controllers/Awards.php:375 application/views/bands/index.php:57 +#: application/views/interface_assets/header.php:172 +msgid "VUCC" +msgstr "VUCC" + +#: application/controllers/Awards.php:405 +msgid "Log View - VUCC" +msgstr "Pregled loga - VUCC" + +#: application/controllers/Awards.php:453 +#: application/controllers/Distancerecords.php:59 +#: application/controllers/Timeline.php:105 +#: application/controllers/Timeline.php:108 +#: application/controllers/Timeline.php:111 +#: application/controllers/Timeline.php:114 +#: application/controllers/Timeline.php:117 +#: application/controllers/Timeline.php:120 +msgid "Log View" +msgstr "Pregled loga" + +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr " i opseg " + +#: application/controllers/Awards.php:457 +msgid " and sat " +msgstr " i satelit " + +#: application/controllers/Awards.php:460 +msgid " and orbit type " +msgstr " i vrsta orbite " + +#: application/controllers/Awards.php:464 +msgid " and propagation " +msgstr " . i propagacije " + +#: application/controllers/Awards.php:467 +msgid " and mode " +msgstr " i vrsta rada " + +#: application/controllers/Awards.php:470 +msgid " and " +msgstr " i " + +#: application/controllers/Awards.php:486 +#: application/controllers/Logbook.php:1289 +#: application/views/awards/index.php:8 application/views/bands/index.php:55 +#: application/views/dashboard/index.php:9 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/index.php:270 +#: application/views/logbookadvanced/useroptions.php:98 +#: application/views/lookup/index.php:7 +#: application/views/qslcard/searchresult.php:17 +#: application/views/qslcard/searchresult.php:33 +#: application/views/qslcard/searchresult.php:49 +#: application/views/qslcard/searchresult.php:65 +#: application/views/qslcard/searchresult.php:81 +#: application/views/qso/components/previous_contacts.php:82 +#: application/views/qso/edit_ajax.php:363 +#: application/views/search/search_result_ajax.php:9 +#: application/views/station_profile/edit.php:243 +#: application/views/user/edit.php:234 application/views/user/edit.php:256 +#: application/views/user/edit.php:278 application/views/user/edit.php:300 +#: application/views/user/edit.php:323 +#: application/views/view_log/partial/log_ajax.php:9 +#: application/views/visitor/index.php:21 +msgid "SOTA" +msgstr "SOTA" + +#: application/controllers/Awards.php:503 +#: application/controllers/Logbook.php:1290 +#: application/views/bands/index.php:60 +#: application/views/dashboard/index.php:10 +#: application/views/interface_assets/header.php:176 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/index.php:290 +#: application/views/logbookadvanced/useroptions.php:134 +#: application/views/lookup/index.php:9 +#: application/views/qso/components/previous_contacts.php:83 +#: application/views/qso/edit_ajax.php:368 +#: application/views/search/search_result_ajax.php:10 +#: application/views/station_profile/edit.php:256 +#: application/views/user/edit.php:235 application/views/user/edit.php:257 +#: application/views/user/edit.php:279 application/views/user/edit.php:301 +#: application/views/user/edit.php:324 +#: application/views/view_log/partial/log_ajax.php:10 +msgid "WWFF" +msgstr "WWFF" + +#: application/controllers/Awards.php:520 +#: application/controllers/Logbook.php:1291 +#: application/views/bands/index.php:52 +#: application/views/dashboard/index.php:11 +#: application/views/interface_assets/header.php:186 +#: application/views/logbookadvanced/edit.php:13 +#: application/views/logbookadvanced/index.php:274 +#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/useroptions.php:106 +#: application/views/qso/components/previous_contacts.php:84 +#: application/views/qso/edit_ajax.php:373 +#: application/views/search/search_result_ajax.php:11 +#: application/views/station_profile/edit.php:269 +#: application/views/user/edit.php:236 application/views/user/edit.php:258 +#: application/views/user/edit.php:280 application/views/user/edit.php:302 +#: application/views/user/edit.php:325 +#: application/views/view_log/partial/log_ajax.php:11 +msgid "POTA" +msgstr "POTA" + +#: application/controllers/Awards.php:591 +msgid "CQ Magazine WAZ" +msgstr "CQ Magazin WAZ" + +#: application/controllers/Awards.php:652 +#: application/views/accumulate/index.php:54 +#: application/views/timeline/index.php:45 +msgid "Worked All States (WAS)" +msgstr "Worked All States (WAS)" + +#: application/controllers/Awards.php:714 application/views/bands/index.php:53 +#: application/views/interface_assets/header.php:192 +msgid "RAC" +msgstr "RAC" + +#: application/controllers/Awards.php:776 application/views/bands/index.php:49 +msgid "H26" +msgstr "H26" + +#: application/controllers/Awards.php:856 +msgid "IOTA (Island On The Air)" +msgstr "IOTA (Island On The Air - Ostrva u eteru)" + +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 +#: application/views/interface_assets/header.php:234 +msgid "US Counties" +msgstr "US Okruzi" + +#: application/controllers/Awards.php:896 +msgid "Log View - Counties" +msgstr "Pregled loga - Okruzi" + +#: application/controllers/Awards.php:903 +msgid "Awards - " +msgstr "Diplome - " + +#: application/controllers/Awards.php:920 +#: application/controllers/Awards.php:952 +msgid "Gridsquares worked" +msgstr "Rađenih polja" + +#: application/controllers/Awards.php:921 +#: application/controllers/Awards.php:953 +msgid "Gridsquares confirmed on LoTW" +msgstr "Polja potvrđenih preko LoTW" + +#: application/controllers/Awards.php:922 +#: application/controllers/Awards.php:954 +msgid "Gridsquares confirmed by paper QSL" +msgstr "Polja potvrđenih QSL kartama" + +#: application/controllers/Awards.php:939 +msgid "Fred Fish Memorial Award (FFMA)" +msgstr "Fred Fish Memorial Award (FFMA)" + +#: application/controllers/Awards.php:1140 +#: application/views/interface_assets/header.php:170 +#: application/views/logbookadvanced/useroptions.php:138 +msgid "SIG" +msgstr "SIG" + +#: application/controllers/Awards.php:1158 +msgid "Awards - SIG - " +msgstr "Diplome - SIG - " + +#: application/controllers/Awards.php:1779 +#: application/views/awards/itu/index.php:20 +msgid "ITU Zones" +msgstr "ITU Zone" + +#: application/controllers/Awards.php:1908 +#: application/views/awards/wac/index.php:8 +#: application/views/interface_assets/header.php:174 +msgid "Worked All Continents (WAC)" +msgstr "" + +#: application/controllers/Backup.php:15 application/views/backup/main.php:14 +#: application/views/interface_assets/header.php:284 +msgid "Backup" +msgstr "Rezervna kopija" + +#: application/controllers/Backup.php:50 +msgid "ADIF - Backup" +msgstr "ADIF - Rezervna kopija" + +#: application/controllers/Backup.php:84 +msgid "Notes - Backup" +msgstr "Napomene - Rezervna kopija" + +#: application/controllers/Band.php:25 application/views/bands/index.php:28 +#: application/views/bands/index.php:32 +#: application/views/interface_assets/header.php:383 +#: application/views/statistics/index.php:16 +#: application/views/statistics/index.php:56 +msgid "Bands" +msgstr "Opsezi" + +#: application/controllers/Band.php:40 application/controllers/Mode.php:41 +msgid "Create Mode" +msgstr "Kreiraj vrstu rada" + +#: application/controllers/Band.php:59 application/views/bands/index.php:150 +msgid "Edit Band" +msgstr "Uredi opseg" + +#: application/controllers/Bandmap.php:28 +#: application/controllers/Bandmap.php:69 +#: application/controllers/Options.php:145 +#: application/controllers/Options.php:156 +#: application/views/options/sidebar.php:10 +msgid "DXCluster" +msgstr "DX klaster" + +#: application/controllers/Cabrillo.php:20 +msgid "Export Cabrillo" +msgstr "Izvezi Cabrillo" + +#: application/controllers/Cfdexport.php:20 +#: application/views/interface_assets/header.php:402 +msgid "CFD Export" +msgstr "Izvezi CFD" + +#: application/controllers/Clublog.php:15 application/controllers/Cron.php:12 +#: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19 +#: application/controllers/Lotw.php:28 application/controllers/Qrz.php:14 +#: application/controllers/Update.php:16 +msgid "Maintenance Mode is active. Try again later." +msgstr "Aktivan je mod održavanja. Pokušajte ponovo kasnije." + +#: application/controllers/Clublog.php:44 +#: application/controllers/Clublog.php:66 +msgid "No user has configured Clublog." +msgstr "Nema korisnika sa podešenim Clublog." + +#: application/controllers/Contestcalendar.php:19 +#: application/views/interface_assets/header.php:251 +msgid "Contest Calendar" +msgstr "Takmičarski kalendar" + +#: application/controllers/Contesting.php:47 +#: application/views/contesting/index.php:3 +msgid "Contest Logging" +msgstr "Takmičarski dnevnik" + +#: application/controllers/Contesting.php:113 +#: application/views/interface_assets/header.php:278 +msgid "Contests" +msgstr "Takmičenja" + +#: application/controllers/Contesting.php:127 +msgid "Update Contest" +msgstr "Ažuriraj takmičenje" + +#: application/controllers/Continents.php:25 +#: application/views/awards/dxcc/index.php:83 +#: application/views/awards/iota/index.php:57 +#: application/views/interface_assets/header.php:156 +msgid "Continents" +msgstr "Kontinenti" + +#: application/controllers/Cron.php:38 +#: application/views/interface_assets/header.php:288 +msgid "Cron Manager" +msgstr "Cron menadžer" + +#: application/controllers/Cron.php:154 application/views/cron/edit.php:5 +msgid "Edit Cronjob" +msgstr "Uredi cronjob" + +#: application/controllers/Cron.php:274 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "OK" + +#: application/controllers/Cron.php:278 +#, php-format +msgid "" +"Last run occurred more than %s seconds ago.%sPlease check your master cron! " +"It should run every minute (* * * * *)." +msgstr "" +"Posljednji put se desilo pre više od %s sekundi. %sMolimo proverite vaš " +"master kron! Trebalo bi da radi svakog minuta (* * * * *)." + +#: application/controllers/Cron.php:281 +#, php-format +msgid "" +"Last run occurred more than %s minutes ago.%sSeems like your Mastercron " +"isn't running!%sIt should run every minute (* * * * *)." +msgstr "" +"Posljednji put se desilo pre više od %s minuta. %sMolimo proverite vaš " +"master kron! %sTrebalo bi da radi svakog minuta (* * * * *)." + +#: application/controllers/Cron.php:286 application/views/cron/index.php:29 +msgctxt "Master Cron" +msgid "Not running" +msgstr "Ne izvršava se" + +#: application/controllers/Csv.php:20 application/views/csv/index.php:3 +#: application/views/interface_assets/header.php:396 +msgid "SOTA CSV Export" +msgstr "Izvoz SOTA CSV" + +#: application/controllers/Dashboard.php:123 +#: application/controllers/Visitor.php:134 +msgid "Dashboard" +msgstr "Kontrolna tabla" + +#: application/controllers/Dayswithqso.php:18 +msgid "Number of days with QSOs each year" +msgstr "Broj dana sa QSO-om za svaku godinu" + +#: application/controllers/Debug.php:93 +msgid "Debug" +msgstr "Debug" + +#: application/controllers/Debug.php:132 +msgid "Migrate data now" +msgstr "Migrirajte sada podatke" + +#: application/controllers/Debug.php:135 +msgid "Migration already done. Run again?" +msgstr "Migracija je već urađena. Uradite ponovo?" + +#: application/controllers/Debug.php:139 +msgid "No data to migrate" +msgstr "Nema podataka za migraciju" + +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 +msgid "No migration possible" +msgstr "Migracija nije moguća" + +#: application/controllers/Debug.php:213 +msgid "Wavelog was updated successfully!" +msgstr "Wavelog je uspešno ažuriran!" + +#: application/controllers/Debug.php:231 +msgid "Selfupdate() not available. Check the Error Log." +msgstr "Selfupdate() nije dostupan. Proverite Error log." + +#: application/controllers/Debug.php:275 +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 "" +"Migracija datoteka je bila uspešna, ali molimo vas da proverite i ručno. Ako " +"izgleda da je sve u redu možete obrisati foldere 'assets/qslcard' i 'images/" +"eqsl_card_images'." + +#: application/controllers/Debug.php:278 +msgid "File Migration failed. Please check the Error Log." +msgstr "Migracija datoteka je bila neuspešna. Molimo proverite Error log." + +#: application/controllers/Distancerecords.php:42 +#: application/controllers/Distancerecords.php:59 +#: application/views/interface_assets/header.php:146 +msgid "Satellite Distance Records" +msgstr "Rakordi udaljenosti za veze preko satelita" + +#: application/controllers/Distances.php:17 +#: application/views/distances/index.php:5 +#: application/views/distances/index.php:8 +#: application/views/interface_assets/header.php:144 +msgid "Distances Worked" +msgstr "Rađena rastojanja" + +#: application/controllers/Distances.php:83 +#: application/views/distances/index.php:15 +msgid "QSOs with" +msgstr "QSOi sa" + +#: application/controllers/Distances.php:83 +msgid "and band" +msgstr "i opseg" + +#: application/controllers/Distances.php:83 +msgid "and propagation" +msgstr "i propragacije" + +#: application/controllers/Dxatlas.php:19 +#: application/views/interface_assets/header.php:394 +msgid "DX Atlas Gridsquare Export" +msgstr "Izvoz polja za DX Atlas" + +#: application/controllers/Dxcalendar.php:10 +#: application/views/interface_assets/header.php:249 +msgid "DX Calendar" +msgstr "DX kalendar" + +#: application/controllers/Eqsl.php:34 +#: application/views/dashboard/index.php:325 +#: application/views/eqslcard/index.php:5 +#: application/views/visitor/index.php:306 +msgid "eQSL Cards" +msgstr "eQSL karte" + +#: application/controllers/Eqsl.php:124 +msgid "eQSL Import" +msgstr "Uvoz eQSL" + +#: application/controllers/Eqsl.php:134 +msgid "eQSL Import Information" +msgstr "Informacije o eQSL uvozu" + +#: application/controllers/Eqsl.php:158 +msgid "eQSL QSO Upload" +msgstr "eQSL učitavanje QSO" + +#: application/controllers/Eqsl.php:424 +msgid "eQSL Tools" +msgstr "eQSL alati" + +#: application/controllers/Eqsl.php:472 +msgid " / Errors: " +msgstr " / Greške: " + +#: application/controllers/Eqsl.php:472 +msgid "Successfully downloaded: " +msgstr "Uspešno preuzeto: " + +#: application/controllers/Eqsl.php:481 +msgid "eQSL Card Image Download" +msgstr "Preuzimanje slika eQSL karata" + +#: application/controllers/Gridmap.php:10 +#: application/views/interface_assets/header.php:138 +msgid "Gridsquare Map" +msgstr "Mapa polja" + +#: application/controllers/Gridmap.php:34 +#: application/controllers/Visitor.php:388 +msgid "Total gridsquares worked" +msgstr "Ukupno rađenih polja" + +#: application/controllers/Hamsat.php:59 +msgid "Hamsat - Satellite Roving" +msgstr "Hamsat - Satelitski Roveri" + +#: application/controllers/Hrdlog.php:71 +#, php-format +msgid "%d QSO is now uploaded to HRDlog" +msgid_plural "%d QSOs are now uploaded to HRDlog" +msgstr[0] "%d QSO je sada u učitan u HRDlog" +msgstr[1] "%d QSOa su sada učitana u HRDlog" +msgstr[2] "%d QSOova su sada učitani u HRDlog" + +#: application/controllers/Hrdlog.php:76 +msgid "No QSOs found to upload." +msgstr "Nisu pronađeni QSO za učitavanje." + +#: application/controllers/Kmlexport.php:24 +#: application/views/interface_assets/header.php:392 +#: application/views/kml/index.php:3 +msgid "KML Export" +msgstr "Izvoz KML" + +#: application/controllers/Labels.php:40 application/views/labels/index.php:30 +msgid "QSL Card Labels" +msgstr "Oznake na QSL karatama" + +#: application/controllers/Labels.php:71 +msgid "Create Label Type" +msgstr "Kreirajte vrstu oznake" + +#: application/controllers/Labels.php:78 application/controllers/Labels.php:406 +#: application/views/labels/create.php:22 application/views/labels/edit.php:22 +msgid "Label Name" +msgstr "Naziv oznake" + +#: application/controllers/Labels.php:79 application/controllers/Labels.php:407 +#: application/views/labels/create.php:28 application/views/labels/edit.php:28 +#: application/views/labels/index.php:76 +msgid "Paper Type" +msgstr "Vrsta papira" + +#: application/controllers/Labels.php:80 application/controllers/Labels.php:408 +#: application/views/labels/index.php:42 application/views/labels/index.php:77 +msgid "Measurement" +msgstr "Mere" + +#: application/controllers/Labels.php:81 application/controllers/Labels.php:409 +msgid "Top Margin" +msgstr "Gornja margina" + +#: application/controllers/Labels.php:82 application/controllers/Labels.php:410 +msgid "Left Margin" +msgstr "Leva margina" + +#: application/controllers/Labels.php:83 application/controllers/Labels.php:411 +msgid "QSLs Horizontally" +msgstr "Horizontalne QSL karte" + +#: application/controllers/Labels.php:84 application/controllers/Labels.php:412 +msgid "QSLs Vertically" +msgstr "Vertikalne QSL karte" + +#: application/controllers/Labels.php:85 application/controllers/Labels.php:413 +msgid "Horizontal Space" +msgstr "Horizontalni razmak" + +#: application/controllers/Labels.php:86 application/controllers/Labels.php:414 +msgid "Vertical Space" +msgstr "Vertikalni razmak" + +#: application/controllers/Labels.php:87 application/controllers/Labels.php:415 +msgid "Label width" +msgstr "Širina oznake" + +#: application/controllers/Labels.php:88 application/controllers/Labels.php:416 +msgid "Label height" +msgstr "Visina oznake" + +#: application/controllers/Labels.php:89 application/controllers/Labels.php:417 +msgid "Size of Font" +msgstr "Veličina fonta" + +#: application/controllers/Labels.php:90 application/controllers/Labels.php:418 +msgid "Number of QSOs on label" +msgstr "Broj QSO na oznaci" + +#: application/controllers/Labels.php:115 +msgid "Create Paper Type" +msgstr "Kreirajte vrstu papira" + +#: application/controllers/Labels.php:119 +#: application/controllers/Labels.php:465 +msgid "Paper Name" +msgstr "Naziv papira" + +#: application/controllers/Labels.php:120 +#: application/controllers/Labels.php:466 +msgid "Paper Width" +msgstr "Širina papira" + +#: application/controllers/Labels.php:121 +#: application/controllers/Labels.php:467 +msgid "Paper Height" +msgstr "Visina papira" + +#: application/controllers/Labels.php:132 +#: application/controllers/Labels.php:475 +msgid "" +"Your paper could not be saved. Remember that it can't have the same name as " +"existing paper types." +msgstr "" +"Vaš papir ne može biti sačuvan. Upamtite da ne može imati isto ime kao " +"postojeće vrste papira." + +#: application/controllers/Labels.php:205 +#: application/controllers/Labels.php:208 +msgid "You need to assign a paperType to the label before printing" +msgstr "Morate doznačiti vrstu papira oznaci prije štampanja" + +#: application/controllers/Labels.php:215 +#: application/controllers/Labels.php:218 +msgid "You need to create a label and set it to be used for print." +msgstr "" +"Trebate kreirati oznaku i podesiti je da bude korištena prilikom štampe." + +#: application/controllers/Labels.php:225 +#: application/controllers/Labels.php:228 +msgid "" +"Something went wrong! The label could not be generated. Check label size and " +"font size." +msgstr "" +"Nešto je bio pogrešno! Oznaka nije mogla biti generisana. Proverite veličinu " +"oznake i veličinu fonta." + +#: application/controllers/Labels.php:251 +msgid "0 QSOs found for print!" +msgstr "0 QSO je pronađeno za štampu!" + +#: application/controllers/Labels.php:395 +msgid "Edit Label" +msgstr "Uredite oznaku" + +#: application/controllers/Labels.php:424 +msgid "Label was saved." +msgstr "Oznaka je sačuvana." + +#: application/controllers/Labels.php:432 +msgid "Label was deleted." +msgstr "Oznaka je obrisana." + +#: application/controllers/Labels.php:454 +msgid "Edit Paper" +msgstr "Uredite papir" + +#: application/controllers/Labels.php:479 +msgid "Paper was saved." +msgstr "Papir je sačuvan." + +#: application/controllers/Labels.php:492 +msgid "Paper was deleted." +msgstr "Papir je obrisan." + +#: application/controllers/Logbook.php:37 +msgid "" +"No logbooks were found. You need to define a logbook under Station Logbooks! " +"Do it here:" +msgstr "" +"Nisu pronađeni dnevnici. Morate definisati dnevnik pod Stanični dnevnici! " +"Uradite to ovde:" + +#: application/controllers/Logbook.php:37 +#: application/views/stationsetup/stationsetup.php:18 +msgid "Station Logbooks" +msgstr "Stanični dnevnici" + +#: application/controllers/Logbook.php:60 +#: application/views/interface_assets/header.php:97 +#: application/views/logbookadvanced/useroptions.php:4 +#: application/views/view_log/index.php:11 +msgid "Logbook" +msgstr "Dnevnik" + +#: application/controllers/Logbook.php:657 +#: application/controllers/Logbook.php:672 +#: application/views/activated_gridmap/index.php:58 +#: application/views/awards/dok/index.php:55 +#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/helvetia/index.php:55 +#: application/views/awards/jcc/index.php:52 +#: application/views/awards/rac/index.php:47 +#: application/views/awards/vucc/band.php:15 +#: application/views/awards/wab/index.php:72 +#: application/views/awards/waja/index.php:55 +#: application/views/awards/was/index.php:55 +#: application/views/gridmap/index.php:101 +#: application/views/logbookadvanced/index.php:596 +#: application/views/logbookadvanced/useroptions.php:62 +#: application/views/oqrs/qsolist.php:12 +#: application/views/qslprint/qslprint.php:28 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:16 +#: application/views/qso/edit_ajax.php:37 application/views/qso/index.php:42 +#: application/views/search/result_search.php:13 +#: application/views/timeline/index.php:56 application/views/user/edit.php:562 +#: application/views/user/edit.php:649 +msgid "QSL" +msgstr "QSL" + +#: application/controllers/Logbook.php:660 +#: application/views/activated_gridmap/index.php:66 +#: application/views/awards/cq/index.php:60 +#: application/views/awards/dok/index.php:59 +#: application/views/awards/dxcc/index.php:65 +#: application/views/awards/helvetia/index.php:59 +#: application/views/awards/itu/index.php:60 +#: application/views/awards/jcc/index.php:56 +#: application/views/awards/rac/index.php:51 +#: application/views/awards/vucc/band.php:16 +#: application/views/awards/wab/index.php:80 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:260 +#: application/views/gridmap/index.php:109 +#: application/views/logbookadvanced/useroptions.php:66 +#: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 +#: application/views/oqrs/qsolist.php:174 +#: application/views/qslprint/qsolist.php:21 +#: application/views/qslprint/qsolist.php:167 +#: application/views/qslprint/qsolist.php:182 +#: application/views/qso/edit_ajax.php:411 +#: application/views/search/result_search.php:22 +#: application/views/search/search_result_ajax.php:298 +#: application/views/search/search_result_ajax.php:313 +#: application/views/timeline/index.php:60 application/views/user/edit.php:563 +#: application/views/user/edit.php:659 application/views/view_log/qso.php:411 +msgid "LoTW" +msgstr "LoTW" + +#: application/controllers/Logbook.php:663 +#: application/views/activated_gridmap/index.php:74 +#: application/views/awards/cq/index.php:64 +#: application/views/awards/dok/index.php:63 +#: application/views/awards/dxcc/index.php:69 +#: application/views/awards/helvetia/index.php:63 +#: application/views/awards/itu/index.php:64 +#: application/views/awards/jcc/index.php:60 +#: application/views/awards/rac/index.php:55 +#: application/views/awards/wab/index.php:88 +#: application/views/awards/wac/index.php:52 +#: application/views/awards/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:260 +#: application/views/gridmap/index.php:117 +#: application/views/logbookadvanced/useroptions.php:70 +#: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:143 +#: application/views/qslprint/qsolist.php:18 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:151 +#: application/views/qso/edit_ajax.php:408 +#: application/views/search/result_search.php:16 +#: application/views/search/search_result_ajax.php:260 +#: application/views/search/search_result_ajax.php:273 +#: application/views/station_profile/edit.php:305 +#: application/views/timeline/index.php:64 application/views/user/edit.php:564 +#: application/views/user/edit.php:667 application/views/user/edit.php:731 +msgid "eQSL" +msgstr "eQSL" + +#: application/controllers/Logbook.php:669 +#: application/views/awards/dok/index.php:71 +#: application/views/awards/dxcc/index.php:77 +#: application/views/awards/jcc/index.php:68 +#: application/views/awards/wab/index.php:104 +#: application/views/awards/waja/index.php:71 +#: application/views/logbookadvanced/useroptions.php:74 +#: application/views/search/search_result_ajax.php:124 +#: application/views/station_profile/edit.php:352 +#: application/views/timeline/index.php:68 +#: application/views/update/index.php:20 application/views/user/edit.php:566 +#: application/views/user/edit.php:683 +#: application/views/view_log/partial/log_ajax.php:85 +#: application/views/view_log/qso.php:426 +msgid "Clublog" +msgstr "Clublog" + +#: application/controllers/Logbook.php:1284 +#: application/controllers/Radio.php:49 +#: application/views/accumulate/index.php:31 +#: application/views/activated_gridmap/index.php:39 +#: application/views/adif/dcl_success.php:33 +#: application/views/awards/cq/index.php:88 +#: application/views/awards/dok/index.php:91 +#: application/views/awards/dxcc/index.php:162 +#: application/views/awards/helvetia/index.php:87 +#: application/views/awards/iota/index.php:105 +#: application/views/awards/itu/index.php:88 +#: application/views/awards/jcc/index.php:88 +#: application/views/awards/rac/index.php:79 +#: application/views/awards/sig/qso_list.php:12 +#: application/views/awards/wab/index.php:53 +#: application/views/awards/wac/index.php:110 +#: application/views/awards/waja/index.php:91 +#: application/views/awards/was/index.php:87 +#: application/views/components/hamsat/table.php:30 +#: application/views/contesting/index.php:108 +#: application/views/contesting/index.php:250 +#: application/views/continents/index.php:39 application/views/csv/index.php:42 +#: application/views/dashboard/index.php:4 +#: application/views/debug/index.php:548 +#: 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/logbookadvanced/edit.php:11 +#: application/views/logbookadvanced/index.php:181 +#: application/views/logbookadvanced/index.php:572 +#: application/views/logbookadvanced/qslcarousel.php:32 +#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/mode/index.php:28 +#: application/views/oqrs/notinlogform.php:11 +#: application/views/oqrs/qsolist.php:9 application/views/oqrs/request.php:18 +#: application/views/oqrs/request_grouped.php:11 +#: application/views/oqrs/showrequests.php:84 +#: application/views/public_search/result.php:15 +#: application/views/qslcard/index.php:29 +#: application/views/qslcard/searchresult.php:12 +#: application/views/qslcard/searchresult.php:28 +#: application/views/qslcard/searchresult.php:44 +#: application/views/qslcard/searchresult.php:60 +#: application/views/qslcard/searchresult.php:76 +#: application/views/qslprint/qslprint.php:24 +#: application/views/qslprint/qsolist.php:9 +#: application/views/qso/components/previous_contacts.php:77 +#: application/views/qso/edit_ajax.php:119 application/views/qso/index.php:136 +#: application/views/satellite/index.php:24 +#: application/views/search/cqzones_result.php:10 +#: application/views/search/lotw_unconfirmed_result.php:8 +#: application/views/search/result_search.php:7 +#: application/views/search/search_result_ajax.php:4 +#: application/views/simplefle/index.php:150 +#: application/views/statistics/custom.php:60 +#: application/views/statistics/custom_result.php:62 +#: application/views/statistics/custom_result.php:88 +#: application/views/statistics/index.php:15 +#: application/views/statistics/index.php:20 +#: application/views/statistics/index.php:53 +#: application/views/timeline/index.php:19 application/views/user/edit.php:229 +#: application/views/user/edit.php:251 application/views/user/edit.php:273 +#: application/views/user/edit.php:295 application/views/user/edit.php:318 +#: application/views/view_log/partial/log.php:9 +#: application/views/view_log/partial/log_ajax.php:4 +#: application/views/view_log/qso.php:107 application/views/visitor/index.php:6 +#: application/views/widgets/qsos.php:29 +msgid "Mode" +msgstr "Vrsta rada" + +#: application/controllers/Logbook.php:1285 +#: application/views/awards/pota/index.php:36 +#: application/views/awards/wwff/index.php:36 +#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:251 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/useroptions.php:38 +#: application/views/qslcard/searchresult.php:13 +#: application/views/qslcard/searchresult.php:29 +#: application/views/qslcard/searchresult.php:45 +#: application/views/qslcard/searchresult.php:61 +#: application/views/qslcard/searchresult.php:77 +#: application/views/qslprint/qslprint.php:26 +#: application/views/qslprint/qsolist.php:11 +#: application/views/qso/components/previous_contacts.php:78 +#: application/views/qso/edit_ajax.php:142 application/views/qso/index.php:177 +#: application/views/search/search_result_ajax.php:5 +#: application/views/simplefle/index.php:151 +#: application/views/user/edit.php:230 application/views/user/edit.php:252 +#: application/views/user/edit.php:274 application/views/user/edit.php:296 +#: application/views/user/edit.php:319 +#: application/views/view_log/partial/log.php:10 +#: application/views/view_log/partial/log_ajax.php:5 +#: application/views/view_log/qso.php:112 application/views/visitor/index.php:9 +msgid "RST (S)" +msgstr "RST (S)" + +#: application/controllers/Logbook.php:1286 +#: application/views/awards/pota/index.php:37 +#: application/views/awards/wwff/index.php:37 +#: application/views/contesting/index.php:189 +#: application/views/contesting/index.php:252 +#: application/views/logbookadvanced/index.php:578 +#: application/views/logbookadvanced/useroptions.php:42 +#: application/views/qslcard/searchresult.php:14 +#: application/views/qslcard/searchresult.php:30 +#: application/views/qslcard/searchresult.php:46 +#: application/views/qslcard/searchresult.php:62 +#: application/views/qslcard/searchresult.php:78 +#: application/views/qslprint/qslprint.php:27 +#: application/views/qslprint/qsolist.php:12 +#: application/views/qso/components/previous_contacts.php:79 +#: application/views/qso/edit_ajax.php:147 application/views/qso/index.php:182 +#: application/views/search/search_result_ajax.php:6 +#: application/views/simplefle/index.php:152 +#: application/views/user/edit.php:231 application/views/user/edit.php:253 +#: application/views/user/edit.php:275 application/views/user/edit.php:297 +#: application/views/user/edit.php:320 +#: application/views/view_log/partial/log.php:11 +#: application/views/view_log/partial/log_ajax.php:6 +#: application/views/view_log/qso.php:117 +#: application/views/visitor/index.php:12 +msgid "RST (R)" +msgstr "RST (R)" + +#: application/controllers/Logbook.php:1287 +#: application/views/dashboard/index.php:7 +#: application/views/qslcard/searchresult.php:15 +#: application/views/qslcard/searchresult.php:31 +#: application/views/qslcard/searchresult.php:47 +#: application/views/qslcard/searchresult.php:63 +#: application/views/qslcard/searchresult.php:79 +#: application/views/qso/components/previous_contacts.php:80 +#: application/views/search/result_search.php:11 +#: application/views/search/search_result_ajax.php:7 +#: application/views/stationsetup/stationsetup.php:124 +#: application/views/statistics/custom_result.php:92 +#: application/views/timeline/index.php:151 application/views/user/edit.php:232 +#: application/views/user/edit.php:254 application/views/user/edit.php:276 +#: application/views/user/edit.php:298 application/views/user/edit.php:321 +#: application/views/view_log/partial/log.php:13 +#: application/views/view_log/partial/log_ajax.php:7 +#: application/views/view_log/qso.php:238 +#: application/views/view_log/qso.php:531 +#: application/views/visitor/index.php:15 +msgid "Country" +msgstr "Zemlja" + +#: application/controllers/Logbook.php:1288 +#: application/views/awards/iota/index.php:169 +#: application/views/bands/index.php:50 application/views/dashboard/index.php:8 +#: application/views/interface_assets/header.php:184 +#: application/views/logbookadvanced/edit.php:9 +#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:620 +#: application/views/logbookadvanced/qslcarousel.php:38 +#: application/views/logbookadvanced/useroptions.php:102 +#: application/views/lookup/index.php:6 +#: application/views/qslcard/searchresult.php:16 +#: application/views/qslcard/searchresult.php:32 +#: application/views/qslcard/searchresult.php:48 +#: application/views/qslcard/searchresult.php:64 +#: application/views/qslcard/searchresult.php:80 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/edit_ajax.php:345 +#: application/views/search/search_result_ajax.php:8 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:235 application/views/user/edit.php:233 +#: application/views/user/edit.php:255 application/views/user/edit.php:277 +#: application/views/user/edit.php:299 application/views/user/edit.php:322 +#: application/views/view_log/partial/log_ajax.php:8 +#: application/views/visitor/index.php:18 +msgid "IOTA" +msgstr "IOTA" + +#: application/controllers/Logbook.php:1292 +#: application/views/awards/counties/details.php:12 +#: application/views/awards/counties/index.php:20 +#: application/views/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 +#: application/views/contesting/index.php:56 +#: application/views/dashboard/index.php:12 +#: application/views/logbookadvanced/edit.php:21 +#: application/views/logbookadvanced/edit.php:66 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:611 +#: application/views/logbookadvanced/qslcarousel.php:36 +#: application/views/logbookadvanced/useroptions.php:86 +#: application/views/qslcard/searchresult.php:18 +#: application/views/qslcard/searchresult.php:34 +#: application/views/qslcard/searchresult.php:50 +#: application/views/qslcard/searchresult.php:66 +#: application/views/qslcard/searchresult.php:82 +#: application/views/qso/components/previous_contacts.php:85 +#: application/views/search/search_result_ajax.php:12 +#: application/views/timeline/index.php:210 application/views/user/edit.php:237 +#: application/views/user/edit.php:259 application/views/user/edit.php:281 +#: application/views/user/edit.php:303 application/views/user/edit.php:326 +#: application/views/view_log/partial/log_ajax.php:12 +#: application/views/visitor/index.php:24 +msgid "State" +msgstr "Pokrajina" + +#: application/controllers/Logbook.php:1293 +#: application/views/activated_gridmap/index.php:106 +#: application/views/awards/ffma/index.php:34 +#: application/views/awards/gridmaster/index.php:33 +#: application/views/awards/vucc/band.php:12 +#: application/views/contesting/index.php:17 +#: application/views/contesting/index.php:257 +#: application/views/dashboard/index.php:13 +#: application/views/distancerecords/index.php:20 +#: application/views/gridmap/index.php:152 +#: application/views/labels/index.php:125 +#: application/views/logbookadvanced/edit.php:8 +#: application/views/logbookadvanced/index.php:10 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/qslcarousel.php:39 +#: application/views/logbookadvanced/useroptions.php:126 +#: application/views/lookup/index.php:5 +#: application/views/qslcard/searchresult.php:19 +#: application/views/qslcard/searchresult.php:35 +#: application/views/qslcard/searchresult.php:51 +#: application/views/qslcard/searchresult.php:67 +#: application/views/qslcard/searchresult.php:83 +#: application/views/qso/components/previous_contacts.php:86 +#: application/views/qso/edit_ajax.php:156 application/views/qso/index.php:279 +#: application/views/satellite/pass.php:28 +#: application/views/search/cqzones_result.php:12 +#: application/views/search/result.php:33 +#: application/views/search/search_result_ajax.php:13 +#: application/views/simplefle/index.php:153 +#: application/views/stationsetup/stationsetup.php:125 +#: application/views/timeline/index.php:290 application/views/user/edit.php:130 +#: application/views/user/edit.php:238 application/views/user/edit.php:260 +#: application/views/user/edit.php:282 application/views/user/edit.php:304 +#: application/views/user/edit.php:327 application/views/user/profile.php:34 +#: application/views/view_log/partial/log_ajax.php:13 +#: application/views/view_log/qso.php:518 +#: application/views/visitor/index.php:27 +msgid "Gridsquare" +msgstr "Polje" + +#: application/controllers/Logbook.php:1294 +#: application/views/activated_gridmap/index.php:108 +#: application/views/awards/ffma/index.php:36 +#: application/views/awards/gridmaster/index.php:35 +#: 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/logbookadvanced/index.php:12 +#: application/views/qslcard/searchresult.php:20 +#: application/views/qslcard/searchresult.php:36 +#: application/views/qslcard/searchresult.php:52 +#: application/views/qslcard/searchresult.php:68 +#: application/views/qslcard/searchresult.php:84 +#: application/views/qso/components/previous_contacts.php:87 +#: application/views/search/search_result_ajax.php:14 +#: application/views/user/edit.php:239 application/views/user/edit.php:261 +#: application/views/user/edit.php:283 application/views/user/edit.php:305 +#: application/views/user/edit.php:328 +#: application/views/view_log/partial/log_ajax.php:14 +#: application/views/visitor/index.php:30 +msgid "Distance" +msgstr "Udaljenost" + +#: application/controllers/Logbook.php:1295 +#: application/views/accumulate/index.php:21 +#: application/views/activated_gridmap/index.php:8 +#: application/views/activators/index.php:10 +#: application/views/adif/dcl_success.php:32 +#: application/views/awards/cq/index.php:74 +#: application/views/awards/dok/index.php:77 +#: application/views/awards/dxcc/index.php:117 +#: application/views/awards/helvetia/index.php:73 +#: application/views/awards/iota/index.php:91 +#: application/views/awards/itu/index.php:74 +#: application/views/awards/jcc/index.php:74 +#: application/views/awards/pota/index.php:35 +#: application/views/awards/rac/index.php:65 +#: application/views/awards/sig/qso_list.php:13 +#: application/views/awards/sota/index.php:26 +#: application/views/awards/vucc/index.php:21 +#: application/views/awards/wab/index.php:22 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/waja/index.php:77 +#: application/views/awards/was/index.php:73 +#: application/views/awards/wwff/index.php:35 +#: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 +#: application/views/bands/create.php:24 application/views/bands/edit.php:6 +#: application/views/bands/index.php:45 +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:249 +#: application/views/continents/index.php:30 application/views/csv/index.php:31 +#: application/views/dashboard/index.php:15 +#: application/views/debug/index.php:549 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/logbookadvanced/edit.php:3 +#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/qslcarousel.php:33 +#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/oqrs/notinlogform.php:10 +#: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 +#: application/views/oqrs/request_grouped.php:10 +#: application/views/oqrs/showrequests.php:83 +#: application/views/public_search/result.php:16 +#: application/views/qslcard/index.php:32 +#: application/views/qslcard/searchresult.php:21 +#: application/views/qslcard/searchresult.php:37 +#: application/views/qslcard/searchresult.php:39 +#: application/views/qslcard/searchresult.php:53 +#: application/views/qslcard/searchresult.php:69 +#: application/views/qslcard/searchresult.php:85 +#: application/views/qslmanagement/index.php:24 +#: application/views/qslprint/qslprint.php:25 +#: application/views/qslprint/qsolist.php:10 +#: application/views/qso/components/previous_contacts.php:88 +#: application/views/qso/edit_ajax.php:83 application/views/qso/index.php:151 +#: application/views/search/cqzones_result.php:11 +#: application/views/search/lotw_unconfirmed_result.php:9 +#: application/views/search/result_search.php:10 +#: application/views/search/search_result_ajax.php:15 +#: application/views/simplefle/index.php:149 +#: application/views/stationsetup/exportmapoptions.php:31 +#: application/views/statistics/custom.php:53 +#: application/views/statistics/custom_result.php:55 +#: application/views/statistics/custom_result.php:91 +#: application/views/statistics/index.php:21 +#: application/views/timeline/index.php:7 +#: application/views/timeplotter/index.php:14 +#: application/views/user/edit.php:227 application/views/user/edit.php:249 +#: application/views/user/edit.php:271 application/views/user/edit.php:293 +#: application/views/user/edit.php:316 +#: application/views/view_log/partial/log.php:12 +#: application/views/view_log/partial/log_ajax.php:15 +#: application/views/view_log/qso.php:87 application/views/visitor/index.php:33 +#: application/views/widgets/qsos.php:32 +msgid "Band" +msgstr "Opseg" + +#: application/controllers/Logbook.php:1296 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 +#: application/views/contesting/index.php:138 +#: application/views/dashboard/index.php:16 +#: application/views/qslcard/searchresult.php:22 +#: application/views/qslcard/searchresult.php:38 +#: application/views/qslcard/searchresult.php:54 +#: application/views/qslcard/searchresult.php:70 +#: application/views/qslcard/searchresult.php:86 +#: application/views/qso/components/previous_contacts.php:89 +#: application/views/qso/edit_ajax.php:71 application/views/qso/index.php:169 +#: application/views/search/search_result_ajax.php:16 +#: application/views/user/edit.php:228 application/views/user/edit.php:250 +#: application/views/user/edit.php:272 application/views/user/edit.php:294 +#: application/views/user/edit.php:317 +#: application/views/view_log/partial/log_ajax.php:16 +#: application/views/view_log/qso.php:94 application/views/visitor/index.php:36 +msgid "Frequency" +msgstr "Frekvencija" + +#: application/controllers/Logbook.php:1297 +#: application/views/dashboard/index.php:17 +#: application/views/logbookadvanced/edit.php:12 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:626 +#: application/views/logbookadvanced/useroptions.php:110 +#: application/views/qslcard/searchresult.php:23 +#: application/views/qslcard/searchresult.php:55 +#: application/views/qslcard/searchresult.php:71 +#: application/views/qslcard/searchresult.php:87 +#: application/views/qso/components/previous_contacts.php:90 +#: application/views/search/search_result_ajax.php:17 +#: application/views/simplefle/index.php:112 +#: application/views/user/edit.php:240 application/views/user/edit.php:262 +#: application/views/user/edit.php:284 application/views/user/edit.php:306 +#: application/views/user/edit.php:329 +#: application/views/view_log/partial/log_ajax.php:17 +#: application/views/view_log/qso.php:538 +#: application/views/visitor/index.php:39 +msgid "Operator" +msgstr "Operator" + +#: application/controllers/Logbook.php:1318 +#: application/controllers/Stationsetup.php:381 +#: application/views/awards/dxcc/index.php:28 +#: application/views/awards/dxcc/index.php:238 +#: application/views/csv/index.php:65 application/views/dashboard/index.php:28 +#: application/views/dxatlas/index.php:65 +#: application/views/interface_assets/footer.php:675 +#: application/views/kml/index.php:54 +#: application/views/logbookadvanced/index.php:165 +#: application/views/lookup/index.php:31 +#: application/views/lotw_views/index.php:52 +#: application/views/qso/components/previous_contacts.php:59 +#: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/stationsetup/linkedlocations.php:45 +#: application/views/stationsetup/stationsetup.php:150 +#: application/views/timeline/index.php:167 +#: application/views/timeplotter/index.php:33 +#: application/views/view_log/partial/log_ajax.php:29 +#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:532 +msgid "Deleted DXCC" +msgstr "Izbrisana DXCC" + +#: application/controllers/Logbookadvanced.php:31 +msgid "Advanced logbook" +msgstr "Nepredni dnevnik" + +#: application/controllers/Lookup.php:22 +msgid "Quick Lookup" +msgstr "Brza pretraga" + +#: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83 +#: application/controllers/Lotw.php:125 application/views/adif/import.php:27 +#: application/views/interface_assets/header.php:429 +#: application/views/lotw/import.php:3 +#: application/views/lotw_views/index.php:12 +#: application/views/lotw_views/upload_cert.php:3 +#: application/views/user/edit.php:705 application/views/visitor/index.php:324 +msgid "Logbook of the World" +msgstr "Loogbok of the World" + +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "Sertifikat je uvezen." + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "Sertifikat je ažuriran." + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "Sertifikat je izbrisan." + +#: application/controllers/Lotw.php:413 +#, 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 "" +"Nije pronađen sertifikat %s. Ako naziv datoteke sadrži 'key-only' to je " +"tipično zahtev za sertifikat koji još nije obrađen od strane LoTW." + +#: application/controllers/Lotw.php:617 +msgid "LoTW ADIF Information" +msgstr "Informacija o LoTW ADIF" + +#: application/controllers/Lotw.php:725 +msgid "LoTW ADIF Import" +msgstr "Uvoz LoTW ADIF" + +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "Niste definisali vaše ARRL LoTW kredencijale!" + +#: application/controllers/Lotw.php:837 +msgid "LoTW .TQ8 Upload" +msgstr "LoTW .TQ8 učitavanje" + +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "Vaše ARRL korisničko ime i/ili lozinka su netačni." + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 +msgid "LoTW .TQ8 Sent" +msgstr "LoTW .TQ8 je poslat" + +#: application/controllers/Lotw.php:946 +msgid "LoTW .TQ8 Not Sent" +msgstr "LoTW .TQ8 nije poslat" + +#: application/controllers/Mode.php:25 +#: application/views/interface_assets/header.php:276 +#: application/views/mode/index.php:15 +msgid "Modes" +msgstr "Vrste rada" + +#: application/controllers/Mode.php:62 +msgid "Edit Mode" +msgstr "Uredi vrstu rada" + +#: application/controllers/Notes.php:18 +#: application/views/interface_assets/header.php:128 +#: application/views/notes/add.php:9 application/views/notes/edit.php:10 +#: application/views/notes/main.php:5 application/views/notes/main.php:8 +#: application/views/notes/view.php:6 application/views/notes/view.php:9 +#: application/views/qso/edit_ajax.php:36 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:38 +#: application/views/qso/index.php:563 application/views/qso/index.php:608 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:593 +msgid "Notes" +msgstr "Napomene" + +#: application/controllers/Notes.php:37 +msgid "Add Notes" +msgstr "Dodajte napomenu" + +#: application/controllers/Notes.php:64 +#: application/views/oqrs/showrequests.php:88 +msgid "Note" +msgstr "Napomena" + +#: application/controllers/Notes.php:92 application/views/notes/edit.php:7 +#: application/views/notes/view.php:19 +msgid "Edit Note" +msgstr "Uredite napomenu" + +#: application/controllers/Options.php:31 +#: application/controllers/Options.php:41 +#: application/controllers/Options.php:56 +#: application/controllers/Options.php:144 +#: application/controllers/Options.php:155 +#: application/controllers/Options.php:192 +#: application/controllers/Options.php:203 +#: application/controllers/Options.php:236 +#: application/controllers/Options.php:247 +#: application/controllers/Options.php:317 +#: application/controllers/Options.php:327 +#: application/controllers/Options.php:395 +#: application/controllers/Options.php:405 +msgid "Wavelog Options" +msgstr "Opcije Waveloga" + +#: application/controllers/Options.php:42 +#: application/controllers/Options.php:57 +#: application/views/options/sidebar.php:4 +msgid "Appearance" +msgstr "Izgled" + +#: application/controllers/Options.php:78 +#: application/controllers/Options.php:86 +#: application/controllers/Options.php:94 +#: application/controllers/Options.php:102 +#: application/controllers/Options.php:110 +#: application/controllers/Options.php:118 +#: application/controllers/Options.php:126 +#: application/controllers/Options.php:134 +msgid "Options saved" +msgstr "Opcije su sačuvane" + +#: application/controllers/Options.php:173 +msgid "de continent changed to " +msgstr "de kontinent promenjen u " + +#: application/controllers/Options.php:178 +msgid "Maximum age of spots changed to " +msgstr "Maksimalna starost spotova promenjena na " + +#: application/controllers/Options.php:183 +msgid "DXCluster Cache URL changed to " +msgstr "Keširanje URL DX klastera promenjeno na " + +#: application/controllers/Options.php:193 +#: application/controllers/Options.php:204 +msgid "Radio Settings" +msgstr "Podešavanja radija" + +#: application/controllers/Options.php:225 +msgid "Radio Timeout Warning changed to " +msgstr "Upozorenje o neaktivnosti radija promenjeno na " + +#: application/controllers/Options.php:237 +#: application/controllers/Options.php:248 +#: application/views/options/sidebar.php:6 +msgid "Email" +msgstr "Email" + +#: application/controllers/Options.php:305 +msgid "The settings were saved successfully." +msgstr "Podešavanja su uspešno sačuvana." + +#: application/controllers/Options.php:307 +msgid "Something went wrong with saving the settings. Try again." +msgstr "Nešto nije bilo u redu sa čuvanjem podešavanja. Pokušajte ponovo." + +#: application/controllers/Options.php:318 +#: application/controllers/Options.php:328 +#: application/views/options/sidebar.php:8 +msgid "OQRS Options" +msgstr "Opcije OQRS" + +#: application/controllers/Options.php:341 +msgid "OQRS options have been saved." +msgstr "Opcije OQRS su sačuvane." + +#: application/controllers/Options.php:381 +#: application/controllers/Options.php:386 +msgid "Testmail failed. Something went wrong." +msgstr "Testmail je bio neuspešan. Nešto nije u redu." + +#: application/controllers/Options.php:383 +msgid "Testmail sent. Email settings seem to be correct." +msgstr "Testmail je poslat. Izgleda da su email podešavanja u redu." + +#: application/controllers/Options.php:396 +#: application/controllers/Options.php:406 +msgid "Version Info Settings" +msgstr "Podešavanja informacija o verziji" + +#: application/controllers/Options.php:412 +msgid "Version Info Header changed to" +msgstr "Zaglavlje informacije o verziji promenjeno u" + +#: application/controllers/Options.php:416 +msgid "Version Info Mode changed to" +msgstr "Mod informacije o verziji promenjen u" + +#: application/controllers/Options.php:421 +msgid "Version Info Custom Text saved!" +msgstr "Prilagođeni tekst informacije o verziji je sačuvan!" + +#: application/controllers/Options.php:432 +msgid "Version Info will be shown to all users again" +msgstr "Informacija o verziji će biti ponovo prikazana svim korisnicima" + +#: application/controllers/Options.php:440 +msgid "Version Info will not be shown to any user" +msgstr "Informacija o verziji neće biti prikazana nijednom korisniku" + +#: application/controllers/Oqrs.php:46 application/controllers/Oqrs.php:85 +#: application/controllers/Oqrs.php:97 +msgid "Log Search & OQRS" +msgstr "Pretraga dnevnika i OQRS" + +#: application/controllers/Oqrs.php:127 +#: application/views/interface_assets/header.php:419 +msgid "OQRS Requests" +msgstr "OQRS zahtevi" + +#: application/controllers/Qrbcalc.php:17 +msgid "QRB Calculator" +msgstr "QRB računar" + +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "Geografska širina: %s, Geografska dužina: %s" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "Udaljenost između %s i %s je %s milju." +msgstr[1] "Udaljenost između %s i %s je %s milje." +msgstr[2] "Udaljenost između %s i %s je %s milja." + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "Udaljenost između %s i %s je %s nautičku milju." +msgstr[1] "Udaljenost između %s i %s je %s nautičke milje." +msgstr[2] "Udaljenost između %s i %s je %s nautičkih milja." + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "Udaljenost između %s i %s je %s kilometar." +msgstr[1] "Udaljenost između %s i %s je %s kilometra." +msgstr[2] "Udaljenost između %s i %s je %s kilometara." + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "Smer je %s." + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" +"Negativne geografske širine su južno od ekvatora, negativne geografske " +"dužine su zapadno od Griniča." + +#: application/controllers/Qrz.php:173 +#: application/views/interface_assets/header.php:432 +msgid "QRZ Logbook" +msgstr "QRZ dnevnik" + +#: application/controllers/Qrz.php:253 +msgid "QRZ QSL Import" +msgstr "Uvoz QRZ QSL karata" + +#: application/controllers/Qrz.php:307 +msgid "QRZ ADIF Information" +msgstr "Informacija o QRZ ADIF" + +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:277 +#: application/views/qslcard/index.php:5 +#: application/views/visitor/index.php:283 +msgid "QSL Cards" +msgstr "QSL karte" + +#: application/controllers/Qsl.php:35 +msgid "Upload QSL Cards" +msgstr "Učitavanje QSL karata" + +#: application/controllers/Qslmanagement.php:14 +msgid "QSL Card Management" +msgstr "Upravljanje QSL kartama" + +#: application/controllers/Qslprint.php:46 +msgid "Print Requested QSLs" +msgstr "Štampanje zahtevanih QSL karata" + +#: application/controllers/Qso.php:102 +msgid "Add QSO" +msgstr "Dodaj QSO" + +#: application/controllers/Radio.php:17 +#: application/views/interface_assets/header.php:438 +msgid "Hardware Interfaces" +msgstr "Hardverski interfejs" + +#: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 +#: application/views/bandmap/list.php:60 +#: application/views/contesting/index.php:143 +#: application/views/qso/index.php:312 +msgid "Radio" +msgstr "Radio" + +#: application/controllers/Radio.php:50 +msgid "Timestamp" +msgstr "Vremenska oznaka" + +#: application/controllers/Radio.php:52 +#: application/views/logbookadvanced/index.php:550 +#: application/views/lotw_views/index.php:43 +#: application/views/simplefle/index.php:20 +#: application/views/simplefle/index.php:177 +#: application/views/stationsetup/exportmapoptions.php:5 +#: application/views/statistics/custom.php:31 +#: application/views/statistics/custom_result.php:33 +msgid "Options" +msgstr "Opcije" + +#: application/controllers/Radio.php:90 +#: application/views/contesting/index.php:147 +#: application/views/qso/index.php:316 +msgid "last updated" +msgstr "posljednje ažuriranje" + +#: application/controllers/Radio.php:97 application/controllers/Radio.php:100 +msgid "Set as default radio" +msgstr "Postavite podrazumevani radio" + +#: application/controllers/Radio.php:102 +msgid "Default (click to release)" +msgstr "Podrazumevano (kliknite za objavu)" + +#: application/controllers/Radio.php:105 +#: application/controllers/Stationsetup.php:372 +#: application/views/api/help.php:61 application/views/contesting/add.php:62 +#: application/views/interface_assets/footer.php:2337 +#: application/views/interface_assets/footer.php:2355 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:542 +#: application/views/lotw_views/index.php:114 +#: application/views/mode/index.php:55 +#: application/views/oqrs/showrequests.php:71 +#: application/views/qslcard/index.php:65 +#: application/views/satellite/edit.php:40 +#: application/views/satellite/index.php:26 +#: application/views/search/stored_queries.php:22 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:192 +#: application/views/themes/index.php:107 application/views/user/index.php:57 +#: application/views/view_log/qso.php:616 +msgid "Delete" +msgstr "Obrišite" + +#: application/controllers/Radio.php:111 +msgid "No CAT interfaced radios found." +msgstr "Nisu pronađeni radio uređaji sa CAT interfejsom." + +#: application/controllers/Reg1test.php:25 +msgid "Export EDI" +msgstr "Izvoz EDI" + +#: application/controllers/Satellite.php:39 +msgid "Create Satellite" +msgstr "Kreiraj satelit" + +#: application/controllers/Satellite.php:66 +msgid "Edit Satellite" +msgstr "Uredi satelit" + +#: application/controllers/Sattimers.php:41 +#, php-format +msgid "You have no station locations. Go %s to create it!" +msgstr "Nemate lokacija stanice. Idite %s da ih kreirate!" + +#: application/controllers/Sattimers.php:41 +#: application/views/awards/counties/index.php:8 +#: application/views/awards/dok/index.php:10 +#: application/views/awards/iota/index.php:19 +#: application/views/awards/was/index.php:23 +#: application/views/simplefle/index.php:16 +msgid "here" +msgstr "ovde" + +#: application/controllers/Sattimers.php:44 +#: application/views/sattimers/index.php:13 +msgid "Satellite Timers" +msgstr "Satelitski tajmer" + +#: application/controllers/Search.php:19 +#: application/views/continents/index.php:49 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:340 +#: application/views/interface_assets/header.php:347 +#: application/views/logbookadvanced/index.php:538 +#: application/views/oqrs/index.php:28 +#: application/views/oqrs/showrequests.php:67 +#: application/views/qslcard/searchform.php:8 +#: application/views/search/cqzones.php:4 +#: application/views/search/cqzones.php:12 +#: application/views/search/cqzones.php:36 +#: application/views/search/filter.php:20 +#: application/views/search/filter.php:38 +#: application/views/search/lotw_unconfirmed.php:4 +#: application/views/search/lotw_unconfirmed.php:12 +#: application/views/search/lotw_unconfirmed.php:37 +#: application/views/search/main.php:4 application/views/search/main.php:12 +#: application/views/search/main.php:33 +#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:98 +msgid "Search" +msgstr "Pretraga" + +#: application/controllers/Search.php:28 +msgid "Search & Filter Logbook" +msgstr "Pretraga i filter dnevnika" + +#: application/controllers/Search.php:58 +msgid "Incorrectly logged CQ zones" +msgstr "Netačno upisane CQ zone" + +#: application/controllers/Search.php:70 +msgid "" +"QSOs unconfirmed on LoTW, but the callsign has uploaded to LoTW after QSO " +"date" +msgstr "" +"QSO koji nisu potvrđeni na LoTW, ali su pozivni znakovi imali učitavanje na " +"LoTW nakon datuma QSOa" + +#: application/controllers/Station.php:36 +#: application/controllers/Stationsetup.php:226 +msgid "Create Station Location" +msgstr "Kreiraj lokaciju stanice" + +#: application/controllers/Station.php:51 +msgid "Edit Station Location: " +msgstr "Uredi lokaciju stanice: " + +#: application/controllers/Station.php:59 application/views/csv/index.php:19 +#: application/views/dxatlas/index.php:19 +#: application/views/labels/index.php:124 +#: application/views/logbookadvanced/edit.php:19 +#: application/views/qslprint/index.php:20 application/views/qso/index.php:300 +#: application/views/search/search_result_ajax.php:18 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 +#: application/views/user/edit.php:331 +#: application/views/view_log/partial/log_ajax.php:18 +#: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 +#: application/views/webadif/export.php:115 +msgid "Station Location" +msgstr "Lokacija stanice" + +#: application/controllers/Station.php:73 +msgid "Duplicate Station Location:" +msgstr "Napravi duplikat lokacije stanice:" + +#: application/controllers/Stationsetup.php:35 +#: application/views/interface_assets/header.php:381 +#: application/views/interface_assets/header.php:494 +msgid "Station Setup" +msgstr "Podešavanje stanice" + +#: application/controllers/Stationsetup.php:50 +#: application/controllers/Stationsetup.php:68 +#: application/controllers/Stationsetup.php:395 +#: application/controllers/Stationsetup.php:409 +msgid "Not allowed" +msgstr "Nije dozvoljeno" + +#: application/controllers/Stationsetup.php:72 +#: application/controllers/Stationsetup.php:86 +#: application/controllers/Stationsetup.php:105 +#: application/controllers/Stationsetup.php:118 +#: application/controllers/Stationsetup.php:131 +#: application/controllers/Stationsetup.php:152 +#: application/controllers/Stationsetup.php:436 +#: application/views/qso/index.php:630 +msgid "Error" +msgstr "Greška" + +#: application/controllers/Stationsetup.php:159 +#: application/views/stationsetup/stationsetup.php:22 +msgid "Create Station Logbook" +msgstr "Kreiraj stanični dnevnik" + +#: application/controllers/Stationsetup.php:166 +msgid "Edit container name" +msgstr "Uredi ime spremišta" + +#: application/controllers/Stationsetup.php:181 +msgid "Edit linked locations" +msgstr "Uredi povezane lokacije" + +#: application/controllers/Stationsetup.php:190 +msgid "Edit visitor site" +msgstr "Uredi mjesto posjetioca" + +#: application/controllers/Stationsetup.php:212 +msgid "Error. Link is already in use!" +msgstr "Greška. Veza je već u upotrebi!" + +#: application/controllers/Stationsetup.php:253 +#: application/views/options/appearance.php:57 +#: application/views/options/appearance.php:64 +#: application/views/options/appearance.php:73 +#: application/views/options/appearance.php:83 +#: application/views/options/appearance.php:92 +#: application/views/options/appearance.php:101 +#: application/views/options/appearance.php:110 +#: application/views/options/version_dialog.php:66 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 +#: application/views/stationsetup/stationsetup.php:76 +#: application/views/user/edit.php:451 application/views/user/edit.php:460 +msgid "Disabled" +msgstr "Onemogućeno" + +#: application/controllers/Stationsetup.php:261 +#: application/views/stationsetup/stationsetup.php:44 +msgid "Set as Active Logbook" +msgstr "Postavi kao aktivni dnevnik" + +#: application/controllers/Stationsetup.php:263 +#: application/views/interface_assets/header.php:492 +#: application/views/stationsetup/stationsetup.php:46 +#: application/views/view_log/index.php:4 +msgid "Active Logbook" +msgstr "Aktivni dnevnik" + +#: application/controllers/Stationsetup.php:270 +#: application/views/stationsetup/stationsetup.php:55 +msgid "" +"Are you sure you want to delete the following station logbook? You must re-" +"link any locations linked here to another logbook.: " +msgstr "" +"Da li ste sigurni da želite obrisati sledeći stanični dnevnik? Moraćete " +"ponovo povezati bilo koju lokaciju iz ovog dnevnika u drugi dnevnik.: " + +#: application/controllers/Stationsetup.php:280 +#: application/views/stationsetup/stationsetup.php:65 +msgid "View Public Page for Logbook: " +msgstr "Pogledaj javnu stranicu dnevnika: " + +#: application/controllers/Stationsetup.php:281 +msgid "Are you sure you want to delete the public slug?" +msgstr "Da li ste sigurni da želite obrisati javni žeton?" + +#: application/controllers/Stationsetup.php:349 +#: application/views/stationsetup/stationsetup.php:154 +msgid "" +"Are you sure you want to make the following station the active station: " +msgstr "" +"Da li ste sigurni da želite označiti sledeću stanicu kao aktivnu stanicu: " + +#: application/controllers/Stationsetup.php:349 +#: application/views/stationsetup/stationsetup.php:154 +msgid "Set Active" +msgstr "Postavite aktivnom" + +#: application/controllers/Stationsetup.php:351 +#: application/views/stationsetup/stationsetup.php:156 +msgid "Active Station" +msgstr "Aktivna stanica" + +#: application/controllers/Stationsetup.php:354 +#: application/views/interface_assets/header.php:113 +#: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 +#: application/views/simplefle/index.php:28 +#: application/views/stationsetup/stationsetup.php:161 +#: application/views/user/index.php:90 application/views/user/index.php:92 +msgid "QSO" +msgstr "QSO" + +#: application/controllers/Stationsetup.php:359 +#: application/views/api/help.php:57 application/views/contesting/add.php:59 +#: application/views/cron/index.php:58 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 +#: application/views/labels/index.php:47 application/views/labels/index.php:83 +#: application/views/logbookadvanced/index.php:541 +#: application/views/mode/index.php:52 application/views/satellite/edit.php:39 +#: application/views/satellite/index.php:25 +#: application/views/search/stored_queries.php:21 +#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:165 +#: application/views/themes/index.php:104 application/views/user/index.php:52 +msgid "Edit" +msgstr "Uredite" + +#: application/controllers/Stationsetup.php:363 +#: application/views/stationsetup/stationsetup.php:185 +msgid "Are you sure you want to delete all QSOs within this station profile?" +msgstr "" +"Da li ste sigurni da želite obrisati sve QSO unutar profila ove stanice?" + +#: application/controllers/Stationsetup.php:363 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:187 +msgid "Empty Log" +msgstr "Ispraznite dnevnik" + +#: application/controllers/Stationsetup.php:367 +#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:168 +msgid "Copy" +msgstr "Kopirajte" + +#: application/controllers/Stationsetup.php:372 +#: application/views/stationsetup/stationsetup.php:191 +#, php-format +msgid "" +"Are you sure you want delete station profile '%s'? This will delete all QSOs " +"within this station profile." +msgstr "" +"Da li ste sigurni da želite obrisati profil stanice '%s'? Ovo će obrisati " +"sve QSO unutar profila ove stanice." + +#: application/controllers/Stationsetup.php:379 +#: application/views/qso/edit_ajax.php:221 +msgid "NONE" +msgstr "NIŠTA" + +#: application/controllers/Stationsetup.php:462 +msgid "Edit Export Map options" +msgstr "Uredite opcije za izvoz mape" + +#: application/controllers/Statistics.php:27 +#: application/views/interface_assets/header.php:134 +msgid "Statistics" +msgstr "Statistika" + +#: application/controllers/Statistics.php:50 +msgid "Custom Statistics" +msgstr "Prilagođena statistika" + +#: application/controllers/Statistics.php:232 +#: application/views/interface_assets/header.php:136 +#: application/views/statistics/qsltable.php:5 +msgid "QSL Statistics" +msgstr "Statistika QSL karata" + +#: application/controllers/Themes.php:27 +#: application/views/interface_assets/header.php:282 +msgid "Themes" +msgstr "Teme" + +#: application/controllers/Themes.php:46 +msgid "Create Theme" +msgstr "Kreiraj temu" + +#: application/controllers/Themes.php:65 +msgid "Edit Theme" +msgstr "Uredi temu" + +#: application/controllers/Timeline.php:15 +#: application/views/interface_assets/header.php:150 +#: application/views/timeline/index.php:2 +msgid "Timeline" +msgstr "Vremenska linija" + +#: application/controllers/Timeplotter.php:17 +#: application/views/interface_assets/header.php:154 +#: application/views/timeplotter/index.php:9 +msgid "Timeplotter" +msgstr "Crtanje vremenske linije" + +#: application/controllers/Update.php:26 +msgid "Updates" +msgstr "Ažuriranja" + +#: application/controllers/Update.php:78 +msgid "Preparing DXCC-Entries: " +msgstr "Priprema DXCC unosa: " + +#: application/controllers/Update.php:122 +msgid "Preparing DXCC Exceptions: " +msgstr "Priprema DXCC izuzetaka: " + +#: application/controllers/Update.php:166 +msgid "Preparing DXCC Prefixes: " +msgstr "Priprema DXCC prefiksa: " + +#: application/controllers/Update.php:230 +msgid "DONE" +msgstr "URAĐENO" + +#: application/controllers/Update.php:244 +msgid "Updating..." +msgstr "Ažuriram..." + +#: application/controllers/Update.php:247 +msgid "Dxcc Entities:" +msgstr "DXCC entiteta:" + +#: application/controllers/Update.php:248 +msgid "Dxcc Exceptions:" +msgstr "DXCC izuzetaka:" + +#: application/controllers/Update.php:249 +msgid "Dxcc Prefixes:" +msgstr "DXCC prefiksa:" + +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:272 +msgid "User Accounts" +msgstr "Korisnički nalozi" + +#: application/controllers/User.php:76 +msgid "Add User" +msgstr "Dodaj korisnika" + +#: application/controllers/User.php:190 +msgid "Users" +msgstr "Korisnici" + +#: application/controllers/User.php:264 application/controllers/User.php:697 +msgid "Edit User" +msgstr "Uredi korisnika" + +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 +msgid "User" +msgstr "Korisnik" + +#: application/controllers/User.php:689 application/controllers/User.php:692 +msgid "edited" +msgstr "uređeno" + +#: application/controllers/User.php:746 +msgid "Profile" +msgstr "Profil" + +#: application/controllers/User.php:803 +msgid "" +"Congrats! Wavelog was successfully installed. You can now login for the " +"first time." +msgstr "" +"Čestitamo! Wavelog je uspešno instaliran. Sada se možete prijaviti po prvi " +"put." + +#: application/controllers/User.php:867 application/controllers/User.php:877 +msgid "Login failed. Try again." +msgstr "Prijava nije uspela. Pokušajte ponovo." + +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:360 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:87 +msgid "Login" +msgstr "Prijava" + +#: application/controllers/User.php:922 +msgid "" +"Sorry. This instance is currently in maintenance mode. If this message " +"appears unexpectedly or keeps showing up, please contact an administrator. " +"Only administrators are currently allowed to log in." +msgstr "" +"Žao nam je. Ovaj primerak je trenutno u modu održavanja. Ako se ova poruka " +"pojavila neočekivano, ili nastavi da se pojavljuje, molimo vas da " +"kontaktirate administratora. Trenutno je prijava dozvoljena samo " +"administratorima." + +#: application/controllers/User.php:925 +msgid "Incorrect username or password!" +msgstr "Neispravno korisničko ime ili lozinka!" + +#: application/controllers/User.php:942 +#, php-format +msgid "User %s logged out." +msgstr "Korisnik %s se odjavio." + +#: application/controllers/User.php:956 +msgid "Password Reset is disabled on the Demo!" +msgstr "Reset lozinke je onemogućen u Demo verziji!" + +#: application/controllers/User.php:969 +msgid "Forgot Password" +msgstr "Zaboravljena lozinka" + +#: application/controllers/User.php:1019 application/views/user/index.php:8 +msgid "Email settings are incorrect." +msgstr "Email podešavanja nisu ispravna." + +#: application/controllers/User.php:1023 application/controllers/User.php:1028 +msgid "Password Reset Processed." +msgstr "Reset lozinke je obrađen." + +#: application/controllers/User.php:1129 +#: application/views/user/forgot_password.php:51 +#: application/views/user/reset_password.php:8 +#: application/views/user/reset_password.php:35 +msgid "Reset Password" +msgstr "Reset lozinke" + +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" +"Trenutno ne možete predstavljati drugog korisnika. Molimo prvo promenite " +"encryption_key u vašoj config.php datoteci!" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "Neispravni haš" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "Haš za predstavljanje je previše star. Molimo pokušajte ponovo." + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" +"Ne možete predstavljati drugog korisnika dok niste priavljeni kao izvorni " +"korisnik" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "Postojao je problem sa vašom sesijom. Molimo pokušajte ponovo." + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "Korisnik čije ste predstavljanje pokušali ne postoji" + +#: application/controllers/Visitor.php:50 +#: application/controllers/Visitor.php:81 +#: application/controllers/Visitor.php:148 +#: application/controllers/Visitor.php:175 +#: application/controllers/Visitor.php:210 +#: application/controllers/Visitor.php:472 +#: application/controllers/Widgets.php:40 +msgid "Unknown Public Page." +msgstr "Nepoznata javna stranica." + +#: application/controllers/Visitor.php:76 +#: application/controllers/Visitor.php:171 +#: application/controllers/Visitor.php:206 +#: application/controllers/Visitor.php:468 +#: application/controllers/Widgets.php:36 +msgid "Empty Logbook" +msgstr "Prazan dnevnik" + +#: application/controllers/Visitor.php:216 +msgid "Satellite Gridsquare Map" +msgstr "Satelitska mapa polja" + +#: application/controllers/Visitor.php:405 +#: application/views/stationsetup/stationsetup.php:35 +msgid "Public Search" +msgstr "Javna pretraga" + +#: application/controllers/Visitor.php:438 +msgid "Export Map" +msgstr "Izvoz mape" + +#: application/controllers/Webadif.php:90 +#: application/controllers/Webadif.php:137 +#: application/views/interface_assets/header.php:433 +msgid "QO-100 Dx Club Upload" +msgstr "Učitavanje na QO-100 DX Club" + +#: application/controllers/Widgets.php:21 +msgid "Unknown Public Page, please make sure the public slug is correct." +msgstr "" +"Nepoznata javna stranica, molimo vas da se uvjerite da je javni žeton tačan." + +#: application/controllers/Widgets.php:54 application/views/oqrs/index.php:69 +msgid "No stations found that are using Wavelog OQRS." +msgstr "Nisu pronađene stanice koje koriste Wavelog OQRS." + +#: application/libraries/Subdivisions.php:31 +msgctxt "Division Name (States in various countries)." +msgid "Province" +msgstr "Provincija" + +#: application/libraries/Subdivisions.php:39 +msgctxt "Division Name (States in various countries)." +msgid "Oblast" +msgstr "Oblast" + +#: application/libraries/Subdivisions.php:41 +#: application/libraries/Subdivisions.php:47 +msgctxt "Division Name (States in various countries)." +msgid "Region" +msgstr "Region" + +#: application/libraries/Subdivisions.php:45 +msgctxt "Division Name (States in various countries)." +msgid "Department" +msgstr "Odelenje" + +#: application/libraries/Subdivisions.php:49 +msgctxt "Division Name (States in various countries)." +msgid "Municipality" +msgstr "Opština" + +#: application/libraries/Subdivisions.php:51 +msgctxt "Division Name (States in various countries)." +msgid "Federal State" +msgstr "Federalna država" + +#: application/libraries/Subdivisions.php:56 +#: application/libraries/Subdivisions.php:94 +msgctxt "Division Name (States in various countries)." +msgid "County" +msgstr "Okrug" + +#: application/libraries/Subdivisions.php:60 +#: application/libraries/Subdivisions.php:85 +msgctxt "Division Name (States in various countries)." +msgid "District" +msgstr "Oblast" + +#: application/libraries/Subdivisions.php:62 +msgctxt "Division Name (States in various countries)." +msgid "Canton" +msgstr "Kanton" + +#: application/libraries/Subdivisions.php:64 +msgctxt "Division Name (States in various countries)." +msgid "US State" +msgstr "USA država" + +#: application/libraries/Subdivisions.php:67 +msgctxt "Division Name (States in various countries)." +msgid "Prefecture" +msgstr "Prefektura" + +#: application/libraries/Subdivisions.php:69 +msgctxt "Division Name (States in various countries)." +msgid "State" +msgstr "Država" + +#: application/libraries/Subdivisions.php:78 +msgctxt "Division Name (States in various countries)." +msgid "US County" +msgstr "USA okrug" + +#: application/libraries/Subdivisions.php:90 +msgctxt "Division Name (States in various countries)." +msgid "DME" +msgstr "DME" + +#: application/libraries/Subdivisions.php:92 +msgctxt "Division Name (States in various countries)." +msgid "City / Ku / Gun" +msgstr "Grad / Ku / Gun" + +#: application/models/Eqslmethods_model.php:281 +msgid "Your eQSL username and/or password is incorrect." +msgstr "Vaše eQSL korisničko ime i/ili lozinka nisu ispravni." + +#: application/models/Eqslmethods_model.php:287 +msgid "Something went wrong with eQSL.cc!" +msgstr "Nešto nije u redu sa eQSL.cc!" + +#: application/models/Eqslmethods_model.php:303 +msgid "eQSL.cc is experiencing issues. Please try exporting QSOs later." +msgstr "" +"eQSL.cc trenutno ispoljava neke probleme. Molimo pokušajte izvoz QSO kasnije." + +#: application/models/Eqslmethods_model.php:309 +msgid "" +"There was an error in one of the QSOs. You might want to manually upload " +"them." +msgstr "" +"Postojala je greška u jednoj od QSO. Možda želite da izvršite ručno " +"učitavanje." + +#: application/models/Eqslmethods_model.php:315 +msgid "" +"It seems that the eQSL site has changed. Please open up an issue on GitHub." +msgstr "" +"Izgleda da je došlo do promene eQSL mesta. Molimo da pokrenete rešenje " +"problema na GitHubu." + +#: application/models/Hrdlog_model.php:22 +msgid "" +"HRDlog: QSOs have been uploaded to hrdlog.net for the station callsign: " +msgstr "HRDlog: QSO su učitani na hrdlog.net za pozivni znak stanice: " + +#: application/models/Hrdlog_model.php:25 +msgid "HRDlog: No QSOs found to upload for the station callsign: " +msgstr "HRDLog: Nisu pronađeni QSO za učitavanje za pozivni znak stanice: " + +#: application/models/Hrdlog_model.php:31 +msgid "HRDlog: No station profiles with HRDlog Credentials found." +msgstr "" +"HRDlog: Nisu pronađeni profili stanice sa odgovarajućim HRDlog akreditivima." + +#: application/models/Logbook_model.php:4255 +msgid "QSO could not be matched" +msgstr "QSO se ne poklapa" + +#: application/models/Logbook_model.php:4261 +msgid "confirmed by LoTW/Clublog/eQSL/Contest" +msgstr "potvrđeno preko LoTW/Clublog/eQSL/Kontest" + +#: application/models/Logbook_model.php:4266 +msgid "confirmed by award manager" +msgstr "potvrđeno od strane menadžera za diplome" + +#: application/models/Logbook_model.php:4269 +msgid "confirmed by cross-check of DCL data" +msgstr "potvrđeno unakrsnom proverom DCL podataka" + +#: application/models/Logbook_model.php:4272 +msgid "confirmation pending" +msgstr "čeka potvrđivanje" + +#: application/models/Logbook_model.php:4275 +msgid "unconfirmed" +msgstr "nepotvrđeno" + +#: application/models/Logbook_model.php:4278 +msgid "unknown" +msgstr "nepoznato" + +#: application/views/accumulate/index.php:2 +msgid "Accumulated number of DXCCs worked" +msgstr "Ukupan broj rađenih DXCC" + +#: application/views/accumulate/index.php:3 +msgid "Accumulated number of States worked" +msgstr "Ukupan broj rađenih pokrajina" + +#: application/views/accumulate/index.php:4 +msgid "Accumulated number of IOTAs worked" +msgstr "Ukupan broj rađenih IOTA" + +#: application/views/accumulate/index.php:5 +msgid "Accumulated number of CQ Zones worked" +msgstr "Ukupan broj rađenih CQ Zona" + +#: application/views/accumulate/index.php:6 +msgid "Accumulated number of VUCC Grids worked" +msgstr "Ukupan broj rađenih VUCC polja" + +#: application/views/accumulate/index.php:7 +msgid "Accumulated number of WAJA worked" +msgstr "Ukupan broj rađenih WAJA" + +#: application/views/accumulate/index.php:8 +#: application/views/dashboard/index.php:238 +#: application/views/dayswithqso/index.php:16 +#: application/views/statistics/index.php:18 +#: application/views/visitor/index.php:246 +msgid "Year" +msgstr "Godina" + +#: application/views/accumulate/index.php:9 +#: application/views/accumulate/index.php:67 +msgid "Yearly" +msgstr "Godišnje" + +#: application/views/accumulate/index.php:10 +#: application/views/dashboard/index.php:243 +#: application/views/visitor/index.php:251 +msgid "Month" +msgstr "Mesec" + +#: application/views/accumulate/index.php:11 +#: application/views/accumulate/index.php:73 +msgid "Monthly" +msgstr "Mesečno" + +#: application/views/accumulate/index.php:12 +msgid "Difference" +msgstr "Razlika" + +#: application/views/accumulate/index.php:24 +#: application/views/accumulate/index.php:34 +#: application/views/accumulate/index.php:83 +#: application/views/activated_gridmap/index.php:10 +#: application/views/activated_gridmap/index.php:22 +#: application/views/activated_gridmap/index.php:32 +#: application/views/activated_gridmap/index.php:41 +#: application/views/activators/index.php:13 +#: application/views/awards/cq/index.php:77 +#: application/views/awards/cq/index.php:91 +#: application/views/awards/dok/index.php:94 +#: application/views/awards/dxcc/index.php:134 +#: application/views/awards/dxcc/index.php:150 +#: application/views/awards/dxcc/index.php:165 +#: application/views/awards/helvetia/index.php:90 +#: application/views/awards/iota/index.php:108 +#: application/views/awards/itu/index.php:77 +#: application/views/awards/itu/index.php:91 +#: application/views/awards/jcc/index.php:91 +#: application/views/awards/rac/index.php:82 +#: application/views/awards/wab/index.php:24 +#: application/views/awards/wab/index.php:36 +#: application/views/awards/wab/index.php:46 +#: application/views/awards/wab/index.php:55 +#: application/views/awards/wac/index.php:81 +#: application/views/awards/wac/index.php:97 +#: application/views/awards/wac/index.php:113 +#: application/views/awards/waja/index.php:94 +#: application/views/awards/was/index.php:90 +#: application/views/bandmap/list.php:71 application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:90 application/views/bands/index.php:117 +#: application/views/cabrillo/index.php:65 +#: application/views/continents/index.php:32 +#: application/views/continents/index.php:41 application/views/csv/index.php:21 +#: application/views/csv/index.php:33 application/views/csv/index.php:44 +#: application/views/csv/index.php:60 application/views/csv/index.php:82 +#: application/views/csv/index.php:94 application/views/distances/index.php:21 +#: application/views/distances/index.php:36 +#: application/views/distances/index.php:46 +#: application/views/distances/index.php:56 +#: application/views/dxatlas/index.php:21 +#: application/views/dxatlas/index.php:33 +#: application/views/dxatlas/index.php:44 +#: 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/interface_assets/footer.php:1448 +#: application/views/interface_assets/footer.php:1587 +#: application/views/kml/index.php:21 application/views/kml/index.php:33 +#: application/views/kml/index.php:49 application/views/kml/index.php:67 +#: application/views/kml/index.php:79 +#: application/views/logbookadvanced/index.php:183 +#: application/views/logbookadvanced/index.php:194 +#: application/views/logbookadvanced/index.php:205 +#: application/views/logbookadvanced/index.php:214 +#: application/views/logbookadvanced/index.php:223 +#: application/views/logbookadvanced/index.php:248 +#: application/views/logbookadvanced/index.php:259 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:423 +#: application/views/lotw/import.php:54 +#: application/views/oqrs/showrequests.php:33 +#: application/views/oqrs/showrequests.php:49 +#: application/views/oqrs/showrequests.php:62 +#: application/views/qslprint/index.php:22 +#: application/views/search/cqzones.php:30 +#: application/views/search/lotw_unconfirmed.php:31 +#: application/views/stationsetup/exportmapoptions.php:33 +#: application/views/timeline/index.php:10 +#: application/views/timeline/index.php:22 +#: application/views/timeline/index.php:77 +#: application/views/timeplotter/index.php:17 +#: application/views/timeplotter/index.php:27 +#: application/views/timeplotter/index.php:47 +#: application/views/user/edit.php:633 +#: application/views/visitor/layout/footer.php:171 +msgid "All" +msgstr "Sve" + +#: application/views/accumulate/index.php:50 +#: application/views/timeline/index.php:41 +msgid "Award" +msgstr "Diploma" + +#: application/views/accumulate/index.php:53 +#: application/views/timeline/index.php:44 +msgid "DX Century Club (DXCC)" +msgstr "DX Century Club (DXCC)" + +#: application/views/accumulate/index.php:55 +#: application/views/timeline/index.php:46 +msgid "Islands On The Air (IOTA)" +msgstr "Islands On The Air (IOTA)" + +#: application/views/accumulate/index.php:56 +#: application/views/timeline/index.php:47 +msgid "Worked All Zones (WAZ)" +msgstr "Worked All Zone (WAZ)" + +#: application/views/accumulate/index.php:57 +#: application/views/timeline/index.php:48 +msgid "VHF / UHF Century Club (VUCC)" +msgstr "VHF / UHF Century Club (VUCC)" + +#: application/views/accumulate/index.php:58 +#: application/views/timeline/index.php:49 +msgid "Worked All Japan (WAJA)" +msgstr "Worked All Japan (WAJA)" + +#: application/views/accumulate/index.php:62 +msgid "Period" +msgstr "Period" + +#: application/views/accumulate/index.php:80 +#: application/views/distances/index.php:53 +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/timeline/index.php:74 +msgid "Propagation" +msgstr "Propagacije" + +#: application/views/accumulate/index.php:84 +#: application/views/distances/index.php:57 +#: application/views/timeline/index.php:78 +msgid "All but SAT" +msgstr "Sve osim SAT" + +#: application/views/accumulate/index.php:85 +#: application/views/distances/index.php:58 +#: application/views/gridmap/index.php:42 +#: application/views/logbookadvanced/edit.php:142 +#: application/views/logbookadvanced/index.php:307 +#: application/views/timeline/index.php:79 +msgid "None/Empty" +msgstr "Ništa/Prazno" + +#: application/views/accumulate/index.php:86 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/logbookadvanced/index.php:225 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:414 +#: application/views/timeline/index.php:80 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "Aircraft Scatter" + +#: application/views/accumulate/index.php:87 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/logbookadvanced/index.php:226 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:415 +#: application/views/timeline/index.php:81 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "Aurora" + +#: application/views/accumulate/index.php:88 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/logbookadvanced/index.php:227 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:416 +#: application/views/timeline/index.php:82 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "Aurora-E" + +#: application/views/accumulate/index.php:89 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/logbookadvanced/index.php:228 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:417 +#: application/views/timeline/index.php:83 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "Back scatter" + +#: application/views/accumulate/index.php:90 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/logbookadvanced/index.php:229 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:418 +#: application/views/timeline/index.php:84 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "EchoLink" + +#: application/views/accumulate/index.php:91 +#: 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/logbookadvanced/index.php:230 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:419 +#: application/views/timeline/index.php:85 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "Earth-Moon-Earth" + +#: application/views/accumulate/index.php:92 +#: 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/logbookadvanced/index.php:231 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:420 +#: application/views/timeline/index.php:86 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "Sporadic E" + +#: application/views/accumulate/index.php:93 +#: 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/logbookadvanced/index.php:232 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:421 +#: application/views/timeline/index.php:87 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "Field Aligned Irregularities" + +#: application/views/accumulate/index.php:94 +#: 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/logbookadvanced/index.php:233 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:422 +#: application/views/timeline/index.php:88 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "F2 Reflection" + +#: application/views/accumulate/index.php:95 +#: 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/logbookadvanced/index.php:234 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:423 +#: application/views/timeline/index.php:89 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "Internet-assisted" + +#: application/views/accumulate/index.php:96 +#: 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/logbookadvanced/index.php:235 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:424 +#: application/views/timeline/index.php:90 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "Ionoscatter" + +#: application/views/accumulate/index.php:97 +#: 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/logbookadvanced/index.php:236 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:425 +#: application/views/timeline/index.php:91 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "IRLP" + +#: application/views/accumulate/index.php:98 +#: 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/logbookadvanced/index.php:237 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:426 +#: application/views/timeline/index.php:92 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "Meteor scatter" + +#: application/views/accumulate/index.php:99 +#: 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/logbookadvanced/index.php:238 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:427 +#: application/views/timeline/index.php:93 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "Zemaljski ili atmosferski repetitor ili transponder" + +#: application/views/accumulate/index.php:100 +#: 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/logbookadvanced/index.php:239 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:428 +#: application/views/timeline/index.php:94 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "Rain scatter" + +#: application/views/accumulate/index.php:101 +#: 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/logbookadvanced/index.php:240 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:429 +#: application/views/timeline/index.php:95 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Satellite" + +#: application/views/accumulate/index.php:102 +#: 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/logbookadvanced/index.php:241 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:430 +#: application/views/timeline/index.php:96 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "Trans-equatorial" + +#: application/views/accumulate/index.php:103 +#: 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/logbookadvanced/index.php:242 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:431 +#: application/views/timeline/index.php:97 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "Tropospheric ducting" + +#: application/views/accumulate/index.php:112 +#: application/views/activators/index.php:53 +#: application/views/awards/cq/index.php:113 +#: application/views/awards/dok/index.php:127 +#: application/views/awards/dxcc/index.php:187 +#: application/views/awards/helvetia/index.php:112 +#: application/views/awards/iota/index.php:130 +#: application/views/awards/itu/index.php:113 +#: application/views/awards/jcc/index.php:113 +#: application/views/awards/rac/index.php:104 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:79 +#: application/views/logbookadvanced/useroptions.php:17 +#: application/views/lookup/index.php:63 +#: application/views/stationsetup/exportmapoptions.php:6 +#: application/views/timeline/index.php:105 +#: application/views/timeline/index.php:170 +#: application/views/timeline/index.php:197 +#: application/views/timeline/index.php:222 +#: application/views/timeline/index.php:251 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:303 +#: application/views/timeplotter/index.php:59 +msgid "Show" +msgstr "Prikaži" + +#: application/views/activated_gridmap/index.php:20 +#: application/views/awards/dxcc/index.php:131 +#: application/views/awards/wab/index.php:34 +#: application/views/awards/wac/index.php:78 +#: 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/logbookadvanced/edit.php:17 +#: application/views/logbookadvanced/index.php:203 +#: application/views/satellite/flightpath.php:34 +#: application/views/satellite/passtable.php:5 +#: application/views/sattimers/index.php:38 +#: application/views/statistics/index.php:112 +msgid "Satellite" +msgstr "Satelit" + +#: application/views/activated_gridmap/index.php:30 +#: application/views/awards/dxcc/index.php:147 +#: application/views/awards/wab/index.php:44 +#: application/views/awards/wac/index.php:94 +#: application/views/distances/index.php:44 +#: application/views/gridmap/index.php:80 +#: application/views/logbookadvanced/index.php:212 +#: application/views/satellite/create.php:35 +#: application/views/satellite/edit.php:19 +#: application/views/satellite/index.php:23 +msgid "Orbit" +msgstr "Orbita" + +#: application/views/activated_gridmap/index.php:50 +#: application/views/awards/wab/index.php:64 +#: application/views/gridmap/index.php:92 +#: application/views/timeline/index.php:52 +msgid "Confirmation" +msgstr "Potvrda" + +#: application/views/activated_gridmap/index.php:82 +#: application/views/awards/cq/index.php:68 +#: application/views/awards/dok/index.php:67 +#: application/views/awards/dxcc/index.php:73 +#: application/views/awards/helvetia/index.php:67 +#: application/views/awards/itu/index.php:68 +#: application/views/awards/jcc/index.php:64 +#: application/views/awards/rac/index.php:59 +#: application/views/awards/wab/index.php:96 +#: application/views/awards/wac/index.php:56 +#: application/views/awards/waja/index.php:67 +#: application/views/awards/was/index.php:67 +#: application/views/gridmap/index.php:125 application/views/user/edit.php:675 +msgid "QRZ.com" +msgstr "QRZ.com" + +#: application/views/activated_gridmap/index.php:86 +#: application/views/gridmap/index.php:130 +#: application/views/satellite/flightpath.php:42 +msgid "Plot" +msgstr "Nacrtaj" + +#: application/views/activated_gridmap/index.php:87 +#: application/views/gridmap/index.php:131 +msgid "Clear Markers" +msgstr "Obriši markere" + +#: application/views/activated_gridmap/index.php:102 +#: application/views/awards/ffma/index.php:30 +#: application/views/awards/gridmaster/index.php:29 +#: application/views/gridmap/index.php:148 +#: application/views/logbookadvanced/index.php:8 +msgid "Latitude" +msgstr "Geografska širina" + +#: application/views/activated_gridmap/index.php:104 +#: application/views/awards/ffma/index.php:32 +#: application/views/awards/gridmaster/index.php:31 +#: application/views/gridmap/index.php:150 +#: application/views/logbookadvanced/index.php:9 +msgid "Longitude" +msgstr "Geografska dužina" + +#: application/views/activated_gridmap/index.php:110 +#: application/views/awards/ffma/index.php:38 +#: application/views/awards/gridmaster/index.php:37 +#: application/views/gridmap/index.php:156 +#: application/views/logbookadvanced/index.php:13 +msgid "Bearing" +msgstr "Smer" + +#: application/views/activators/index.php:26 +msgctxt "Orbiter LEO or GEO" +msgid "Both" +msgstr "Oboje" + +#: application/views/activators/index.php:33 +msgid "Minimum Count" +msgstr "Minimalan broj" + +#: application/views/activators/index.php:76 +#: application/views/awards/counties/details.php:27 +#: application/views/awards/counties/index.php:46 +#: application/views/awards/cq/index.php:198 +#: application/views/awards/dok/index.php:196 +#: application/views/awards/dxcc/index.php:280 +#: application/views/awards/helvetia/index.php:200 +#: application/views/awards/iota/index.php:224 +#: application/views/awards/itu/index.php:198 +#: application/views/awards/jcc/index.php:236 +#: application/views/awards/pota/index.php:67 +#: application/views/awards/rac/index.php:192 +#: application/views/awards/sig/index.php:45 +#: application/views/awards/sota/index.php:53 +#: application/views/awards/vucc/band.php:41 +#: application/views/awards/vucc/index.php:39 +#: application/views/awards/wac/index.php:199 +#: application/views/awards/waja/index.php:202 +#: application/views/awards/was/index.php:200 +#: application/views/awards/wwff/index.php:64 +#: application/views/distancerecords/index.php:50 +#: application/views/public_search/empty.php:3 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:135 +msgid "Nothing found!" +msgstr "Ništa nije pronađeno!" + +#: application/views/activators/index.php:98 +#: application/views/adif/import.php:66 application/views/adif/import.php:182 +#: application/views/adif/import.php:227 +#: application/views/awards/pota/index.php:34 +#: application/views/awards/sig/qso_list.php:11 +#: application/views/awards/sota/index.php:25 +#: application/views/awards/wwff/index.php:34 +#: application/views/cabrillo/index.php:31 +#: application/views/components/hamsat/table.php:27 +#: application/views/contesting/index.php:156 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:168 +#: application/views/distancerecords/index.php:18 +#: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41 +#: application/views/eqslcard/index.php:28 +#: application/views/hamsat/index.php:30 application/views/labels/index.php:123 +#: application/views/logbookadvanced/qslcarousel.php:30 +#: application/views/lotw_views/index.php:35 +#: application/views/oqrs/qsolist.php:6 +#: application/views/oqrs/request_grouped.php:12 +#: application/views/qslcard/index.php:28 +#: application/views/qslcard/searchform.php:3 +#: application/views/qslprint/index.php:24 +#: application/views/qslprint/qslprint.php:21 +#: application/views/qslprint/qsolist.php:6 +#: application/views/qso/edit_ajax.php:62 application/views/qso/index.php:124 +#: application/views/reg1test/index.php:33 +#: application/views/search/cqzones.php:32 +#: application/views/search/cqzones_result.php:9 +#: application/views/search/lotw_unconfirmed.php:33 +#: application/views/search/lotw_unconfirmed_result.php:6 +#: application/views/search/result.php:11 +#: application/views/simplefle/index.php:148 +#: application/views/station_profile/edit.php:63 +#: application/views/stationsetup/linkedlocations.php:17 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 +#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:510 +msgid "Callsign" +msgstr "Pozivni znak" + +#: application/views/activators/index.php:99 +msgid "Count" +msgstr "Broj" + +#: application/views/activators/index.php:101 +#: application/views/timeline/index.php:154 +#: application/views/timeline/index.php:186 +#: application/views/timeline/index.php:211 +#: application/views/timeline/index.php:238 +#: application/views/timeline/index.php:265 +#: application/views/timeline/index.php:291 +msgid "Show QSO's" +msgstr "Prikaži QSOe" + +#: application/views/activators/index.php:102 +msgid "Show Map" +msgstr "Prikaži mapu" + +#: application/views/adif/dcl_success.php:12 +msgid "Results of DCL DOK Update" +msgstr "Rezultati DCL DOK ažuriranja" + +#: application/views/adif/dcl_success.php:17 +msgid "DCL information for DOKs has been updated." +msgstr "DCL informacije za DOKove su ažurirane." + +#: application/views/adif/dcl_success.php:19 +msgid "No QSOs found which could be updated." +msgstr "Nisu pronađeni QSO koji mogu biti ažurirani." + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs ignored" +msgstr "Zanemareni QSO" + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs unmatched" +msgstr "QSO koji se ne poklapaju" + +#: application/views/adif/dcl_success.php:22 +msgid "QSOs updated" +msgstr "QSO ažurirani" + +#: application/views/adif/dcl_success.php:25 +msgid "DOK Errors" +msgstr "DOK greške" + +#: application/views/adif/dcl_success.php:26 +msgid "There is different data for DOK in your log compared to DCL" +msgstr "U poređenju sa DCL, u vašem logu postoje različiti DOK podaci" + +#: application/views/adif/dcl_success.php:29 +#: application/views/awards/pota/index.php:32 +#: application/views/awards/wwff/index.php:32 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:25 +#: application/views/contesting/index.php:93 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:163 +#: application/views/debug/index.php:545 +#: application/views/distancerecords/index.php:16 +#: application/views/eqsl/analysis.php:36 +#: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 +#: application/views/eqslcard/index.php:30 +#: application/views/hamsat/index.php:28 +#: application/views/logbookadvanced/edit.php:4 +#: application/views/oqrs/notinlogform.php:8 +#: application/views/oqrs/qsolist.php:7 application/views/oqrs/request.php:15 +#: application/views/oqrs/request_grouped.php:8 +#: application/views/public_search/result.php:13 +#: application/views/qslcard/index.php:30 +#: application/views/qslcard/searchresult.php:4 +#: application/views/qslprint/qslprint.php:22 +#: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:64 +#: application/views/qso/index.php:100 application/views/satellite/pass.php:473 +#: application/views/search/cqzones_result.php:7 +#: application/views/search/result_search.php:4 +#: application/views/search/search_result_ajax.php:89 +#: application/views/simplefle/index.php:146 +#: application/views/statistics/custom.php:38 +#: application/views/statistics/custom_result.php:40 +#: application/views/statistics/custom_result.php:85 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:184 +#: application/views/timeline/index.php:209 +#: application/views/timeline/index.php:234 +#: application/views/timeline/index.php:263 +#: application/views/timeline/index.php:288 +#: application/views/view_log/partial/log.php:4 +#: application/views/view_log/partial/log_ajax.php:59 +#: application/views/visitor/index.php:147 +#: application/views/widgets/qsos.php:24 +msgid "Date" +msgstr "Datum" + +#: application/views/adif/dcl_success.php:30 +#: application/views/awards/pota/index.php:33 +#: application/views/awards/wwff/index.php:33 +#: application/views/bandmap/list.php:109 +#: application/views/components/hamsat/table.php:26 +#: application/views/contesting/index.php:98 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:166 +#: application/views/debug/index.php:546 +#: application/views/distancerecords/index.php:17 +#: application/views/eqsl/analysis.php:37 +#: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 +#: application/views/eqslcard/index.php:31 +#: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 +#: application/views/qslcard/index.php:31 +#: application/views/qslcard/searchresult.php:6 +#: application/views/qslprint/qslprint.php:23 +#: application/views/qslprint/qsolist.php:8 application/views/qso/index.php:105 +#: application/views/search/cqzones_result.php:8 +#: application/views/search/result_search.php:5 +#: application/views/search/search_result_ajax.php:91 +#: application/views/simplefle/index.php:147 +#: application/views/statistics/custom_result.php:86 +#: application/views/timeline/index.php:289 +#: application/views/timeplotter/index.php:5 +#: application/views/view_log/partial/log.php:6 +#: application/views/view_log/partial/log_ajax.php:61 +#: application/views/visitor/index.php:150 +#: application/views/widgets/qsos.php:26 +msgid "Time" +msgstr "Vreme" + +#: application/views/adif/dcl_success.php:31 +#: application/views/awards/vucc/band.php:18 +#: application/views/bandmap/list.php:111 +#: application/views/contesting/index.php:248 +#: application/views/debug/index.php:547 application/views/debug/index.php:582 +#: application/views/dxcalendar/index.php:12 +#: application/views/eqsl/analysis.php:38 +#: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 +#: application/views/public_search/result.php:14 +#: application/views/qslcard/searchresult.php:8 +#: application/views/qso/components/previous_contacts.php:7 +#: application/views/search/result_search.php:6 +#: application/views/search/search_result_ajax.php:93 +#: application/views/statistics/custom_result.php:87 +#: application/views/view_log/partial/log.php:8 +#: application/views/view_log/partial/log_ajax.php:63 +#: application/views/visitor/index.php:152 +#: application/views/widgets/qsos.php:28 +msgid "Call" +msgstr "Pozivni znak" + +#: application/views/adif/dcl_success.php:34 +msgid "DOK in Log" +msgstr "DOK u dnevniku" + +#: application/views/adif/dcl_success.php:35 +msgid "DOK in DCL" +msgstr "DOK u DCL" + +#: application/views/adif/dcl_success.php:36 +msgid "DCL QSL Status" +msgstr "Status DCL QSL" + +#: application/views/adif/import.php:36 application/views/adif/import.php:252 +msgid "DARC DCL" +msgstr "DARC DCL" + +#: application/views/adif/import.php:55 +#: application/views/dashboard/index.php:112 +#: application/views/dashboard/index.php:133 +#: application/views/dashboard/index.php:139 +#: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 +#: application/views/lotw_views/index.php:4 +msgid "Important" +msgstr "Važno" + +#: application/views/adif/import.php:55 +msgid "Log Files must have the file type *.adi" +msgstr "Datoteke dnevnika moraju biti vrste *.adi" + +#: application/views/adif/import.php:56 application/views/view_log/qso.php:625 +msgid "Maximum file upload size is " +msgstr "Maksimalna veličina datoteke za učitavanje je " + +#: application/views/adif/import.php:56 application/views/adif/import.php:230 +#: application/views/adif/import.php:268 application/views/debug/index.php:175 +#: application/views/debug/index.php:192 application/views/debug/index.php:537 +#: application/views/hrdlog/export.php:25 +#: application/views/hrdlog/export.php:74 +#: application/views/interface_assets/footer.php:34 +#: application/views/qrz/export.php:73 application/views/qrz/export.php:94 +#: application/views/stationsetup/stationsetup.php:111 +#: application/views/view_log/qso.php:625 +#: application/views/webadif/export.php:34 +#: application/views/webadif/export.php:94 +msgid "Warning" +msgstr "Upozorenje" + +#: application/views/adif/import.php:60 application/views/adif/import.php:62 +#: application/views/adif/import.php:178 application/views/adif/import.php:225 +#: application/views/eqsl/import.php:36 application/views/hrdlog/export.php:69 +#: application/views/qrz/export.php:89 application/views/reg1test/index.php:30 +#: application/views/webadif/export.php:89 +msgid "Select Station Location" +msgstr "Izaberite lokaciju stanice" + +#: application/views/adif/import.php:69 +msgid "Add QSOs to Contest" +msgstr "Dodajte QSO u takmičenje" + +#: application/views/adif/import.php:71 +#: application/views/simplefle/index.php:82 +msgid "No Contest" +msgstr "Nema takmičenja" + +#: application/views/adif/import.php:77 +msgid "ADIF File" +msgstr "ADIF datoteka" + +#: application/views/adif/import.php:84 +msgid "Import duplicate QSOs" +msgstr "Uvezi duple QSO" + +#: application/views/adif/import.php:93 +msgid "Mark imported QSOs as uploaded to LoTW" +msgstr "Označi uvezene QSO kao učitane na LoTW" + +#: application/views/adif/import.php:95 application/views/adif/import.php:105 +#: application/views/adif/import.php:115 application/views/adif/import.php:125 +#: application/views/adif/import.php:135 +msgid "Select if ADIF being imported does not contain this information." +msgstr "Izaberi ako ADIF koji je učitan ne sadrži ove informacije." + +#: application/views/adif/import.php:103 +msgid "Mark imported QSOs as uploaded to eQSL Logbook" +msgstr "Označi uvezene veze kao učitane na eQSL dnevnik" + +#: application/views/adif/import.php:113 +msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" +msgstr "Označi uvezene QSO kao učitane na HRDLog.net dnevnik" + +#: application/views/adif/import.php:123 +msgid "Mark imported QSOs as uploaded to QRZ Logbook" +msgstr "Označi uvezene QSO kao učitane u QRZ dnevnik" + +#: application/views/adif/import.php:133 +msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgstr "Označi uvezene QSO kao učitane u Clublog dnevnik" + +#: application/views/adif/import.php:143 +msgid "Use DXCC information from ADIF" +msgstr "Koristi DXCC informaciju iz ADIF" + +#: application/views/adif/import.php:145 +msgid "" +"If not selected, Wavelog will attempt to determine DXCC information " +"automatically." +msgstr "" +"Ako nije selektovano, Wavelog će pokušati da odredi DXCC informacije " +"automatski." + +#: application/views/adif/import.php:153 +msgid "Always use login-callsign as operator-name on import" +msgstr "Uvijek koristi prilikom uvoza login-pozivni znak kao operatorovo ime" + +#: application/views/adif/import.php:162 +#: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2133 +msgid "DANGER" +msgstr "OPASNOST" + +#: application/views/adif/import.php:162 +msgid "Ignore Stationcallsign on import" +msgstr "Zanemari pozivni znak stanice prilikom uvoza" + +#: application/views/adif/import.php:164 +#, php-format +msgid "" +"If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " +"regardless if they match to the chosen station-location." +msgstr "" +"Ako je selektovano, Wavelog će pokušati da uveze %sall%s QSO iz ADIF, bez " +"obzira da li se poklapaju sa izabranom stanicom - lokacijom." + +#: application/views/adif/import.php:168 application/views/adif/import.php:283 +#: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 +#: application/views/webadif/export.php:55 +msgid "Upload" +msgstr "Učitavanje" + +#: application/views/adif/import.php:175 +msgid "Take your logbook file anywhere!" +msgstr "Ponesite datoteku sa vašim dnevnikom gde god želite!" + +#: application/views/adif/import.php:176 +msgid "" +"Exporting ADIFs allows you to import contacts into third party applications " +"like LoTW, Awards or just for keeping a backup." +msgstr "" +"Izvoz ADIFa vam omogućava da uvezete kontakte u treće aplikacije kao što su " +"LoTW, Diplome ili da ga goristite samo kao rezervnu kopiju." + +#: application/views/adif/import.php:186 application/views/adif/import.php:232 +#: application/views/cfd/index.php:15 application/views/csv/index.php:118 +#: application/views/dxatlas/index.php:118 +#: application/views/hrdlog/export.php:77 application/views/kml/index.php:103 +#: application/views/lotw/import.php:38 application/views/qrz/export.php:76 +#: application/views/qrz/export.php:97 application/views/webadif/export.php:97 +msgid "From date" +msgstr "Od datuma" + +#: application/views/adif/import.php:189 application/views/adif/import.php:235 +#: application/views/cfd/index.php:20 application/views/csv/index.php:123 +#: application/views/dxatlas/index.php:123 +#: application/views/hrdlog/export.php:82 application/views/kml/index.php:108 +#: application/views/qrz/export.php:102 +#: application/views/webadif/export.php:102 +msgid "To date" +msgstr "Do datuma" + +#: application/views/adif/import.php:197 +msgid "Mark exported QSOs as uploaded to LoTW" +msgstr "Označi izvezene QSO kao učitane na LoTW" + +#: application/views/adif/import.php:205 +msgid "Export QSOs not uploaded to LoTW" +msgstr "Izvezi QSO koji nisu učitani na LoTW" + +#: application/views/adif/import.php:210 +msgid "Export QSO's" +msgstr "Izvezi QSOe" + +#: application/views/adif/import.php:215 +msgid "Export Satellite-Only QSOs" +msgstr "Izvezi samo satelitske QSO" + +#: application/views/adif/import.php:216 +msgid "Export All Satellite QSOs" +msgstr "Izvezi sve satelitske QSO" + +#: application/views/adif/import.php:218 +msgid "Export All Satellite QSOs Confirmed on LoTW" +msgstr "Izvezi sve satelitske QSO potvrđene na LoTW" + +#: application/views/adif/import.php:230 application/views/hrdlog/export.php:74 +#: application/views/qrz/export.php:94 application/views/webadif/export.php:94 +msgid "If a date range is not selected then all QSOs will be marked!" +msgstr "Ako nije izabran opseg datuma, onda će svi QSO biti označeni!" + +#: application/views/adif/import.php:238 +msgid "Mark QSOs as exported to LoTW" +msgstr "Označi QSOe kao izvezene u LoTW" + +#: application/views/adif/import.php:252 +#, php-format +msgid "" +"Go to %s and export your logbook with confirmed DOKs. To speed up the " +"process you can select only DL QSOs to download (i.e. put 'DL' into Prefix " +"List). The downloaded ADIF file can be uploaded here in order to update QSOs " +"with DOK info." +msgstr "" +"Idi na %s i izvezi svoj dnevnik sa potvrđenim DOK-ovima. Za ubrzavanje " +"procesa možeš izabrati preuzimanje samo DL QSOove (npr. u prefiks listu " +"stavi 'DL'). Preuzeta ADIF datoteka može biti učitana ovde u nameri da " +"ažurirate QSO sa informacijom o DOK." + +#: application/views/adif/import.php:259 +msgid "Only import DOK data from QSOs confirmed on DCL." +msgstr "Uvezi samo DOK podatke iz QSO potvrđenih na DCL." + +#: application/views/adif/import.php:261 +msgid "" +"Uncheck if you also want to update DOK with data from unconfirmed QSOs in " +"DCL." +msgstr "" +"Nemojte označiti ako takođe želite da ažurirate DOK sa podacima iz " +"nepotvrđenih QSO u DCL." + +#: application/views/adif/import.php:268 +msgid "Overwrites exisiting DOK in log by DCL (if different)." +msgstr "Prepišite DCL-om postojeće DOK u dnevniku (ako su različiti)." + +#: application/views/adif/import.php:270 +msgid "" +"If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " +"log." +msgstr "" +"Ako je označeno, Wavelog će silom prepisati postojeće DOK sa DOK iz DCL " +"dnevnika." + +#: application/views/adif/import.php:277 +msgid "Ignore QSOs that cannot be matched." +msgstr "Zanemarite QSOe koji se ne mogu poklopiti." + +#: application/views/adif/import.php:279 +msgid "" +"If unchecked, information about QSOs which could not be found in Wavelog " +"will be displayed." +msgstr "" +"Ako ostavite neoznačeno, biće prikazane informacije o QSO koji ne mogu biti " +"pronađeni u Wavelogu." + +#: application/views/adif/import_failed.php:15 +msgid "The ADIF file could not be parsed correctly." +msgstr "ADIF datoteka ne može biti ispravno obrađena." + +#: application/views/adif/import_failed.php:16 +msgid "" +"At least one of the ADIF fields could not be parsed and/or inserted into the " +"database. Please check the imported ADIF file. You can use an online ADIF " +"file checker. For example:" +msgstr "" +"Najmanje jedno od ADIF polja ne može bit obrađeno i/ili umetnuto u bazu " +"podataka. Molimo proverite uvezenu ADIF datoteku. Takođe možete koristiti i " +"onlajn pregledač ADIF datoteka. Na primer:" + +#: application/views/adif/import_success.php:15 +msgid "Yay, its imported!" +msgstr "Jeeeeeej, uvezeno je!" + +#: application/views/adif/import_success.php:16 +msgid "The ADIF File has been imported." +msgstr "ADIF datoteka je uvezena." + +#: application/views/adif/import_success.php:18 +msgid "Dupes were inserted!" +msgstr "Duple veze su uvezene!" + +#: application/views/adif/import_success.php:20 +msgid "Dupes were skipped." +msgstr "Duple veze su preskočene." + +#: application/views/adif/import_success.php:24 +msgid "ADIF Errors" +msgstr "ADIF greške" + +#: application/views/adif/import_success.php:25 +msgid "" +"You have ADIF errors, the QSOs have still been added but these fields have " +"not been populated." +msgstr "" +"Imate ADIF grešaka, QSO-ovi su dodati ali polja sa greškama nisu popunjena." + +#: application/views/adif/mark_lotw.php:12 +#: application/views/hrdlog/mark_hrdlog.php:12 +#: application/views/qrz/mark_qrz.php:12 +#: application/views/webadif/mark_webadif.php:12 +msgid "QSOs marked" +msgstr "QSO označeni" + +#: application/views/adif/mark_lotw.php:15 +msgid "Yay, its done!" +msgstr "Jeeeeeej, urađeno je!" + +#: application/views/adif/mark_lotw.php:16 +msgid "The QSOs are marked as exported to LoTW." +msgstr "QSO su označeni kao izvezeni u LoTW." + +#: application/views/api/description.php:15 +msgid "Editing Description for API Key" +msgstr "Uređivanje opisa za API ključ" + +#: application/views/api/description.php:28 +msgid "Simple name to describe what you use this API for." +msgstr "Jednostavno ime kao opis za šta koristite ovaj API." + +#: application/views/api/description.php:33 +#: application/views/bands/create.php:49 application/views/bands/edit.php:31 +#: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 +#: application/views/operator/index.php:23 +#: application/views/options/appearance.php:116 +#: application/views/options/dxcluster.php:67 +#: application/views/options/email.php:112 +#: application/views/options/oqrs.php:63 +#: application/views/options/radios.php:45 +#: application/views/options/version_dialog.php:78 +#: application/views/satellite/create.php:70 +#: application/views/simplefle/index.php:22 +msgid "Save" +msgstr "Sačuvajte" + +#: application/views/api/help.php:14 +#: application/views/interface_assets/header.php:437 +msgid "API Keys" +msgstr "API ključevi" + +#: application/views/api/help.php:17 +msgid "" +"The Wavelog API (Application Programming Interface) lets third party systems " +"access Wavelog in a controlled way. Access to the API is managed via API " +"keys." +msgstr "" +"Wavelog API (Application Programming Interface) omogućava trećim stranama " +"pristup Wavelogu na kontrolisani način. Pristup API-ju vrši se preko API " +"ključeva." + +#: application/views/api/help.php:18 +msgid "" +"You will need to generate an API key for each tool you wish to use (e.g. " +"WLgate). Generate a read-write key if the application needs to send data to " +"Wavelog. Generate a read-only key if the application only needs to obtain " +"data from Wavelog." +msgstr "" +"Trebalo bi da generišete API ključ za svaku alatku koju želite da koristite " +"(npr. WLgate). Generišite read-write ključ ako aplikacije treba da šalej " +"podatke na Wavelog. Generišite read-only ključ ako aplikacija treba samo da " +"dobije podatke od Waveloga." + +#: application/views/api/help.php:19 +msgid "API URL" +msgstr "API URL" + +#: application/views/api/help.php:19 application/views/api/help.php:38 +#: application/views/cron/index.php:22 application/views/debug/index.php:36 +msgid "Copy to clipboard" +msgstr "Kopiraj u privremenu memoriju" + +#: application/views/api/help.php:19 +msgid "The API URL for this Wavelog instance is" +msgstr "API URL za ovu verziju Waveloga je" + +#: application/views/api/help.php:20 application/views/dxcalendar/index.php:15 +#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:504 +#: application/views/qso/index.php:560 application/views/qso/index.php:605 +#: application/views/radio/index.php:22 +#: application/views/sattimers/index.php:67 +#: application/views/sattimers/index.php:69 +#: application/views/sattimers/index.php:71 +#: application/views/sattimers/index.php:73 +#: application/views/sattimers/index.php:75 +#: application/views/sattimers/index.php:77 +#: application/views/search/filter.php:69 +msgid "Info" +msgstr "Info" + +#: application/views/api/help.php:20 +msgid "" +"It's good practice to delete a key if you are no longer using the associated " +"application." +msgstr "" +"Dobra praksa je da izbrišete ključ ako više ne koristite povezanu aplikaciju." + +#: application/views/api/help.php:27 +msgid "API Key" +msgstr "API ključ" + +#: application/views/api/help.php:28 application/views/cron/edit.php:30 +#: application/views/cron/index.php:53 +#: application/views/search/stored_queries.php:8 +msgid "Description" +msgstr "Opis" + +#: application/views/api/help.php:29 +msgid "Last Used" +msgstr "Poslednja upotreba" + +#: application/views/api/help.php:30 +msgid "Permissions" +msgstr "Dozvole" + +#: application/views/api/help.php:31 application/views/cron/index.php:54 +#: application/views/lotw_views/index.php:41 +#: application/views/mode/index.php:31 +#: application/views/oqrs/showrequests.php:91 +#: application/views/sattimers/index.php:39 +#: application/views/stationsetup/stationsetup.php:31 +#: application/views/timeline/index.php:152 +msgid "Status" +msgstr "Status" + +#: application/views/api/help.php:32 application/views/hrdlog/export.php:39 +#: application/views/logbookadvanced/index.php:519 +#: application/views/qrz/export.php:43 application/views/webadif/export.php:45 +msgid "Actions" +msgstr "Akcije" + +#: application/views/api/help.php:45 +msgid "Read & Write" +msgstr "Čitaj & Piši" + +#: application/views/api/help.php:47 +msgid "Read-Only" +msgstr "Samo čitanje" + +#: application/views/api/help.php:49 +msgid "Unknown" +msgstr "Nepoznato" + +#: application/views/api/help.php:59 +msgid "Test" +msgstr "Test" + +#: application/views/api/help.php:71 +msgid "You have no API Keys." +msgstr "Nemate API ključeva." + +#: application/views/api/help.php:75 +msgid "Create a read & write key" +msgstr "Kreirajte ključ za čitanje i zapisivanje" + +#: application/views/api/help.php:76 +msgid "Create a read-only key" +msgstr "Kreirajte ključ samo za čitanje" + +#: application/views/awards/counties/details.php:4 +#: application/views/awards/details.php:1 +#: application/views/awards/vucc/band.php:4 +#: application/views/distancerecords/details.php:1 +#: application/views/timeline/details.php:2 +msgid "Filtering on" +msgstr "Uključeno filtriranje" + +#: application/views/awards/counties/details.php:13 +msgid "County" +msgstr "Okrug" + +#: application/views/awards/counties/index.php:6 +#: application/views/awards/counties/index.php:13 +#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:26 +#: application/views/awards/dok/index.php:6 +#: application/views/awards/dok/index.php:13 +#: application/views/awards/dxcc/index.php:13 +#: application/views/awards/dxcc/index.php:20 +#: application/views/awards/ffma/index.php:7 +#: application/views/awards/ffma/index.php:14 +#: application/views/awards/gridmaster/index.php:6 +#: application/views/awards/gridmaster/index.php:13 +#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:26 +#: application/views/awards/iota/index.php:15 +#: application/views/awards/iota/index.php:22 +#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:26 +#: application/views/awards/jcc/index.php:15 +#: application/views/awards/jcc/index.php:22 +#: application/views/awards/pota/index.php:6 +#: application/views/awards/pota/index.php:13 +#: application/views/awards/sig/index.php:6 +#: application/views/awards/sig/index.php:13 +#: application/views/awards/sota/index.php:6 +#: application/views/awards/sota/index.php:13 +#: application/views/awards/vucc/index.php:6 +#: application/views/awards/vucc/index.php:13 +#: application/views/awards/wab/index.php:11 +#: application/views/awards/wab/index.php:18 +#: application/views/awards/wac/index.php:7 +#: application/views/awards/wac/index.php:14 +#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:25 +#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:26 +#: application/views/awards/wwff/index.php:6 +#: application/views/awards/wwff/index.php:13 +msgid "Award Info" +msgstr "Informacija o diplomi" + +#: application/views/awards/counties/index.php:7 +msgid "US County Award" +msgstr "Diploma US County" + +#: application/views/awards/counties/index.php:8 +#, php-format +msgid "" +"The United States of America Counties Award (USA-CA), sponsored by CQ " +"magazine, is issued for confirmed two-way radio contacts with specified " +"numbers of U.S. counties under rules and conditions you can find %s." +msgstr "" +"United States of America Counties Award (USA-CA), sponzorisana od strane CQ " +"Maganzina, izdaje se za potvrđene veze sa određenim brojem U.S.A. okruga pod " +"uslovima koje možete pronaći %s." + +#: application/views/awards/counties/index.php:9 +msgid "" +"USA-CA is available to all licensed amateurs worldwide and is issued to " +"individuals for all county contacts made, regardless of callsigns used, " +"operating locations, or dates." +msgstr "" +"USA-CA je dostupna svim licenciranim amaterima širom svijeta i izdaje se " +"licima za veze sa svim okruzima, bez obzira na korišten pozivni znak, " +"lokaciju sa koje je rađeno ili datume." + +#: application/views/awards/counties/index.php:10 +msgid "Special USA-CA awards are also available to SWLs on a heard basis." +msgstr "" +"Posebna USA-CA diploma dostupna je SWL amaterima, na osnovu slušanih " +"kontakata." + +#: application/views/awards/counties/index.php:21 +msgid "Counties Worked" +msgstr "Rađenih okruga" + +#: application/views/awards/counties/index.php:22 +msgid "Counties Confirmed" +msgstr "Potvrđenih okruga" + +#: application/views/awards/counties/index.php:39 +#: application/views/awards/cq/index.php:176 +#: application/views/awards/dok/index.php:174 +#: application/views/awards/dxcc/index.php:257 +#: application/views/awards/helvetia/index.php:179 +#: application/views/awards/iota/index.php:201 +#: application/views/awards/itu/index.php:176 +#: application/views/awards/jcc/index.php:185 +#: application/views/awards/rac/index.php:171 +#: application/views/awards/wac/index.php:177 +#: application/views/awards/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:233 +#: application/views/simplefle/index.php:27 +#: application/views/statistics/qsltable.php:54 +#: application/views/statistics/qsltable.php:109 +#: application/views/statistics/qsotable.php:10 +#: application/views/statistics/qsotable.php:23 +#: application/views/statistics/satqsotable.php:10 +#: application/views/statistics/satqsotable.php:22 +#: application/views/statistics/satuniquetable.php:10 +#: application/views/statistics/satuniquetable.php:22 +#: application/views/statistics/uniquetable.php:10 +#: application/views/statistics/uniquetable.php:23 +#: application/views/visitor/index.php:241 +msgid "Total" +msgstr "Ukupno" + +#: application/views/awards/cq/index.php:3 +#: application/views/awards/cq/index.php:150 application/views/csv/index.php:80 +#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/logbookadvanced/edit.php:6 +#: application/views/logbookadvanced/index.php:246 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:284 +#: application/views/qso/index.php:390 +#: application/views/search/cqzones_result.php:13 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:264 +#: application/views/timeplotter/index.php:44 +msgid "CQ Zone" +msgstr "CQ zona" + +#: application/views/awards/cq/index.php:4 +#: application/views/awards/itu/index.php:4 +msgid "Hover over a zone" +msgstr "Pomerite miša preko CQ zone / ITU zone" + +#: application/views/awards/cq/index.php:20 +msgid "CQ Magazine WAZ Award" +msgstr "CQ Magazin WAZ Award" + +#: application/views/awards/cq/index.php:21 +msgid "" +"The CQ Magazine is located in the US and one of the most popular amateur " +"radio magazines in the world. The magazine first appeared in January 1945 " +"and focuses on awards and the practical aspects of amateur radio." +msgstr "" +"Sedište CQ Magazina je u USA i jedan je od najpopularnijih radio magazina na " +"svetu. Prvi broj Magazina izdat je u januaru 1945. i težište mu je na " +"diplomama i praktičnim aspektima amaterskog radija." + +#: application/views/awards/cq/index.php:22 +msgid "" +"The WAZ Award stands for 'Worked All Zones' and requires radio contacts to " +"all 40 CQ Zones along with the corresponding confirmation." +msgstr "" +"WAZ Award znači \"Worked All Zones\" i zahteva radio-kontakte sa svih 40 CQ " +"Zona, uz povrđene podatke o vezama." + +#: application/views/awards/cq/index.php:23 +#, php-format +msgctxt "uses 'CQ Magazine'" +msgid "You can find all the information and rules on the Website of the %s." +msgstr "Informacije i pravila možete pronaći na web sajtu %s." + +#: application/views/awards/cq/index.php:25 +msgid "Awards - CQ Magazine WAZ" +msgstr "Diplome - CQ Magazin WAZ" + +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wab/list.php:6 +#: application/views/awards/wac/index.php:22 +#: application/views/bandmap/list.php:73 +#: application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:378 +#: application/views/interface_assets/footer.php:40 +#: application/views/visitor/index.php:266 +msgid "Confirmed" +msgstr "Potvrđeno" + +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wac/index.php:22 +#: application/views/bandmap/list.php:72 +#: application/views/dashboard/index.php:256 +#: application/views/dashboard/index.php:372 +#: application/views/visitor/index.php:262 +msgid "Worked" +msgstr "Rađeno" + +#: application/views/awards/cq/index.php:38 +#: application/views/awards/dok/index.php:41 +#: application/views/awards/dxcc/index.php:43 +#: application/views/awards/helvetia/index.php:37 +#: application/views/awards/iota/index.php:43 +#: application/views/awards/itu/index.php:38 +#: application/views/awards/jcc/index.php:34 +#: application/views/awards/rac/index.php:29 +#: application/views/awards/wac/index.php:26 +#: application/views/awards/waja/index.php:37 +#: application/views/awards/was/index.php:37 +msgid "Show worked" +msgstr "Prikaži rađene" + +#: application/views/awards/cq/index.php:42 +#: application/views/awards/dok/index.php:45 +#: application/views/awards/dxcc/index.php:47 +#: application/views/awards/helvetia/index.php:41 +#: application/views/awards/iota/index.php:47 +#: application/views/awards/itu/index.php:42 +#: application/views/awards/jcc/index.php:38 +#: application/views/awards/rac/index.php:33 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/waja/index.php:41 +#: application/views/awards/was/index.php:41 +msgid "Show confirmed" +msgstr "Prikaži potvrđene" + +#: application/views/awards/cq/index.php:46 +#: application/views/awards/dxcc/index.php:51 +#: application/views/awards/helvetia/index.php:45 +#: application/views/awards/iota/index.php:51 +#: application/views/awards/itu/index.php:46 +#: application/views/awards/jcc/index.php:42 +#: application/views/awards/rac/index.php:37 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/waja/index.php:45 +#: application/views/awards/was/index.php:45 +msgid "Show not worked" +msgstr "Prikaži ne urađene" + +#: application/views/awards/cq/index.php:52 +#: application/views/awards/dok/index.php:51 +#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/helvetia/index.php:51 +#: application/views/awards/itu/index.php:52 +#: application/views/awards/jcc/index.php:48 +#: application/views/awards/rac/index.php:43 +#: application/views/awards/wac/index.php:40 +#: application/views/awards/waja/index.php:51 +#: application/views/awards/was/index.php:51 +msgid "Show QSO with QSL Type" +msgstr "Prikaži QSO sa vrstom QSL" + +#: application/views/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/awards/wac/index.php:44 +#: application/views/interface_assets/footer.php:2112 +#: application/views/qso/edit_ajax.php:405 +#: application/views/view_log/qso.php:25 +msgid "QSL Card" +msgstr "QSL karte" + +#: application/views/awards/cq/index.php:112 +#: application/views/awards/dok/index.php:126 +#: application/views/awards/dxcc/index.php:186 +#: application/views/awards/helvetia/index.php:111 +#: application/views/awards/iota/index.php:129 +#: application/views/awards/itu/index.php:112 +#: application/views/awards/jcc/index.php:112 +#: application/views/awards/rac/index.php:103 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/waja/index.php:115 +#: application/views/awards/was/index.php:111 +#: application/views/continents/index.php:50 +#: application/views/logbookadvanced/index.php:551 +#: application/views/oqrs/showrequests.php:68 +#: application/views/qrbcalc/index.php:19 +#: application/views/search/filter.php:40 application/views/user/edit.php:607 +msgid "Reset" +msgstr "Reset" + +#: application/views/awards/cq/index.php:115 +msgid "Show CQ Zone Map" +msgstr "Prikaži kartu CQ zona" + +#: application/views/awards/cq/index.php:124 +#: application/views/awards/dxcc/index.php:199 +#: application/views/awards/helvetia/index.php:124 +#: application/views/awards/iota/index.php:142 +#: application/views/awards/itu/index.php:124 +#: application/views/awards/rac/index.php:116 +#: application/views/awards/waja/index.php:128 +#: application/views/awards/was/index.php:124 +msgid "Table" +msgstr "Tabela" + +#: application/views/awards/cq/index.php:127 +#: application/views/awards/dok/index.php:128 +#: application/views/awards/dxcc/index.php:202 +#: application/views/awards/helvetia/index.php:127 +#: application/views/awards/iota/index.php:145 +#: application/views/awards/itu/index.php:127 +#: application/views/awards/jcc/index.php:129 +#: application/views/awards/rac/index.php:119 +#: application/views/awards/wab/index.php:108 +#: application/views/awards/waja/index.php:131 +#: application/views/awards/was/index.php:127 +#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/useroptions.php:7 +msgid "Map" +msgstr "Karta" + +#: application/views/awards/cq/index.php:167 +#: application/views/awards/dok/index.php:165 +#: application/views/awards/dxcc/index.php:248 +#: application/views/awards/helvetia/index.php:170 +#: application/views/awards/iota/index.php:192 +#: application/views/awards/itu/index.php:167 +#: application/views/awards/jcc/index.php:168 +#: application/views/awards/rac/index.php:162 +#: application/views/awards/wac/index.php:168 +#: application/views/awards/waja/index.php:170 +#: application/views/awards/was/index.php:170 +msgid "Summary" +msgstr "Zbirno" + +#: application/views/awards/cq/index.php:180 +#: application/views/awards/dok/index.php:178 +#: application/views/awards/dxcc/index.php:262 +#: application/views/awards/helvetia/index.php:183 +#: application/views/awards/iota/index.php:206 +#: application/views/awards/itu/index.php:180 +#: application/views/awards/jcc/index.php:195 +#: application/views/awards/rac/index.php:175 +#: application/views/awards/wac/index.php:181 +#: application/views/awards/waja/index.php:184 +#: application/views/awards/was/index.php:183 +msgid "Total worked" +msgstr "Ukuno rađenih" + +#: application/views/awards/cq/index.php:187 +#: application/views/awards/dok/index.php:185 +#: application/views/awards/dxcc/index.php:269 +#: application/views/awards/helvetia/index.php:190 +#: application/views/awards/iota/index.php:213 +#: application/views/awards/itu/index.php:187 +#: application/views/awards/jcc/index.php:214 +#: application/views/awards/rac/index.php:182 +#: application/views/awards/wac/index.php:188 +#: application/views/awards/waja/index.php:191 +#: application/views/awards/was/index.php:190 +msgid "Total confirmed" +msgstr "Ukupno potvrđenih" + +#: application/views/awards/dok/index.php:7 +msgid "DOK Award" +msgstr "DOK diploma" + +#: application/views/awards/dok/index.php:8 +msgid "" +"Germany extends over 630 km from East to West and nearly 900 km from North " +"to South. Around 70,000 of Germany's 82 million inhabitants are licensed " +"hams, with more than 40,000 of them being members of DARC. DOK is a system " +"that provides individual local chapters with an identifier and means " +"'Deutscher Ortsverband Kenner' (English: 'German Local Association " +"Identifier')." +msgstr "" +"Nemačka se prostire na preko 63 km od istoka ka zapadu, i skoro 900 km od " +"severa ka jugu. Oko 70.000 od 82 miliona stavnika su licencirani radio-" +"amateri, od kojih je više od 40.000 članova nacionalnog saveza DARC. DOK je " +"sistem sa identifikatorom koji je dodeljen lokalnim organizacionim " +"jedinicama i znači 'Deutscher Ortsverband Kenner' (Srpski: 'Identifikator " +"lokalne asocijacije')." + +#: application/views/awards/dok/index.php:9 +msgid "" +"The DOK consists of a letter for the district and a two-digit number for the " +"local chapter, like P03 Friedrichshafen (city of the 'Hamradio exhibition') " +"or F41 Baunatal (location of the DARC headquarters). Note: A zero in a DOK " +"is a common mistake, often being logged as the letter O." +msgstr "" +"DOK se zastoji od slova za okrug i dvocifrenog broja za lokalnu " +"organizaciju, kao što je P03 za Fridrishafen (grad u kome se održava " +"Hamradio sajam) ili F41 Baunatal (sjedište DARC). Napomena: uobičajena " +"greška u popunjavanju dnevnika je nula u oznaci DOK, koja se često upisuje " +"kao slovo O." + +#: application/views/awards/dok/index.php:10 +msgid "DARC website" +msgstr "DARC web sajt" + +#: application/views/awards/dok/index.php:10 +#, php-format +msgctxt "uses 'DARC Website' and 'here'" +msgid "" +"This information is provided by the %s. Information about the DOK Awards and " +"its rules can be found %s." +msgstr "" +"Ove informacije je obezbedio %s. Informacije o DOK diplomama i pravilima " +"možete naći %s." + +#: application/views/awards/dok/index.php:20 +msgid "DOK / SDOK" +msgstr "DOK / SDOK" + +#: application/views/awards/dok/index.php:23 +msgid "DOK + SDOK" +msgstr "DOK + SDOK" + +#: application/views/awards/dok/index.php:37 +#: application/views/awards/dxcc/index.php:39 +#: application/views/awards/helvetia/index.php:33 +#: application/views/awards/iota/index.php:39 +#: application/views/awards/jcc/index.php:30 +#: application/views/awards/rac/index.php:25 +#: application/views/awards/waja/index.php:33 +#: application/views/awards/was/index.php:33 +msgid "Worked / Confirmed" +msgstr "Rađeni / Potvrđeni" + +#: application/views/awards/dok/index.php:80 +#: application/views/awards/dxcc/index.php:120 +#: application/views/awards/helvetia/index.php:76 +#: application/views/awards/iota/index.php:94 +#: application/views/awards/jcc/index.php:77 +#: application/views/awards/rac/index.php:68 +#: application/views/awards/wac/index.php:66 +#: application/views/awards/waja/index.php:80 +#: application/views/awards/was/index.php:76 +msgid "Every band" +msgstr "Svaki opseg" + +#: application/views/awards/dxcc/index.php:14 +msgid "DXCC Award" +msgstr "DXCC diploma" + +#: application/views/awards/dxcc/index.php:15 +msgid "'How to Count Countries Worked, A New DX Scoring System'" +msgstr "'Kako obračunati rađene zemlje, novi DX sistem bodovanja'" + +#: application/views/awards/dxcc/index.php:15 +#, php-format +msgid "" +"DXCC stands for 'DX Century Club,' an award based on worked countries. The " +"DXCC List is based on an article created in 1935 by Clinton B. DeSoto, " +"W1CBD, titled %s." +msgstr "" +"DXCC je skraćenica za 'DX Century Club', diplomu na osnovu rađih država/" +"entiteta. DXCC lista je napravljena na osnovu članka objavljenog 1935. " +"godine čiji je autor Klinton B. DeSoto, W1CBD, pod naslovom %s." + +#: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 +msgid "ARRL website" +msgstr "ARR web sajt" + +#: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 +#, php-format +msgid "You can find all information about the DXCC Award on the %s." +msgstr "Sve informacije o DXCC diplomama možete pronaći na %s." + +#: application/views/awards/dxcc/index.php:17 +msgid "" +"Important Note: Over time, the criteria for the DXCC List have changed. The " +"List remains unchanged until an entity no longer satisfies the criteria " +"under which it was added, at which time it is moved to the Deleted List. You " +"will find Deleted DXCC entities also in the lists on Wavelog. Be aware that " +"these DXCC entities are outdated and no longer valid." +msgstr "" +"Važna napomena: Tokom vremena, kriterijum za sastavljanje DXCC liste se " +"menjao. Lista ostasje nepromenjena sve dok entitet više ne ispunjava uslove " +"pod kojima je dodat, kada će biti premešte na listu obrisanih zemalja/" +"entiteta. Ovu listu takođe možete pronaći u Wavelogu. Skrećemo vam pažnju da " +"su ovi DXCC entiteti zastareli i nevažeći." + +#: application/views/awards/dxcc/index.php:32 +#: application/views/awards/iota/index.php:33 +msgid "Include deleted" +msgstr "Uključujući obrisane" + +#: application/views/awards/dxcc/index.php:87 +#: application/views/awards/iota/index.php:61 +#: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/logbookadvanced/edit.php:144 +#: application/views/logbookadvanced/index.php:309 +#: application/views/options/dxcluster.php:56 +#: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 +#: application/views/view_log/qso.php:253 +msgid "Antarctica" +msgstr "Antarktika" + +#: application/views/awards/dxcc/index.php:91 +#: application/views/awards/iota/index.php:65 +#: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/logbookadvanced/edit.php:143 +#: application/views/logbookadvanced/index.php:308 +#: application/views/options/dxcluster.php:55 +#: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 +#: application/views/view_log/qso.php:250 +msgid "Africa" +msgstr "Afrika" + +#: application/views/awards/dxcc/index.php:95 +#: application/views/awards/iota/index.php:69 +#: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/logbookadvanced/edit.php:146 +#: application/views/logbookadvanced/index.php:311 +#: application/views/options/dxcluster.php:57 +#: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 +#: application/views/view_log/qso.php:256 +msgid "Asia" +msgstr "Azija" + +#: application/views/awards/dxcc/index.php:99 +#: application/views/awards/iota/index.php:73 +#: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/logbookadvanced/edit.php:147 +#: application/views/logbookadvanced/index.php:312 +#: application/views/options/dxcluster.php:58 +#: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 +#: application/views/view_log/qso.php:259 +msgid "Europe" +msgstr "Evropa" + +#: application/views/awards/dxcc/index.php:103 +#: application/views/awards/iota/index.php:77 +#: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/logbookadvanced/edit.php:145 +#: application/views/logbookadvanced/index.php:310 +#: application/views/options/dxcluster.php:59 +#: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 +#: application/views/view_log/qso.php:262 +msgid "North America" +msgstr "Severna Amerika" + +#: application/views/awards/dxcc/index.php:107 +#: application/views/awards/iota/index.php:81 +#: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/logbookadvanced/edit.php:148 +#: application/views/logbookadvanced/index.php:313 +#: application/views/options/dxcluster.php:61 +#: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 +#: application/views/view_log/qso.php:268 +msgid "South America" +msgstr "Južna Amerika" + +#: application/views/awards/dxcc/index.php:111 +#: application/views/awards/iota/index.php:85 +#: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/logbookadvanced/edit.php:149 +#: application/views/logbookadvanced/index.php:314 +#: application/views/options/dxcluster.php:60 +#: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 +#: application/views/view_log/qso.php:265 +msgid "Oceania" +msgstr "Okeanija" + +#: application/views/awards/dxcc/index.php:189 +msgid "Show DXCC Map" +msgstr "Prikaži DXCC kartu" + +#: application/views/awards/dxcc/index.php:225 +msgid "DXCC Name" +msgstr "Naziv DXCC" + +#: application/views/awards/dxcc/index.php:226 +#: application/views/awards/iota/index.php:170 +#: application/views/timeline/index.php:150 +#: application/views/timeline/index.php:237 +msgid "Prefix" +msgstr "Prefiks" + +#: application/views/awards/ffma/index.php:8 +#: application/views/interface_assets/header.php:240 +msgid "Fred Fish Memorial Award" +msgstr "Fred Fish memorijalna diploma" + +#: application/views/awards/ffma/index.php:9 +msgid "" +"The Fred Fish Memorial Award was created in honor of Fred Fish, W5FF (SK), " +"who was the first amateur to have worked and confirmed all 488 Maidenhead " +"grid squares in the 48 contiguous United States on 6 Meters." +msgstr "" +"Fred Fish memorijalna diploma je napravljena u čast Freda Fiša, W5FF (SK) " +"koji je bio prvi radio-amater koji je uradio i potvrdio svih 488 Maidenhead " +"polja u svih 48 kontinentalnih američkih država na 6M opsegu." + +#: application/views/awards/ffma/index.php:10 +msgid "" +"The award will be given to any amateur who can duplicate W5FF's " +"accomplishment." +msgstr "" +"Diploma će biti dodeljena svim amaterima koji mogu da ponove dostignuće koje " +"je napravio W5FF." + +#: application/views/awards/ffma/index.php:11 +#, php-format +msgid "For more information, you can visit this link: %s." +msgstr "Za više informacija, možete posetiti ovaj link: %s." + +#: application/views/awards/gridmaster/index.php:7 +msgid "US Gridmaster Award" +msgstr "US Gridmaster diploma" + +#: application/views/awards/gridmaster/index.php:8 +msgid "" +"The GridMaster Award is the most prestigious AMSAT award, first introduced " +"in 2014 by the Star Comm Group. It is available to all amateur radio " +"operators worldwide who manage to work all 488 grid squares in the USA via " +"satellite and can provide QSL confirmations for each contact." +msgstr "" +"GridMaster dipolma je najsprestižnija AMSAT diploma, prvi put predstavljena " +"2014 godine od strane Star Comm grupe. Dodjeljuje se svim radio-amaterima " +"širom sveta koji uspeju da održe veze preko satelita sa svih 488 polja u SAD " +"i koji dostave QSL potvrde za svaku vezu." + +#: application/views/awards/gridmaster/index.php:9 +#, php-format +msgid "" +"Official information from the %s: Two-way communication must be established " +"via amateur satellite with each grid. There is no minimum signal report " +"required. Contacts must be made from the same location or from locations no " +"two of which are more than 200 kilometers apart. The applicant's attestation " +"in the award application serves as affirmation of abidance by the distance " +"rule. Individuals may apply for and be granted multiple GridMaster awards " +"when achieved from another location, which is in a different 200-kilometer " +"circle." +msgstr "" +"Zvanična informacija sa %s: Obosntrana komunikacija sa svakim poljem mora " +"biti uspostavljena preko amaterskih satelita. Ne postoji zahtevani minimum " +"za raport o kvalitetu signala. Veze moraju biti održane sa iste lokacije ili " +"lokacija koje su maksimalno udaljene ne više od 200 km. Aplikantova izjava u " +"aplikaciji za diplomu služi kao potvrda pridržavanja pravila o udaljenosti. " +"Pojedinci mogu aplicirati i može im biti dodeljeno više GridMaster diploma " +"koje mogu biti ostvarene sa druge lokacije, koja je drugačija od kruga od " +"200 km." + +#: application/views/awards/gridmaster/index.php:9 +msgid "website" +msgstr "web sajt" + +#: application/views/awards/gridmaster/index.php:10 +msgid "This map shows only QSOs worked on SAT." +msgstr "Ova karta prikazuje samo QSO rađene preko SAT." + +#: application/views/awards/helvetia/index.php:3 +msgctxt "Switzerland Canton" +msgid "Canton" +msgstr "Kanton" + +#: application/views/awards/helvetia/index.php:4 +msgid "Hover over a canton" +msgstr "Pomerite miša preko kantona" + +#: application/views/awards/helvetia/index.php:20 +msgid "HELVETIA 26 | SWITZERLAND AWARD" +msgstr "HELVETIA 26 | Švajcarska diploma" + +#: application/views/awards/helvetia/index.php:21 +msgid "" +"The USKA (Union of Swiss Shortwave Amateurs) sponsors two awards, the " +"HELVETIA 26 (H26) Award and the SWITZERLAND Award, aimed at promoting " +"activities on the bands by encouraging contacts across as many Swiss cantons " +"as possible on multiple bands." +msgstr "" +"USKA (Union of Swiss Shortwave Amateurs) sponzoriše dvije diplome, HELVETIA " +"26 (H26) i SWITZERLAND diplomu, sa ciljem promocije aktivnosti na opsezima i " +"podsticanjem veza sa amaterima iz što je više moguće kantona, na više opsega." + +#: application/views/awards/helvetia/index.php:22 +msgid "" +"These awards come in two versions: one for HF bands and the other for VHF " +"(including SHF and UHF) bands. Valid connections for these awards date back " +"to January 1, 1980" +msgstr "" +"Ove diplome dolaze u dvije verzije: jedna za KT opsege i druga za VHF " +"(uključujući SHF i UHF) opsege. Za diplomu se računaju kontakti nakon 1. " +"januara 1980" + +#: application/views/awards/helvetia/index.php:23 +#: application/views/awards/jcc/index.php:19 +#: application/views/awards/sota/index.php:10 +#: application/views/awards/wab/index.php:15 +#: application/views/awards/waja/index.php:22 +#: application/views/awards/wwff/index.php:10 +#, php-format +msgid "For more information, please visit: %s." +msgstr "Za više informacija, molimo posjetite: %s." + +#: application/views/awards/helvetia/index.php:114 +msgid "Show Helvetia Map" +msgstr "Prikaži Helvetia kartu" + +#: application/views/awards/helvetia/index.php:151 +msgid "Canton" +msgstr "Kanton" + +#: application/views/awards/index.php:9 application/views/bands/index.php:46 +#: application/views/interface_assets/header.php:164 +msgid "CQ" +msgstr "CQ" + +#: application/views/awards/iota/index.php:16 +msgid "IOTA Awards" +msgstr "IOTA diplome" + +#: application/views/awards/iota/index.php:17 +msgid "" +"IOTA is an exciting and innovative activity program that has captured the " +"interest of thousands of radio amateurs worldwide. Established in 1964, it " +"promotes radio contacts with stations located on islands around the world to " +"enhance the experience of all those active on the amateur bands. To achieve " +"this, it draws on the widespread mystique surrounding islands." +msgstr "" +"IOTA je uzbudljiv i program koji je uveo novine u potragu za diplomama, koji " +"je privukao interes hiljada radio amatera širom sveta. Ustanovljen je 1964 i " +"promoviše kontakte sa stanicama koje su smeštene na ostrvima širom sveta " +"kako bi poboljšao iskustva svih onih koji su aktivni na radio amaterskim " +"opsezima. Da bi se to postiglo, program se oslanja ne samo na bliska već i " +"udaljena, mistična ostrva." + +#: application/views/awards/iota/index.php:18 +msgid "" +"It is administered by Islands On The Air (IOTA) Ltd (referred to as IOTA " +"Management) in partnership with the Radio Society of Great Britain (RSGB). " +"IOTA Management has grouped the world's islands into approximately 1200 " +"'IOTA groups,' each having varying numbers of 'counters,' which are " +"qualifying islands. These listings are published in the IOTA Directory and " +"on the IOTA website. The objective for the IOTA Island Chaser is to make " +"radio contact with at least one counter in as many of these groups as " +"possible. The program has a well-defined set of rules and encourages " +"friendly competition among chasers by publishing participant performance in " +"an Honor Roll and annual listings, as well as recognizing it with " +"certificates and prestigious awards." +msgstr "" +"Administrira ga Islands On The Air (IOTA) Ltd (poznat kao IOTA Menadžment) u " +"saradnji sa Radio-udruženjem Velike Britanije (RGSB). IOTA Menadžment je " +"grupisao svjetska ostrva u otprilike 1200 'IOTA grupa', od kojih svaka ima " +"različiti broj ostrva, koja ispunjavaju određene uslove. Ovi listinzi su " +"objavljeni u IOTA Imeniku na IOTA web sajtu. Cilj IOTA tragača je da ostvare " +"radio vezu sa najmanje jednim ostrvom iz što je više grupa. Progam ima dobro " +"definisana pravila i podstiče prijateljsko takmičenje između tragača kako " +"objavljivanjem rezultata na Honor Roll i godišnjoj listi, tako i dodjelom " +"potvrda i prestižnih diploma." + +#: application/views/awards/iota/index.php:19 +#, php-format +msgid "You can also find this information on %s." +msgstr "Ove informacije možete pronaći na %s." + +#: application/views/awards/iota/index.php:29 +msgid "Deleted IOTA" +msgstr "Izbrisane IOTA" + +#: application/views/awards/iota/index.php:132 +msgid "Show IOTA Map" +msgstr "Prikaži kartu IOTA" + +#: application/views/awards/iota/index.php:171 +#: application/views/contesting/add.php:25 +#: application/views/contesting/create.php:24 +#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:214 +#: application/views/dashboard/index.php:18 +#: application/views/labels/index.php:41 application/views/labels/index.php:75 +#: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/qslcarousel.php:34 +#: application/views/logbookadvanced/useroptions.php:54 +#: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 +#: application/views/satellite/edit.php:34 +#: application/views/satellite/index.php:21 +#: application/views/search/result.php:16 +#: application/views/search/search_result_ajax.php:19 +#: application/views/stationsetup/stationsetup.php:30 +#: application/views/themes/index.php:82 +#: application/views/timeline/index.php:236 application/views/user/edit.php:241 +#: application/views/user/edit.php:263 application/views/user/edit.php:285 +#: application/views/user/edit.php:307 application/views/user/edit.php:330 +#: application/views/view_log/partial/log_ajax.php:19 +#: application/views/view_log/qso.php:194 +#: application/views/view_log/qso.php:514 +msgid "Name" +msgstr "Naziv" + +#: application/views/awards/iota/index.php:173 +msgid "Deleted" +msgstr "Izbrisano" + +#: application/views/awards/itu/index.php:3 +#: application/views/awards/itu/index.php:150 +#: application/views/logbookadvanced/edit.php:10 +#: application/views/logbookadvanced/index.php:257 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:400 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 +msgid "ITU Zone" +msgstr "ITU Zona" + +#: application/views/awards/itu/index.php:21 +msgid "" +"The Classic Worked ITU Zones award may be claimed by producing evidence of " +"having contacted land based amateur radio stations in at least 70 of the 75 " +"broadcasting zones as defined by the International Telecommunications Union " +"(ITU)." +msgstr "" +"Klasičnu Worked ITU Zones diplomu možete osvojiti pružanjem dokaza da ste " +"ostvarili kontakte sa zemaljskim radio-amaterskim stanicama u najmanje 70 od " +"75 zona kako su definisane od strane Međunarodne unije za telekomunikacije " +"(International Telecommunication Union - ITU)." + +#: application/views/awards/itu/index.php:22 +#, php-format +msgctxt "uses 'RSGB'" +msgid "You can find more information on the website of %s." +msgstr "Više informacija možete pronaći na web sajtu %s." + +#: application/views/awards/itu/index.php:25 +msgid "Awards - ITU Zones" +msgstr "Diplome - ITU zone" + +#: application/views/awards/itu/index.php:115 +msgid "Show ITU Zone Map" +msgstr "Prikaži kartu ITU zona" + +#: application/views/awards/jcc/index.php:16 +msgid "JCC - Japan Century Cities Award" +msgstr "JCC - Japan Century Cities Award" + +#: application/views/awards/jcc/index.php:17 +msgid "" +"May be claimed for having contacted (heard) and received a QSL card from an " +"amateur station located in each of at least 100 different cities of Japan." +msgstr "" +"Možete je osvojiti za ostvarene kontakte (ili slušane veze) i primljene QSL " +"karte od amaterskih radio-stanica smeštenih u svakom od najmanje 100 " +"različitih gradova Japana." + +#: application/views/awards/jcc/index.php:18 +msgid "" +"JCC-200, 300, 400, 500, 600, 700 and 800 will be issued as separate awards. " +"A list of QSL cards should be arranged in order of JCC reference number, " +"however names of city may be omitted. An additional sticker will be issued " +"at every 50 contacts like 150, 250, 350, 450, 550, 650, 750 cities." +msgstr "" +"JCC-200, 300, 400, 500, 600, 700 i 800 će biti izdate kao posebne diplome. " +"Lista QSLkarata trebalo bi da bude složena po redu prema JCC referentnim " +"brojevima, a imena gradova mogu biti izostavljena. Dodatne nalepnice biće " +"izdate za svakih 50 kontakata kao što su 150, 250, 350, 450, 550, 650 i 750 " +"gradova." + +#: application/views/awards/jcc/index.php:115 +msgid "Show JCC Map" +msgstr "Prikaži JCC kartu" + +#: application/views/awards/jcc/index.php:116 +#: application/views/cabrillo/index.php:180 application/views/cfd/index.php:25 +#: application/views/csv/index.php:128 application/views/dxatlas/index.php:128 +#: application/views/kml/index.php:113 application/views/reg1test/index.php:145 +msgid "Export" +msgstr "Izvoz" + +#: application/views/awards/jcc/index.php:126 +#: application/views/public_search/empty.php:2 +#: application/views/public_search/result.php:2 +msgid "Results" +msgstr "Rezultati" + +#: application/views/awards/jcc/index.php:151 +#: application/views/awards/waja/index.php:153 +#: application/views/distancerecords/index.php:13 +msgid "Number" +msgstr "Broj" + +#: application/views/awards/jcc/index.php:152 +#: application/views/search/result.php:21 +#: application/views/view_log/qso.php:524 +msgid "City" +msgstr "Grad" + +#: application/views/awards/jcc/index.php:187 +#: application/views/dashboard/index.php:368 +#: application/views/distances/index.php:23 +msgid "SAT" +msgstr "SAT" + +#: application/views/awards/pota/index.php:7 +msgid "POTA Awards" +msgstr "POTA diploma" + +#: application/views/awards/pota/index.php:8 +msgid "" +"Parks on the Air® (POTA) started in early 2017 when the ARRL's National " +"Parks on the Air special event ended. A group of volunteers wanted to " +"continue the fun beyond the one-year event, and thus, POTA was born." +msgstr "" +"Parks on the Air® (POTA) program započet je 2017. godine kada se završio " +"ARRL-ov posebni događaj Nacionalni parkovi u eteru. Grupa volontera želela " +"je da nastavi sa zabavom oko projekta koji je trajao jednu godinu, te je " +"tako rođena POTA." + +#: application/views/awards/pota/index.php:9 +msgid "" +"POTA works similarly to SOTA, with Activators and Hunters. For the awards, " +"there are several categories based on the number of parks, geographic areas, " +"and more." +msgstr "" +"POTA funkcioniše slično SOTA programu, sa aktivatorima i lovcima. Za " +"diplome, postoji nekoliko kategorija na osnovu broja parkova, geografskih " +"područja, i još toga." + +#: application/views/awards/pota/index.php:10 +#, php-format +msgctxt "uses 'the website'" +msgid "" +"For more information about the available awards and categories, please visit " +"the %s." +msgstr "Za više informacija o dostupnim diplomama i kategorijama, posetite %s." + +#: application/views/awards/pota/index.php:31 +#: application/views/qso/index.php:236 application/views/qso/index.php:492 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 +#: application/views/user/edit.php:595 application/views/view_log/qso.php:306 +#: application/views/view_log/qso.php:573 +msgid "POTA Reference(s)" +msgstr "POTA reference" + +#: application/views/awards/rac/index.php:3 +msgctxt "Canada Province" +msgid "Province" +msgstr "Provincije" + +#: application/views/awards/rac/index.php:4 +msgid "Hover over a province" +msgstr "Nanesite miša iznad provincije" + +#: application/views/awards/rac/index.php:106 +msgid "Show RAC Map" +msgstr "Prikaži RAC kartu" + +#: application/views/awards/sig/index.php:7 +msgid "SIG Information" +msgstr "SIG informacije" + +#: application/views/awards/sig/index.php:8 +msgid "" +"The SIG or Signature Category provides the possibility to use any kind of " +"'Award Signature' for awards that are not implemented in Wavelog." +msgstr "" +"SIG ili Signature Category pruža mogućnost da se koristi bilo koja vrsta " +"'Award Signature' za diplome koje nisu implementirane u Wavelogu." + +#: application/views/awards/sig/index.php:9 +msgid "" +"The reason for this is that the common ADIF format provides only a few " +"dedicated fields for certain awards. SIG still makes it possible to use and " +"evaluate all other types of signature markers." +msgstr "" +"Razlog za ovo je da obični ADIF format ima samo nekoliko dodatnih polja za " +"određene diplome. SIG se koristi za proširenje ovih mogućnost i procenu " +"drugih markera potpisa." + +#: application/views/awards/sig/index.php:10 +msgid "" +"In the QSO processing, you will find two fields: 'SIG' contains the actual " +"marker, which is also visible in the award evaluation, and 'SIG INFO,' which " +"contains a description of the signature. Both fields are freely customizable." +msgstr "" +"Tokom obrade QSO, pronaći ćete dva polja: 'SIG' koji sadrži stvarnu oznaku, " +"koja je takođe vidljiva prilikom ispitaivanja diplome, i 'SIG INFO' koje " +"sadrži opis potpisa. Oba polja su slobodna za prilagođavanje po želji." + +#: application/views/awards/sig/index.php:21 +msgid "Award Type" +msgstr "Vrsta diplome" + +#: application/views/awards/sig/index.php:22 +#: application/views/continents/index.php:17 +#: application/views/distances/index.php:12 +#: application/views/timeplotter/index.php:4 +msgid "Number of QSOs" +msgstr "Broj veza" + +#: application/views/awards/sig/index.php:23 +msgid "Number of Refs" +msgstr "Broj referenci" + +#: application/views/awards/sig/qso_list.php:9 +#: application/views/awards/sota/index.php:23 +msgid "Reference" +msgstr "Reference" + +#: application/views/awards/sig/qso_list.php:10 +#: application/views/awards/sota/index.php:24 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/qslcarousel.php:31 +#: application/views/logbookadvanced/useroptions.php:22 +#: application/views/qslmanagement/index.php:23 +#: application/views/qso/components/previous_contacts.php:6 +#: application/views/search/lotw_unconfirmed_result.php:7 +#: application/views/view_log/qso.php:71 +msgid "Date/Time" +msgstr "Datum/Vrijeme" + +#: application/views/awards/sig/qso_list.php:14 +#: application/views/awards/sota/index.php:27 +msgid "RST Sent" +msgstr "RST poslat" + +#: application/views/awards/sig/qso_list.php:15 +#: application/views/awards/sota/index.php:28 +msgid "RST Received" +msgstr "RST primljen" + +#: application/views/awards/sig/qso_list.php:34 +msgid "Export QSOs to ADIF" +msgstr "Izvezi QSO u ADIF" + +#: application/views/awards/sota/index.php:7 +msgid "SOTA Awards" +msgstr "SOTA diplome" + +#: application/views/awards/sota/index.php:8 +msgid "" +"SOTA (Summits On The Air) is an award scheme for radio amateurs that " +"encourages portable operation in mountainous areas." +msgstr "" +"SOTA (Summits On The Air - Planinski vrhovi u eteru) je sistem dodjele " +"diploma za radio-amatere koji podstiču operacije prenosnim radio-stanicama " +"iz planinskih područja." + +#: application/views/awards/sota/index.php:9 +msgid "" +"It is fully operational in nearly a hundred countries worldwide. Each " +"country has its own Association that defines the recognized SOTA summits " +"within that Association. Each summit earns the activators and chasers a " +"score related to the height of the summit. Certificates are available for " +"various scores, leading to the prestigious 'Mountain Goat' and 'Shack Sloth' " +"trophies. An Honor Roll for Activators and Chasers is maintained in the SOTA " +"online database." +msgstr "" +"U potpunosti je operativan u skoro stotinu zemalja širom svijeta. Svaka " +"zemlja ima vlastito udruženje koje definiše i prepoznaje SOTA vrhove u " +"okviru urdruženja. Svaki vrh donosi poene i aktivatorima i lovcima, u skladu " +"sa visinom vrha. Sertifikati su dostupni za razne rezultate, vodeći do " +"prestižnih trofeja 'Planinska koza' ili 'Lenjivac iz radio-sobe'. Honor Roll " +"za aktivatore i lovce se održava kroz SOTA bazu podataka kojoj je moguće " +"pristupiti preko Internet mreže." + +#: application/views/awards/vucc/index.php:7 +msgid "VUCC - VHF/UHF Century Club Award" +msgstr "VUCC - VHF/UHF Century Club diploma" + +#: application/views/awards/vucc/index.php:8 +msgid "" +"The VHF/UHF Century Club Award is given for a minimum number of worked and " +"confirmed gridsquares on a desired band." +msgstr "" +"VUCC - VHF/UHF Century Club diploma dodeljuje se za minimum rađenih i " +"potvrđenih polja na željenom opsegu." + +#: application/views/awards/vucc/index.php:9 +#, php-format +msgid "Official information and the rules can be found in this document: %s." +msgstr "" +"Zvanične informacije i pravila mogu biti pronađeni u ovom dokumentu: %s." + +#: application/views/awards/vucc/index.php:10 +msgid "Only VHF/UHF bands are relevant." +msgstr "Relevantni su samo VHF/UHF opsezi." + +#: application/views/awards/vucc/index.php:22 +msgid "Grids Worked" +msgstr "Rađenih polja" + +#: application/views/awards/vucc/index.php:23 +msgid "Grids Confirmed" +msgstr "Potvrđenih polja" + +#: application/views/awards/wab/index.php:12 +msgid "WAB - Worked All Britain Award" +msgstr "WAB - Worked All Britain diploma" + +#: application/views/awards/wab/index.php:13 +msgid "" +"WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham " +"radio operators to work all the squares in Great Britain." +msgstr "" +"WAB, urađena sva polja Velike Britanije, podstiče licencirane radio-amatere " +"da održe veze sa svim poljima u Velikoj Britaniji." + +#: application/views/awards/wab/index.php:14 +msgid "" +"May be claimed for having contacted an amateur station located in the " +"required amount of squares, described on the page linked below." +msgstr "" +"Zahtev možete poslati nakon kontakta sa amaterskim radio-stanicama lociranim " +"u određenom broju polja, prema opisu sa stranice čii se link nalazi ispod." + +#: application/views/awards/wab/index.php:109 +msgid "List" +msgstr "Lista" + +#: application/views/awards/wab/list.php:5 +msgid "WAB Square" +msgstr "WAB polje" + +#: application/views/awards/wac/index.php:9 +msgid "" +"Sponsored by the International Amateur Radio Union (IARU), the Worked All " +"Continents award is issued for working and confirming all six continents. " +"These are North America, South America, Oceania, Asia, Europe and Africa." +msgstr "" + +#: application/views/awards/wac/index.php:13 +msgid "Awards - Worked All Continents (WAC)" +msgstr "" + +#: application/views/awards/wac/index.php:151 +#: application/views/continents/index.php:62 +#: application/views/logbookadvanced/edit.php:25 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 +#: application/views/view_log/qso.php:245 +msgid "Continent" +msgstr "Kontinent" + +#: application/views/awards/waja/index.php:3 +msgctxt "Japan Prefecture" +msgid "Prefecture" +msgstr "Prefektura" + +#: application/views/awards/waja/index.php:4 +msgid "Hover over a prefecture" +msgstr "Nanesite miša preko prefekture" + +#: application/views/awards/waja/index.php:19 +msgid "WAJA - Worked All Japan prefectures Award" +msgstr "WAJA - Worked All Japan prefectures diploma" + +#: application/views/awards/waja/index.php:20 +msgid "" +"WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " +"radio operators to work all the prefectures in Japan." +msgstr "" +"WAJA, Worked All Japan prefekcures je diploma koja se dodeljuje licenciranim " +"radio-amaterima za održane veze sa svim japanskim prefekturama." + +#: application/views/awards/waja/index.php:21 +msgid "" +"May be claimed for having contacted (heard) and received a QSL card from an " +"amateur station located in each of the 47 prefectures of Japan. A list of " +"QSL cards should be arranged in order of WAJA (HAJA) reference number, " +"however names of prefectures may be omitted." +msgstr "" +"Zahtev možete poslati nakon održanih (slušanih) veza i primljenih QSL karata " +"od amaterskih radio-stanica lociranih u svakoj od 47 japanskih prefektura. " +"Lista QSL karata trebalo bi biti složena po redosledu WAJA (HAJA) " +"referentnih brojeva, a imena prefektura mogu biti izostavljena." + +#: application/views/awards/waja/index.php:118 +msgid "Show WAJA Map" +msgstr "Prikaži WAJA kartu" + +#: application/views/awards/waja/index.php:154 +#: application/views/timeline/index.php:185 +msgid "Prefecture" +msgstr "Prefektura" + +#: application/views/awards/was/index.php:3 +msgctxt "USA State" +msgid "State" +msgstr "Država" + +#: application/views/awards/was/index.php:4 +msgid "Hover over a state" +msgstr "Nanesite miša preko države" + +#: application/views/awards/was/index.php:20 +msgid "WAS Award" +msgstr "WAS diploma" + +#: application/views/awards/was/index.php:21 +msgid "" +"ARRL's most popular award is the Worked All States Award. Thousands upon " +"thousands of awards have been issued to hams around the world. In ARRL's " +"101st year, they have redesigned the certificates and the program in hopes " +"of streamlining and improving the award program." +msgstr "" +"ARRL-ova najpopularnija diplomaj je WAS. Hiljade i hiljade diploma su izdate " +"radio-amaterima širom svijeta. U stogodišnjoj ARRL istoriji dolazilo je do " +"redizajna sertifikata i programa u nameri da se program diploma usavrši." + +#: application/views/awards/was/index.php:22 +msgid "" +"The WAS (Worked All States) Award is available to all amateurs worldwide who " +"submit proof with written confirmation of contacts with each of the 50 " +"states of the United States of America. Amateurs in the U.S. and its " +"possessions must be members of ARRL to apply for a WAS. Applicants from " +"outside the U.S. are exempt from this requirement." +msgstr "" +"WAS (Worked All States) diploma dodeljuje se radio-amaterima širom sveta " +"koji dostave dokaze sa pisanom potvrdom o kontaktima sa svakom od 50 država " +"Sjedinjenih američkih država. Radio-amateri iz SAD i teritorija moraju biti " +"članovi ARRL da bi aplicirali za diplomu. Aplikanti van SAD su izuzeti od " +"ovog pravila." + +#: application/views/awards/was/index.php:23 +#, php-format +msgctxt "uses 'here'" +msgid "All information and rules for the ARRL WAS Award can be found %s." +msgstr "Sve informacije i pravila o ARRL WAS diplomi možete naći %s." + +#: application/views/awards/was/index.php:114 +msgid "Show WAS Map" +msgstr "Prikaži WAS kartu" + +#: application/views/awards/wwff/index.php:7 +msgid "WWFF - World Wide Flora and Fauna Award" +msgstr "WWFF - diploma World Wide Flora and Fauna" + +#: application/views/awards/wwff/index.php:8 +msgid "" +"WWFF, World Wide Flora and Fauna in Amateur Radio, encourages licensed ham " +"radio operators to leave their shacks and operate portable in Protected " +"Flora & Fauna areas (PFF) worldwide." +msgstr "" +"WWFF, World Wide Flora and Fauna u radio-amaterizmu podstiču licencirane " +"radio-amatere operatore da izađu iz svojih radio-soba i rade prenosnom " +"opremom iz zaštićenih zona flore i faune, širom sveta." + +#: application/views/awards/wwff/index.php:9 +msgid "" +"More than 26,000 Protected Flora & Fauna (PFF) areas worldwide are already " +"registered in the WWFF Directory. Hunters and Activators can apply for " +"colorful awards, both globally and nationally." +msgstr "" +"U WWFF imeniku već je registrovano više od 26.000 zaštićenih područja flore " +"i faune. Lovci i aktivatori mogu aplicirati za šarolike diplome, kako " +"globalne tako i diplome nacionalnih organizacija." + +#: application/views/awards/wwff/index.php:31 +#: application/views/qso/index.php:224 application/views/qso/index.php:479 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 +#: application/views/user/edit.php:591 application/views/view_log/qso.php:299 +#: application/views/view_log/qso.php:566 +msgid "WWFF Reference" +msgstr "WWFF reference" + +#: application/views/backup/adif_view.php:7 +msgid "" +"The backup of your log completed successfully. The output can be found at" +msgstr "" +"Rezervna kopija vašeg loga je uspešno napravljena. Kopiju možete pronaći u" + +#: 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 "Mete automatizovati ovaj proces kreiranjem cronjob-a." + +#: application/views/backup/adif_view.php:13 +#: application/views/backup/notes_view.php:13 +msgid "" +"Something went wrong during the backup process. Check that the backup folder " +"exists and is writeable by your web server user / group." +msgstr "" +"Nešto je pošlo naopako tokom procesa kreiranja rezervne kopije. Proverite da " +"li postoji direktorijum za rezervnu kopiju, i da li je omogućen za " +"upisivanje od strane vašeg web server korisnika/grupe." + +#: application/views/backup/main.php:17 +msgid "" +"Some of the data stored in Wavelog can be exported so that you can keep a " +"backup copy elsewhere." +msgstr "" +"Neki od podataka smeštenih u Wavelogu mogu biti izvezeni tako da rezervnu " +"kopiju možete čuvati na nekom drugom mestu." + +#: application/views/backup/main.php:18 +msgid "" +"It's recommended to create backups on a regular basis to protect your data." +msgstr "" +"Preporučuje se da često pravite rezervne kopije kako biste zaštili vaše " +"podatke." + +#: application/views/backup/main.php:19 +msgid "Backup ADIF data" +msgstr "Rezervna kopija ADIF podataka" + +#: application/views/backup/main.php:20 +msgid "Backup Notes" +msgstr "Rezervna kopija Napomena" + +#: application/views/backup/notes_view.php:7 +msgid "" +"The backup of your notes completed successfully. The output can be found at" +msgstr "" +"Rezervna kopija vaših Napomena je uspešno napravljena. Kopiju možete pronaći " +"u" + +#: application/views/bandmap/index.php:15 application/views/bandmap/list.php:49 +msgid "BandMap" +msgstr "Mapa opsega" + +#: application/views/bandmap/index.php:18 application/views/bandmap/list.php:52 +msgid "BandList" +msgstr "Lista opsega" + +#: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 +#: application/views/contesting/index.php:15 +#: application/views/contesting/index.php:52 +#: application/views/contesting/index.php:145 +#: application/views/qso/index.php:314 +msgid "None" +msgstr "Ništa" + +#: application/views/bandmap/index.php:33 application/views/bandmap/list.php:76 +msgid "Spots de" +msgstr "Spotovi od" + +#: application/views/bandmap/list.php:69 +msgid "DXCC-Status" +msgstr "DXCC status" + +#: application/views/bandmap/list.php:74 +msgid "Not Confirmed" +msgstr "Nije potvrđeno" + +#: application/views/bandmap/list.php:113 +msgid "Spotter" +msgstr "Spoter" + +#: application/views/bandmap/list.php:114 +#: application/views/oqrs/notinlogform.php:28 +#: application/views/oqrs/request.php:54 +#: application/views/oqrs/request_grouped.php:58 +msgid "Message" +msgstr "Poruka" + +#: application/views/bands/create.php:26 application/views/bands/edit.php:8 +msgid "Name of Band (E.g. 20m)" +msgstr "Naziv opsega (npr. 20M)" + +#: application/views/bands/create.php:29 application/views/bands/edit.php:11 +#: application/views/bands/index.php:61 +msgid "Bandgroup" +msgstr "Grupa opsega" + +#: application/views/bands/create.php:31 application/views/bands/edit.php:13 +msgid "Name of bandgroup (E.g. hf, vhf, uhf, shf)" +msgstr "Ime grupe opsega (npr. KT, UKT, VKT, SKT)" + +#: application/views/bands/create.php:34 application/views/bands/edit.php:16 +#: application/views/bands/index.php:62 +msgid "SSB QRG" +msgstr "SSB QRG" + +#: application/views/bands/create.php:36 application/views/bands/edit.php:18 +msgid "Frequency for SSB QRG in band (must be in Hz)" +msgstr "Frekvencija za SSB QRG u opsegu (mora biti u Hz)" + +#: application/views/bands/create.php:39 application/views/bands/edit.php:21 +#: application/views/bands/index.php:63 +msgid "DATA QRG" +msgstr "DATA QRG" + +#: application/views/bands/create.php:41 application/views/bands/edit.php:23 +msgid "Frequency for DATA QRG in band (must be in Hz)" +msgstr "Frekvencija za DATA QRG u opsegu (mora biti u Hz)" + +#: application/views/bands/create.php:44 application/views/bands/edit.php:26 +#: application/views/bands/index.php:64 +msgid "CW QRG" +msgstr "CW QRG" + +#: application/views/bands/create.php:46 application/views/bands/edit.php:28 +msgid "Frequency for CW QRG in band (must be in Hz)" +msgstr "Frekvencija za CW QRG u opsegu (mora biti u Hz)" + +#: application/views/bands/index.php:36 +msgid "" +"Using the band list you can control which bands are shown when creating a " +"new QSO." +msgstr "" +"Koristeći listu opsega možete kontrolisati koji opsezi će biti prikazani " +"kada kreirate novi QSO." + +#: application/views/bands/index.php:37 +msgid "" +"Active bands will be shown in the QSO 'Band' drop-down, while inactive bands " +"will be hidden and cannot be selected." +msgstr "" +"Aktivni opsezi će biti prikazani u padajućem prozoru 'Opseg', dok će " +"neaktivni opsezi biti skriveni i neće se moći izabrati." + +#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 +#: application/views/qso/index.php:248 application/views/qso/index.php:504 +#: application/views/user/edit.php:599 application/views/view_log/qso.php:328 +#: application/views/view_log/qso.php:580 +msgid "Sig" +msgstr "Sig" + +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:339 +#: application/views/qso/index.php:443 +msgid "USA County" +msgstr "USA okrug" + +#: application/views/bands/index.php:58 +#: application/views/interface_assets/header.php:212 +msgid "WAJA" +msgstr "WAJA" + +#: application/views/bands/index.php:59 +#: application/views/interface_assets/header.php:236 +msgid "WAS" +msgstr "WAS" + +#: application/views/bands/index.php:65 +msgid "QRG Unit" +msgstr "QRG jedinica" + +#: application/views/bands/index.php:98 +msgid "Hz" +msgstr "Hz" + +#: application/views/bands/index.php:99 +msgid "kHz" +msgstr "kHz" + +#: application/views/bands/index.php:100 +msgid "MHz" +msgstr "MHz" + +#: application/views/bands/index.php:101 +msgid "GHz" +msgstr "GHz" + +#: application/views/bands/index.php:151 application/views/bands/index.php:157 +msgid "Create a band" +msgstr "Kreiraj opseg" + +#: application/views/bands/index.php:152 +#: application/views/contesting/add.php:74 +#: application/views/contesting/index.php:83 +#: application/views/interface_assets/footer.php:44 +#: application/views/simplefle/index.php:21 +#: application/views/version_dialog/index.php:79 +msgid "Close" +msgstr "Zatvori" + +#: application/views/bands/index.php:153 +msgid "Warning! Are you sure you want to delete the following band: " +msgstr "Upozorenje! Da li ste sigurni da želite obrisati sledeći opseg: " + +#: application/views/bands/index.php:154 +msgid "Warning! Are you sure you want to activate all bands?" +msgstr "Upozorenje! Da li ste sigurni da želite aktivirati sve opsege?" + +#: application/views/bands/index.php:155 +msgid "Warning! Are you sure you want to deactivate all bands?" +msgstr "Upozrenje! Da li ste sigurni da želite deaktivirati sve opsege?" + +#: application/views/bands/index.php:158 +#: application/views/contesting/add.php:77 application/views/mode/index.php:77 +msgid "Activate All" +msgstr "Aktivirajte sve" + +#: application/views/bands/index.php:159 +#: application/views/contesting/add.php:78 application/views/mode/index.php:78 +msgid "Deactivate All" +msgstr "Deaktivirajte sve" + +#: application/views/cabrillo/index.php:2 +#: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:59 +#: application/views/reg1test/index.php:2 +#: application/views/reg1test/index.php:36 +msgid "Proceed" +msgstr "Nastavite" + +#: application/views/cabrillo/index.php:3 +#: application/views/reg1test/index.php:3 +msgid "Select Year" +msgstr "Izaberite godinu" + +#: application/views/cabrillo/index.php:4 +#: application/views/reg1test/index.php:4 +msgid "Select Contest" +msgstr "Izaberite takmičenje" + +#: application/views/cabrillo/index.php:5 +#: application/views/reg1test/index.php:5 +msgid "Select Date Range" +msgstr "Izaberite datumski opseg" + +#: application/views/cabrillo/index.php:6 +#: application/views/reg1test/index.php:7 +msgid "No contests were found for this station location!" +msgstr "Za ovu staničnu lokaciju nisu pronađena takmičenja!" + +#: application/views/cabrillo/index.php:16 +msgid "Export a contest to a Cabrillo log" +msgstr "Izvezite takmičenje u Cabrillo dnevnik" + +#: application/views/cabrillo/index.php:28 +msgid "Select Station Location:" +msgstr "Izaberite staničnu lokaciju:" + +#: application/views/cabrillo/index.php:44 +#: application/views/reg1test/index.php:53 +msgid "Club" +msgstr "Klub" + +#: application/views/cabrillo/index.php:48 +#: application/views/reg1test/index.php:58 +msgid "Category Operator" +msgstr "Operator kategorije" + +#: application/views/cabrillo/index.php:56 +msgid "Category Assisted" +msgstr "Assisted kategorija" + +#: application/views/cabrillo/index.php:63 +msgid "Category Band" +msgstr "Opseg kategorije" + +#: application/views/cabrillo/index.php:89 +msgid "Light/Laser" +msgstr "Svetlo/Laser" + +#: application/views/cabrillo/index.php:90 +msgid "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)" +msgstr "VHF-3-BAND i VHF-FM-ONLY (samo u ARRL VHF takmičenju)" + +#: application/views/cabrillo/index.php:94 +msgid "Category Mode" +msgstr "Vrsta rada kategorije" + +#: application/views/cabrillo/index.php:105 +msgid "Category Power" +msgstr "Snaga kategorije" + +#: application/views/cabrillo/index.php:113 +msgid "Category Station" +msgstr "Stanica kategorije" + +#: application/views/cabrillo/index.php:129 +msgid "Category Transmitter" +msgstr "Predajnik kategorije" + +#: application/views/cabrillo/index.php:139 +msgid "Category Overlay" +msgstr "Overlay kategorija" + +#: application/views/cabrillo/index.php:150 +#: application/views/reg1test/index.php:70 +msgid "Operators" +msgstr "Operatori" + +#: application/views/cabrillo/index.php:155 +#: application/views/reg1test/index.php:139 +msgid "Soapbox" +msgstr "Komentari (soapbox)" + +#: application/views/cabrillo/index.php:159 +msgid "Address" +msgstr "Adresa" + +#: application/views/cabrillo/index.php:163 +msgid "Address City" +msgstr "Grad adrese" + +#: application/views/cabrillo/index.php:167 +msgid "Address State/Province" +msgstr "Država/Provincija adrese" + +#: application/views/cabrillo/index.php:171 +msgid "Address Postalcode" +msgstr "Poštanski broj adrese" + +#: application/views/cabrillo/index.php:175 +msgid "Address Country" +msgstr "Okrug adrese" + +#: application/views/cabrillo/index.php:186 +#: application/views/reg1test/index.php:150 +msgid "No contests were found in your log." +msgstr "U vašem dnevniku nisu pronađena takmičenja." + +#: application/views/cfd/index.php:7 +#, php-format +msgid "Export of CFD-File for DARC-Toplist (See %s)" +msgstr "Izvoz CFD-datoteke za DARC-Toplistu (pogledajte %s)" + +#: application/views/components/hamsat/table.php:3 +#: application/views/hamsat/index.php:7 +msgid "Hamsat - Satellite Rovers" +msgstr "Hamsat - Satelitski roveri" + +#: application/views/components/hamsat/table.php:4 +#: application/views/contestcalendar/index.php:4 +#: application/views/dxcalendar/index.php:4 +#: application/views/hamsat/index.php:8 +msgid "This data comes from" +msgstr "Ovi podaci dolaze od" + +#: application/views/components/hamsat/table.php:11 +msgid "Show All Passes" +msgstr "Prikaži sve prelete" + +#: application/views/components/hamsat/table.php:14 +msgid "Private feed key empty. Please set the feed key in your profile." +msgstr "" +"Lični ključ za snabdevanje je prazan. Molimo podesite ključ za snabdevanje u " +"vašem profilu." + +#: application/views/components/hamsat/table.php:19 +msgid "No upcoming activations found. Please check back later." +msgstr "" +"Nisu pronađene predstojeće aktivacije. Molimo proverite ponovo kasnije." + +#: application/views/components/hamsat/table.php:28 +#: application/views/contesting/index.php:219 +#: application/views/hamsat/index.php:31 +#: application/views/logbookadvanced/edit.php:5 +#: application/views/logbookadvanced/index.php:629 +#: application/views/logbookadvanced/useroptions.php:114 +#: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 +#: application/views/view_log/qso.php:202 +msgid "Comment" +msgstr "Komentar" + +#: application/views/components/hamsat/table.php:31 +#: application/views/hamsat/index.php:34 +msgid "Gridsquare(s)" +msgstr "Polje (polja)" + +#: application/views/components/hamsat/table.php:32 +#: application/views/hamsat/index.php:35 +msgid "Workable" +msgstr "Moguće raditi" + +#: application/views/components/hamsat/table.php:134 +msgctxt "Hamsat - Track Satellites" +msgid "Track" +msgstr "Pratite" + +#: application/views/components/hamsat/table.php:146 +msgid "Sked" +msgstr "Sked" + +#: application/views/components/radio_display_table.php:5 +msgid "Radio Status" +msgstr "Status radija" + +#: application/views/contestcalendar/index.php:9 +msgid "No Contests" +msgstr "Nema takmičenja" + +#: application/views/contestcalendar/index.php:14 +#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:635 +#: application/views/logbookadvanced/useroptions.php:122 +#: application/views/qso/edit_ajax.php:39 +#: application/views/simplefle/index.php:80 +msgid "Contest" +msgstr "Takmičenje" + +#: application/views/contestcalendar/index.php:15 +#: application/views/statistics/custom.php:41 +#: application/views/statistics/custom_result.php:43 +msgid "Start" +msgstr "Start" + +#: application/views/contestcalendar/index.php:16 +#: application/views/statistics/custom.php:46 +#: application/views/statistics/custom_result.php:48 +msgid "End" +msgstr "Kraj" + +#: application/views/contestcalendar/index.php:17 +msgid "Link" +msgstr "Link" + +#: application/views/contestcalendar/index.php:26 +msgid "Show Details" +msgstr "Prikaži detalja" + +#: application/views/contestcalendar/index.php:38 +#: application/views/dashboard/index.php:278 +#: application/views/dashboard/index.php:305 +#: application/views/dashboard/index.php:326 +#: application/views/dashboard/index.php:347 +#: application/views/satellite/pass.php:475 +msgid "Today" +msgstr "Danas" + +#: application/views/contestcalendar/index.php:48 +msgid "Weekend" +msgstr "Vikend" + +#: application/views/contestcalendar/index.php:59 +msgid "Next Week" +msgstr "Sledeće nedelje" + +#: application/views/contesting/add.php:16 +msgid "" +"Using the contest list, you can control which Contests are shown when " +"logging QSOs in a contest." +msgstr "" +"Korišćenjem liste takmičenja možete kontrolisati koja takmičenja će biti " +"prikazana kada upisujete QSO u takmičenju." + +#: application/views/contesting/add.php:19 +msgid "" +"Active contests will be shown in the Contest Name drop-down, while inactive " +"contests will be hidden and cannot be selected." +msgstr "" +"Aktivna takmičenja će biti prikazana u padajućoj listi 'Naziv takmičenja', " +"dok će neaktivni kontesti biti skriveni i neće moći biti izabrani." + +#: application/views/contesting/add.php:26 +#: application/views/contesting/create.php:30 +msgid "ADIF Name" +msgstr "Naziv ADIF" + +#: application/views/contesting/add.php:27 +#: application/views/contesting/add.php:41 +#: application/views/contesting/add.php:44 +#: application/views/contesting/edit.php:43 +#: application/views/contesting/edit.php:46 +#: application/views/interface_assets/header.php:472 +#: application/views/mode/create.php:46 application/views/mode/create.php:48 +#: application/views/mode/edit.php:57 application/views/mode/edit.php:60 +#: application/views/mode/index.php:43 +msgid "Active" +msgstr "Aktivno" + +#: application/views/contesting/add.php:39 +#: application/views/contesting/add.php:44 +#: application/views/contesting/edit.php:49 +msgid "Not Active" +msgstr "Nije aktivno" + +#: application/views/contesting/add.php:40 +#: application/views/contesting/add.php:49 application/views/mode/index.php:48 +msgid "Activate" +msgstr "Aktivirajte" + +#: application/views/contesting/add.php:42 +#: application/views/contesting/add.php:47 application/views/mode/index.php:46 +msgid "Deactivate" +msgstr "Deaktivirajte" + +#: application/views/contesting/add.php:54 +msgid "DANGER!" +msgstr "OPASNOST!" + +#: application/views/contesting/add.php:55 +msgid "Warning! Are you sure you want to delete the following contest: " +msgstr "Upozorenje! Da li ste sigurni da želite izbrisati sledeće takmičenje: " + +#: application/views/contesting/add.php:56 +msgid "Warning! Are you sure you want to activate all contests?" +msgstr "Upozorenje! Da li ste sigurni da želite izbrisati sva takmičenja?" + +#: application/views/contesting/add.php:57 +msgid "Warning! Are you sure you want to deactivate all contests?" +msgstr "Upozorenje! Da li ste sigurni da želite deaktivirati sva takmičenja?" + +#: application/views/contesting/add.php:73 +#: application/views/contesting/add.php:76 +msgid "Add a Contest" +msgstr "Dodajte takmičenje" + +#: application/views/contesting/create.php:26 +#: application/views/contesting/edit.php:33 +msgid "Name of the Contest" +msgstr "Naziv takmičenja" + +#: application/views/contesting/create.php:32 +#: application/views/contesting/edit.php:39 +msgid "Name of Contest in ADIF-specification" +msgstr "Naziv takmičenja za ADIF-specifikaciju" + +#: application/views/contesting/create.php:35 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 +msgid "Create" +msgstr "Kreirajte" + +#: application/views/contesting/edit.php:31 +#: application/views/contesting/index.php:25 +#: application/views/qso/edit_ajax.php:575 +#: application/views/view_log/qso.php:278 +msgid "Contest Name" +msgstr "Naziv takmičenja" + +#: application/views/contesting/edit.php:37 +msgid "Contest ADIF Name" +msgstr "Naziv ADIFa takmičenja" + +#: application/views/contesting/edit.php:52 +msgid "Set to active if to be listed in Contest-list" +msgstr "Postavite na aktivno ako želite da bude prikazano u listi takmičenja" + +#: application/views/contesting/index.php:2 +msgid "Start new Contest Session" +msgstr "Pokrenite novu takmičarsku sesiju" + +#: application/views/contesting/index.php:11 +msgid "Exchange Type" +msgstr "Vrsta razmene" + +#: application/views/contesting/index.php:16 +msgid "Exchange" +msgstr "Razmena" + +#: application/views/contesting/index.php:18 +msgid "Serial" +msgstr "Serijski broj" + +#: application/views/contesting/index.php:19 +msgid "Serial + Exchange" +msgstr "Serijski broj + razmena" + +#: application/views/contesting/index.php:20 +msgid "Serial + Gridsquare" +msgstr "Serijski broj + polje" + +#: application/views/contesting/index.php:21 +msgid "Serial + Gridsquare + Exchange" +msgstr "Serijski broj + polje + razmena" + +#: application/views/contesting/index.php:35 +#: application/views/operator/index.php:5 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:352 +msgid "Operator Callsign" +msgstr "Pozivni znak operatora" + +#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:45 +msgid "More Settings" +msgstr "Više podešavanja" + +#: application/views/contesting/index.php:49 +msgid "Copy received exchange to" +msgstr "Kopiraj primljenu razmenu u" + +#: application/views/contesting/index.php:51 +msgid "Exchange is only copied if it is matching rules for the selected field!" +msgstr "" +"Razmena je kopirana samo ako se poklapa sa pravilima za izabrano polje!" + +#: application/views/contesting/index.php:55 +msgid "Age" +msgstr "Starost" + +#: application/views/contesting/index.php:57 +msgid "RX Power (W)" +msgstr "RX snaga (W)" + +#: application/views/contesting/index.php:58 +msgid "Locator" +msgstr "Lokator" + +#: application/views/contesting/index.php:59 +#: application/views/qso/edit_ajax.php:177 +msgid "QTH" +msgstr "QTH" + +#: application/views/contesting/index.php:64 +msgid "Sequence of Exchanges" +msgstr "Redosled razmene" + +#: application/views/contesting/index.php:67 +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 "" +"Izaberite redosled kojim želite da kucate u različitim raportima. Međutim, " +"prikazuju se samo elementi koji se nalaze među izabranom vrstom razmene." + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Exchange" +msgstr "Razmena" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Grid" +msgstr "Polje" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Serial" +msgstr "Ser.br." + +#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:255 +#: application/views/qso/edit_ajax.php:598 +msgid "Serial (S)" +msgstr "Serijski broj (brojevi)" + +#: application/views/contesting/index.php:177 +msgid "Gridsquare (S)" +msgstr "Polje (S)" + +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:253 +msgid "Exch (S)" +msgstr "Exch (S)" + +#: application/views/contesting/index.php:196 +#: application/views/contesting/index.php:256 +#: application/views/qso/edit_ajax.php:593 +msgid "Serial (R)" +msgstr "Serijski (R)" + +#: application/views/contesting/index.php:201 +msgid "Gridsquare (R)" +msgstr "Polje (R)" + +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:254 +msgid "Exch (R)" +msgstr "Exch (R)" + +#: application/views/contesting/index.php:224 +msgid "Reset QSO" +msgstr "Resetuj QSO" + +#: application/views/contesting/index.php:225 +#: application/views/qso/index.php:629 +msgid "Save QSO" +msgstr "Sačuvaj QSO" + +#: application/views/contesting/index.php:234 +msgid "Callsign Suggestions" +msgstr "Predlozi pozivnog znaka" + +#: application/views/contesting/index.php:241 +msgid "Contest Logbook" +msgstr "Takmičarski dnevnik" + +#: application/views/contesting/index.php:258 +#: application/views/qso/edit_ajax.php:164 +msgid "VUCC Gridsquare" +msgstr "VUCC polje" + +#: application/views/continents/index.php:63 +#: application/views/statistics/index.php:19 +#: application/views/statistics/index.php:113 +msgid "# of QSO's worked" +msgstr "Broj rađenih veza" + +#: application/views/cron/edit.php:11 +msgid "Identifier" +msgstr "Identifikator" + +#: application/views/cron/edit.php:22 +#: application/views/options/appearance.php:56 +#: application/views/options/appearance.php:63 +#: application/views/options/appearance.php:72 +#: application/views/options/appearance.php:82 +#: application/views/options/appearance.php:91 +#: application/views/options/appearance.php:100 +#: application/views/options/appearance.php:109 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 +#: application/views/stationsetup/stationsetup.php:73 +#: application/views/user/edit.php:452 application/views/user/edit.php:461 +msgid "Enabled" +msgstr "Omogućeno" + +#: application/views/cron/edit.php:36 application/views/cron/index.php:55 +msgid "Intervall" +msgstr "Interval" + +#: application/views/cron/edit.php:38 +msgid "Choose a preset from the dropdown" +msgstr "Izaberite preset iz padajuće liste" + +#: application/views/cron/edit.php:43 +msgid "Every 5 Minutes" +msgstr "Svakih 5 minuta" + +#: application/views/cron/edit.php:44 +msgid "Every 15 Minutes" +msgstr "Svakih 15 minuta" + +#: application/views/cron/edit.php:45 +msgid "Every Hour" +msgstr "Svakog sata" + +#: application/views/cron/edit.php:46 +msgid "Every 2 Hours" +msgstr "Svaka 2 sata" + +#: application/views/cron/edit.php:47 +msgid "Every Day at Midnight" +msgstr "Svaki dan u ponoć" + +#: application/views/cron/edit.php:48 +msgid "Every Monday at 03:00" +msgstr "Svakog ponedeljka u 03:00" + +#: application/views/cron/edit.php:49 +msgid "First Day of Every Month at midnight" +msgstr "Prvog dana svakog meseca u ponoć" + +#: application/views/cron/edit.php:50 +msgid "Every 2 Months at 02:00" +msgstr "Svaka 2 meseca u 02:00" + +#: application/views/cron/edit.php:62 +msgid "OR" +msgstr "ILI" + +#: application/views/cron/edit.php:63 +msgid "Enter your own Cron Expression" +msgstr "Unesite vaš vlastiti cron izraz" + +#: application/views/cron/edit.php:74 +#: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 +msgid "Cancel" +msgstr "Otkažite" + +#: application/views/cron/index.php:9 +msgid "How it works" +msgstr "Kako ovo radi" + +#: application/views/cron/index.php:15 +msgid "" +"The Cron Manager assists the administrator in managing cron jobs without " +"requiring CLI access." +msgstr "" +"Kron menaažer pomaže administratoru u upravljanju kron poslovima bez potrebe " +"za pristupom interfejsu sa komandnom linijom." + +#: application/views/cron/index.php:19 +msgid "" +"To execute cron jobs based on the data below, remove all old cron jobs and " +"create a new one:" +msgstr "" +"Za izvršenje kron posla baziranog na donjim podacima, uklonite sve stare " +"kron poslove i kreirajte novi:" + +#: application/views/cron/index.php:29 application/views/cron/index.php:33 +msgid "Status Master-Cron:" +msgstr "Status Master-krona:" + +#: application/views/cron/index.php:33 +msgctxt "PHP Version" +msgid "Min. Version is" +msgstr "Min. verzija je" + +#: application/views/cron/index.php:33 +msgid "PHP Version not supported." +msgstr "PHP verzija nije podržana." + +#: application/views/cron/index.php:43 +msgid "Cron List" +msgstr "Kron lista" + +#: application/views/cron/index.php:52 +#: application/views/stationsetup/stationsetup.php:121 +msgid "ID" +msgstr "ID" + +#: application/views/cron/index.php:56 +msgid "Last Run" +msgstr "Poslednje pokretanje" + +#: application/views/cron/index.php:57 +msgid "Next Run" +msgstr "Sledeće pokretanje" + +#: application/views/cron/index.php:70 +msgid "healthy" +msgstr "zdravo" + +#: application/views/cron/index.php:72 +msgid "failed" +msgstr "neuspešno" + +#: application/views/cron/index.php:74 +msgid "pending" +msgstr "na čekanju" + +#: application/views/cron/index.php:79 +msgid "disabled" +msgstr "onemogućeno" + +#: application/views/cron/index.php:83 application/views/cron/index.php:85 +#: application/views/cron/index.php:87 application/views/debug/index.php:494 +#: application/views/debug/index.php:500 application/views/debug/index.php:505 +#: application/views/debug/index.php:510 application/views/debug/index.php:515 +#: application/views/debug/index.php:520 application/views/debug/index.php:525 +#: application/views/user/index.php:138 +msgid "never" +msgstr "nikada" + +#: application/views/cron/index.php:102 +msgid "Your Mastercron isn't running." +msgstr "Vaš Mastercron nije pokrenut." + +#: application/views/cron/index.php:103 +msgid "" +"Copy the cron above to a external cron service or into your server's cron to " +"use this cron manager." +msgstr "" +"Kopirajte gornji kron u spoljni kron servis ili u kron vašeg servara da " +"biste koristili ovaj kron menadžer." + +#: application/views/cron/index.php:104 +msgid "" +"On a basic linux server with shell access use this command to edit your " +"crons:" +msgstr "" +"Na osnovnom linux serveru koji ima shell pristup koristite ovu komandu za " +"uređivanje vaših kronova:" + +#: application/views/cron/index.php:111 +#, php-format +msgid "" +"You need to upgrade your PHP version. Minimum version is %s. Your Version is " +"%s" +msgstr "" +"Morate izvršiti nadogradnju PHP verzije. Minimalna verzija je %s. Vaša " +"verzija je %s" + +#: application/views/csv/index.php:7 +msgid "Export your logbook for SOTA uploads." +msgstr "Izvezite vaš dnevnik za SOTA učitavanje." + +#: application/views/csv/index.php:11 +msgid "Only QSOs with SOTA information will be exported!" +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:42 +#: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:411 +msgid "Propagation Mode" +msgstr "Vrsta propagacija" + +#: application/views/dashboard/index.php:5 +msgid "RSTS" +msgstr "RSTS" + +#: application/views/dashboard/index.php:6 +msgid "RSTR" +msgstr "RSTR" + +#: application/views/dashboard/index.php:58 +msgid "" +"You need to upgrade your PHP version. Minimum version is 7.4. Your version is" +msgstr "" +"Morate ažurirati vašu PHP verziju. Minimalna verzija je 7.4. Vaša verzija je" + +#: application/views/dashboard/index.php:65 +#, php-format +msgctxt "Dashboard Warning" +msgid "You need to update country files! Click %shere%s to do it." +msgstr "Morate ažurirati datoteke okruga. Kliknite %sovde%s da to uradite." + +#: application/views/dashboard/index.php:73 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station locations. Click %shere%s to do it." +msgstr "Nemate lokacije stanice. Kliknite %sovde%s da to uradite." + +#: application/views/dashboard/index.php:81 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station logbook. Click %shere%s to do it." +msgstr "Nemate dnevnike stanice. Kliknite %sovde%s da to uradite." + +#: application/views/dashboard/index.php:89 +#, php-format +msgctxt "Dashboard Warning" +msgid "" +"Your active Station Location isn't linked to your Logbook. Click %shere%s to " +"do it." +msgstr "" +"Vaša aktivna Stanična lokacija nije povezana sa vašim Dnevnikom. Kliknite " +"%sovde%s da to uradite." + +#: application/views/dashboard/index.php:97 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station linked to your Logbook. Click %shere%s to do it." +msgstr "" +"Nemate stanicu linkovanu sa vašim Dnevnikom. Kliknite %sovde%s da to uradite." + +#: application/views/dashboard/index.php:106 +#, php-format +msgid "You have had %d QSO today" +msgid_plural "You have had %d QSOs today" +msgstr[0] "Danas ste održali %d QSO" +msgstr[1] "Danas ste održali %d QSOa" +msgstr[2] "Danas ste održali %d QSOa" + +#: application/views/dashboard/index.php:112 +msgid "You have made no QSOs today; time to turn on the radio!" +msgstr "Danas niste održali nijednu vezu; vreme je da uključite radio!" + +#: application/views/dashboard/index.php:119 +msgid "Attention: you need to set an active station location." +msgstr "Pažnja: morate da odredite aktivnu lokaciju stanice." + +#: application/views/dashboard/index.php:125 +msgid "" +"You have themes without defined theme mode. Please ask the admin to edit the " +"themes." +msgstr "" +"Imate teme bez definisane vrste teme. Molimo da zatražite od administratora " +"da uredi teme." + +#: application/views/dashboard/index.php:133 +msgid "At least one of your LoTW certificates is expired!" +msgstr "Najmanje jedan od vaših LoTW sertifikata je istekao!" + +#: application/views/dashboard/index.php:139 +msgid "At least one of your LoTW certificates is about to expire!" +msgstr "Najmanje jedan od vaših LoTW sertifikata će uskoro isteći!" + +#: application/views/dashboard/index.php:229 +#: application/views/visitor/index.php:237 +msgid "QSOs Breakdown" +msgstr "Prelom veza" + +#: application/views/dashboard/index.php:252 +#: application/views/visitor/index.php:258 +msgid "Countries Breakdown" +msgstr "Prelom zemalja" + +#: application/views/dashboard/index.php:269 +#: application/views/visitor/index.php:275 +msgid "Needed" +msgstr "Potrebno" + +#: application/views/dashboard/index.php:282 +#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:330 +#: application/views/dashboard/index.php:351 +#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 +#: application/views/oqrs/qsolist.php:159 +#: application/views/qslprint/qsolist.php:58 +#: application/views/qslprint/qsolist.php:138 +#: application/views/qslprint/qsolist.php:167 +#: application/views/qso/edit_ajax.php:417 +#: application/views/qso/edit_ajax.php:478 +#: application/views/qso/edit_ajax.php:518 application/views/qso/index.php:572 +#: application/views/search/result_search.php:8 +#: application/views/search/search_result_ajax.php:180 +#: application/views/search/search_result_ajax.php:260 +#: application/views/search/search_result_ajax.php:298 +#: application/views/search/search_result_ajax.php:332 +#: application/views/search/search_result_ajax.php:362 +#: application/views/statistics/custom_result.php:89 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:289 +#: application/views/view_log/partial/log_ajax.php:297 +#: application/views/visitor/index.php:287 +#: application/views/visitor/index.php:310 +#: application/views/visitor/index.php:328 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:270 +#: src/QSLManager/QSO.php:373 src/QSLManager/QSO.php:425 +#: src/QSLManager/QSO.php:461 +msgid "Sent" +msgstr "Poslato" + +#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:315 +#: application/views/dashboard/index.php:336 +#: application/views/dashboard/index.php:357 +#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 +#: application/views/oqrs/qsolist.php:174 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:151 +#: application/views/qslprint/qsolist.php:182 +#: application/views/qso/edit_ajax.php:450 +#: application/views/qso/edit_ajax.php:491 +#: application/views/qso/edit_ajax.php:530 +#: application/views/search/search_result_ajax.php:222 +#: application/views/search/search_result_ajax.php:273 +#: application/views/search/search_result_ajax.php:313 +#: application/views/search/search_result_ajax.php:345 +#: application/views/search/search_result_ajax.php:375 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:265 +#: application/views/view_log/partial/log_ajax.php:290 +#: application/views/view_log/partial/log_ajax.php:298 +#: application/views/visitor/index.php:292 +#: application/views/visitor/index.php:315 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:315 +#: src/QSLManager/QSO.php:396 src/QSLManager/QSO.php:438 +#: src/QSLManager/QSO.php:474 +msgid "Received" +msgstr "Primljeno" + +#: application/views/dashboard/index.php:294 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:415 +#: application/views/logbookadvanced/index.php:426 +#: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 +#: application/views/qslprint/qsolist.php:64 +#: application/views/qslprint/qsolist.php:106 +#: application/views/qso/edit_ajax.php:422 +#: application/views/qso/edit_ajax.php:455 +#: application/views/qso/edit_ajax.php:483 +#: application/views/qso/edit_ajax.php:496 +#: application/views/qso/edit_ajax.php:523 +#: application/views/qso/edit_ajax.php:535 application/views/qso/index.php:577 +#: application/views/search/search_result_ajax.php:186 +#: application/views/search/search_result_ajax.php:228 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +#: application/views/view_log/partial/log_ajax.php:249 +#: application/views/view_log/partial/log_ajax.php:275 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:276 +#: src/QSLManager/QSO.php:321 src/QSLManager/QSO.php:381 +#: src/QSLManager/QSO.php:404 +msgid "Requested" +msgstr "Zahtevano" + +#: application/views/dashboard/index.php:304 +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:367 +msgid "VUCC-Grids" +msgstr "VUCC-polja" + +#: application/views/dayswithqso/index.php:2 +#: application/views/interface_assets/header.php:148 +msgid "Days with QSOs" +msgstr "Dana sa QSO-ima" + +#: application/views/dayswithqso/index.php:25 +msgid "Days" +msgstr "Dani" + +#: application/views/dayswithqso/index.php:37 +msgid "Longest streak with QSOs in the log" +msgstr "Najduži niz sa QSO u dnevniku" + +#: application/views/dayswithqso/index.php:38 +msgid "A maximum of the 10 longest streaks are shown!" +msgstr "Prikazano je maksimalno 10 najdužih nizova!" + +#: application/views/dayswithqso/index.php:56 +msgid "Streak (continuous days with QSOs)" +msgstr "Niz (kontinuitet dana sa vezama)" + +#: application/views/dayswithqso/index.php:57 +#: application/views/dayswithqso/index.php:85 +#: application/views/dayswithqso/index.php:107 +msgid "Start Date" +msgstr "Početni datum" + +#: application/views/dayswithqso/index.php:58 +#: application/views/dayswithqso/index.php:86 +#: application/views/dayswithqso/index.php:108 +#: application/views/timeline/index.php:153 +msgid "End Date" +msgstr "Krajnji datum" + +#: application/views/dayswithqso/index.php:74 +msgctxt "Days with QSOs" +msgid "No streak found!" +msgstr "Nije pronađen niz!" + +#: application/views/dayswithqso/index.php:78 +msgid "Current streak with QSOs in the log" +msgstr "Trenutni niz sa vezama u dnevniku" + +#: application/views/dayswithqso/index.php:84 +#: application/views/dayswithqso/index.php:106 +msgid "Current streak (continuous days with QSOs)" +msgstr "Trenutni niz (kontinuitet dana sa vezama)" + +#: application/views/dayswithqso/index.php:101 +msgid "" +"If you make a QSO today, you can continue to extend your streak... or else " +"your current streak will be broken!" +msgstr "" +"Ako održite vezu dana, možete nastaviti da produžujete vaš niz... ili će vaš " +"trenutni niz biti prekinut!" + +#: application/views/dayswithqso/index.php:122 +msgid "No current streak found!" +msgstr "Nije pronađen tekući niz!" + +#: application/views/debug/index.php:23 +msgid "Wavelog Information" +msgstr "Wavelog informacije" + +#: application/views/debug/index.php:27 +msgid "Version" +msgstr "Verzija" + +#: application/views/debug/index.php:31 +msgid "Language" +msgstr "Jezik" + +#: application/views/debug/index.php:35 +msgid "Base URL" +msgstr "Bazni URL" + +#: application/views/debug/index.php:39 +msgid "Migration" +msgstr "Migracija" + +#: application/views/debug/index.php:40 +msgid "There is something wrong with your Migration in Database!" +msgstr "Nešto nije u redu sa vašom Migracijom u bazi podataka!" + +#: application/views/debug/index.php:45 +msgid "Migration is outdated and locked!" +msgstr "Migracija je zastarela i zaključana!" + +#: application/views/debug/index.php:46 +#, php-format +msgid "" +"The current migration is not the version it is supposed to be. Reload this " +"page after %s seconds. If this warning persists, your migration is likely " +"locked due to a previously failed process. Delete the file %s to force the " +"migration to run again." +msgstr "" +"Trenutna migracija nije odgovarajuće verzije. Ponovo učitajte ovu stranicu " +"nakon %s sekundi. Ako i dalje vidite ovo upozorenje, najverovatnije da je " +"vaša migracija zaključena zbog prethodno neuspelog pokušaja. Izbrišite " +"datoteku %s da iznudite ponovni početak migracije." + +#: application/views/debug/index.php:47 +#, php-format +msgid "Check this wiki article %shere%s for more information." +msgstr "Proverite ovaj wiki članak %sovde%s za više informacija." + +#: application/views/debug/index.php:48 +#, php-format +msgid "Current migration is %s" +msgstr "Trenutna migracija je %s" + +#: application/views/debug/index.php:49 +#, php-format +msgid "Migration should be %s" +msgstr "Migracija bi trebalo da je %s" + +#: application/views/debug/index.php:54 +msgid "Environment" +msgstr "Okruženje" + +#: application/views/debug/index.php:62 +msgid "Total QSO on this instance" +msgstr "Ukupno QSO u ovoj verziji" + +#: application/views/debug/index.php:70 +msgid "Server Information" +msgstr "Informacije o serveru" + +#: application/views/debug/index.php:74 +msgid "Server Software" +msgstr "Softver na serveru" + +#: application/views/debug/index.php:79 +msgid "PHP Version" +msgstr "PHP verzija" + +#: application/views/debug/index.php:85 +msgid "Deprecated" +msgstr "Zastarelo" + +#: application/views/debug/index.php:92 +msgid "MySQL Version" +msgstr "MySQL verzija" + +#: application/views/debug/index.php:96 +msgid "Codeigniter Version" +msgstr "Codeigniter verzija" + +#: application/views/debug/index.php:104 +msgid "Folder Permissions" +msgstr "Dozvole fascikle" + +#: application/views/debug/index.php:106 +msgid "" +"This verifies that the folders used by Wavelog have read and write " +"permissions by PHP." +msgstr "" +"Ovim potvrđujemo da fascikle koje koristi Wavelog imaju PHP dozvole za " +"iščitavanje i upisivanje." + +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 +msgid "Success" +msgstr "Uspešno" + +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 +msgid "Failed" +msgstr "Neuspešno" + +#: application/views/debug/index.php:169 +msgid "Config Maintenance" +msgstr "Održavanje konfiguracije" + +#: application/views/debug/index.php:175 +msgid "Your authentication mode is outdated and possibly unsafe" +msgstr "Vaš način proveravanja je zastareo i verovatno nesiguran" + +#: application/views/debug/index.php:177 application/views/debug/index.php:194 +#, php-format +msgid "Please edit your %s File:" +msgstr "Molimo uredite vašu %s datoteku:" + +#: application/views/debug/index.php:178 +msgid "" +"Go to your application/config Folder and compare config.sample.php with your " +"config.php" +msgstr "" +"Idite u fasciklu application/config i uporedite datoteku config.sample.php " +"sa vašom config.php datotekom" + +#: application/views/debug/index.php:179 +#, php-format +msgid "Change %s to the value %s (Strongly recommended)" +msgstr "Promenite %s u vrednost %s (stogo preporučeno)" + +#: application/views/debug/index.php:185 +msgid "Authentication Mode is set correctly" +msgstr "Način proveravanja je postavljen ispravno" + +#: application/views/debug/index.php:185 application/views/debug/index.php:202 +msgid "Ok" +msgstr "Ok" + +#: application/views/debug/index.php:192 +msgid "You use the default encryption key. You should change it!" +msgstr "" +"Koristite podrazumevani ključ za enkripciju. Trebalo bi da ga promenite!" + +#: application/views/debug/index.php:195 +msgid "This will also enable the 'Keep me logged in' feature." +msgstr "Ovim ćete omogućiti i opcioju 'Drži me prijavljenog'." + +#: application/views/debug/index.php:196 +#, php-format +msgid "" +"Change the value of %s to a new encryption key other then " +"'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" +msgstr "" +"Promenite vrednost %s u novi ključ za enkripciju različit od " +"'flossie1234555541'. Izaberite sigurnu i dugačku lozinku. (strogo " +"preporučeno)" + +#: application/views/debug/index.php:202 +msgid "You do not use the default encryption key" +msgstr "Ne koristite podrazumevani ključ za enkripciju" + +#: application/views/debug/index.php:209 +msgid "Migrate Userdata" +msgstr "Migrirajte Userdata" + +#: application/views/debug/index.php:211 +msgid "" +"Here you can migrate existing QSL cards and eQSL cards to the new userdata " +"folder." +msgstr "" +"Ovde možete migrirati postojeće QSL karte i eQSL karte u novu userdata " +"fasciklu." + +#: application/views/debug/index.php:224 +msgid "Modules" +msgstr "Moduli" + +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 +msgid "Installed" +msgstr "Instalirano" + +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 +msgid "Not Installed" +msgstr "Nije instalirano" + +#: application/views/debug/index.php:283 application/views/qso/index.php:671 +msgid "Settings" +msgstr "Podešavanja" + +#: application/views/debug/index.php:412 +msgid "Git Information" +msgstr "Git informacije" + +#: application/views/debug/index.php:416 +msgid "Branch" +msgstr "Grana" + +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 +msgid "n/a" +msgstr "n/a" + +#: application/views/debug/index.php:433 +msgid "Commit" +msgstr "Uradite" + +#: application/views/debug/index.php:443 +msgid "Tag" +msgstr "Tag" + +#: application/views/debug/index.php:453 +msgid "Last Fetch" +msgstr "Posljednje dobavljanje" + +#: application/views/debug/index.php:465 +msgid "Check for new version" +msgstr "Proverite da li postoji nova verzija" + +#: application/views/debug/index.php:466 +msgid "Update now" +msgstr "Ažurirajte sada" + +#: application/views/debug/index.php:484 +msgid "File download date" +msgstr "Datum preuzimanja datoteke" + +#: application/views/debug/index.php:488 +msgid "File" +msgstr "Datoteka" + +#: application/views/debug/index.php:489 +msgid "Last update" +msgstr "Poslednje ažuriranje" + +#: application/views/debug/index.php:493 +msgid "DXCC update from Club Log" +msgstr "DXCC ažuriranje sa ClubLoga" + +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 +#: application/views/station_profile/edit.php:49 +msgid "Update" +msgstr "Ažuriranje" + +#: application/views/debug/index.php:499 +msgid "DOK file download" +msgstr "Preuzimanje DOK datoteke" + +#: application/views/debug/index.php:504 +msgid "LoTW users download" +msgstr "Preuzimanje LoTW korisnika" + +#: application/views/debug/index.php:509 +msgid "POTA file download" +msgstr "Preuzimanje POTA datoteke" + +#: application/views/debug/index.php:514 +msgid "SCP file download" +msgstr "Preuzimanje SCP datoteke" + +#: application/views/debug/index.php:519 +msgid "SOTA file download" +msgstr "Preuzimanje SOTA datoteke" + +#: application/views/debug/index.php:524 +msgid "WWFF file download" +msgstr "Preuzimanje WWFF datoteke" + +#: application/views/debug/index.php:533 +msgid "QSO-DB Maintenance" +msgstr "Održavanje QSO-DB" + +#: application/views/debug/index.php:537 +#, 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] "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:550 +#: application/views/public_search/result.php:17 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 +#: application/views/stationsetup/linkedlocations.php:32 +#: application/views/stationsetup/stationsetup.php:123 +msgid "Station Callsign" +msgstr "Pozivni znak stanice" + +#: application/views/debug/index.php:575 +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:583 +msgctxt "Stationlocation" +msgid "Target Location" +msgstr "Odredišna lokacija" + +#: application/views/debug/index.php:584 application/views/debug/index.php:595 +msgid "Reassign" +msgstr "Ponovo doznači" + +#: application/views/debug/index.php:604 +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:604 +msgid "Everything ok" +msgstr "Sve je u redu" + +#: application/views/debug/index.php:629 +msgid "Albanian" +msgstr "Albanski" + +#: application/views/debug/index.php:630 +msgid "Bosnian" +msgstr "Bosanski" + +#: application/views/debug/index.php:631 +msgid "Bulgarian" +msgstr "Bugarski" + +#: application/views/debug/index.php:632 +msgid "Chinese (Simplified)" +msgstr "Kineski (Pojednostavljeni)" + +#: application/views/debug/index.php:633 +msgid "Croatian" +msgstr "Hrvatski" + +#: application/views/debug/index.php:634 +msgid "Czech" +msgstr "Češki" + +#: application/views/debug/index.php:635 +msgid "Dutch" +msgstr "Holandski" + +#: application/views/debug/index.php:636 +msgid "English" +msgstr "Engleski" + +#: application/views/debug/index.php:637 +msgid "Finnish" +msgstr "Finski" + +#: application/views/debug/index.php:638 +msgid "French" +msgstr "Francuski" + +#: application/views/debug/index.php:639 +msgid "German" +msgstr "Nemački" + +#: application/views/debug/index.php:640 +msgid "Greek" +msgstr "Grčki" + +#: application/views/debug/index.php:641 +msgid "Italian" +msgstr "Italijanski" + +#: application/views/debug/index.php:642 +msgid "Montenegrin" +msgstr "Crnogorski" + +#: application/views/debug/index.php:643 +msgid "Polish" +msgstr "Poljski" + +#: application/views/debug/index.php:644 +msgid "Portuguese" +msgstr "Portugalski" + +#: application/views/debug/index.php:645 +msgid "Russian" +msgstr "Ruski" + +#: application/views/debug/index.php:646 +msgid "Serbian" +msgstr "Srpski" + +#: application/views/debug/index.php:647 +msgid "Spanish" +msgstr "Španski" + +#: application/views/debug/index.php:648 +msgid "Swedish" +msgstr "Švedski" + +#: application/views/debug/index.php:649 +msgid "Turkish" +msgstr "Turski" + +#: application/views/distancerecords/index.php:4 +msgid "This page lists distance records per satellite based on gridsquares." +msgstr "" +"Ova stranica prikazuje rekorde u udaljenosti veza za svaki satelit, na " +"osnovu polja." + +#: application/views/distances/index.php:7 +#: application/views/interface_assets/footer.php:30 +#: application/views/simplefle/index.php:68 +msgid "QSO Data" +msgstr "QSO podaci" + +#: application/views/distances/index.php:9 +#, php-format +msgid "contacts were plotted.%s Your furthest contact was with" +msgstr "kontakti su iscrtani. %s Vaš najdalji kontakt je bio sa" + +#: application/views/distances/index.php:10 +msgid "in gridsquare" +msgstr "u polju" + +#: application/views/distances/index.php:11 +msgid "the distance was" +msgstr "rastojanje je bilo" + +#: application/views/distances/index.php:14 +msgid "Callsign(s) worked (max 5 shown)" +msgstr "Urađeni pozivni znakovi (prikazuje se max 5)" + +#: application/views/distances/index.php:19 +msgid "Band selection" +msgstr "Izbor opsega" + +#: application/views/dxatlas/index.php:3 +msgid "DX Atlas Export" +msgstr "Izvoz za DX Atlas" + +#: application/views/dxatlas/index.php:7 +msgid "" +"Export your logbook for use in DX Atlas to display worked / confirmed " +"gridsquares." +msgstr "" +"Izvezite vaš dnevnik za upotrebu u DX Atlasu kako biste prikazali rađena / " +"potvrđena polja." + +#: application/views/dxatlas/index.php:11 application/views/kml/index.php:11 +msgid "Only QSOs with a gridsquare defined will be exported!" +msgstr "Biće izvezeni samo QSO sa definisanim poljem!" + +#: application/views/dxcalendar/index.php:9 +msgid "Date from" +msgstr "Od datuma" + +#: application/views/dxcalendar/index.php:10 +msgid "Date to" +msgstr "Do datuma" + +#: application/views/dxcalendar/index.php:13 +#: application/views/view_log/qso.php:369 +msgid "QSL Info" +msgstr "QSL info" + +#: application/views/dxcalendar/index.php:14 +msgid "Source" +msgstr "Izvor" + +#: application/views/eqsl/analysis.php:11 application/views/eqsl/download.php:9 +#: application/views/eqsl/export.php:8 application/views/eqsl/import.php:7 +#: application/views/eqsl/result.php:11 application/views/eqsl/tools.php:7 +#: application/views/qrz/export.php:14 +msgid "Download QSOs" +msgstr "Preuzimanje QSOa" + +#: application/views/eqsl/analysis.php:14 +#: application/views/eqsl/download.php:13 application/views/eqsl/export.php:12 +#: application/views/eqsl/import.php:11 application/views/eqsl/result.php:14 +#: application/views/eqsl/tools.php:11 +msgid "Upload QSOs" +msgstr "Učitavanje QSOa" + +#: application/views/eqsl/analysis.php:17 +#: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 +#: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 +#: application/views/eqsl/tools.php:15 +#: application/views/interface_assets/header.php:247 +msgid "Tools" +msgstr "Alatke" + +#: application/views/eqsl/analysis.php:20 +#: application/views/eqsl/download.php:20 application/views/eqsl/export.php:19 +#: application/views/eqsl/import.php:18 application/views/eqsl/result.php:20 +#: application/views/eqsl/tools.php:19 +msgid "Download eQSL cards" +msgstr "Preuzimanje eQSL karata" + +#: application/views/eqsl/analysis.php:40 +#: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 +msgid "Submode" +msgstr "Podvrsta rada" + +#: application/views/eqsl/analysis.php:41 +msgid "Log Status" +msgstr "Status dnevnika" + +#: application/views/eqsl/analysis.php:42 application/views/eqsl/result.php:38 +msgid "eQSL Status" +msgstr "eQSL status" + +#: application/views/eqsl/analysis.php:62 +msgid "There are no QSO confirmations waiting for you at eQSL.cc" +msgstr "Nema QSO potvrda koje vas čekaju na eQSL.cc" + +#: application/views/eqsl/download.php:31 +msgid "" +"Below is a table of QSOs that have been confirmed on eQSL but QSL images " +"have not been downloaded yet." +msgstr "" +"Ispod je tabela QSOa koji su potvrđeni na eQSL ali slika QSL karte još uvek " +"nije preuzeta." + +#: application/views/eqsl/download.php:43 +msgid "Action" +msgstr "Akcija" + +#: application/views/eqsl/download.php:60 +msgid "View/Download" +msgstr "Pregledajte/Preuzmite" + +#: application/views/eqsl/download.php:71 application/views/eqsl/import.php:53 +msgid "" +"Wavelog will use the eQSL credentials from your Wavelog user profile to " +"connect to eQSL and download confirmations." +msgstr "" +"Wavelog će koristiti eQSL kredencijale iz vašeg Wavelog korisničkog profila " +"kako bi se povezao na eQSL i preuzeo potvrde." + +#: application/views/eqsl/download.php:73 +msgid "" +"Due to a rate limit of approximately 10 seconds per eQSL picture download " +"calling this function will take a long time to complete! Thus you may have " +"to call this function several times depending on the amount of outstanding " +"cards. This may run into a script timeout depending on the PHP configuration." +msgstr "" +"Zbog brzine preuzimanja od oko 10 sekundi po jednoj eQSL karti, izvršenje " +"ove funkcije će zahtevati dugačko vreme kompletiranja. Stoga je moguće da " +"ćete više puta morati pozvati ovu funkciju, u zavisnosti o broja karata. U " +"zavisnosti od PHP konfiguracije, moguće je da ćete ući u istek vremena za " +"izvršenje skripte." + +#: application/views/eqsl/download.php:81 +msgid "" +"There are no QSOs whose eQSL card images have not yet been downloaded. Go " +"log some more QSOs!" +msgstr "" +"Ne postoje QSOi čije eQSL karte već nisu preuzete. Logirajte neke veze u " +"dnevnik!" + +#: application/views/eqsl/export.php:31 +msgid "Below is a table of QSOs that have not yet been sent to eQSL." +msgstr "Ispod je tabela QSOa koji još nisu poslati na eQSL." + +#: application/views/eqsl/export.php:33 +msgid "" +"Please make sure the 'eQSL QTH Nickname' field is set in your station " +"profile and that the value matches the QTH Nickname you set within eQSL." +msgstr "" +"Molimo uverite se da je 'eQSL QTH Nickname' polje podešeno unutar vašeg " +"staničnog profila i da se ta vrednost poklapa sa QTH Nickname poljem koje " +"ste podesili u eQSL." + +#: application/views/eqsl/export.php:37 +msgid "Clicking 'Upload QSOs' will send QSO information to eQSL.cc." +msgstr "Klikom na 'Učitaj QSOe' ćete poslati QSO informacije na eQSL.cc." + +#: application/views/eqsl/export.php:46 +msgid "The following QSOs were sent to eQSL." +msgstr "Sledeći QSOi su poslati na eQSL." + +#: application/views/eqsl/export.php:51 +msgid "" +"There are no QSOs that need to be sent to eQSL at this time. Go log some " +"more QSOs!" +msgstr "" +"U ovom trenutku nema QSOova koji bi bili poslati na eQSL. Logujte neke veze!" + +#: application/views/eqsl/import.php:30 +msgid "Import from file..." +msgstr "Uvoz iz datoteke..." + +#: application/views/eqsl/import.php:33 +msgid "Download Inbox" +msgstr "Preuzmanje Inboksa" + +#: application/views/eqsl/import.php:33 +#, php-format +msgid "" +"Upload the Exported ADIF file from eQSL from the %s page, to mark QSOs as " +"confirmed on eQSL." +msgstr "" +"Učitajte izvezenu ADIF datoteku iz eQSL-a sa stranice %s, kako biste QSOe " +"označili potvrđenim na eQSL." + +#: application/views/eqsl/import.php:34 +msgid "Choose Station(location) eQSL File belongs to:" +msgstr "Izaberite stanicu (lokaciju) kojoj pripada eQSL datoteka:" + +#: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 +msgid "Log files must have the file type .adi" +msgstr "Datoteka dnevnika mora biti vrste .adi" + +#: application/views/eqsl/import.php:52 +msgid "Import directly from eQSL" +msgstr "Uvoz direktno sa eQSL" + +#: application/views/eqsl/tools.php:27 +msgid "" +"This does NOT upload any QSOs. It only marks QSOs as sent. If you use this " +"button you need to upload them manually on the eQSL.cc website." +msgstr "" +"Ovo NEĆE učitati nijedan QSO. Ovo samo označava QSO kao poslate. Ako " +"koristite ovo dugme treblo bi da ih učitate ručno na eQSL.cc web sajt." + +#: application/views/eqsl/tools.php:29 +msgid "Mark All QSOs as Sent to eQSL" +msgstr "Označite sve QSOe kao poslate na eQSL" + +#: application/views/eqsl/tools.php:29 +msgid "" +"Use this if you have lots of QSOs to upload to eQSL it will save the server " +"timing out." +msgstr "Koristite ovo ako ste ručno učitali sve vaše QSOe na eQSL." + +#: application/views/eqslcard/index.php:10 +#, php-format +msgid "You are using %s of disk space to store eQSL Card assets" +msgstr "Koristite %s prostora na disku za smještanje eQSL karata" + +#: application/views/eqslcard/index.php:34 +#: application/views/qslcard/index.php:33 +msgid "QSL Date" +msgstr "QSL datum" + +#: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2338 +#: application/views/interface_assets/footer.php:2356 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 +#: application/views/qslcard/index.php:66 +#: application/views/view_log/qso.php:617 +msgid "View" +msgstr "Pregledaj" + +#: application/views/gridmap/index.php:43 +msgid "All except SAT" +msgstr "Sve osim SAT" + +#: application/views/hamsat/index.php:22 +#, php-format +msgid "" +"Cannot filter workable passes only without private feed key. Please set the " +"feed key in %s." +msgstr "" +"Ne možemo napraviti filter samo mogućih preleta bez privatnog ključa za " +"snabdevanje. Molimo podesite ključ za snabdevanje u %s." + +#: application/views/hamsat/index.php:22 +msgid "your profile" +msgstr "vaš profil" + +#: application/views/hrdlog/export.php:10 application/views/qrz/export.php:10 +#: application/views/webadif/export.php:10 +msgid "Upload Logbook" +msgstr "Učitavanje dnevnika" + +#: application/views/hrdlog/export.php:13 application/views/qrz/export.php:18 +#: application/views/webadif/export.php:13 +msgid "Mark QSOs" +msgstr "Označi QSOe" + +#: application/views/hrdlog/export.php:22 +msgid "" +"Here you can see all QSOs which have not been previously uploaded to a " +"HRDLog logbook." +msgstr "" +"Ovde možete videti sve QSOe koji prethodno nisu bili učitani u HRDLog " +"Logbook." + +#: application/views/hrdlog/export.php:23 +msgid "" +"You need to set a HRDLog Logbook API Code in your station profile. Only " +"station profiles with an API Key set are displayed." +msgstr "" +"Morate podesiti HRDLog Loogbook API kod u profilu vaše stanice. Prikazani su " +"samo stanični profili sa API ključem." + +#: application/views/hrdlog/export.php:24 +#, php-format +msgid "The Code can be requested at %s" +msgstr "Kod možete zahtevati na %s" + +#: application/views/hrdlog/export.php:25 +#: application/views/webadif/export.php:34 +msgid "This might take a while as QSO uploads are processed sequentially." +msgstr "Ovo može potrajati jer se učitavanje QSOa vrši sekvencijalno." + +#: application/views/hrdlog/export.php:34 application/views/qrz/export.php:38 +#: application/views/webadif/export.php:41 +msgid "Profile name" +msgstr "Naziv profila" + +#: application/views/hrdlog/export.php:35 +#: application/views/oqrs/showrequests.php:86 +#: application/views/qrz/export.php:39 application/views/webadif/export.php:42 +msgid "Station callsign" +msgstr "Pozivni znak stanice" + +#: application/views/hrdlog/export.php:36 application/views/qrz/export.php:40 +msgid "Edited QSOs not uploaded" +msgstr "Uređeni QSOi nisu učitani" + +#: application/views/hrdlog/export.php:37 application/views/qrz/export.php:41 +#: application/views/webadif/export.php:43 +msgid "Total QSOs not uploaded" +msgstr "Ukupan broj neučitanih QSOa" + +#: application/views/hrdlog/export.php:38 application/views/qrz/export.php:42 +#: application/views/webadif/export.php:44 +msgid "Total QSOs uploaded" +msgstr "Ukupan broj učitanih QSOa" + +#: application/views/hrdlog/export.php:60 +msgid "" +"No Station Locations with valid HRDlog-Settings found. Check the HRDlog " +"Credentials in the Station Location Settings!" +msgstr "" +"Nisu pronađene stanične lokacije sa validnim HRDlog podešavanjima. Proverite " +"HRDlog kredencijale u Podešavanjima staničnih lokacija!" + +#: application/views/hrdlog/export.php:87 +msgid "Mark QSOs as exported to HRDLog Logbook" +msgstr "Označite QSOe izvezenima u HRDlog Logbook" + +#: application/views/hrdlog/mark_hrdlog.php:15 +#: application/views/qrz/mark_qrz.php:15 +#: application/views/webadif/mark_webadif.php:15 +msgid "Yay, it's done!" +msgstr "Jeeej, urađeno je!" + +#: application/views/hrdlog/mark_hrdlog.php:16 +msgid "The QSOs are marked as exported to HRDLog Logbook." +msgstr "QSOi su označeni kao izvezeni u HRDlog Logbook." + +#: application/views/interface_assets/footer.php:31 +#: application/views/search/search_result_ajax.php:404 +#: application/views/view_log/partial/log.php:135 +#: application/views/view_log/partial/log_ajax.php:320 +#: application/views/view_log/qso.php:437 +msgid "Edit QSO" +msgstr "Uredi QSO" + +#: application/views/interface_assets/footer.php:33 +msgid "Attention" +msgstr "Pažnja" + +#: application/views/interface_assets/footer.php:38 +msgid "Warning! Are you sure you want delete QSO with " +msgstr "Upozorenje! Da li ste sigurni da želite obrisati QSO sa " + +#: application/views/interface_assets/footer.php:39 +#: application/views/user/edit.php:493 +msgid "Colors" +msgstr "Boje" + +#: application/views/interface_assets/footer.php:41 +msgid "Worked not confirmed" +msgstr "Rađene nepotvrđene" + +#: application/views/interface_assets/footer.php:42 +msgid "Not worked" +msgstr "Ne rađene" + +#: application/views/interface_assets/footer.php:46 +#: application/views/qso/index.php:623 +#: application/views/visitor/layout/footer.php:246 +msgid "Clear" +msgstr "Obriši" + +#: application/views/interface_assets/footer.php:47 +#: application/views/qso/edit_ajax.php:211 +#: application/views/qso/edit_ajax.php:539 +msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." +msgstr "" +"Vrsta propagacija nije podržana od strane LoTW. LoTW QSL polja su " +"onemogućena." + +#: application/views/interface_assets/footer.php:48 +msgid "No states for this DXCC available" +msgstr "Nema država dostupnih za ovu DXCC" + +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "Izračuajte QRB i QTF" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "Greška u lokatorima. Molimo provjerite." + +#: application/views/interface_assets/footer.php:132 +#: application/views/interface_assets/header.php:440 +#: application/views/options/sidebar.php:11 +msgid "Version Info" +msgstr "Informacija o verziji" + +#: application/views/interface_assets/footer.php:398 +msgid "Description:" +msgstr "Opis:" + +#: application/views/interface_assets/footer.php:401 +msgid "Query description" +msgstr "Opis upita" + +#: application/views/interface_assets/footer.php:417 +msgid "Your query has been saved!" +msgstr "Vaš upit je sačuvan!" + +#: application/views/interface_assets/footer.php:419 +#: application/views/search/filter.php:46 +msgid "Edit queries" +msgstr "Uredi upite" + +#: application/views/interface_assets/footer.php:421 +msgid "Stored queries:" +msgstr "Sačuvani upiti:" + +#: application/views/interface_assets/footer.php:426 +#: application/views/search/filter.php:60 +msgid "Run Query" +msgstr "Pokreni upit" + +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 +msgid "Stored Queries" +msgstr "Sačuvani upiti" + +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 +msgid "You need to make a query before you search!" +msgstr "Morate napraviti upit prije pretrage!" + +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 +#: application/views/search/filter.php:79 +msgid "Export to ADIF" +msgstr "Izvoz u ADIF" + +#: application/views/interface_assets/footer.php:502 +msgid "Warning! Are you sure you want delete this stored query?" +msgstr "Upozorenje! Da li ste sigurni da želite obrisati ovaj sačuvani upit?" + +#: application/views/interface_assets/footer.php:516 +msgid "The stored query has been deleted!" +msgstr "Sačuvani upit je obrisan!" + +#: application/views/interface_assets/footer.php:525 +msgid "The stored query could not be deleted. Please try again!" +msgstr "Sačuvani upit ne može biti obrisan. Molim pokušajte ponovo!" + +#: application/views/interface_assets/footer.php:551 +msgid "The query description has been updated!" +msgstr "Opis upita je ažuriran!" + +#: application/views/interface_assets/footer.php:555 +msgid "Something went wrong with the save. Please try again!" +msgstr "Nešto je bilo pogrešno prilikom čuvanja. Molimo pokušajte ponovo!" + +#: application/views/interface_assets/footer.php:678 +msgid "" +"Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " +"Check which DXCC for this particular location is the correct one. If you are " +"sure, ignore this warning." +msgstr "" +"Zaustavite se ovde na trenutak. DXCC koju ste izabrali je zastarela i više " +"nije validna. Proverite koja DXCC je ispravna za ovu lokaciju. Ako ste " +"sigurni da ste upisali tačne podatke, ignorišite ovo upozrenje." + +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:533 +msgid "Callsign: " +msgstr "Pozivni znak: " + +#: application/views/interface_assets/footer.php:731 +msgid "Count: " +msgstr "Broj: " + +#: application/views/interface_assets/footer.php:732 +msgid "Grids: " +msgstr "Polja: " + +#: application/views/interface_assets/footer.php:1167 +#, php-format +msgid "You're not logged in. Please %slogin%s" +msgstr "Niste prijavljeni. Molimo %sprijavite se%s" + +#: application/views/interface_assets/footer.php:1375 +#: application/views/interface_assets/footer.php:1379 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1523 +#: application/views/interface_assets/footer.php:1526 +msgid "grid square" +msgstr "polje" + +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1526 +msgid "Total count" +msgstr "Ukupan broj" + +#: application/views/interface_assets/footer.php:2114 +msgid "QSL Card for " +msgstr "QSL karta za " + +#: application/views/interface_assets/footer.php:2134 +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:2174 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "eQSL karta" + +#: application/views/interface_assets/footer.php:2176 +msgid "eQSL Card for " +msgstr "eQSL karta za " + +#: application/views/interface_assets/footer.php:2349 +#: application/views/interface_assets/footer.php:2388 +#: application/views/view_log/qso.php:607 +msgid "QSL image file" +msgstr "Datoteka slike QSL karte" + +#: application/views/interface_assets/footer.php:2368 +msgid "Front QSL Card:" +msgstr "Prednja strana QSL karte:" + +#: application/views/interface_assets/footer.php:2406 +msgid "Back QSL Card:" +msgstr "Zadnja strana QSL karte:" + +#: application/views/interface_assets/footer.php:2417 +#: application/views/interface_assets/footer.php:2442 +msgid "Add additional QSOs to a QSL Card" +msgstr "Dodajte dodatne QSOe na QSL kartu" + +#: application/views/interface_assets/footer.php:2453 +msgid "Something went wrong. Please try again!" +msgstr "Nešto je pošlo naopako. Molimo pokušajte ponovo!" + +#: application/views/interface_assets/header.php:86 +msgid "Developer Mode" +msgstr "Razvojni mod" + +#: application/views/interface_assets/header.php:89 +msgid "Maintenance Mode" +msgstr "Mod održavanja" + +#: application/views/interface_assets/header.php:99 +msgid "Overview" +msgstr "Pregled" + +#: application/views/interface_assets/header.php:101 +msgid "Advanced" +msgstr "Napredno" + +#: application/views/interface_assets/header.php:104 +msgid "View QSL Cards" +msgstr "Pregledaj QSL karte" + +#: application/views/interface_assets/header.php:107 +msgid "View eQSL Cards" +msgstr "Pregledaj eQSL karte" + +#: application/views/interface_assets/header.php:115 +msgid "Live QSO" +msgstr "QSO uživo" + +#: application/views/interface_assets/header.php:117 +msgid "Post QSO" +msgstr "Objavi QSO" + +#: application/views/interface_assets/header.php:119 +msgid "Simple Fast Log Entry" +msgstr "Jednostavni brzi unos u dnevnik" + +#: application/views/interface_assets/header.php:121 +msgid "Live Contest Logging" +msgstr "Takmičarski dnevnik uživo" + +#: application/views/interface_assets/header.php:123 +msgid "Post Contest Logging" +msgstr "Dodavanje u dnevnik nakon takmičenja" + +#: application/views/interface_assets/header.php:132 +msgid "Analytics" +msgstr "Analitika" + +#: application/views/interface_assets/header.php:140 +msgid "Activated Gridsquares" +msgstr "Aktivirana polja" + +#: application/views/interface_assets/header.php:162 +msgid "International" +msgstr "Međunarodno" + +#: application/views/interface_assets/header.php:168 +msgid "ITU" +msgstr "ITU" + +#: application/views/interface_assets/header.php:190 +msgid "Canada" +msgstr "Kanada" + +#: application/views/interface_assets/header.php:196 +msgid "Germany" +msgstr "Nemačka" + +#: application/views/interface_assets/header.php:200 +msgid "DL Gridmaster" +msgstr "DL Gridmaster" + +#: application/views/interface_assets/header.php:204 +msgid "Great Britain" +msgstr "Velika Britanija" + +#: application/views/interface_assets/header.php:206 +msgid "WAB" +msgstr "WAB" + +#: application/views/interface_assets/header.php:210 +msgid "Japan" +msgstr "Japan" + +#: application/views/interface_assets/header.php:216 +msgid "JA Gridmaster" +msgstr "JA Gridmaster" + +#: application/views/interface_assets/header.php:220 +msgid "Luxemburg" +msgstr "Luksemburg" + +#: application/views/interface_assets/header.php:222 +msgid "LX Gridmaster" +msgstr "LX Gridmaster" + +#: application/views/interface_assets/header.php:226 +msgid "Switzerland" +msgstr "Švajcarska" + +#: application/views/interface_assets/header.php:232 +msgid "USA" +msgstr "SAD" + +#: application/views/interface_assets/header.php:238 +msgid "US Gridmaster" +msgstr "US Gridmaster" + +#: application/views/interface_assets/header.php:255 +msgid "Bandmap" +msgstr "Mapa opsega" + +#: application/views/interface_assets/header.php:257 +msgid "SAT Timers" +msgstr "SAT vremena" + +#: application/views/interface_assets/header.php:260 +msgid "Satellite Flightpath" +msgstr "Putanja leta satelita" + +#: application/views/interface_assets/header.php:262 +msgid "Satellite Pass" +msgstr "Preleti satelita" + +#: application/views/interface_assets/header.php:269 +#: application/views/stationsetup/stationsetup.php:113 +msgid "Admin" +msgstr "Admin" + +#: application/views/interface_assets/header.php:274 +msgid "Global Options" +msgstr "Globalne opcije" + +#: application/views/interface_assets/header.php:280 +#: application/views/notes/add.php:38 application/views/notes/edit.php:39 +#: application/views/satellite/index.php:11 +#: application/views/satellite/pass.php:495 +#: application/views/statistics/custom.php:20 +#: application/views/statistics/custom_result.php:21 +#: application/views/statistics/index.php:39 +#: application/views/statistics/index.php:93 +msgid "Satellites" +msgstr "Sateliti" + +#: application/views/interface_assets/header.php:286 +msgid "Update Country Files" +msgstr "Ažuriranje datoteka okruga" + +#: application/views/interface_assets/header.php:290 +msgid "Debug Information" +msgstr "Informacije debaginga" + +#: application/views/interface_assets/header.php:337 +msgid "Add/Search Callsign" +msgstr "Dodaj/pretraži pozivni znak" + +#: application/views/interface_assets/header.php:339 +msgid "Log" +msgstr "Dnevnik" + +#: application/views/interface_assets/header.php:346 +#: application/views/logbookadvanced/index.php:474 +#: application/views/oqrs/index.php:27 application/views/user/edit.php:441 +#: application/views/visitor/layout/header.php:95 +msgid "Search Callsign" +msgstr "Pretraga pozivnog znaka" + +#: application/views/interface_assets/header.php:375 +#: application/views/user/edit.php:49 +msgid "Account" +msgstr "Nalog" + +#: application/views/interface_assets/header.php:390 +msgid "Other Export Options" +msgstr "Ostale opcije izvoza" + +#: application/views/interface_assets/header.php:398 +msgid "Cabrillo Export" +msgstr "Cabrilo izvoz" + +#: application/views/interface_assets/header.php:400 +msgid "EDI Export" +msgstr "Izvoz EDI" + +#: application/views/interface_assets/header.php:424 +msgid "QSL Queue" +msgstr "QSL karte u redu" + +#: application/views/interface_assets/header.php:425 +msgid "Labels" +msgstr "Oznake" + +#: application/views/interface_assets/header.php:427 +msgid "Third-Party Services" +msgstr "Treći servisi" + +#: application/views/interface_assets/header.php:430 +msgid "eQSL Import / Export" +msgstr "eQSL izvoz/uvoz" + +#: application/views/interface_assets/header.php:431 +msgid "HRDLog Logbook" +msgstr "HRDLog Logbook" + +#: application/views/interface_assets/header.php:441 +msgid "Help" +msgstr "Pomoć" + +#: application/views/interface_assets/header.php:442 +msgid "Forum" +msgstr "Forum" + +#: application/views/interface_assets/header.php:444 +msgid "Logout" +msgstr "Odjavite se" + +#: application/views/interface_assets/header.php:452 +msgid "Select a Location" +msgstr "Izaberite lokaciju" + +#: application/views/interface_assets/header.php:531 +msgid "Extras" +msgstr "Dodaci" + +#: application/views/kml/index.php:7 +msgid "Export your logbook to a KML file for use in Google Earth." +msgstr "Izvezite vaš dnevnik kao KML datoteku za korišćenje u Google Earth." + +#: application/views/labels/create.php:24 +msgid "" +"Label name used for display purposes, so pick something meaningful, perhaps " +"the label style." +msgstr "" +"Naziv etikete se koristi u svrhu prikaza etikete, izaberite nešto smisleno, " +"možda stil etikete." + +#: 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 "Korišćene mere" + +#: application/views/labels/create.php:42 +#: application/views/labels/createpaper.php:44 +#: application/views/labels/edit.php:44 +#: application/views/labels/editpaper.php:44 +msgid "Millimeters" +msgstr "Milimetri" + +#: application/views/labels/create.php:43 +#: application/views/labels/createpaper.php:45 +#: application/views/labels/edit.php:45 +#: application/views/labels/editpaper.php:45 +msgid "Inches" +msgstr "Inči" + +#: application/views/labels/create.php:49 application/views/labels/edit.php:51 +msgid "Margin Top" +msgstr "Gornja margina" + +#: application/views/labels/create.php:52 application/views/labels/edit.php:54 +msgid "Top margin of labels" +msgstr "Gornja margina etiketa" + +#: application/views/labels/create.php:55 application/views/labels/edit.php:57 +msgid "Margin Left" +msgstr "Leva margina" + +#: application/views/labels/create.php:58 application/views/labels/edit.php:60 +msgid "Left margin of labels." +msgstr "Leva margina etiketa." + +#: application/views/labels/create.php:63 application/views/labels/edit.php:65 +msgid "Labels horizontally" +msgstr "Horizontalno etiketa" + +#: application/views/labels/create.php:66 application/views/labels/edit.php:68 +msgid "Number of labels horizontally across the page." +msgstr "Broj etiketa u jednom redu, na stranici." + +#: application/views/labels/create.php:69 application/views/labels/edit.php:71 +msgid "Labels vertically" +msgstr "Vertikalno etiketa" + +#: application/views/labels/create.php:72 application/views/labels/edit.php:74 +msgid "Number of labels vertically across the page." +msgstr "Broj etiketa u jednoj koloni, na stranici." + +#: application/views/labels/create.php:77 application/views/labels/edit.php:79 +msgid "Horizontal space" +msgstr "Horizontalni razmak" + +#: application/views/labels/create.php:80 application/views/labels/edit.php:82 +msgid "Horizontal space between 2 labels." +msgstr "Horizontalni razmak između dve etikete." + +#: application/views/labels/create.php:83 application/views/labels/edit.php:85 +msgid "Vertical space" +msgstr "Vertikalni razmak" + +#: application/views/labels/create.php:86 application/views/labels/edit.php:88 +msgid "Vertical space between 2 labels." +msgstr "Vertikalni razmak između dve etikete." + +#: application/views/labels/create.php:91 application/views/labels/edit.php:93 +msgid "Width of label" +msgstr "Širina etikete" + +#: application/views/labels/create.php:94 application/views/labels/edit.php:96 +msgid "Total width of one label." +msgstr "Ukupna širina jedne etikete." + +#: application/views/labels/create.php:97 application/views/labels/edit.php:99 +msgid "Height of label" +msgstr "Visina etikete" + +#: application/views/labels/create.php:100 +#: application/views/labels/edit.php:102 +msgid "Total height of one label" +msgstr "Ukupna visina jedne etikete" + +#: application/views/labels/create.php:105 +#: application/views/labels/edit.php:107 application/views/labels/index.php:80 +msgid "Font Size" +msgstr "Veličina fonta" + +#: 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 "" +"Veličina fonta koja se koristi na etiketama ne bi trebalo da bude velika." + +#: application/views/labels/create.php:111 +#: application/views/labels/edit.php:113 +msgid "QSOs on label" +msgstr "QSOa na etiketi" + +#: application/views/labels/create.php:117 +#: application/views/labels/edit.php:118 +msgid "Save Label Type" +msgstr "Sačuvajte vrstu etikete" + +#: application/views/labels/createpaper.php:36 +#: application/views/labels/editpaper.php:36 +msgid "Paper Type Name" +msgstr "Naziv vrste papira" + +#: application/views/labels/createpaper.php:39 +#: application/views/labels/editpaper.php:39 +msgid "Paper name used for display purposes, so pick something meaningful." +msgstr "" +"Naziv papira se koristi u svrhu prikazivanja izbora, izaberite nešto " +"smisleno." + +#: application/views/labels/createpaper.php:51 +#: application/views/labels/editpaper.php:51 +msgid "Width of paper" +msgstr "Širina papira" + +#: application/views/labels/createpaper.php:54 +#: application/views/labels/editpaper.php:54 +#: application/views/labels/editpaper.php:60 +msgid "Total width of paper." +msgstr "Ukupna širina papira." + +#: application/views/labels/createpaper.php:57 +#: application/views/labels/editpaper.php:57 +msgid "Height of paper" +msgstr "Visina papira" + +#: application/views/labels/createpaper.php:60 +msgid "Total height of paper" +msgstr "Ukupna visina papira" + +#: 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 "Orjentacija papira" + +#: application/views/labels/createpaper.php:68 +#: application/views/labels/editpaper.php:68 +#: application/views/labels/index.php:60 +msgctxt "Orientation" +msgid "Landscape" +msgstr "Horizontalno" + +#: application/views/labels/createpaper.php:69 +#: application/views/labels/editpaper.php:69 +#: application/views/labels/index.php:60 +msgctxt "Orientation" +msgid "Portrait" +msgstr "Vertikalno" + +#: application/views/labels/createpaper.php:75 +#: application/views/labels/editpaper.php:75 +msgid "Save Paper Type" +msgstr "Sačuvajte vrstu papira" + +#: application/views/labels/edit.php:24 +msgid "" +"Label name used for display purposes so pick something meaningful perhaps " +"the label style." +msgstr "" +"Naziv etikete se koristi u svrhu prikazivanja raspoloživih etiketa, tako da " +"biste trebali izabrati neko smisleno ime, možda stil etikete." + +#: application/views/labels/index.php:2 +#: application/views/logbookadvanced/startatform.php:27 +msgid "Mark QSL as printed" +msgstr "Označite QSL kao odštampanu" + +#: application/views/labels/index.php:3 application/views/labels/index.php:128 +msgid "Print" +msgstr "Štampa" + +#: application/views/labels/index.php:33 +msgid "Create New Label Type" +msgstr "Kreirajte novu vrstu etikete" + +#: application/views/labels/index.php:34 +msgid "Create New Paper Type" +msgstr "Kreirajte novu vrstu papira" + +#: application/views/labels/index.php:37 +msgid "Paper types" +msgstr "Vrste papira" + +#: application/views/labels/index.php:43 application/views/labels/index.php:78 +msgid "Width" +msgstr "Širina" + +#: application/views/labels/index.php:44 application/views/labels/index.php:79 +msgid "Height" +msgstr "Visina" + +#: application/views/labels/index.php:45 +msgid "Used by labels" +msgstr "Koriste ga etikete" + +#: application/views/labels/index.php:46 +msgid "Orientation" +msgstr "Ojrentacija" + +#: application/views/labels/index.php:71 +msgid "Label types" +msgstr "Vrste etiketa" + +#: application/views/labels/index.php:81 +#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:96 +#: application/views/widgets/qsos.php:3 +msgid "QSOs" +msgstr "QSOi" + +#: application/views/labels/index.php:82 +msgid "Use For Print" +msgstr "Koristi za štampu" + +#: application/views/labels/index.php:92 +msgid "No paper assigned" +msgstr "Papir nije doznačen" + +#: application/views/labels/index.php:117 +msgid "QSL Card Labels Pending" +msgstr "Etikete QSL karata na čekanju" + +#: application/views/labels/index.php:126 +msgid "QSOs Waiting" +msgstr "QSOi na čekanju" + +#: application/views/labels/index.php:127 +msgid "View QSOs" +msgstr "Pregledaj QSOe" + +#: application/views/labels/startatform.php:4 +#: application/views/logbookadvanced/startatform.php:3 +msgid "Include Grid?" +msgstr "Uključujući i polje?" + +#: application/views/labels/startatform.php:10 +#: application/views/logbookadvanced/startatform.php:9 +msgid "" +"Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" +msgstr "" +"Uključujući i reference (SIG, SOTA, POTA, IOTA, WWFF; ako su dostupne za " +"lokaciju)" + +#: application/views/labels/startatform.php:16 +msgid "Include Via (if filled)?" +msgstr "Uključujući i Via (ako je popunjeno)?" + +#: application/views/labels/startatform.php:22 +#: application/views/logbookadvanced/startatform.php:21 +msgid "Start printing at?" +msgstr "Započeti štampu u?" + +#: application/views/logbookadvanced/edit.php:15 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:590 +#: application/views/logbookadvanced/useroptions.php:58 +msgid "QSL via" +msgstr "QSL via" + +#: application/views/logbookadvanced/edit.php:23 +msgid "LoTW Sent" +msgstr "LoTW poslat" + +#: application/views/logbookadvanced/edit.php:24 +msgid "LoTW Received" +msgstr "LoTW primljen" + +#: application/views/logbookadvanced/edit.php:75 +msgid "SAT Mode" +msgstr "SAT vrsta rada" + +#: application/views/logbookadvanced/edit.php:89 +msgid "Band RX" +msgstr "RX opseg" + +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "Polja" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "Linije putanja" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "CQ Zone" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "ITU Zone" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:174 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "Senka noći" + +#: application/views/logbookadvanced/index.php:144 +msgid "From" +msgstr "Od" + +#: application/views/logbookadvanced/index.php:148 +msgid "To" +msgstr "Za" + +#: application/views/logbookadvanced/index.php:152 +#: application/views/logbookadvanced/index.php:569 +#: application/views/logbookadvanced/useroptions.php:30 +#: application/views/oqrs/showrequests.php:42 +msgid "Dx" +msgstr "Dx" + +#: application/views/logbookadvanced/index.php:159 +msgctxt "Logbook Advanced DXCC Select" +msgid "- NONE - (e.g. /MM, /AM)" +msgstr "- NIJEDNA - (npr. /MM, /AM)" + +#: application/views/logbookadvanced/index.php:224 +msgctxt "Propagation Mode" +msgid "None/Empty" +msgstr "Nema/Prazno" + +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:540 +msgid "Invalid" +msgstr "Neispravno" + +#: application/views/logbookadvanced/index.php:324 +msgid "QSL sent" +msgstr "QSL poslata" + +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:439 +#: application/views/lookup/lotwuser.php:12 +#: application/views/qso/edit_ajax.php:421 +#: application/views/qso/edit_ajax.php:454 +#: application/views/qso/edit_ajax.php:482 +#: application/views/qso/edit_ajax.php:495 +#: application/views/qso/edit_ajax.php:522 +#: application/views/qso/edit_ajax.php:534 application/views/qso/index.php:576 +#: application/views/search/result.php:58 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 +#: application/views/station_profile/create.php:293 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 +#: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 +#: application/views/user/edit.php:347 application/views/user/edit.php:358 +#: application/views/user/edit.php:369 application/views/user/edit.php:379 +#: application/views/user/edit.php:389 application/views/user/edit.php:399 +#: application/views/user/edit.php:419 application/views/user/edit.php:430 +#: application/views/user/edit.php:540 application/views/user/edit.php:802 +#: application/views/user/edit.php:834 application/views/user/edit.php:859 +msgid "Yes" +msgstr "Da" + +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:440 +#: application/views/lookup/lotwuser.php:14 +#: application/views/qso/edit_ajax.php:420 +#: application/views/qso/edit_ajax.php:453 +#: application/views/qso/edit_ajax.php:481 +#: application/views/qso/edit_ajax.php:494 +#: application/views/qso/edit_ajax.php:521 +#: application/views/qso/edit_ajax.php:533 application/views/qso/index.php:575 +#: application/views/search/result.php:60 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 +#: application/views/station_profile/create.php:292 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 +#: application/views/user/edit.php:348 application/views/user/edit.php:359 +#: application/views/user/edit.php:370 application/views/user/edit.php:380 +#: application/views/user/edit.php:390 application/views/user/edit.php:400 +#: application/views/user/edit.php:420 application/views/user/edit.php:431 +#: application/views/user/edit.php:522 application/views/user/edit.php:526 +#: application/views/user/edit.php:541 application/views/user/edit.php:803 +#: application/views/user/edit.php:833 application/views/user/edit.php:858 +msgid "No" +msgstr "Ne" + +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:416 +#: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 +#: application/views/qslprint/qsolist.php:61 +#: application/views/qslprint/qsolist.php:103 +#: application/views/qso/edit_ajax.php:423 +#: application/views/qso/edit_ajax.php:484 +#: application/views/qso/edit_ajax.php:524 application/views/qso/index.php:578 +#: application/views/search/search_result_ajax.php:183 +#: application/views/search/search_result_ajax.php:225 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +#: src/QSLManager/QSO.php:273 src/QSLManager/QSO.php:318 +msgid "Queued" +msgstr "U nizu" + +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:373 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:417 +#: application/views/logbookadvanced/index.php:427 +#: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 +#: application/views/oqrs/qsolist.php:166 +#: application/views/oqrs/qsolist.php:181 +#: application/views/qslprint/qsolist.php:67 +#: application/views/qslprint/qsolist.php:109 +#: application/views/qslprint/qsolist.php:174 +#: application/views/qslprint/qsolist.php:189 +#: application/views/qso/edit_ajax.php:424 +#: application/views/qso/edit_ajax.php:456 +#: application/views/qso/edit_ajax.php:485 +#: application/views/qso/edit_ajax.php:497 +#: application/views/qso/edit_ajax.php:525 +#: application/views/qso/edit_ajax.php:536 application/views/qso/index.php:579 +#: application/views/search/search_result_ajax.php:189 +#: application/views/search/search_result_ajax.php:231 +#: application/views/search/search_result_ajax.php:305 +#: application/views/search/search_result_ajax.php:320 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +#: application/views/view_log/partial/log_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:270 +#: src/QSLManager/QSO.php:279 src/QSLManager/QSO.php:324 +#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:400 +msgid "Invalid (Ignore)" +msgstr "Neispravno (ignorišite)" + +#: application/views/logbookadvanced/index.php:335 +msgid "QSL received" +msgstr "QSL primljena" + +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:428 +msgid "Verified" +msgstr "Verifikovano" + +#: application/views/logbookadvanced/index.php:346 +msgid "QSL send. method" +msgstr "Način slanja QSL" + +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:359 +#: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 +#: application/views/oqrs/request.php:45 +#: application/views/oqrs/request_grouped.php:49 +#: application/views/oqrs/showrequests.php:12 +#: application/views/qslprint/qslprint.php:5 +#: application/views/qslprint/qsolist.php:77 +#: application/views/qslprint/qsolist.php:119 +#: application/views/qslprint/qsolist.php:210 +#: application/views/qso/edit_ajax.php:435 +#: application/views/qso/edit_ajax.php:468 application/views/qso/index.php:590 +#: application/views/search/search_result_ajax.php:199 +#: application/views/search/search_result_ajax.php:241 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +#: src/QSLManager/QSO.php:296 src/QSLManager/QSO.php:339 +msgid "Bureau" +msgstr "Biro" + +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:360 +#: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 +#: application/views/oqrs/showrequests.php:13 +#: application/views/qslprint/qslprint.php:6 +#: application/views/qslprint/qsolist.php:80 +#: application/views/qslprint/qsolist.php:122 +#: application/views/qslprint/qsolist.php:211 +#: application/views/qso/edit_ajax.php:434 +#: application/views/qso/edit_ajax.php:467 application/views/qso/index.php:589 +#: application/views/search/search_result_ajax.php:202 +#: application/views/search/search_result_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +#: src/QSLManager/QSO.php:299 src/QSLManager/QSO.php:342 +msgid "Direct" +msgstr "Direktno" + +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 +#: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 +#: application/views/oqrs/showrequests.php:14 +#: application/views/qslprint/qslprint.php:7 +#: application/views/qslprint/qsolist.php:86 +#: application/views/qslprint/qsolist.php:128 +#: application/views/qslprint/qsolist.php:212 +#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:591 +#: application/views/search/search_result_ajax.php:208 +#: application/views/search/search_result_ajax.php:250 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +#: src/QSLManager/QSO.php:305 src/QSLManager/QSO.php:348 +msgid "Electronic" +msgstr "Elektronski" + +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:362 +#: application/views/oqrs/qsolist.php:117 +#: application/views/qslprint/qsolist.php:125 +#: application/views/qso/edit_ajax.php:437 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:592 +#: application/views/search/search_result_ajax.php:247 +#: application/views/view_log/partial/log_ajax.php:208 +msgid "Manager" +msgstr "Menadžer" + +#: application/views/logbookadvanced/index.php:356 +msgid "QSL recv. method" +msgstr "Način prijema QSL" + +#: application/views/logbookadvanced/index.php:366 +msgid "LoTW sent" +msgstr "LoTW poslat" + +#: application/views/logbookadvanced/index.php:377 +msgid "LoTW received" +msgstr "LoTW primljen" + +#: application/views/logbookadvanced/index.php:388 +msgid "Clublog sent" +msgstr "Clublog poslat" + +#: application/views/logbookadvanced/index.php:399 +msgid "Clublog received" +msgstr "Clublog primljen" + +#: application/views/logbookadvanced/index.php:410 +msgid "eQSL sent" +msgstr "eQSL poslata" + +#: application/views/logbookadvanced/index.php:421 +msgid "eQSL received" +msgstr "eQSL primljena" + +#: application/views/logbookadvanced/index.php:436 +msgid "QSL Images" +msgstr "Slike QSL" + +#: application/views/logbookadvanced/index.php:448 +msgid "Warning! Are you sure you want to delete the marked QSO(s)?" +msgstr "Upozorenje! Da li ste sigurni da želite izbrisati označenu vezu/veze?" + +#: application/views/logbookadvanced/index.php:451 +msgid "With selected: " +msgstr "Sa izabranim: " + +#: application/views/logbookadvanced/index.php:452 +#: application/views/qso/edit_ajax.php:622 +msgid "Update from Callbook" +msgstr "Ažurirajte iz Callbooka" + +#: application/views/logbookadvanced/index.php:453 +msgid "Queue Bureau" +msgstr "U nizu za biro" + +#: application/views/logbookadvanced/index.php:454 +msgid "Queue Direct" +msgstr "U nizu za direktno" + +#: application/views/logbookadvanced/index.php:455 +msgid "Queue Electronic" +msgstr "U nizu za elektronsko" + +#: application/views/logbookadvanced/index.php:456 +msgid "Sent (Bureau)" +msgstr "Poslato (preko biroa)" + +#: application/views/logbookadvanced/index.php:457 +msgid "Sent (Direct)" +msgstr "Poslato (direktno)" + +#: application/views/logbookadvanced/index.php:458 +msgid "Sent (Electronic)" +msgstr "Poslato (elektronski)" + +#: application/views/logbookadvanced/index.php:459 +msgid "Not Sent" +msgstr "Nije poslato" + +#: application/views/logbookadvanced/index.php:460 +msgid "QSL Not Required" +msgstr "QSL nije zahtevana" + +#: application/views/logbookadvanced/index.php:461 +msgid "Not Received" +msgstr "Nije primljena" + +#: application/views/logbookadvanced/index.php:462 +msgid "Received (Bureau)" +msgstr "Primljena (preko biroa)" + +#: application/views/logbookadvanced/index.php:463 +msgid "Received (Direct)" +msgstr "Primljena (direktno)" + +#: application/views/logbookadvanced/index.php:464 +msgid "Received (Electronic)" +msgstr "Primljena (elektronski)" + +#: application/views/logbookadvanced/index.php:465 +msgid "Create ADIF" +msgstr "Napravi ADIF" + +#: application/views/logbookadvanced/index.php:466 +msgid "Print Label" +msgstr "Štampa etiketa" + +#: application/views/logbookadvanced/index.php:467 +msgid "QSL Slideshow" +msgstr "Prikaz QSL karata" + +#: application/views/logbookadvanced/index.php:472 +msgid "Quicksearch with selected: " +msgstr "Brza pretraga sa izabranim: " + +#: application/views/logbookadvanced/index.php:477 +msgid "Search DXCC" +msgstr "Pretraži DXCC" + +#: application/views/logbookadvanced/index.php:480 +msgid "Search State" +msgstr "Pretraži državu" + +#: application/views/logbookadvanced/index.php:483 +msgid "Search Gridsquare" +msgstr "Pretraži polje" + +#: application/views/logbookadvanced/index.php:486 +msgid "Search CQ Zone" +msgstr "Pretraži CQ zonu" + +#: application/views/logbookadvanced/index.php:489 +msgid "Search ITU Zone" +msgstr "Pretraži ITU zonu" + +#: application/views/logbookadvanced/index.php:492 +msgid "Search Mode" +msgstr "Pretraži vrstu rada" + +#: application/views/logbookadvanced/index.php:495 +msgid "Search Band" +msgstr "Pretraži opseg" + +#: application/views/logbookadvanced/index.php:498 +msgid "Search IOTA" +msgstr "Pretraži IOTA" + +#: application/views/logbookadvanced/index.php:501 +msgid "Search SOTA" +msgstr "Pretraži SOTA" + +#: application/views/logbookadvanced/index.php:504 +msgid "Search POTA" +msgstr "Pretraži POTA" + +#: application/views/logbookadvanced/index.php:507 +msgid "Search WWFF" +msgstr "Pretraži WWFF" + +#: application/views/logbookadvanced/index.php:510 +msgid "Search Operator" +msgstr "Pretraži operatora" + +#: application/views/logbookadvanced/index.php:516 +msgid "Quickfilters" +msgstr "Brzi filteri" + +#: application/views/logbookadvanced/index.php:517 +msgid "QSL Filters" +msgstr "QSL filteri" + +#: application/views/logbookadvanced/index.php:518 +#: application/views/mode/index.php:68 +msgid "Filters" +msgstr "Filteri" + +#: application/views/logbookadvanced/index.php:520 +#: application/views/oqrs/showrequests.php:56 +msgid "# Results" +msgstr "# rezultata" + +#: application/views/logbookadvanced/index.php:527 +#: application/views/qso/index.php:272 +#: application/views/station_profile/edit.php:92 +msgid "Location" +msgstr "Lokacija" + +#: application/views/logbookadvanced/index.php:539 +msgid "Dupes" +msgstr "Duple" + +#: application/views/logbookadvanced/index.php:547 +msgid "Globe map" +msgstr "Karta sveta" + +#: application/views/logbookadvanced/index.php:566 +#: application/views/logbookadvanced/useroptions.php:26 +#: application/views/oqrs/showrequests.php:31 +msgid "De" +msgstr "De" + +#: application/views/logbookadvanced/index.php:605 +#: application/views/logbookadvanced/useroptions.php:78 +msgid "QSL Msg" +msgstr "QSL poruka" + +#: application/views/logbookadvanced/index.php:650 +#: application/views/logbookadvanced/useroptions.php:50 +msgid "My Refs" +msgstr "Moje Refs" + +#: application/views/logbookadvanced/qslcarousel.php:59 +#: application/views/qslcard/qslcarousel.php:25 +msgid "QSL picture #" +msgstr "QSL slika #" + +#: application/views/logbookadvanced/qslcarousel.php:67 +#: application/views/qslcard/qslcarousel.php:32 +msgid "Previous" +msgstr "Prethodno" + +#: application/views/logbookadvanced/qslcarousel.php:71 +#: application/views/qslcard/qslcarousel.php:36 +msgid "Next" +msgstr "Sledeće" + +#: application/views/logbookadvanced/startatform.php:15 +msgid "Include Via" +msgstr "Uključujući Via" + +#: application/views/logbookadvanced/useroptions.php:16 +msgid "Column" +msgstr "Kolona" + +#: application/views/logbookadvanced/useroptions.php:152 +msgctxt "Map Options" +msgid "Layer" +msgstr "Sloj" + +#: application/views/logbookadvanced/useroptions.php:153 +msgid "Default on" +msgstr "Podrazumevano na" + +#: application/views/lookup/index.php:8 +msgid "US State" +msgstr "USA država" + +#: application/views/lookup/index.php:10 +msgid "LoTW user" +msgstr "LoTW korisnik" + +#: application/views/lookup/index.php:46 +msgid "Choose a State" +msgstr "Izaberite državu" + +#: application/views/lookup/lotwuser.php:2 +#: application/views/lookup/lotwuser.php:12 +#: application/views/search/result.php:46 +#: application/views/search/result.php:58 +msgid "LoTW User" +msgstr "LoTW korisnik" + +#: application/views/lookup/lotwuser.php:12 +#: application/views/search/result.php:58 +#, php-format +msgid "%d day ago" +msgid_plural "%d days ago" +msgstr[0] "Pre %d dana" +msgstr[1] "Pre %d dana" +msgstr[2] "pre %d dana" + +#: application/views/lookup/lotwuser.php:12 +#: application/views/search/result.php:58 +msgid "last upload" +msgstr "poslednje učitavanje" + +#: application/views/lookup/lotwuser.php:14 +msgid "No LoTW User" +msgstr "Nije LoTW korisnik" + +#: 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 "" +"Podaci nisu uvezeni. Molimo proverite izabrani datum. Mora biti iz prošlosti!" + +#: application/views/lotw/import.php:12 +msgid "Import Options" +msgstr "Opcije uvoza" + +#: application/views/lotw/import.php:22 +msgid "Upload a File" +msgstr "Učitajte datoteku" + +#: application/views/lotw/import.php:24 +msgid "Download Report" +msgstr "Preuzmite izveštaj" + +#: application/views/lotw/import.php:24 +#, php-format +msgid "" +"Upload the Exported ADIF file from LoTW from the %s Area, to mark QSOs as " +"confirmed on LoTW." +msgstr "" +"Učitajte ADIF datoteku koju ste izvezli sa LoTW sajta sa %s, kako biste " +"označili veze potvrđenima preko LoTW." + +#: application/views/lotw/import.php:27 +msgid "Choose file" +msgstr "Izbor datoteke" + +#: application/views/lotw/import.php:36 +msgid "Pull LoTW data for me" +msgstr "Povucite LoTW podatke za mene" + +#: application/views/lotw/import.php:47 +msgid "Select callsign to pull LoTW confirmations for." +msgstr "Izaberite pozivni znak za koji želite da povučete LoTW potvrde." + +#: application/views/lotw/import.php:61 +msgid "" +"Wavelog will use the LoTW username and password stored in your user profile " +"to download a report from LoTW for you. The report Wavelog downloads will " +"have all confirmations since chosen date, or since your last LoTW " +"confirmation (fetched from your log), up until now." +msgstr "" +"Wavelog će koristiti LoTW korisničko ime i lozinku koje ste ostavili u vašem " +"korisničkom profilu kako bi za vas preuzeo izveštaj sa LoTW. Izveštaj koji " +"će Wavelog preuzeti imaće sve povrde veza od izabranog datuma na dalje, ili " +"od vaše posljednje LoTW potvrde (dobavljeno iz vašeg dnevnika), do ovog " +"trenutka." + +#: application/views/lotw/import.php:64 +msgid "Import LoTW Matches" +msgstr "Uvezi LoTW poklapanja" + +#: application/views/lotw_views/index.php:4 +msgid "Upload folder is not writable. Please contact your admin." +msgstr "" +"Fascikla za učitavanje je zaštićena od zapisivanja. Molim kontaktirajte " +"vašeg administratora." + +#: application/views/lotw_views/index.php:10 +msgid "LoTW Import" +msgstr "LoTW uvoz" + +#: application/views/lotw_views/index.php:17 +msgid "Available Certificates" +msgstr "Dostupni sertifikati" + +#: application/views/lotw_views/index.php:17 +msgid "Upload Certificate" +msgstr "Učitajte sertifikat" + +#: application/views/lotw_views/index.php:37 +msgid "QSO Start Date" +msgstr "Početni datum veza" + +#: application/views/lotw_views/index.php:38 +msgid "QSO End Date" +msgstr "Krajnji datum veza" + +#: application/views/lotw_views/index.php:39 +msgid "Date Created" +msgstr "Datum kreiranja" + +#: application/views/lotw_views/index.php:40 +msgid "Date Expires" +msgstr "Datum isteka" + +#: application/views/lotw_views/index.php:42 +#: application/views/view_log/qso.php:407 +msgid "Last Upload" +msgstr "Poslednje učitavanje" + +#: application/views/lotw_views/index.php:87 +msgid "Expired" +msgstr "Isteklo" + +#: application/views/lotw_views/index.php:89 +msgid "Expiring" +msgstr "Ističe" + +#: application/views/lotw_views/index.php:91 +msgid "Valid" +msgstr "Validan" + +#: application/views/lotw_views/index.php:101 +#, php-format +msgid "Last success: %s" +msgstr "Poslednji put uspešno: %s" + +#: application/views/lotw_views/index.php:104 +#, php-format +msgid "Last fail: %s" +msgstr "Poslednji put neuspešno: %s" + +#: application/views/lotw_views/index.php:110 +msgid "Not Synced" +msgstr "Nije sinhronizovano" + +#: application/views/lotw_views/index.php:125 +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:140 +msgid "Information" +msgstr "Informacije" + +#: application/views/lotw_views/index.php:145 +msgid "Manual Sync" +msgstr "Ručna sinhronizacija" + +#: application/views/lotw_views/upload_cert.php:8 +#: application/views/lotw_views/upload_cert.php:31 +msgid "Upload Logbook of the World .p12 Certificate" +msgstr "Učitavanje LoTW .p12 sertifikata" + +#: application/views/lotw_views/upload_cert.php:19 +msgid "Export .p12 File Instructions" +msgstr "Izvoz .p12 instrukcija" + +#: application/views/lotw_views/upload_cert.php:22 +msgid "Open TQSL and go to the Callsign Certificates Tab" +msgstr "Otvorite TQSL i idite na karticu Callsign Certificates" + +#: application/views/lotw_views/upload_cert.php:23 +msgid "Right click on desired Callsign" +msgstr "Desni klik na željeni pozivni znak" + +#: application/views/lotw_views/upload_cert.php:24 +msgid "Click 'Save Callsign Certificate File' and do not add a password" +msgstr "" +"Kliknite na 'Save Callsign Certificate File' i nemojte dodavati lozinku" + +#: application/views/lotw_views/upload_cert.php:25 +msgid "Upload File below." +msgstr "Učitajte dole datoteku." + +#: application/views/lotw_views/upload_cert.php:35 +msgid "Upload File" +msgstr "Učitavanje datoteke" + +#: application/views/mode/create.php:24 application/views/mode/edit.php:33 +msgctxt "Name of mode in ADIF-specification" +msgid "ADIF Mode" +msgstr "ADIF vrsta rada" + +#: application/views/mode/create.php:26 application/views/mode/edit.php:35 +msgid "Name of mode in ADIF-specification" +msgstr "Naziv vrste rada prema ADIF specifikaciji" + +#: application/views/mode/create.php:30 application/views/mode/edit.php:39 +msgctxt "Name of sub-mode in ADIF-specification" +msgid "ADIF Sub-Mode" +msgstr "ADIF podvrsta rada" + +#: application/views/mode/create.php:32 application/views/mode/edit.php:41 +msgid "Name of sub-mode in ADIF-specification" +msgstr "Naziv podvrste rada prema ADIF specifikaciji" + +#: application/views/mode/create.php:42 application/views/mode/edit.php:53 +msgid "Defines the QRG-segment in bandplan." +msgstr "Definiše QRG segment u planu opsega." + +#: application/views/mode/create.php:49 application/views/mode/edit.php:61 +#: application/views/mode/index.php:43 +msgid "Not active" +msgstr "Nije aktivno" + +#: application/views/mode/create.php:51 application/views/mode/edit.php:64 +msgid "Set to active if to be listed in Modes-list" +msgstr "Postavite kao aktivno kako bi bilo prikazano na listi vrsta rada" + +#: application/views/mode/create.php:54 +msgid "Create mode" +msgstr "Kreiraj vrstu rada" + +#: application/views/mode/edit.php:67 +msgid "Update mode" +msgstr "Ažuriraj vrstu rada" + +#: application/views/mode/index.php:19 +msgid "" +"Using the modes list you can control which modes are shown when creating a " +"new QSO." +msgstr "" +"Korišćenjem liste vrste rada možete kontrolisati koje vrste će biti " +"prikazane kada kreirate novi QSO." + +#: application/views/mode/index.php:22 +msgid "" +"Active modes will be shown in the QSO 'Mode' drop-down, while inactive modes " +"will be hidden and cannot be selected." +msgstr "" +"Aktivne vrste rada će biti prikazane u padajućoj listi Vrsta rada, dok će " +"neaktivne vrste biti skrivene i nećete ih moći izabrati." + +#: application/views/mode/index.php:29 +msgid "Sub-Mode" +msgstr "Pod-vrsta" + +#: application/views/mode/index.php:76 +msgid "Create a Mode" +msgstr "Kreiraj vrstu rada" + +#: application/views/notes/add.php:6 application/views/notes/add.php:12 +#: application/views/notes/edit.php:13 application/views/notes/main.php:11 +#: application/views/notes/view.php:12 +msgid "Create Note" +msgstr "Kreiraj napomenu" + +#: application/views/notes/add.php:29 application/views/notes/edit.php:30 +msgid "Title" +msgstr "Naslov" + +#: application/views/notes/add.php:34 application/views/notes/edit.php:35 +msgid "Category" +msgstr "Kategorija" + +#: application/views/notes/add.php:36 application/views/notes/edit.php:37 +#: application/views/qso/index.php:28 +#: application/views/statistics/custom.php:17 +#: application/views/statistics/custom_result.php:18 +#: application/views/statistics/index.php:35 +#: application/views/user/edit.php:154 +msgid "General" +msgstr "Opšte" + +#: application/views/notes/add.php:37 application/views/notes/edit.php:38 +msgid "Antennas" +msgstr "Antene" + +#: application/views/notes/add.php:43 application/views/notes/edit.php:44 +msgid "Note Contents" +msgstr "Sadržaj napomene" + +#: application/views/notes/add.php:48 application/views/notes/edit.php:50 +msgid "Save Note" +msgstr "Sačuvaj napomenu" + +#: application/views/notes/main.php:22 +msgid "Your Notes" +msgstr "Vaše napomene" + +#: application/views/notes/main.php:32 +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 " +"than paper as you can't lose them!" +msgstr "" +"Trenutno nemate napomena, one su fantastičan način čuvanja podataka kao što " +"su ATU podešavnja, radio-farovi i opšte napomene o radio-stanici, bolje su " +"od papira kojeg možete zaturiti!" + +#: application/views/notes/view.php:21 +msgid "Delete Note" +msgstr "Izbriši napomenu" + +#: application/views/operator/index.php:9 +msgid "" +"Please provide your personal call sign. This makes sure that QSOs are logged " +"and exported with correct operator information." +msgstr "" +"Molimo upišite vaš lični pozivni znak. Ovo garantuje da će veze biti upisane " +"i izvezene sa tačnom informacijom o operatoru." + +#: application/views/operator/index.php:13 +msgid "Your personal Callsign:" +msgstr "Vaš lični pozivni znak:" + +#: application/views/operator/index.php:16 +msgid "You have to provide your personal callsign." +msgstr "Morate upisati vaš lični pozivni znak." + +#: application/views/options/appearance.php:39 +#: application/views/user/edit.php:157 +msgid "Theme" +msgstr "Teme" + +#: application/views/options/appearance.php:51 +msgid "Global Theme Choice, this is used when users arent logged in." +msgstr "" +"Globalni izbor teme, ova će biti korišćena kada korisnici nisu prijavljeni." + +#: application/views/options/appearance.php:61 +msgid "Dashboard Notification Banner" +msgstr "Polje napomene na kontrolnoj tabli" + +#: application/views/options/appearance.php:66 +msgid "This allows to disable the global notification banner on the dashboard." +msgstr "Ovim ćete onemogućiti prikaz napomena na vrhu kontrolne table." + +#: application/views/options/appearance.php:70 +msgid "Dashboard Map" +msgstr "Karta na kontrolnoj tabli" + +#: application/views/options/appearance.php:74 +msgid "Map at right" +msgstr "Mapa u desno" + +#: application/views/options/appearance.php:76 +msgid "" +"This allows the map on the dashboard to be disabled or placed on the right." +msgstr "" +"Ovo omogućava da karta na kontrolnoj tabli bude onemogućena ili postavljena " +"uz desnu ivicu." + +#: application/views/options/appearance.php:80 +msgid "Logbook Map" +msgstr "Karta dnevnika" + +#: application/views/options/appearance.php:85 +msgid "This allows to disable the map in the logbook." +msgstr "Ovim ćete onemogućiti prikaz karte u dnevniku." + +#: application/views/options/appearance.php:89 +msgid "Public Maps" +msgstr "Javne karte" + +#: application/views/options/appearance.php:94 +msgid "" +"This allows to disable all maps in the public view. This affects the main " +"map and the gridsquares map." +msgstr "" +"Ovim ćete onemogućiti prikaz karata u javnom pregledu. Ovo se odnosi na " +"glavnu kartu i na kartu polja." + +#: application/views/options/appearance.php:98 +msgid "Public Github Button" +msgstr "Javno Github dugme" + +#: application/views/options/appearance.php:103 +msgid "This enables the button to Wavelog's Github page in the public view" +msgstr "Ovo omogućava prikaz dugmeta za Wavelog Github stranicu" + +#: application/views/options/appearance.php:107 +msgid "Public Login Button" +msgstr "Javno dugme za prijavu" + +#: application/views/options/appearance.php:112 +msgid "This enables the button to login to Wavelog in the public view" +msgstr "Ovo omogućuje da postoji dugme za prijavu na javni pregled WaveLoga" + +#: application/views/options/dxcluster.php:38 +msgid "Provider of DXClusterCache" +msgstr "Davatelj usluga DX Klastera" + +#: application/views/options/dxcluster.php:39 +msgid "DXClusterAPI" +msgstr "DXCluster API" + +#: application/views/options/dxcluster.php:39 +#, php-format +msgid "" +"The Provider of the DXCluster-Cache. You can set up your own Cache with %s " +"or use a public one" +msgstr "" +"Davatelj usluga DX Klaster privremene memorije. Možete podesiti vašu " +"vlastitu privremenu memoriju sa %s ili koristiti javnu" + +#: application/views/options/dxcluster.php:41 +#, php-format +msgid "URL of the DXCluster-Cache. e.g. %s" +msgstr "URL DX klastera npr. %s" + +#: application/views/options/dxcluster.php:44 +msgid "Maximum Age of spots taken care of" +msgstr "Maksimalna starost spotova za prikaz" + +#: application/views/options/dxcluster.php:46 +msgid "2 Hours" +msgstr "2 sata" + +#: application/views/options/dxcluster.php:47 +msgid "60 Minutes" +msgstr "60 minuta" + +#: application/views/options/dxcluster.php:48 +msgid "30 Minutes" +msgstr "30 minuta" + +#: application/views/options/dxcluster.php:50 +msgid "The Age in Minutes of spots, that will be taken care at bandplan/lookup" +msgstr "Vreme u minutima, koje će biti uzeti u obzir za prikaz na mapi opsega" + +#: application/views/options/dxcluster.php:53 +msgid "Show spots which are spotted from following continent" +msgstr "Prikaži spotove koji su spotovani sa sledećih kontinenata" + +#: application/views/options/dxcluster.php:63 +msgid "Only spots by spotters from this continent are shown" +msgstr "Samo spotovi spotera sa ovih kontinenata će biti prikazani" + +#: application/views/options/email.php:45 +msgid "Outgoing Protocol" +msgstr "Odlazni protokol" + +#: application/views/options/email.php:50 +msgid "The protocol that will be used to send out emails." +msgstr "Protokol koji će biti korišćen za slanje emailova." + +#: application/views/options/email.php:54 +msgid "SMTP Encryption" +msgstr "SMTP enkripcija" + +#: application/views/options/email.php:56 +msgid "No Encryption" +msgstr "Bez enkripcije" + +#: application/views/options/email.php:60 +msgid "Choose whether emails should be sent with TLS or SSL." +msgstr "Izaberite da li će mailovi biti poslati sa TLS ili SSL." + +#: application/views/options/email.php:64 +msgid "Email Sender Name" +msgstr "Ima pošiljaoca emaila" + +#: application/views/options/email.php:67 +msgid "The email sender name, e.g. 'Wavelog'" +msgstr "Ime pošiljaoca emaila, npr. 'Wavelog'" + +#: application/views/options/email.php:72 application/views/user/edit.php:58 +#: application/views/user/forgot_password.php:47 +msgid "Email Address" +msgstr "Email adresa" + +#: application/views/options/email.php:75 +msgid "" +"The email address from which the emails are sent, e.g. 'wavelog@example.com'" +msgstr "Email adresa sa koje će mail biti poslat, npr. 'wavelog@primer.com'" + +#: application/views/options/email.php:80 +msgid "SMTP Host" +msgstr "SMTP Host" + +#: application/views/options/email.php:83 +msgid "" +"The hostname of the mail server, e.g. 'mail.example.com' (without 'ssl://' " +"or 'tls://')" +msgstr "" +"Hostname mail servera, npr. 'mail.primer.com' (bez 'ssl://' ili 'tls://')" + +#: application/views/options/email.php:88 +msgid "SMTP Port" +msgstr "SMTP port" + +#: application/views/options/email.php:91 +msgid "" +"The SMTP port of the mail server, e.g. if TLS is used -> '587', if SSL is " +"used -> '465'" +msgstr "" +"SMTP port mail servera, npr. ako se koristi TLS -> '587', ako se koristi SSL " +"-> '465'" + +#: application/views/options/email.php:96 +msgid "SMTP Username" +msgstr "SMTP korisničko ime" + +#: application/views/options/email.php:99 +msgid "" +"The username to log in to the mail server, usually this is the email address " +"that is used." +msgstr "" +"Korisničko ime za prijavu nam ail server, obično je u obliku email adrese " +"koja se koristi." + +#: application/views/options/email.php:104 +msgid "SMTP Password" +msgstr "SMTP lozinka" + +#: application/views/options/email.php:107 +msgid "The password to log in to the mail server." +msgstr "Lozinka za prijavu na mail server." + +#: application/views/options/email.php:116 +msgid "Send Test-Mail" +msgstr "Pošaljite testni email" + +#: application/views/options/email.php:117 +msgid "The email will be sent to the address defined in your account settings." +msgstr "" +"Email će biti poslat na adresu definisanu u podešavanjima vašeg naloga." + +#: application/views/options/index.php:13 +msgid "" +"Wavelog Options are global settings used for all users of the installation, " +"which are overridden if there's a setting on a user level." +msgstr "" +"Wavelog opcije su globalna podešavanja za sve korisnike ove instalaicje, " +"koja mogu biti i pregažena ako postoje podešavanja na korisničkom nivou." + +#: application/views/options/oqrs.php:39 +msgid "Global text" +msgstr "Globalni tekst" + +#: application/views/options/oqrs.php:41 +msgid "" +"This text is an optional text that can be displayed on top of the OQRS page." +msgstr "" +"Ovaj tekst je opcioni tekst koji će biti prikazan na vrhu OQRS stranice." + +#: application/views/options/oqrs.php:45 +msgid "Grouped search" +msgstr "Grupisana pretraga" + +#: application/views/options/oqrs.php:47 application/views/options/oqrs.php:56 +msgid "Off" +msgstr "Isključeno" + +#: application/views/options/oqrs.php:48 application/views/options/oqrs.php:57 +msgid "On" +msgstr "Uključeno" + +#: application/views/options/oqrs.php:50 +msgid "" +"When this is on, all station locations with OQRS active, will be searched at " +"once." +msgstr "" +"Kada je ovo uključeno, sve stanične lokacije sa aktivnim OQRS će odjednom " +"biti uključene u pretragu." + +#: application/views/options/oqrs.php:54 +msgid "Show station location name in grouped search results" +msgstr "Prikaži ime stanične lokacije u grunim rezultatima pretrage" + +#: application/views/options/oqrs.php:59 +msgid "" +"If grouped search is ON, you can decide if the name of the station location " +"shall be shown in the results table." +msgstr "" +"Ako je grupna pretraga uključena, možete odlučiti da li će naziv stanične " +"lokacije biti prikazan u tabeli sa rezultatima." + +#: application/views/options/radios.php:38 +msgid "Radio Timeout Warning" +msgstr "Upozorenje na istek vremena aktivnosti radija" + +#: application/views/options/radios.php:39 +msgid "" +"The Radio Timeout Warning is used on the QSO entry panel to alert you to " +"radio interface disconnects." +msgstr "" +"Upozorenje na istek vremena aktivnosti radija u panelu za unos veze će vas " +"upozoriti na prekid veze sa interfejsom vašeg radija." + +#: application/views/options/radios.php:41 +msgid "This number is in seconds." +msgstr "Ovo je broj u sekundama." + +#: application/views/options/sidebar.php:5 +msgid "Radios" +msgstr "Radio-uređaji" + +#: application/views/options/version_dialog.php:47 +msgid "Version Info Header" +msgstr "Zaglavlje informacije o verziji" + +#: application/views/options/version_dialog.php:49 +msgid "You can change the header of the version info dialog." +msgstr "Možete promeniti zaglavlje informacije o verziji u dijalog boksu." + +#: application/views/options/version_dialog.php:53 +msgid "Version Info Mode" +msgstr "Vrsta informacije o verziji" + +#: application/views/options/version_dialog.php:57 +msgid "Only Release Notes" +msgstr "Samo napomene vezane za trenutnu verziju" + +#: application/views/options/version_dialog.php:60 +msgid "Only Custom Text" +msgstr "Samo podešeni tekst" + +#: application/views/options/version_dialog.php:63 +msgid "Release Notes and Custom Text" +msgstr "Napomene o trenutnoj verziji i podešeni tekst" + +#: application/views/options/version_dialog.php:68 +msgid "" +"The Version Info is shown to every user. The user has the option to dismiss " +"the dialog after he read it. Select if you want to show only release notes " +"(fetched from github), only custom text or both." +msgstr "" +"Informacija o verziji će biti prikazana svim korisnicima. Korisnik ima " +"mogućost da odbaci dijalog nakon što ga pročita. Izaberite ako želite da " +"prikažete samo napomene vezane za ovu verziju (povučene sa GitHuba), samo " +"podešeni tekst ili oboje." + +#: application/views/options/version_dialog.php:72 +msgid "Version Info Custom Text" +msgstr "Podešeni tekst o informaciji verzije" + +#: application/views/options/version_dialog.php:74 +msgid "This is the custom text which is shown in the dialog." +msgstr "Ovo je podešeni tekst koji će biti prikazan u dijalogu." + +#: application/views/options/version_dialog.php:84 +msgid "Show/Hide Version Info Dialog for all Users" +msgstr "Prikaz/Skrivanje dijaloga o informaciji o verziji za sve korisnike" + +#: application/views/options/version_dialog.php:97 +msgid "Show for all Users" +msgstr "Prikaži za sve korisnike" + +#: application/views/options/version_dialog.php:99 +msgid "" +"This will show the version dialog automatically to all users on their next " +"page reload." +msgstr "" +"Ovo će automatski prikazati dijalog za sve korisnike nakon što urade ponovo " +"učitavanje njihove stranice." + +#: application/views/options/version_dialog.php:104 +msgid "Hide for all Users" +msgstr "Sakrij za sve korisnike" + +#: application/views/options/version_dialog.php:106 +msgid "" +"This will deactivate the automatic popup of the version dialog for all users." +msgstr "" +"Ovo će deaktivirati za sve korisnike automatski iskačući prozor sa " +"informacijom o verziji." + +#: application/views/oqrs/index.php:9 +msgid "Request a QSL card" +msgstr "Zahtev za QSL kartu" + +#: application/views/oqrs/index.php:26 +msgid "Enter your callsign" +msgstr "Unesite vaš pozivni znak" + +#: application/views/oqrs/index.php:26 +msgid "This search will search in all station locations where OQRS is active." +msgstr "Ova pretraga će ići kroz sve stanične lokacije gde je OQRS aktivan." + +#: application/views/oqrs/index.php:53 +msgid "Select station" +msgstr "Izaberite stanicu" + +#: application/views/oqrs/notinlogform.php:2 +msgid "" +"If you can't find your QSO in the log, please fill out the form below. You " +"will be contacted after the log has been checked." +msgstr "" +"Ako ne možete pronaći vezu u dnevniku, molimo popunite donji formular. Nakon " +"provere loga bićete kontaktirani." + +#: application/views/oqrs/notinlogform.php:9 +#: application/views/oqrs/request.php:16 +#: application/views/oqrs/request_grouped.php:9 +msgid "Time (UTC)" +msgstr "Vreme (UTC)" + +#: application/views/oqrs/notinlogform.php:24 +msgid "Add line" +msgstr "Dodajte liniju" + +#: application/views/oqrs/notinlogform.php:30 +#: application/views/oqrs/request.php:56 +#: application/views/oqrs/request_grouped.php:60 +msgid "Any extra information we need to know about?" +msgstr "Da li postoje neke dodatne informacije koje bismo trebali znati?" + +#: application/views/oqrs/notinlogform.php:34 +#: application/views/oqrs/request.php:60 +#: application/views/oqrs/request_grouped.php:64 +#: application/views/oqrs/showrequests.php:87 +#: application/views/user/index.php:48 application/views/user/profile.php:24 +msgid "E-mail" +msgstr "E-mail" + +#: application/views/oqrs/notinlogform.php:36 +#: application/views/oqrs/request.php:62 +#: application/views/oqrs/request_grouped.php:66 +msgid "Your e-mail address where we can contact you" +msgstr "Vaša e-mail adresa na koju vas možemo kontaktirati" + +#: application/views/oqrs/notinlogform.php:40 +msgid "Send not in log request" +msgstr "Pošaljite zahtev za proveru veze u logu" + +#: application/views/oqrs/qsolist.php:11 +#: application/views/qslprint/qslprint.php:29 +#: application/views/qslprint/qsolist.php:13 +#: application/views/qso/edit_ajax.php:38 application/views/qso/index.php:24 +#: application/views/search/cqzones_result.php:16 +#: application/views/search/lotw_unconfirmed_result.php:11 +#: application/views/search/search_result_ajax.php:127 +#: application/views/user/edit.php:478 +#: application/views/view_log/partial/log.php:22 +#: application/views/view_log/partial/log_ajax.php:88 +#: application/views/view_log/qso.php:506 +#: application/views/view_log/qso.php:510 +#: application/views/view_log/qso.php:514 +#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:531 +#: application/views/view_log/qso.php:538 +#: application/views/view_log/qso.php:545 +#: application/views/view_log/qso.php:552 +#: application/views/view_log/qso.php:559 +#: application/views/view_log/qso.php:566 +#: application/views/view_log/qso.php:573 +#: application/views/view_log/qso.php:580 +#: application/views/view_log/qso.php:585 +msgid "Station" +msgstr "Stanica" + +#: application/views/oqrs/qsolist.php:75 +#: application/views/qslprint/qslprint.php:28 +#: application/views/qslprint/qsolist.php:14 +#: application/views/qslprint/qsolist.php:83 +#: application/views/qso/index.php:598 +#: application/views/search/search_result_ajax.php:205 +#: application/views/view_log/partial/log_ajax.php:170 +#: src/QSLManager/QSO.php:302 +msgid "Via" +msgstr "Via" + +#: application/views/oqrs/qsolist.php:188 +#: application/views/qslprint/qsolist.php:196 +msgid "Add to print queue" +msgstr "Dodajte u niz za štampu" + +#: application/views/oqrs/qsolist.php:197 +msgid "No QSO's were found. It seems you were not active at this time." +msgstr "Veze nisu pronađene. Izgleda da niste bili aktivni u ovo vreme." + +#: application/views/oqrs/request.php:9 +#: application/views/oqrs/request_grouped.php:3 +msgid "" +"The following QSO(s) were found. Please fill out the date and time and " +"submit your request." +msgstr "" +"Pronađene su sledeće veze. Molimo popunite datum i vreme i pošaljite vaš " +"zahtev." + +#: application/views/oqrs/request.php:40 +#: application/views/oqrs/request_grouped.php:44 +msgid "QSL Route" +msgstr "QSL ruta" + +#: application/views/oqrs/request.php:50 +#: application/views/oqrs/request_grouped.php:54 +msgid "Direct (write address in message below)" +msgstr "Direktno (napišite adresu u donjoj poruci)" + +#: application/views/oqrs/request.php:66 +#: application/views/oqrs/request_grouped.php:70 +msgid "Submit request" +msgstr "Pošaljite zahtev" + +#: application/views/oqrs/request_grouped.php:16 +msgid "Station Name" +msgstr "Naziv stanice" + +#: application/views/oqrs/request_grouped.php:73 +#: application/views/oqrs/result.php:40 +msgid "No QSOs found in the log." +msgstr "Nisu pronađene veze u dnevniku." + +#: application/views/oqrs/result.php:5 +#, php-format +msgid "Log search result for %s" +msgstr "Rezultati pretrage dnevnika za %s" + +#: application/views/oqrs/result.php:30 +#, php-format +msgid "has %d band slot" +msgid_plural "has %d band slots" +msgstr[0] "Ima %d band slot" +msgstr[1] "Ima %d band slotova" +msgstr[2] "ima %d band slotova" + +#: application/views/oqrs/result.php:33 +#, php-format +msgid "and has %d QSO in the log" +msgid_plural "and has %d QSOs in the log" +msgstr[0] "i ima %d QSO u logu" +msgstr[1] "i ima %d QSOa u logu" +msgstr[2] "i ima %d QSOova u logu" + +#: application/views/oqrs/result.php:37 +msgid "Request QSL" +msgstr "Zahtevajte QSL" + +#: application/views/oqrs/result.php:44 +msgid "Not in log?" +msgstr "Niste u dnevniku?" + +#: application/views/oqrs/showrequests.php:5 +#: application/views/oqrs/showrequests.php:50 +msgid "Open request" +msgstr "Otvorite zahtev" + +#: application/views/oqrs/showrequests.php:6 +#: application/views/oqrs/showrequests.php:51 +msgid "Not in log request" +msgstr "Zahtev zbog nepostojanja veze u logu" + +#: application/views/oqrs/showrequests.php:7 +#: application/views/oqrs/showrequests.php:52 +msgid "Request done" +msgstr "Zahtev je završen" + +#: application/views/oqrs/showrequests.php:47 +msgid "OQRS Status" +msgstr "OQRS status" + +#: application/views/oqrs/showrequests.php:69 +msgid "With selected" +msgstr "Sa izabranim" + +#: application/views/oqrs/showrequests.php:70 +msgid "Mark as done" +msgstr "Označite kao završeno" + +#: application/views/oqrs/showrequests.php:80 +msgid "Time of request" +msgstr "Vreme zahteva" + +#: application/views/oqrs/showrequests.php:81 +#: application/views/simplefle/index.php:74 +msgid "QSO Date" +msgstr "Datum veze" + +#: application/views/oqrs/showrequests.php:82 +msgid "QSO Time" +msgstr "Vreme veze" + +#: application/views/oqrs/showrequests.php:85 +msgid "Request callsign" +msgstr "Zahtevani pozivni znak" + +#: application/views/oqrs/showrequests.php:89 +msgid "QSL route" +msgstr "QSL ruta" + +#: application/views/oqrs/showrequests.php:90 +msgid "Check log" +msgstr "Provera dnevnika" + +#: application/views/public_search/empty.php:2 +#: application/views/public_search/result.php:2 +msgid "Searching for" +msgstr "Pretraga za" + +#: application/views/qrbcalc/index.php:3 +msgid "Locator 1" +msgstr "Lokator 1" + +#: application/views/qrbcalc/index.php:10 +msgid "Locator 2" +msgstr "Lokator 2" + +#: application/views/qrbcalc/index.php:20 +msgid "Calculate" +msgstr "Računajte" + +#: application/views/qrz/export.php:27 +msgid "" +"Here you can see all QSOs which have not been previously uploaded to a QRZ " +"logbook." +msgstr "Ovde možete videti sve veze koje pre nisu učitane na QRZ dnevnik." + +#: application/views/qrz/export.php:28 +msgid "" +"You need to set a QRZ Logbook API key in your station profile. Only station " +"profiles with an API Key set are displayed." +msgstr "" +"Morate podesiti odgovarajući QRZ Logbook API ključ, u profilu vaše stanice. " +"Biće prikazani samo stanični profili sa podešenim API ključem." + +#: application/views/qrz/export.php:73 +msgid "" +"If no startdate is given then all QSOs after last confirmation will be " +"downloaded/updated!" +msgstr "" +"Ako nije zadat početni datum, sve veze nakon poslednje povrde će biti " +"preuzete/ažurirane!" + +#: application/views/qrz/export.php:81 +msgid "Download from QRZ Logbook" +msgstr "Preuzmite sa QRZ Logbook" + +#: application/views/qrz/export.php:107 +msgid "Mark QSOs as exported to QRZ Logbook" +msgstr "Označite veze kao izvezene u QRZ Logbook" + +#: application/views/qrz/mark_qrz.php:16 +msgid "The QSOs are marked as exported to QRZ Logbook." +msgstr "Veze su označene kao izvezene u QRZ Logbook." + +#: application/views/qslcard/index.php:10 +#, php-format +msgid "You are using %s of disk space to store QSL Card assets" +msgstr "Koristite %s od prostora na disku za smeštaj QSL karata" + +#: application/views/qslcard/index.php:67 +msgid "Add Qsos" +msgstr "Dodajte veze" + +#: application/views/qslcard/searchresult.php:193 +msgid "Add to QSL" +msgstr "Dodajte u QSL" + +#: application/views/qslmanagement/index.php:13 +msgid "Incoming QSL Cards" +msgstr "Dolazne QSL karte" + +#: application/views/qslmanagement/index.php:25 +msgid "Report" +msgstr "Raport" + +#: application/views/qslmanagement/index.php:26 +msgid "Option" +msgstr "Opcije" + +#: application/views/qslmanagement/index.php:46 +msgid "Outgoing QSL Cards" +msgstr "Odlazne QSL karte" + +#: application/views/qslprint/index.php:16 +msgid "Export Requested QSLs for Printing" +msgstr "Izvoz zahtevanih QSL karata za štampu" + +#: application/views/qslprint/index.php:29 +msgid "" +"Here you can export requested QSLs as CSV or ADIF files for printing and, " +"optionally, mark them as sent." +msgstr "" +"Ovde možete izvesti zahtevane QSL karte kao CSV ili ADIF datoteke za štampu " +"i, opciono, označiti ih kao poslate." + +#: application/views/qslprint/index.php:30 +msgid "" +"Requested QSLs are any QSOs with a value of 'Requested' or 'Queued' in their " +"'QSL Sent' field." +msgstr "" +"Zahtevane QSL karte su svi QSOovi sa vrednošću 'Zahtevane' ili 'U nizu' u " +"njihovom 'Poslata QSL' polju." + +#: application/views/qslprint/qslprint.php:30 +#: application/views/qslprint/qsolist.php:15 +msgid "Send Method" +msgstr "Način slanja" + +#: application/views/qslprint/qslprint.php:31 +msgid "Mark as sent" +msgstr "Označi poslatom" + +#: application/views/qslprint/qslprint.php:32 +msgid "Remove" +msgstr "Uklonite" + +#: application/views/qslprint/qslprint.php:33 +#: application/views/simplefle/index.php:139 +msgid "QSO List" +msgstr "Lista veza" + +#: application/views/qslprint/qslprint.php:67 +msgid "Mark selected QSOs as printed" +msgstr "Označite izabrane veze kao štampane" + +#: application/views/qslprint/qslprint.php:69 +msgid "Remove selected QSOs from the queue" +msgstr "Uklonite izabrane veze iz niza" + +#: application/views/qslprint/qslprint.php:71 +msgid "Export CSV-file" +msgstr "Izvoz CSV datoteke" + +#: application/views/qslprint/qslprint.php:71 +msgid "Export requested QSLs to CSV-file" +msgstr "Izvoz zahtevanih QSL u CSV datoteku" + +#: application/views/qslprint/qslprint.php:73 +msgid "Export ADIF" +msgstr "Izvoz ADIF" + +#: application/views/qslprint/qslprint.php:73 +msgid "Export requested QSLs to ADIF-file" +msgstr "Izvoz zahtevanih QSL karata u ADIF datoteku" + +#: application/views/qslprint/qslprint.php:75 +msgid "Mark QSLs as printed" +msgstr "Označi QSL kao štampane" + +#: application/views/qslprint/qslprint.php:75 +msgid "Mark requested QSLs as sent" +msgstr "Označi zahtevane QSL kao poslate" + +#: application/views/qslprint/qslprint.php:79 +msgid "No QSLs to print were found!" +msgstr "Nisu pronađene QSL za štampu!" + +#: application/views/qslprint/qsolist.php:205 +msgid "" +"No additional QSO's were found. That means they are probably already in the " +"queue." +msgstr "Nisu pronađene dodatne vze. To znači da su vereovatno već u nizu." + +#: 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 +#, 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 +#, php-format +msgid "Function %d - Macro" +msgstr "Funkcija %d - Makro" + +#: application/views/qso/edit_ajax.php:34 +msgid "Sats" +msgstr "Sateliti" + +#: application/views/qso/edit_ajax.php:51 +msgid "Start Date/Time" +msgstr "Datum/vreme početka" + +#: application/views/qso/edit_ajax.php:56 +msgid "End Date/Time" +msgstr "Datum/vreme završetka" + +#: application/views/qso/edit_ajax.php:76 +msgid "RX Frequency" +msgstr "RX frekvencija" + +#: application/views/qso/edit_ajax.php:99 +msgid "RX Band" +msgstr "RX opseg" + +#: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:346 +#: application/views/reg1test/index.php:114 +#: application/views/view_log/qso.php:545 +msgid "Transmit Power (W)" +msgstr "Snaga predajnika (W)" + +#: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:348 +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:166 +msgid "Used for VUCC MultiGrids" +msgstr "Koristi se za VUCC MultiGrids" + +#: application/views/qso/edit_ajax.php:258 +msgid "Sat Name" +msgstr "Ime satelita" + +#: application/views/qso/edit_ajax.php:263 +msgid "Sat Mode" +msgstr "Vrsta rada preko satelita" + +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:545 +msgid "Antenna Azimuth (°)" +msgstr "Azimut antene (°)" + +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:547 +msgid "Antenna azimuth in decimal degrees." +msgstr "Azimut antene u decimalnim stepenima." + +#: application/views/qso/edit_ajax.php:274 application/views/qso/index.php:551 +msgid "Antenna Elevation (°)" +msgstr "Elevacija antene (°)" + +#: application/views/qso/edit_ajax.php:276 application/views/qso/index.php:553 +msgid "Antenna elevation in decimal degrees." +msgstr "Elevacija antene u decimalnim stepenima." + +#: application/views/qso/edit_ajax.php:383 application/views/qso/index.php:255 +#: application/views/qso/index.php:510 application/views/user/edit.php:599 +#: application/views/view_log/qso.php:335 +#: application/views/view_log/qso.php:585 +msgid "Sig Info" +msgstr "SIG info" + +#: application/views/qso/edit_ajax.php:396 +msgid "Notes (for internal usage only)" +msgstr "Napomene (samo za unutrašnju upotrebu)" + +#: application/views/qso/edit_ajax.php:430 +msgid "Sent Method" +msgstr "Način slanja" + +#: application/views/qso/edit_ajax.php:433 +#: application/views/qso/edit_ajax.php:466 application/views/qso/index.php:585 +#: application/views/qso/index.php:588 +msgid "Method" +msgstr "Način" + +#: application/views/qso/edit_ajax.php:443 +msgid "Sent Via" +msgstr "Poslato preko" + +#: application/views/qso/edit_ajax.php:457 +#: application/views/qso/edit_ajax.php:498 +#: application/views/qso/edit_ajax.php:537 +msgid "Verified (Match)" +msgstr "Verifikovano (preklapa se)" + +#: application/views/qso/edit_ajax.php:463 +msgid "Received Method" +msgstr "Način primanja" + +#: application/views/qso/edit_ajax.php:504 application/views/qso/index.php:605 +msgid "This note content is exported to QSL services like eqsl.cc." +msgstr "Sadržina ove napomene izvezena je u QSL servis kao što je eqsl.cc." + +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:608 +msgid "Get the default message for eQSL, for this station." +msgstr "Dodajte podrazumevanu poruku za eQSL, za ovu stanicu." + +#: application/views/qso/edit_ajax.php:557 +msgid "Change Station Profile" +msgstr "Promenite stanični profil" + +#: application/views/qso/edit_ajax.php:603 +msgid "Exchange (R)" +msgstr "Razmena (R)" + +#: application/views/qso/edit_ajax.php:608 +msgid "Exchange (S)" +msgstr "Razmena (S)" + +#: application/views/qso/edit_ajax.php:620 +#: application/views/search/search_result_ajax.php:432 +#: application/views/view_log/partial/log.php:156 +#: application/views/view_log/partial/log_ajax.php:348 +msgid "Delete QSO" +msgstr "Izbrišite QSO" + +#: application/views/qso/edit_ajax.php:623 +msgid "Save changes" +msgstr "Sačuvajte izmene" + +#: application/views/qso/index.php:4 +msgid "TimeOff is less than TimeOn" +msgstr "Vreme završetka je manje nego vreme početka" + +#: application/views/qso/index.php:5 application/views/qso/index.php:718 +msgid "Previous Contacts" +msgstr "Prethodni kontakti" + +#: application/views/qso/index.php:6 +msgid "times worked before" +msgstr "vremena prethodno rađenih" + +#: application/views/qso/index.php:7 +msgid "Not worked before" +msgstr "Nije rađen prethodno" + +#: application/views/qso/index.php:20 +msgid "LIVE" +msgstr "UŽIVO" + +#: application/views/qso/index.php:20 +msgid "POST" +msgstr "OBJAVI" + +#: application/views/qso/index.php:33 +msgid "Sat" +msgstr "Satelit" + +#: application/views/qso/index.php:48 +msgid "Add Band/Mode to Favs" +msgstr "Dodaj opseg/vrstu rada u omiljene" + +#: application/views/qso/index.php:69 +msgid "Time on" +msgstr "Vreme početka" + +#: application/views/qso/index.php:81 +msgid "Time off" +msgstr "Vreme završetka" + +#: application/views/qso/index.php:124 +msgid "Search DXCluster for latest Spot" +msgstr "Pretražite najnovije spotove na DX Klasteru" + +#: application/views/qso/index.php:196 application/views/qso/index.php:449 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 +#: application/views/user/edit.php:583 application/views/view_log/qso.php:285 +#: application/views/view_log/qso.php:552 +msgid "IOTA Reference" +msgstr "IOTA Referenca" + +#: application/views/qso/index.php:212 application/views/qso/index.php:466 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 +#: application/views/user/edit.php:587 application/views/view_log/qso.php:292 +#: application/views/view_log/qso.php:559 +msgid "SOTA Reference" +msgstr "SOTA referenca" + +#: application/views/qso/index.php:322 application/views/view_log/qso.php:100 +msgid "Frequency (RX)" +msgstr "Frekvencija (RX)" + +#: application/views/qso/index.php:327 +msgid "Band (RX)" +msgstr "Opseg (RX)" + +#: application/views/qso/index.php:468 +msgid "For example: GM/NS-001." +msgstr "Na primer: YU/ZS-001." + +#: application/views/qso/index.php:481 +msgid "For example: DLFF-0069." +msgstr "Na primer: YUFF-0024." + +#: application/views/qso/index.php:494 +msgid "For example: PA-0150. Multiple values allowed." +msgstr "Na primer: PA-0150. Dozvoljeno je uneti višestruke unose." + +#: application/views/qso/index.php:506 +msgid "For example: GMA" +msgstr "Na primer: GMA" + +#: application/views/qso/index.php:512 +msgid "For example: DA/NW-357" +msgstr "Na primer: DA/NW-357" + +#: application/views/qso/index.php:520 +msgid "For example: Q03" +msgstr "Na primer: Q03" + +#: application/views/qso/index.php:529 application/views/view_log/qso.php:210 +msgid "Satellite Name" +msgstr "Ime satelita" + +#: application/views/qso/index.php:537 application/views/view_log/qso.php:217 +msgid "Satellite Mode" +msgstr "Vrsta rada satelita" + +#: application/views/qso/index.php:560 +msgid "" +"Note content is used within Wavelog only and is not exported to other " +"services." +msgstr "" +"Sadržaj napomene koristi se samo unutar Waveloga i neće biti izvezen ka " +"drugim servisima." + +#: application/views/qso/index.php:626 +msgid "Reset to Default" +msgstr "Reset na podrazumevano" + +#: application/views/qso/index.php:667 +msgid "Winkey" +msgstr "Winkey" + +#: application/views/qso/index.php:669 +msgid "Connect" +msgstr "Povežite" + +#: application/views/qso/index.php:678 +msgid "Stop" +msgstr "Stop" + +#: application/views/qso/index.php:679 +msgid "Tune" +msgstr "Podešavanje" + +#: application/views/qso/index.php:680 +msgid "Stop Tune" +msgstr "Zaustavi podešavanje" + +#: application/views/qso/index.php:686 +msgid "CW Speed" +msgstr "Brzina CW" + +#: application/views/qso/index.php:691 +msgid "Send" +msgstr "Pošalji" + +#: application/views/qso/index.php:701 +msgid "Suggestions" +msgstr "Predlozi" + +#: application/views/qso/index.php:708 +msgid "Profile Picture" +msgstr "Profilna slika" + +#: application/views/qso/index.php:732 +msgid "Max. 5 previous contacts are shown" +msgstr "Prikazano je maksimalno 5 veza" + +#: application/views/radio/index.php:16 +msgid "Active Radios" +msgstr "Aktivni radio-uređaji" + +#: application/views/radio/index.php:19 +msgid "Below is a list of active radios that are connected to Wavelog." +msgstr "Ispod je lista aktivnih radio-uređaja koji su povezani na Wavelog." + +#: application/views/radio/index.php:20 +msgid "" +"If you haven't connected any radios yet, see the API page to generate API " +"keys." +msgstr "" +"Ako do sada niste spojili nijedan radio, pogledajte API stranicu za " +"generaisanje API ključeva." + +#: application/views/radio/index.php:22 application/views/search/filter.php:69 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "Možete naći kako se ovo koristi %s na wikiju." + +#: application/views/radio/index.php:22 +msgid "radio functions" +msgstr "funkcije radija" + +#: application/views/radio/index.php:27 +msgid "Please wait..." +msgstr "Molimo sačekajte..." + +#: application/views/reg1test/index.php:6 +msgid "Select Band" +msgstr "Izbor opsega" + +#: application/views/reg1test/index.php:8 +msgid "" +"Bands below 50Mhz are not valid for the EDI REG1TEST format and will produce " +"invalid files." +msgstr "" +"Opsezi ispod 50 MHz nisu validni za EDI REG1TEST format i napraviće " +"nepravilne datoteke." + +#: application/views/reg1test/index.php:18 +msgid "Export a contest to a REG1TEST EDI log" +msgstr "Izvozi takmičenje u RG1TEST EDI dnevnik" + +#: application/views/reg1test/index.php:48 +msgid "Sent Exchange" +msgstr "Pošalji razmenu" + +#: application/views/reg1test/index.php:50 +msgid "" +"The exchange which was sent during the contest. Can be any type of " +"information, e.g. Province, DOK, County, State, Power, Name. Max. length: 6 " +"characters." +msgstr "" +"Razmena koja će biti slata tokom takmičenja. To može biti bilo koja vrsta " +"infomracije, npr. provincija, DOK, okrug, država, snaga, ime. Maksimalna " +"dužina: 6 znakova." + +#: 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 "" +"Opisuje pozivni znak radio kluba čiji su operatori članovi. Npr. može biti " +"korišćeno za klupske zbirne poene." + +#: application/views/reg1test/index.php:66 +msgid "Callsign of responsible operator" +msgstr "Pozivni znak odgovornog operatora" + +#: application/views/reg1test/index.php:72 +msgid "" +"List of all operators. Seperated with a semicolon ';'. The responsible " +"operator is not needed here." +msgstr "" +"Lista svih operatora. Odvojite tačka-zarezom ';'. Nemojte stavljati pozivni " +"znak odgovornog operatora." + +#: application/views/reg1test/index.php:75 +msgid "Contest Address 1" +msgstr "Kontest adresa 1" + +#: application/views/reg1test/index.php:77 +msgid "Address of the QTH used during the contest." +msgstr "Adresa QTH korišćenog tokom kontesta." + +#: application/views/reg1test/index.php:80 +msgid "Contest Address 2" +msgstr "Kontest adresa 2" + +#: application/views/reg1test/index.php:84 +msgid "Operator Address 1" +msgstr "Operatorova adresa 1" + +#: application/views/reg1test/index.php:86 +msgid "Address of the responsible operator." +msgstr "Adresa odgovornog operatora." + +#: application/views/reg1test/index.php:89 +msgid "Operator Address 2" +msgstr "Operatorova adresa 2" + +#: application/views/reg1test/index.php:93 +msgid "Operator Address Postalcode" +msgstr "Poštanski broj operatorove adrese" + +#: application/views/reg1test/index.php:97 +msgid "Operator Address City" +msgstr "Grad adrese operatora" + +#: application/views/reg1test/index.php:101 +msgid "Operator Address Country" +msgstr "Okrug adrese operatora" + +#: application/views/reg1test/index.php:105 +msgid "Operator Phone Number" +msgstr "Broj telefona operatora" + +#: application/views/reg1test/index.php:109 +msgid "Transmit Equipment Description" +msgstr "Opis emisione opreme" + +#: application/views/reg1test/index.php:111 +msgid "Short description of the used equipment." +msgstr "Kratak opis korišćene opreme." + +#: application/views/reg1test/index.php:116 +msgid "TX Power during the contest in Watt." +msgstr "TX snaga korišćena tokom takmičenja, u W." + +#: application/views/reg1test/index.php:119 +msgid "Receive Equipment Description" +msgstr "Opis prijemne opreme" + +#: application/views/reg1test/index.php:121 +msgid "If you used another gear for RX, then describe it here." +msgstr "Ako ste koristili drugu opremu za RX, možete je opisati ovde." + +#: application/views/reg1test/index.php:124 +msgid "Antenna Description" +msgstr "Opis antena" + +#: application/views/reg1test/index.php:126 +msgid "What kind of antenna was used." +msgstr "Koja vrsta antena je korišćena." + +#: application/views/reg1test/index.php:129 +msgid "Antenna Height Above Ground (m)" +msgstr "Visina antene iznad zemlje (m)" + +#: application/views/reg1test/index.php:131 +msgid "Height of the antenna above the ground." +msgstr "Visina antene iznad zemlje." + +#: application/views/reg1test/index.php:134 +msgid "Band multiplicator" +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:141 +msgid "Any other remarks." +msgstr "Ostale napomene." + +#: application/views/satellite/create.php:23 +#: application/views/satellite/edit.php:7 +msgid "Satellite name" +msgstr "Ime satelita" + +#: application/views/satellite/create.php:25 +msgid "The name of the Satellite" +msgstr "Ime satelita" + +#: application/views/satellite/create.php:28 +#: application/views/satellite/edit.php:12 +#: application/views/satellite/index.php:22 +msgid "Export Name" +msgstr "Ime datoteke za izvoz" + +#: application/views/satellite/create.php:30 +#: application/views/satellite/edit.php:14 +msgid "If external services uses another name for the satellite, like LoTW" +msgstr "Ako spoljni servis, poput LoTW, koristi drugo ime za satelite" + +#: application/views/satellite/create.php:37 +#: application/views/satellite/edit.php:21 +msgid "Enter which orbit the satellite has (LEO, MEO, GEO)" +msgstr "Unesite koju orbitu ima satelit (LEO, MEO, GEO)" + +#: application/views/satellite/create.php:40 +msgid "Satellite mode name" +msgstr "Naziv satelitskog moda" + +#: application/views/satellite/create.php:42 +msgid "Enter satellite mode" +msgstr "Unesite satelitski mod" + +#: application/views/satellite/create.php:47 +#: application/views/satellite/edit.php:35 +msgid "Uplink mode" +msgstr "Mod uplinka" + +#: application/views/satellite/create.php:49 +msgid "Enter modulation used for uplink" +msgstr "Unesite vrstu modulacije korišćenu za uplink" + +#: application/views/satellite/create.php:52 +#: application/views/satellite/edit.php:36 +msgid "Uplink frequency" +msgstr "Uplink frekvencija" + +#: application/views/satellite/create.php:54 +msgid "Enter frequency (in Hz) used for uplink" +msgstr "Unesite frekvenciju (u Hz) koja se koristi za uplink" + +#: application/views/satellite/create.php:59 +#: application/views/satellite/edit.php:37 +msgid "Downlink mode" +msgstr "Downlink mod" + +#: application/views/satellite/create.php:61 +msgid "Enter modulation used for downlink" +msgstr "Unesite vrstu modulacije korišćenu za downlink" + +#: application/views/satellite/create.php:64 +#: application/views/satellite/edit.php:38 +msgid "Downlink frequency" +msgstr "Frekvencija downlinka" + +#: application/views/satellite/create.php:66 +msgid "Enter frequency (in Hz) used for downlink" +msgstr "Unesite frekvenciju (u Hz) koja se koristi za downlink" + +#: application/views/satellite/edit.php:9 +msgid "Name of the Satellite" +msgstr "Ime satelita" + +#: application/views/satellite/edit.php:25 +msgid "Save satellite" +msgstr "Sačuvajte satelit" + +#: application/views/satellite/edit.php:59 +msgid "Add satellite mode" +msgstr "Dodajte satelitski mod" + +#: application/views/satellite/index.php:15 +msgid "Add a satellite" +msgstr "Dodajte satelit" + +#: application/views/satellite/pass.php:2 +msgid "Satellite passes" +msgstr "Preleti satelita" + +#: application/views/satellite/pass.php:8 +msgid "Min. Satellite Elevation" +msgstr "Min. elevacija satelita" + +#: application/views/satellite/pass.php:12 +msgid "Min. Azimuth" +msgstr "Min. azimut" + +#: application/views/satellite/pass.php:20 +msgid "Max. Azimuth" +msgstr "Maks. azimut" + +#: application/views/satellite/pass.php:32 +msgid "Altitude (meters)" +msgstr "Visina (metri)" + +#: application/views/satellite/pass.php:36 application/views/user/edit.php:179 +msgid "Timezone" +msgstr "Vremenska zona" + +#: application/views/satellite/pass.php:479 +msgid "Min. time" +msgstr "Min. vreme" + +#: application/views/satellite/pass.php:487 +msgid "Max. time" +msgstr "Max. vreme" + +#: application/views/satellite/pass.php:504 +msgid "Load predictions" +msgstr "Učitaj predviđanja" + +#: application/views/satellite/passtable.php:6 +msgid "AOS Time" +msgstr "Vreme AOS" + +#: application/views/satellite/passtable.php:7 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "Trajanje" + +#: application/views/satellite/passtable.php:8 +msgid "AOS Az" +msgstr "AOS Az" + +#: application/views/satellite/passtable.php:9 +msgid "AOS El" +msgstr "AOS El" + +#: application/views/satellite/passtable.php:10 +msgid "Max El" +msgstr "Max El" + +#: application/views/satellite/passtable.php:11 +msgid "LOS Time" +msgstr "Vreme LOS" + +#: application/views/satellite/passtable.php:12 +msgid "LOS Az" +msgstr "LOS Az" + +#: application/views/satellite/passtable.php:13 +msgid "LOS El" +msgstr "LOS El" + +#: application/views/sattimers/index.php:15 +#, php-format +msgid "" +"This data comes from %s and is calculated for the current stationlocation " +"grid %s." +msgstr "" +"Ovi podaci dolaze od %s i srečunati su za polje trenutne stanične lokacije " +"%s." + +#: application/views/sattimers/index.php:40 +msgid "Time(d)-Out" +msgstr "Vreme-Isteklo" + +#: application/views/sattimers/index.php:43 +#: application/views/sattimers/index.php:44 +msgid "Azimuth" +msgstr "Azimut" + +#: application/views/sattimers/index.php:45 +msgid "Max Elevation" +msgstr "Max Elevacija" + +#: application/views/search/cqzones.php:5 +#: application/views/search/lotw_unconfirmed.php:5 +#: application/views/search/main.php:5 +msgid "Ready to find a QSO?" +msgstr "Da li ste spremni da pronađete QSO?" + +#: application/views/search/cqzones.php:15 +#: application/views/search/filter.php:4 application/views/search/filter.php:23 +#: application/views/search/lotw_unconfirmed.php:15 +#: application/views/search/main.php:15 +msgid "Advanced Search" +msgstr "Napredna pretraga" + +#: application/views/search/cqzones.php:18 +#: application/views/search/filter.php:26 +#: application/views/search/lotw_unconfirmed.php:18 +#: application/views/search/main.php:18 +msgid "Incorrect CQ Zones" +msgstr "Netačna CQ zona" + +#: application/views/search/cqzones.php:21 +#: application/views/search/filter.php:29 +#: application/views/search/lotw_unconfirmed.php:21 +#: application/views/search/main.php:21 +msgid "QSOs unconfirmed on LoTW" +msgstr "QSOi nepotvrđeni na LoTW" + +#: application/views/search/cqzones.php:28 +msgid "Station location:" +msgstr "Stanična lokacija:" + +#: application/views/search/cqzones_result.php:3 +msgid "" +"The following QSOs were found to have an incorrect CQ zone that this DXCC " +"normally has:" +msgstr "" +"Za sledeće veze ustanovljeno je da imaju netačno unešenu CQ zonu u kojoj se " +"ova DXCC nalazi:" + +#: application/views/search/cqzones_result.php:14 +msgid "DXCC CQ Zone" +msgstr "DXCC CQ zona" + +#: application/views/search/cqzones_result.php:51 +msgid "No incorrect CQ Zones were found." +msgstr "Nisu pronađene netačne CQ zone." + +#: application/views/search/filter.php:43 +msgid "Save query" +msgstr "Sačuvajte upit" + +#: application/views/search/filter.php:50 +msgid "Stored queries" +msgstr "Sačuvani upiti" + +#: application/views/search/filter.php:69 +msgid "search filter functions" +msgstr "funkcije filtera za pretragu" + +#: application/views/search/filter.php:79 +msgid "Search Results" +msgstr "Rezultati pretrage" + +#: application/views/search/lotw_unconfirmed.php:26 +msgid "" +"The search displays QSOs which are unconfirmed on LoTW, but the callsign " +"worked has uploaded to LoTW after your QSO date." +msgstr "" +"Pretraga prikazuje veze koje su nepotvrđene na LoTW, a ovi pozivni znakovi " +"su bili aktivni na LoTW nakon datuma vaše veze." + +#: application/views/search/lotw_unconfirmed.php:29 +msgid "Station location" +msgstr "Stanična lokacija" + +#: application/views/search/lotw_unconfirmed_result.php:10 +msgid "Last LoTW upload" +msgstr "Poslednje LoTW učitavanje" + +#: application/views/search/lotw_unconfirmed_result.php:41 +msgid "No QSOs with outstanding LoTW upload were found." +msgstr "No QSOs with outstanding LoTW upload were found." + +#: application/views/search/main.php:28 +msgid "Callsign / Gridsquare" +msgstr "Pozivni znak / polje" + +#: application/views/search/result.php:2 +#, php-format +msgid "Results for %s" +msgstr "Rezultati za %s" + +#: application/views/search/result.php:4 +#, php-format +msgid "Sorry, but we didn't find any past QSOs with %s" +msgstr "Žao nam je, nismo pronašli veze sa %s" + +#: application/views/search/result.php:6 +#, php-format +msgid "Callbook Search for %s" +msgstr "Pretraga callbooka za %s" + +#: application/views/search/result_search.php:9 +#: application/views/statistics/custom_result.php:90 +#: application/views/widgets/qsos.php:31 +msgid "Rcvd" +msgstr "Rcvd" + +#: application/views/search/search_result_ajax.php:409 +#: application/views/view_log/partial/log.php:140 +#: application/views/view_log/partial/log_ajax.php:325 +msgid "Mark QSL Sent (Bureau)" +msgstr "Označi QSL kao poslatu (biro)" + +#: application/views/search/search_result_ajax.php:410 +#: application/views/view_log/partial/log.php:141 +#: application/views/view_log/partial/log_ajax.php:326 +msgid "Mark QSL Sent (Direct)" +msgstr "Označi QSL kao poslatu (direktno)" + +#: application/views/search/search_result_ajax.php:417 +#: application/views/view_log/partial/log.php:148 +#: application/views/view_log/partial/log_ajax.php:335 +#: application/views/view_log/qso.php:655 +msgid "Mark QSL Received (Bureau)" +msgstr "Označi QSL kao primljenu (biro)" + +#: application/views/search/search_result_ajax.php:418 +#: application/views/view_log/partial/log.php:149 +#: application/views/view_log/partial/log_ajax.php:336 +#: application/views/view_log/qso.php:657 +msgid "Mark QSL Received (Direct)" +msgstr "Označi QSL kao primljenu (direktno)" + +#: application/views/search/search_result_ajax.php:419 +#: application/views/view_log/partial/log.php:150 +#: application/views/view_log/partial/log_ajax.php:327 +msgid "Mark QSL Card Requested" +msgstr "Označi QSL kartu kao zahtevanu" + +#: application/views/search/search_result_ajax.php:420 +#: application/views/view_log/partial/log.php:151 +#: application/views/view_log/partial/log_ajax.php:328 +#: application/views/view_log/qso.php:669 +msgid "Mark QSL Card Not Required" +msgstr "Označi QSL kartu kao nepotrebnu" + +#: application/views/search/search_result_ajax.php:426 +#: application/views/view_log/partial/log_ajax.php:342 +msgid "Lookup on QRZ.com" +msgstr "Pogledajte na QRZ.com" + +#: application/views/search/search_result_ajax.php:428 +#: application/views/view_log/partial/log_ajax.php:344 +msgid "Lookup on HamQTH" +msgstr "Pogledaj na HamQTH" + +#: application/views/search/stored_queries.php:9 +msgid "Query" +msgstr "Upit" + +#: application/views/simplefle/index.php:13 +msgid "Simple Fast Log Entry (FLE)" +msgstr "Simple Fast Log Entry (FLE)" + +#: application/views/simplefle/index.php:14 +msgid "" +"'Fast Log Entry', or simply 'FLE' is a system to log QSOs very quickly and " +"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', ili jednostavnije 'FLE' je sistem upisivanja veza u log na " +"brz i efikasan način. Zbog svoje sintakse, zahteva se samo minimum ulaznih " +"podataka za upis veza, sa što je moguće manje napora." + +#: application/views/simplefle/index.php:15 +msgid "" +"FLE was originally written by DF3CB. He offers a program for Windows on his " +"website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides " +"a web interface to log QSOs." +msgstr "" +"FLE je originalno napisao DF3CB. Na svom web sajtu ponudio je i program za " +"Windows. Simple FLE je napisao OK2CQR na osnovu DF3CB-ovog FLE i pruža web " +"interfejst za upisivanje veza." + +#: application/views/simplefle/index.php:16 +#, php-format +msgid "" +"A common use-case is if you have to import your paperlogs from an outdoor " +"session and now SimpleFLE is also available in Wavelog. Information about " +"the syntax and how FLE works can be found %s." +msgstr "" +"Tipična upotreba je ako morate uvesti vaše paprine dnevnike koje ste vodili " +"tokom aktivnosti na terenu a sada je SimpleFLE takođe dostupan u Wavelogu. " +"Informacije o sintaksi i kako FLE radi možete pronaći na %s." + +#: application/views/simplefle/index.php:17 +#: application/views/simplefle/index.php:176 +msgid "Syntax Help" +msgstr "Pomoć oko sintakse" + +#: application/views/simplefle/index.php:18 +msgid "Syntax for FLE" +msgstr "Sintaksa za FLE" + +#: application/views/simplefle/index.php:19 +msgid "Close and Load Sample Data" +msgstr "Zatvori i učitaj primer sa podacima" + +#: application/views/simplefle/index.php:23 +msgid "Band is missing!" +msgstr "Nedostaje opseg!" + +#: application/views/simplefle/index.php:24 +msgid "Mode is missing!" +msgstr "Nedostaje vrsta rada!" + +#: application/views/simplefle/index.php:25 +msgid "Time is not set!" +msgstr "Vreme nije zadato!" + +#: application/views/simplefle/index.php:26 +msgid "Invalid date" +msgstr "Neispravan datum" + +#: application/views/simplefle/index.php:29 +msgid "Station Call is not selected" +msgstr "Pozivni znak stanice nije izabran" + +#: application/views/simplefle/index.php:30 +msgid "'Operator' Field is empty" +msgstr "Polje 'operator' je prazno" + +#: application/views/simplefle/index.php:31 +msgid "Warning! Do you really want to reset everything?" +msgstr "Upozorenje! Da li stvarno želite da sve resetujete?" + +#: 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 "" +"Upozorenje! Ne možete upisati veze u dnevnik listu veza, jer neke od njih " +"nemaju definisane podatke o opsegu i/ili vrsti rada!" + +#: 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 "" +"Upozorenje! Ne možete upisati veze u dnevnik listu veza, jer neke od njih " +"nemaju definisano vreme!" + +#: application/views/simplefle/index.php:34 +msgid "" +"Attention! The Data Field containes example data. First Clear Logging " +"Session!" +msgstr "" +"Pažnja! Polje Podaci sadrži podake koji su primer. Prvo očistite sesiju " +"upisivanja u dnevnik!" + +#: application/views/simplefle/index.php:35 +msgid "" +"Are you sure that you want to add these QSO to the Log and clear the session?" +msgstr "" +"Da li ste sigurni da želite dodati ove veze u Dnevnik i očistiti sesiju?" + +#: application/views/simplefle/index.php:36 +msgid "QSO Logged!" +msgstr "Veze su upisane u dnevnik!" + +#: application/views/simplefle/index.php:37 +msgid "The QSO were successfully logged in the logbook!" +msgstr "Veze su uspešno upisane u dnevnik!" + +#: application/views/simplefle/index.php:40 +msgid "What is that?" +msgstr "Šta je to?" + +#: application/views/simplefle/index.php:43 +msgid "Current UTC Time" +msgstr "Trenutno UTC vreme" + +#: application/views/simplefle/index.php:76 +msgid "If you don't choose a date, today's date will be used." +msgstr "Ako ne izaberete datum, biće postavljen današnji dan." + +#: application/views/simplefle/index.php:88 +msgid "You can add the entered QSOs to a contest." +msgstr "Možete dodati unešenu vezu u dnevnik takmičenja." + +#: application/views/simplefle/index.php:95 +msgid "Station Call/Location" +msgstr "Pozivni znak stanice/lokacije" + +#: application/views/simplefle/index.php:107 +#, php-format +msgid "" +"If you did operate from a new location, first create a new %sStation " +"Location%s" +msgstr "" +"Ako ste radili sa nove lokacije, prvo kreirajte novu %sStaničnu lokaciju%s" + +#: application/views/simplefle/index.php:112 +msgid "e.g. OK2CQR" +msgstr "npr. OK2CQR" + +#: application/views/simplefle/index.php:115 +msgid "This is callsign of the operator. Without any pre- or suffixes." +msgstr "Ovo je pozivni znak opratora. Be ikakvih pre- ili sufiksa." + +#: application/views/simplefle/index.php:125 +msgid "Enter the Data" +msgstr "Unesite podatke" + +#: application/views/simplefle/index.php:154 +msgid "Refs" +msgstr "Reference" + +#: application/views/simplefle/index.php:166 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" +msgstr "Reference mogu biti %sS%sOTA, %sI%sOTA, %sP%sOTA, ili %sW%sWFF" + +#: application/views/simplefle/index.php:173 +msgid "Reload QSO List" +msgstr "Osvježite listu veza" + +#: application/views/simplefle/index.php:174 +msgid "Save in Wavelog" +msgstr "Sačuvajte u Wavelog" + +#: application/views/simplefle/index.php:175 +msgid "Clear Logging Session" +msgstr "Očistite sesiju upisa veza u dnevnik" + +#: application/views/simplefle/options.php:20 +msgid "No Options yet" +msgstr "Još nema opcija" + +#: application/views/simplefle/syntax_help.php:1 +msgid "Before starting to log a QSO, please note the basic rules." +msgstr "" +"Prije početka upisivanja veza u log, molimo da obratite pažnju na osnovna " +"pravila." + +#: application/views/simplefle/syntax_help.php:2 +msgid "- Each new QSO should be on a new line." +msgstr "- svaka nova veza mora biti u novoj liniji." + +#: application/views/simplefle/syntax_help.php:3 +msgid "" +"- On each new line, only write data that has changed from the previous QSO." +msgstr "" +"- u svaku novu liniju upisujte samo podatke koji su se promenili u odnosu na " +"prethodnu vezu." + +#: application/views/simplefle/syntax_help.php:4 +msgid "" +"To begin, ensure you have already filled in the form on the left with the " +"date, station call, and operator's call. The main data includes the band (or " +"QRG in MHz, e.g., '7.145'), mode, and time. After the time, you provide the " +"first QSO, which is essentially the callsign." +msgstr "" +"Za početak, uverite se da ste već popunili formular levo sa datumom, " +"pozivnim znakom stanice, i operatorovim pozivnim znakom. Glavni podaci " +"uključuju opseg (ili frekvenciju u MHZ, npr 7.125), vrstu rada, i vreme. " +"Nakon vremena pružite podatke o prvoj vezi, što se u osnovi odnosi na " +"pozivni znak." + +#: application/views/simplefle/syntax_help.php:9 +msgid "For example, a QSO that started at 21:34 (UTC) with 4W7EST on 20m SSB." +msgstr "Na primer, veza koja je počela u 21:34 (UTC) sa 4W7EST na 20M SSB." + +#: application/views/simplefle/syntax_help.php:10 +msgid "" +"If you don't provide any RST information, the syntax will use 59 (599 for " +"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 "" +"Ako ne pružite bilo kakvu RST informaciju, koristiće se sintaksa 59 (599 za " +"data vrstu rada). Naša sljedeća veza nije bila obostrano 59, tako da ćemo " +"prvo pružiti informaciju sa poslatim RST. To je bilo 2 minuta nakon prve " +"veze." + +#: application/views/simplefle/syntax_help.php:16 +msgid "" +"The first QSO was at 21:34, and the second one 2 minutes later at 21:36. We " +"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 "" +"Prva veza je bila u 21:34, a druga 2 minuta kasnije u 21:36. Zapisujemo 6 " +"jer je ovo jedini podatak koji je promenjen. Informacija o opsegu i vrsti " +"rada se nije menjala, tako da su ti podaci izostavljeni." + +#: application/views/simplefle/syntax_help.php:17 +msgid "" +"For our next QSO at 21:40 on 14th May, 2021, we changed the band to 40m but " +"still on SSB. If no RST information is given, the syntax will use 59 for " +"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 "" +"Za našu sledeću vezu u 21:40 na dan 14. maja 2021, promenili smo opseg na " +"20M ali smo i dalje sa SSB vrstom rada. Ako nije dat RST raport, sintaksa će " +"koristiti 59 za svaku novu vezu. Stoga možemo dodati sledeću vezu koja se " +"desila u tačno isto vreme dva dana kasnije. Datum mora biti u formatu YYYY-" +"MM-DD." + +#: application/views/simplefle/syntax_help.php:28 +#, php-format +msgid "" +"A full summary of all commands and the necessary syntax can be found in " +"%sthis article%s of our Wiki." +msgstr "" +"Pun pregled svih komandi i potrebnih sintaksi može biti pronađen u %sovom " +"članku%s na našoj Wiki." + +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 +msgid "Location Name" +msgstr "Naziv lokacije" + +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 +msgctxt "Station Location Setup" +msgid "Home QTH" +msgstr "Lokacija doma" + +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 +#, php-format +msgid "Shortname for the station location. For example: %s" +msgstr "Kratko ime za lokaciju stanice. Na primer: %s" + +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 +msgid "Station callsign. For example: 4W7EST/P" +msgstr "Pozivni znak stanice. Na primer: 4W7EST/P" + +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 +msgid "Station Power (W)" +msgstr "Snaga stanice (W)" + +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 +msgid "Default station power in Watt. Overwritten by CAT." +msgstr "Podrazumevana snaga stanice u Watt. Biće pregaženo sa CAT." + +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 +msgid "Station DXCC" +msgstr "DXCC stanice" + +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 +msgctxt "DXCC selection" +msgid "None" +msgstr "Nijedna" + +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 +msgid "Station DXCC entity. For example: Bolivia" +msgstr "DXCC entitet stanice. Na primer: Bolivia" + +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 +msgid "Station City" +msgstr "Grad stanice" + +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 +msgid "Station city. For example: Oslo" +msgstr "Grad stanice. Na primer: Oslo" + +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 +msgid "Station state. Applies to certain countries only." +msgstr "Država stanice. Primenjivo je samo na određene države." + +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 +msgid "Station County" +msgstr "Okrug stanice" + +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 +msgid "Station County (Only used for USA/Alaska/Hawaii)." +msgstr "Okrug stanice (koristi se samo za SAD/Aljasku/Havaje)." + +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 +#, php-format +msgctxt "uses 'click here'" +msgid "If you don't know your CQ Zone then %s to find it!" +msgstr "Ako ne znate vašu CQ Zonu onda %s da je pronađete!" + +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 +msgid "click here" +msgstr "kliknite ovde" + +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 +#, php-format +msgctxt "uses 'click here'" +msgid "If you don't know your ITU Zone then %s to find it!" +msgstr "Ako ne znate vašu ITU zonu onda %s da je pronađete!" + +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 +msgid "Station Gridsquare" +msgstr "Polje stanice" + +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 +msgid "Get Gridsquare" +msgstr "Dobavi polje" + +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 +#, php-format +msgctxt "uses 'click here'" +msgid "" +"Station gridsquare. For example: HM54AP. If you don't know your grid square " +"then %s!" +msgstr "Polje stanice. Na primer: HM54AP. Ako ne znate vaše polje onda %s!" + +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 +msgid "" +"If you are located on a grid line, enter multiple grid squares separated " +"with commas. For example: IO77,IO78,IO87,IO88." +msgstr "" +"Ako se nalaziti na liniji između polja, unesite višestruke oznake polja " +"odvojene zarezom. Na primer: IO77,IO78,IO87,IO88." + +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 +msgid "Station IOTA reference. For example: EU-005" +msgstr "IOTA referenca stanice. Na primer: EU-005" + +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 +msgid "IOTA World website" +msgstr "IOTA World web sajt" + +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 +#, php-format +msgid "You can look up IOTA references at the %s." +msgstr "Možete potražiti IOTA reference na %s." + +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 +msgid "SOTA Maps website" +msgstr "SOTA Maps web sajt" + +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 +#, php-format +msgid "Station SOTA reference. You can look up SOTA references at the %s." +msgstr "Referenca SOTA stanice. Možete potražiti SOTA reference na %s." + +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 +msgid "GMA Map website" +msgstr "GMA MAP web sajt" + +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 +#, php-format +msgid "Station WWFF reference. You can look up WWFF references at the %s." +msgstr "WWFF reference stanice. Možete potražiti WWFF reference na %s." + +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 +msgid "POTA Map website" +msgstr "POTA Map web sajt" + +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 +#, php-format +msgid "" +"Station POTA reference(s). Multiple comma separated values allowed. You can " +"look up POTA references at the %s." +msgstr "" +"POTA refernce stanice. Dozvoljen je višestruki unos vrednosti. POTA " +"reference možete potražiti na %s." + +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 +msgid "Signature Name" +msgstr "Ime oznake (signature)" + +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 +msgid "Station Signature (e.g. GMA).." +msgstr "Oznaka stanice (npr. GMA).." + +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 +msgid "Signature Information" +msgstr "Informacija oznake" + +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 +msgid "Station Signature Info (e.g. DA/NW-357)." +msgstr "Informacija o oznaci stanice (npr. DA/NW-357)." + +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 +msgctxt "Probably no translation needed" +msgid "eQSL QTH Nickname" +msgstr "eQSL QTH nadimak" + +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 +msgid "The QTH Nickname which is configured in your eQSL Profile" +msgstr "QTH nadimak koji je konfirugisan u vašem eQSL priflu" + +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 +msgid "Default QSLMSG" +msgstr "Podrazumevana QSLMSG" + +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 +msgid "" +"Define a default message that will be populated and sent for each QSO for " +"this station location." +msgstr "" +"Definišite podrazumevanu poruku koja će biti objavljena i poslata sa svakim " +"QSO sa ove stanične lokacije." + +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 +msgid "Ignore Clublog Upload" +msgstr "Zanemarite Clublog Upload" + +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 +msgid "" +"If enabled, the QSOs made from this location will not be uploaded to " +"Clublog. If this is deactivated on it's own please check if the Call is " +"properly configured at Clublog" +msgstr "" +"Ako je omogućeno, QSOi održani sa ove lokacije neće biti učitani na Clublog. " +"Ako je ovo deaktivirano samo od sebe, molimo proverite da li je pozivni znak " +"ispravno podešen na Clublog stranici" + +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 +msgid "ClubLog Realtime Upload" +msgstr "Učitavanje na ClugLog u realnom vremenu" + +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 +msgid "HRDLog.net Username" +msgstr "HRDLog.net korisničko ime" + +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 +msgid "" +"The username you are registered with at HRDlog.net (usually your callsign)." +msgstr "" +"Korisničko ime kojim ste registroavni na HRDlog.net (obično vaš pozivni " +"znak)." + +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 +msgid "HRDLog.net API Key" +msgstr "HRDLog.net API ključ" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 +#, php-format +msgctxt "HRDLog.net Userprofile page" +msgid "Create your API Code on your %s" +msgstr "Kreirajte vaš API kod na vašem %s" + +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 +msgid "HRDLog.net Userprofile page" +msgstr "HRDlog.net stranici korisničkog profila" + +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 +msgid "HRDLog.net Logbook Realtime Upload" +msgstr "HRDLog.net Logbook učitavanje u realnom vremenu" + +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 +msgid "Subscription Required" +msgstr "Zahjeva se pretplata" + +#: application/views/station_profile/create.php:255 +msgctxt "Probably no translation needed" +msgid "QRZ.com Logbook API Key" +msgstr "API ključ za QRZ.com dnevnik" + +#: application/views/station_profile/create.php:258 +msgid "Test API-Key" +msgstr "Testiraj API-ključ" + +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 +#, php-format +msgctxt "the QRZ.com Logbook settings page" +msgid "Find your API key on %s" +msgstr "Pronažite vaš API ključ na %s" + +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 +msgid "the QRZ.com Logbook settings page" +msgstr "QRZ.com Logbook stranici za podešavanje" + +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 +msgid "QRZ.com Logbook Upload" +msgstr "Učitavanje na QRZ.com dnevnik" + +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 +msgid "Realtime" +msgstr "Realno vreme" + +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 +msgctxt "Probably no translation needed" +msgid "QO-100 Dx Club API Key" +msgstr "QO-100 DX Club API ključ" + +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 +#, php-format +msgctxt "QO-100 Dx Club's profile page" +msgid "Create your API key on your %s" +msgstr "Kreirajte vaš API ključ na %s" + +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 +msgid "QO-100 Dx Club's profile page" +msgstr "QO-100 DX Club profilnoj stranici" + +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 +msgid "QO-100 Dx Club Realtime Upload" +msgstr "QO-100 DX Club učitavanje u realnom vremenu" + +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 +msgid "OQRS Enabled" +msgstr "OQRS omogućen" + +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 +msgid "OQRS Email alert" +msgstr "OQRS upozorenje emailom" + +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 +msgid "Make sure email is set up under admin and global options." +msgstr "" +"Uverite se da je email podešen, u administratorskim i globalnim opcijama." + +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 +msgid "OQRS Text" +msgstr "OQRS Test" + +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 +msgid "Some info you want to add regarding QSL'ing." +msgstr "Neke informacije koje želite dodati a tiču se razmene QSL karata." + +#: application/views/station_profile/edit.php:149 +msgid "Zones" +msgstr "Zone" + +#: application/views/station_profile/edit.php:284 +msgid "Signature" +msgstr "Oznaka (Signature)" + +#: application/views/stationsetup/create.php:17 +msgid "Station Logbook Name" +msgstr "Naziv staničnog dnevnika" + +#: application/views/stationsetup/create.php:19 +msgid "You can call a station logbook anything." +msgstr "Stanični dnevnik možete nazvati po želji." + +#: application/views/stationsetup/edit.php:18 +msgid "Container name" +msgstr "Naziv kontejnera" + +#: application/views/stationsetup/edit.php:20 +msgid "You can call a container anything." +msgstr "Kontejner možete nazvati po želji." + +#: application/views/stationsetup/exportmapoptions.php:11 +msgctxt "Map Options" +msgid "CQ Zone overlay" +msgstr "Preklapanje CQ zona" + +#: application/views/stationsetup/exportmapoptions.php:15 +msgctxt "Map Options" +msgid "Gridsquare overlay" +msgstr "Preklapanje polja" + +#: application/views/stationsetup/exportmapoptions.php:19 +msgctxt "Map Options" +msgid "Night shadow overlay" +msgstr "Preklapanje noćne senke" + +#: application/views/stationsetup/exportmapoptions.php:27 +msgid "# QSOs shown" +msgstr "Broj prikazanih veza" + +#: application/views/stationsetup/exportmapoptions.php:46 +msgid "Visit export map" +msgstr "Posetite izvezenu kartu" + +#: application/views/stationsetup/linkedlocations.php:13 +msgid "Select Available Station Locations" +msgstr "Izaberite moguće stanične lokacije" + +#: application/views/stationsetup/linkedlocations.php:25 +msgid "Link Location" +msgstr "Povežite lokacije" + +#: application/views/stationsetup/linkedlocations.php:31 +#: application/views/stationsetup/stationsetup.php:122 +msgid "Profile Name" +msgstr "Naziv profila" + +#: application/views/stationsetup/linkedlocations.php:34 +msgid "Unlink Station Location" +msgstr "Raskinite veze stanične lokacije" + +#: application/views/stationsetup/stationsetup.php:21 +msgid "" +"Station Logbooks allow you to group Station Locations, this allows you to " +"see all the locations across one session from the logbook areas to the " +"analytics. Great for when your operating in multiple locations but they are " +"part of the same DXCC or VUCC Circle." +msgstr "" +"Stanični denvici vam omogućavaju da grupišete stanične lokacije, ovo vam " +"omogućava da vidite sve lokacije kroz jednu sesiju u područjima dnevnika za " +"analizu. Odlično je kada radite sa više lokacija ali su sve deo iste DXCC " +"ili unutar istog VUCC kruga." + +#: application/views/stationsetup/stationsetup.php:32 +msgid "Linked locations" +msgstr "Povezane lokacije" + +#: application/views/stationsetup/stationsetup.php:34 +msgid "Visitor site" +msgstr "Visitor site" + +#: application/views/stationsetup/stationsetup.php:91 +msgid "Station Locations" +msgstr "Stanične lokacije" + +#: application/views/stationsetup/stationsetup.php:95 +msgid "" +"Station Locations define operating locations, such as your QTH, a friends " +"QTH, or a portable station." +msgstr "" +"Stanične lokacije definišu mjesta stanica, kao što su QTH, prijateljev QTH, " +"ili QTH portable operacija." + +#: application/views/stationsetup/stationsetup.php:96 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "Slično dnevnicima, stanični profili objedinjuju veze." + +#: application/views/stationsetup/stationsetup.php:97 +msgid "" +"Only one station may be active at a time. In the table below this is shown " +"with the -Active Station- badge." +msgstr "" +"Samo jedna stanica može biti aktivna u datom vremenu. U tabeli ispod " +"prikazana je sa oznakom -Aktivna stanica-." + +#: application/views/stationsetup/stationsetup.php:98 +msgid "" +"The 'Linked' column shows if the station location is linked with the Active " +"Logbook selected above." +msgstr "" +"Kolona 'Povezane' prikazuje da li su stanične lokacije povezane sa aktivnim " +"dnevnikom izabranim iznad." + +#: application/views/stationsetup/stationsetup.php:101 +msgid "Create a Station Location" +msgstr "Kreiraj staničnu lokaciju" + +#: application/views/stationsetup/stationsetup.php:105 +msgid "" +"Attention: You need to set an active station location. Go to Callsign-" +">Station Location to select one." +msgstr "" +"Pažnja: morate postaviti aktivnu staničnu lokaciju. Idite na Pozivni znak -> " +"Stanična lokacija kako biste izabrali lokaciju." + +#: application/views/stationsetup/stationsetup.php:111 +msgid "" +"Due to recent changes within Wavelog you need to reassign QSOs to your " +"station profiles." +msgstr "" +"Zbog nedavnih izmena u Wavelogu, morate doznačiti veze vašim staničnim " +"profilima." + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Maintenance" +msgstr "Održavanje" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Please reassign them at " +msgstr "Molimo doznačite ih na " + +#: application/views/stationsetup/stationsetup.php:127 +msgid "Linked" +msgstr "Povezano" + +#: application/views/stationsetup/stationsetup.php:134 +msgid "Favorite" +msgstr "Omiljeno" + +#: application/views/stationsetup/stationsetup.php:180 +msgid "mark/unmark as favorite" +msgstr "označite/odznačite kao omiljeno" + +#: application/views/stationsetup/visitor.php:2 +msgid "" +"Setting a public slug allows you to share your logbook with anyone via a " +"custom website address, this slug can contain letters & numbers only." +msgstr "" +"Postavljanje javnog slaga vam omogućava da delite vaš dnevnik sa svima koji " +"imaju podešenu web sajt adresu, ovaj slag može sadržati samo brojeve i slova." + +#: application/views/stationsetup/visitor.php:3 +msgid "Later it looks like this:" +msgstr "Kasnije će to izgledati ovako:" + +#: application/views/stationsetup/visitor.php:4 +msgid "[your slug]" +msgstr "[vaš slag]" + +#: application/views/stationsetup/visitor.php:10 +msgid "Type in Public Slug choice" +msgstr "Ukucajte u izbor Javnog slaga" + +#: application/views/stationsetup/visitor.php:17 +msgid "Visit Public Page" +msgstr "Posetite javnu stranicu" + +#: application/views/statistics/custom.php:12 +#: application/views/statistics/custom_result.php:12 +#: application/views/statistics/index.php:28 +msgid "Explore the logbook." +msgstr "Istražite dnevnik." + +#: application/views/statistics/custom.php:23 +#: application/views/statistics/custom_result.php:24 +msgid "Custom" +msgstr "Podešeno" + +#: application/views/statistics/custom.php:27 +#: application/views/statistics/custom_result.php:29 +msgid "This is a work in-progress" +msgstr "Ovo je rad koji je u toku" + +#: application/views/statistics/custom.php:74 +#: application/views/statistics/custom_result.php:71 +msgid "Finished your selection? time to search!" +msgstr "Završili ste sa izborom? Vreme je za pretragu!" + +#: application/views/statistics/custom.php:86 +msgid "Results go here" +msgstr "Rezultati idu ovde" + +#: application/views/statistics/index.php:14 +#: application/views/statistics/index.php:50 +msgid "Years" +msgstr "Godine" + +#: application/views/statistics/index.php:17 +msgid "Number of QSOs worked each year" +msgstr "Broj održanih veza svake godine" + +#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:99 +msgid "Unique callsigns" +msgstr "Jedinstvenih pozivnih znakova" + +#: application/views/themes/add.php:4 application/views/themes/edit.php:4 +msgid "Theme Name" +msgstr "Naziv teme" + +#: application/views/themes/add.php:6 application/views/themes/edit.php:6 +msgid "This is the name that is used to display the theme in the theme list." +msgstr "Ovo je naziv koji će biti korišćen za prikaz teme u listi tema." + +#: application/views/themes/add.php:10 application/views/themes/edit.php:10 +msgid "Folder Name" +msgstr "Naziv fascikle" + +#: application/views/themes/add.php:12 application/views/themes/edit.php:12 +msgid "" +"This is the name of the folder where your CSS-files are placed under assets/" +"css." +msgstr "" +"Ovo je naziv fascikle gde će biti smešteni vaše CSS datoteke pod assets/css." + +#: application/views/themes/add.php:16 application/views/themes/edit.php:16 +#: application/views/themes/index.php:84 +msgid "Theme Mode" +msgstr "Mod teme" + +#: application/views/themes/add.php:18 application/views/themes/edit.php:18 +msgid "Light" +msgstr "Svetli" + +#: application/views/themes/add.php:19 application/views/themes/edit.php:19 +msgid "Dark" +msgstr "Tamni" + +#: application/views/themes/add.php:21 +msgid "This defines wherever the theme is a light or a dark one." +msgstr "Ovim se definiše da li je tema svetla ili tamna." + +#: application/views/themes/add.php:25 application/views/themes/edit.php:25 +#: application/views/themes/index.php:85 +msgid "Header Logo" +msgstr "Logo zaglavlja" + +#: application/views/themes/add.php:27 application/views/themes/add.php:33 +#: application/views/themes/edit.php:27 application/views/themes/edit.php:33 +msgid "Only PNG files with a size ratio of 1:1 are allowed." +msgstr "Dozvoljene su samo PNG datoteke sa odnosom veličine stranica 1:1." + +#: application/views/themes/add.php:27 application/views/themes/edit.php:27 +#, php-format +msgid "" +"This is the name of the file which is used as %s small %s Logo in the header " +"placed in assets/logo." +msgstr "" +"Ovo je ime datoteke koja je korišćena kao %smali %s logo u zaglavlju smešten " +"u assets/logo." + +#: application/views/themes/add.php:31 application/views/themes/edit.php:31 +#: application/views/themes/index.php:86 +msgid "Main Logo" +msgstr "Glavni logo" + +#: application/views/themes/add.php:33 application/views/themes/edit.php:33 +#, php-format +msgid "" +"This is the name of the file which is used as %s big %s Logo in the login " +"screen placed in assets/logo." +msgstr "" +"Ovo je ime datoteke koja je korićena ko %sveliki %s logo na ekranu za " +"prijavljanje na dnevnik u assets/logo." + +#: application/views/themes/add.php:36 +msgid "Add theme" +msgstr "Dodajte temu" + +#: application/views/themes/edit.php:21 +msgid "" +"This defines wherever the theme is a light or a dark one. On this basis the " +"Logo is chosen." +msgstr "" +"Ovim se definiše da li je tema svetla ili tamna. Na osnovu toga će biti " +"izabran i logo." + +#: application/views/themes/edit.php:36 +msgid "Update theme" +msgstr "Ažuriranje teme" + +#: application/views/themes/index.php:22 +msgid "Themes list" +msgstr "Lista tema" + +#: application/views/themes/index.php:28 +msgid "" +"In this menu you can add and edit themes to Wavelog. The process of adding a " +"theme is not really straightforward and should only be done by an admin who " +"is aware of their actions." +msgstr "" +"U ovom meniju možete dodati i uređivati teme WaveLoga. Proces dodavanja tema " +"nije sasvim prost i trebalo bi da bude urađen od strane administratora koji " +"znaju šta rade." + +#: application/views/themes/index.php:29 +msgid "Also, it has to be said that this feature is still under development." +msgstr "Takođe, mora se istaći da je ovo svojstvo još uvek u razvoju." + +#: application/views/themes/index.php:35 +msgid "Process of adding a new theme" +msgstr "Proces dodavanja nove teme" + +#: application/views/themes/index.php:41 +msgid "1. Step" +msgstr "1. korak" + +#: application/views/themes/index.php:44 +#, php-format +msgid "" +"Create a new folder in 'assets/css/' and upload a 'bootstrap.min.css' file " +"which contains basic styling rules. We use the themes from %s" +msgstr "" +"Kreirajte novu fasciklu u 'assets/css/' i učitajte 'bootstrap.min.css' " +"datoteku koja sadrži osnovna CSS pravila za stilizovanje. Mi koristimo teme " +"od %s" + +#: application/views/themes/index.php:50 +msgid "2. Step" +msgstr "2. korak" + +#: application/views/themes/index.php:53 +msgid "" +"Create a file in this folder called 'overrides.css'. Place your custom CSS " +"code in there." +msgstr "" +"U ovom folderu kreirajte datoteku pod imenom 'overrides.css'. U nju dodajte " +"vaš CSS kod." + +#: application/views/themes/index.php:59 +msgid "3. Step" +msgstr "3. korak" + +#: application/views/themes/index.php:62 +msgid "" +"For each new theme, you need two logo files. One for the login screen and " +"one for the header." +msgstr "" +"Za svaku novu temu trebalo bi da imate dvije logo datoteke. Jedna za ekran " +"za prijavu, drugu za zaglavlje." + +#: application/views/themes/index.php:63 +msgid "" +"Only PNG files are allowed, and they should have a pixel ratio of 1:1 (e.g., " +"1000px height and 1000px width)." +msgstr "" +"Dozvoljene su samo PNG datoteke, i trebalo bi da imaju odnos veličine 1:1 " +"(npr. 1000px visina i 1000px širina)." + +#: application/views/themes/index.php:64 +msgid "Place the two logo files in the folder 'assets/logo/'" +msgstr "Postavite datoteke logoa u fasciklu 'assets/logo/'" + +#: application/views/themes/index.php:70 +msgid "4. Step" +msgstr "4. korak" + +#: application/views/themes/index.php:73 +#, php-format +msgid "" +"Click here on 'Add a Theme' and type in the necessary data. Type in the " +"filenames for the logos %swithout%s the file extension '.png'" +msgstr "" +"Kliknite na 'Dodaj temu' i upišite potrebne podatke. Upišite imena datoteka " +"za logoe %sbez%s ekstenzije '.png'" + +#: application/views/themes/index.php:83 +msgid "Foldername" +msgstr "Naziv fascikle" + +#: application/views/themes/index.php:99 +msgid "Please edit" +msgstr "Molimo uredite" + +#: application/views/themes/index.php:116 +msgid "Add a Theme" +msgstr "Dodajte temu" + +#: application/views/timeplotter/index.php:2 +msgid "contacts were plotted" +msgstr "kontakti su iscrtani" + +#: application/views/timeplotter/index.php:3 +msgid "Time Distribution" +msgstr "Distribucija vremena" + +#: application/views/timeplotter/index.php:6 +msgid "Callsign(s) worked (max 5)" +msgstr "Rađeni znak(ovi) (max 5)" + +#: application/views/timeplotter/index.php:10 +msgid "" +"The Timeplotter is used to analyze your logbook and find out at what times " +"you worked certain CQ zones or DXCC countries on a selected band." +msgstr "" +"Distribucija vremena se koristi za nalaizu dnevnika i pronalazi u koje vreme " +"ste radili određene CQ zone ili DXCC zemlje na izabranom opsegu." + +#: application/views/update/index.php:8 +msgid "DXCC Lookup Data" +msgstr "Podaci DXCC pretrage" + +#: application/views/update/index.php:12 +msgid "Distance Data" +msgstr "Podaci o udaljenosti" + +#: application/views/update/index.php:19 +msgid "" +"Here you can update the DXCC lookup data that is used for displaying " +"callsign information." +msgstr "" +"Ovde možete ažurirati pregled DXCC podataka koji se koriste za prikazi " +"informacija o pozivnom znaku." + +#: application/views/update/index.php:20 +msgid "This data is provided by" +msgstr "Ove podatke pruža" + +#: application/views/update/index.php:24 +msgid "You must install php-xml for this to work." +msgstr "Morate instalirati php-xml da bi ovo radilo." + +#: application/views/update/index.php:27 +msgid "Check for DXCC Data Updates" +msgstr "Proverite ažuriranja DXCC podataka" + +#: application/views/update/index.php:28 +msgid "Update DXCC Data" +msgstr "Ažurirajte DXCC podatke" + +#: application/views/update/index.php:30 +msgid "Status:" +msgstr "Status:" + +#: application/views/update/index.php:34 +msgid "Apply DXCC Data to Logbook" +msgstr "Primenite DXCC podatke na Dnevnik" + +#: application/views/update/index.php:36 +msgid "" +"After updating, Wavelog can fill in missing callsign information in the " +"logbook using the newly-obtained DXCC data.\n" +"\t\t\t\t\t\t\tYou can choose to check just the QSOs in the logbook that are " +"missing DXCC metadata or to re-check the entire logbook\n" +"\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." +msgstr "" +"Nakon ažuriranja, Wavelog može popuniti nedostajuće informacije u dnevniku, " +"korišćenjem novodobijenih DXCC podataka.\n" +"\t\t\t\t\t\t\tMožete izabrati da proverite samo veze u Dnevniku za koje " +"nedostaju ovi podaci, ili da ponovo proverite celi dnevnik\n" +"\t\t\t\t\t\t\ti ažurirate postojeće podatke, u slučaju da je došlo do " +"promene." + +#: application/views/update/index.php:45 +msgid "Check QSOs missing DXCC data" +msgstr "Proverite nedostajuće DXCC podatke za veze" + +#: application/views/update/index.php:54 application/views/update/index.php:95 +msgid "Re-check all QSOs in logbook" +msgstr "Ponovo proverite sve veze u dnevniku" + +#: application/views/update/index.php:59 +msgid "Apply Continent Data to Logbook" +msgstr "Primenite podatke o kontinentu na Dnevnik" + +#: application/views/update/index.php:61 +msgid "" +"This function can be used to update QSO continent information for all QSOs " +"in Wavelog missing that information." +msgstr "" +"Ova funkcija se može koristiti za ažuriranje informacije o kontinentu za sve " +"veze u Wavelogu u kojima nedostaje ta informacija." + +#: application/views/update/index.php:68 +msgid "Check QSOs missing continent data" +msgstr "Proverite nedostajuće podatke o kontinentu u vezama" + +#: application/views/update/index.php:80 +msgid "Here you can update QSOs with missing distance information." +msgstr "Ovde možete ažurirati veze sa podacima o rastojanju." + +#: application/views/update/index.php:86 +msgid "Update distance data" +msgstr "Ažurirajte podatke o rastojanju" + +#: application/views/update/index.php:89 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" +"Koristite sledeće dugme kako biste ažurirali informaciju o rastojanju za sve " +"vaše veze. U zavisnosti od broja veza, za ovo će biti potrebno neko vreme. " +"Molimo budite strpljivi." + +#: application/views/user/delete.php:5 +msgid "Delete User Account" +msgstr "Izbrišite korisnički nalog" + +#: application/views/user/delete.php:10 +msgid "Are you sure you want to delete the user account" +msgstr "Da li ste sigurni da želite izbrisati korisnički nalog" + +#: application/views/user/delete.php:14 +msgid "No, do not delete this user" +msgstr "Ne, nemojte brisati ovog korisnika" + +#: application/views/user/delete.php:14 +msgid "Yes, delete this user" +msgstr "Da, izbrišite ovog korisnika" + +#: application/views/user/edit.php:4 +msgid "Create User Account" +msgstr "Kreirajte korisnički nalog" + +#: application/views/user/edit.php:6 +msgid "Edit Account" +msgstr "Uredite nalog" + +#: application/views/user/edit.php:41 +msgid "General Information" +msgstr "Opšte informacije" + +#: application/views/user/edit.php:52 application/views/user/login.php:58 +#: application/views/user/login.php:69 application/views/user/login.php:70 +#: application/views/user/profile.php:14 +msgid "Username" +msgstr "Korisničko ime" + +#: application/views/user/edit.php:64 application/views/user/login.php:59 +#: application/views/user/login.php:73 application/views/user/login.php:74 +#: application/views/user/reset_password.php:21 +#: application/views/user/reset_password.php:23 +#: application/views/user/reset_password.php:30 +msgid "Password" +msgstr "Lozinka" + +#: application/views/user/edit.php:77 +msgid "User Role" +msgstr "Korisnička uloga" + +#: application/views/user/edit.php:99 +msgid "Personal" +msgstr "Lično" + +#: application/views/user/edit.php:102 +msgid "First Name" +msgstr "Ime" + +#: application/views/user/edit.php:109 +msgid "Last Name" +msgstr "Prezime" + +#: application/views/user/edit.php:120 +msgid "Ham Radio" +msgstr "Ham Radio" + +#: application/views/user/edit.php:146 +msgid "Wavelog Preferences" +msgstr "Preferencije Waveloga" + +#: application/views/user/edit.php:157 +msgid "Stylesheet" +msgstr "Stil" + +#: application/views/user/edit.php:169 +msgid "Wavelog Language" +msgstr "Jezik Waveloga" + +#: application/views/user/edit.php:176 +msgid "Choose Wavelog language." +msgstr "Izaberite jezik za Wavelog." + +#: application/views/user/edit.php:187 +msgid "Date Format" +msgstr "Format datuma" + +#: application/views/user/edit.php:200 +msgid "Select how you would like dates shown when logged into your account." +msgstr "" +"Izaberite kako biste željeli da vam se prikazuju datumi kada ste u svom " +"nalogu." + +#: application/views/user/edit.php:204 +msgid "Measurement preference" +msgstr "Preferencije mjernih jedinica" + +#: application/views/user/edit.php:208 +msgid "Kilometers" +msgstr "Kilometri" + +#: application/views/user/edit.php:209 +msgid "Miles" +msgstr "Milje" + +#: application/views/user/edit.php:210 +msgid "Nautical miles" +msgstr "Nautičke milje" + +#: application/views/user/edit.php:212 +msgid "Choose which unit distances will be shown in" +msgstr "Izaberite jedinicu u kojoj će biti prikazana rastojanja" + +#: application/views/user/edit.php:221 +msgid "Logbook fields" +msgstr "Polja dnevnika" + +#: application/views/user/edit.php:224 +msgid "Choose column 1" +msgstr "Izaberite kolonu 1" + +#: application/views/user/edit.php:246 +msgid "Choose column 2" +msgstr "Izaberite kolonu 2" + +#: application/views/user/edit.php:268 +msgid "Choose column 3" +msgstr "Izaberite kolonu 3" + +#: application/views/user/edit.php:290 +msgid "Choose column 4" +msgstr "Izaberite kolonu 4" + +#: application/views/user/edit.php:312 +msgid "Choose column 5 (only for logbook)" +msgstr "Izaberite kolonu 5 (samo za dnevnik)" + +#: application/views/user/edit.php:341 +msgid "QSO Logging Options" +msgstr "Opcije upisivanja veza u dnevnik" + +#: application/views/user/edit.php:344 +msgid "Log End Times for QSOs Separately" +msgstr "Posebno upišite vrijeme završetka veze" + +#: application/views/user/edit.php:350 +msgid "" +"Choose yes here if you want to log QSO start and end times separately. If " +"set to 'No' the end time will be the same as start time." +msgstr "" +"Izaberite 'da' ako želite da se vremena počeka i završetka veze upisuju " +"posebno. Ako izaberete 'ne', vreme završetka veze će biti jednako vremenu " +"početka veze." + +#: application/views/user/edit.php:355 +msgid "" +"Show profile picture of QSO partner from qrz.com/hamqth.com profile in the " +"log QSO section." +msgstr "" +"Prikaži profilnu sliku korespondenta sa QRZ.com/hamqth.com profila, u " +"sekciji za upis veza u dnevnik." + +#: application/views/user/edit.php:361 +msgid "" +"Please set your qrz.com/hamqth.com credentials in the general config file." +msgstr "" +"Molimo podesite vaše qrz.com/hamqth.com kredencijale u datoteci za generalna " +"podešavanja." + +#: application/views/user/edit.php:366 +msgid "Location auto lookup." +msgstr "Lokacija auto traženja." + +#: application/views/user/edit.php:372 +msgid "If set, gridsquare is fetched based on location name." +msgstr "" +"Ako je postavljeno, informacija o polju će biti povučena u zavisnosti od " +"imena lokacije." + +#: application/views/user/edit.php:376 +msgid "SOTA auto lookup gridsquare and name for summit." +msgstr "SOTA auto pretraga polja i imena za vrh." + +#: application/views/user/edit.php:382 application/views/user/edit.php:392 +#: application/views/user/edit.php:402 +msgid "" +"If set, name and gridsquare is fetched from the API and filled in location " +"and locator." +msgstr "" +"Ako je postavljeno, naziv i polje će biti povučeno iz API-ja i biće " +"popunjena polja lokacija i lokator." + +#: application/views/user/edit.php:386 +msgid "WWFF auto lookup gridsquare and name for reference." +msgstr "WWFF auto potraga za poljem i nazivom reference." + +#: application/views/user/edit.php:396 +msgid "POTA auto lookup gridsquare and name for park." +msgstr "POTA auto pretraga polja i naziva za park." + +#: application/views/user/edit.php:413 +msgid "Menu Options" +msgstr "Opcije menija" + +#: application/views/user/edit.php:416 +msgid "Show notes in the main menu." +msgstr "Prikaži Zabeleške u glavnom meniju." + +#: application/views/user/edit.php:427 +msgid "Quicklog Field" +msgstr "Polje brzog upisa veze" + +#: application/views/user/edit.php:433 +msgid "" +"With this feature, you can log callsigns using the search field in the " +"header." +msgstr "" +"Sa ovom karakteristikom, moći ćete upisivati pozivne znakove korišćenjem " +"polja za pretragu u zaglavlju." + +#: application/views/user/edit.php:437 +msgid "Quicklog - Action on press Enter" +msgstr "Brzi upis - akcija se odvija pritiskom na Enter" + +#: application/views/user/edit.php:440 +msgid "Log Callsign" +msgstr "Upiši pozivni znak" + +#: application/views/user/edit.php:443 +msgid "" +"What action should be performed when Enter is pressed in the quicklog field?" +msgstr "" +"Koja akcija bi trebalo biti izvedena kada je pritisnut Enter u polju za brzi " +"unos?" + +#: application/views/user/edit.php:449 +msgid "Station Locations Quickswitch" +msgstr "Brza promena Stanične lokacije" + +#: application/views/user/edit.php:454 +msgid "Show the Station Locations Quickswitch in the main menu" +msgstr "Prikaži brzu promenu Stanične lokacije u glavnom meniju" + +#: application/views/user/edit.php:458 +msgid "UTC Time in Menu" +msgstr "UTC vreme u meniju" + +#: application/views/user/edit.php:463 +msgid "Show the current UTC Time in the menu" +msgstr "Pokaži trenutno UTC vreme u meniju" + +#: application/views/user/edit.php:474 +msgid "Map Settings" +msgstr "Podešavanje karte" + +#: application/views/user/edit.php:481 +msgid "Icon" +msgstr "Ikona" + +#: application/views/user/edit.php:484 application/views/user/edit.php:488 +msgid "Not display" +msgstr "Ne prikazuj" + +#: application/views/user/edit.php:497 +msgid "QSO (by default)" +msgstr "QSO (podrazumevano)" + +#: application/views/user/edit.php:516 +msgid "QSO (confirmed)" +msgstr "QSO (potvrđen)" + +#: application/views/user/edit.php:517 +msgid "(If 'No', displayed as 'QSO (by default))'" +msgstr "(Ako izaberete 'Ne', prikazano će biti kao 'QSO (podrazumevano))'" + +#: application/views/user/edit.php:536 +msgid "Show Locator" +msgstr "Prikaži lokator" + +#: application/views/user/edit.php:555 +msgid "Previous QSL Type" +msgstr "Prethodna vrsta QSL" + +#: application/views/user/edit.php:559 +msgid "Select the type of QSL to show in the previous QSOs section." +msgstr "Izaberite vrstu QSL za prikaz u sekciji prethodnih veza." + +#: application/views/user/edit.php:565 +msgid "QRZ" +msgstr "QRZ" + +#: application/views/user/edit.php:576 +msgid "Show Reference Fields on QSO Tab" +msgstr "Prikaži polja referenci u kartici QSO" + +#: application/views/user/edit.php:580 +msgid "" +"The enabled items will be shown on the QSO tab rather than the General tab." +msgstr "" +"Omogućene stavke će biti prikazane na kartici QSO a ne na kartici Opšte." + +#: application/views/user/edit.php:619 +msgid "Default Values" +msgstr "Podrazumevane vrednosti" + +#: application/views/user/edit.php:627 +msgid "Settings for Default Band and Confirmation" +msgstr "Podešavanja za podrazumevani opseg i potvrde" + +#: application/views/user/edit.php:630 +msgid "Default Band" +msgstr "Podrazumevani opseg" + +#: application/views/user/edit.php:640 +msgid "Default QSL-Methods" +msgstr "Podrazumevani metod potvrde veza" + +#: application/views/user/edit.php:697 +msgid "Third Party Services" +msgstr "Usluge treće strane" + +#: application/views/user/edit.php:708 +msgid "Logbook of The World (LoTW) Username" +msgstr "Korisničko ime Loogbook of The World (LoTW)" + +#: application/views/user/edit.php:714 +msgid "Logbook of The World (LoTW) Password" +msgstr "Lozinka Loogbook of The World (LoTW)" + +#: application/views/user/edit.php:734 +msgid "eQSL.cc Username" +msgstr "Korisničko ime eQSL.cc" + +#: application/views/user/edit.php:740 +msgid "eQSL.cc Password" +msgstr "Lozinka eQSL.cc" + +#: application/views/user/edit.php:757 +msgid "Club Log" +msgstr "Club Log" + +#: application/views/user/edit.php:760 +msgid "Club Log Email/Callsign" +msgstr "Club Log email/pozivni znak" + +#: application/views/user/edit.php:762 +msgid "The Email or Callsign you use to login to Club Log" +msgstr "Email ili pozivni znak koji koristite za prijavu na Club Log" + +#: application/views/user/edit.php:767 +msgid "Club Log Password" +msgstr "Lozinka za Club Log" + +#: application/views/user/edit.php:788 +msgid "Miscellaneous" +msgstr "Razno" + +#: application/views/user/edit.php:796 +msgid "AMSAT Status Upload" +msgstr "Učitavanje na AMSAT Status" + +#: application/views/user/edit.php:799 +msgid "Upload status of SAT QSOs to" +msgstr "Učitajte status SAT veza na" + +#: application/views/user/edit.php:813 +msgid "Mastodonserver" +msgstr "Mastodonserver" + +#: application/views/user/edit.php:816 +msgid "URL of Mastodonserver" +msgstr "URL Mastodonservera" + +#: application/views/user/edit.php:818 +#, php-format +msgid "Main URL of your Mastodon server, e.g. %s" +msgstr "Glavni URL vašeg Mastodon servera. npr. %s" + +#: application/views/user/edit.php:827 +msgid "Experimental" +msgstr "Eksperimentalno" + +#: application/views/user/edit.php:827 +msgid "Winkeyer" +msgstr "Winkeyer" + +#: application/views/user/edit.php:830 +msgid "Winkeyer Features Enabled" +msgstr "Omogućene karakteristike Winkeyera" + +#: application/views/user/edit.php:836 +#, php-format +msgid "" +"Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " +"before enabling." +msgstr "" +"Winkeyer podrška u Wavelug je veoma eksperimentalna. Prvo pročitajte Wiki na " +"%s prije nego omogućite ovu funkciju." + +#: application/views/user/edit.php:847 +msgid "Hams.at" +msgstr "Hams.at" + +#: application/views/user/edit.php:850 +msgid "Private Feed Key" +msgstr "Privatni ključ za dobavu" + +#: application/views/user/edit.php:852 +#, php-format +msgctxt "Hint for Hamsat API Key; uses Link" +msgid "See your profile at %s." +msgstr "Pogledajte vaš profil na %s." + +#: application/views/user/edit.php:855 +msgid "Show Workable Passes Only" +msgstr "Prikaži samo prelete koje je moguće raditi" + +#: application/views/user/edit.php:861 +msgid "" +"If enabled shows only workable passes based on the gridsquare set in your " +"hams.at account. Requires private feed key to be set." +msgstr "" +"Ako je omogućeno, biće prikazani samo preleti koje je moguće raditi na " +"osnovu polja koje ste uneli u vaš hams.at nalog. Zahteva se unos privatnog " +"ključa." + +#: application/views/user/edit.php:873 +msgid "Save Account" +msgstr "Sačuvajte nalog" + +#: application/views/user/forgot_password.php:33 +msgid "Forgot Password?" +msgstr "Zaboravili ste lozinku?" + +#: application/views/user/forgot_password.php:34 +#: application/views/user/reset_password.php:9 +msgid "You can reset your password here." +msgstr "Ovde možete resetovati vašu lozinku." + +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "Da li zaista želite da ovom korisniku pošaljete link za reset lozinke?" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "Molimo sačekajte..." + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "Email za reset lozinke poslat je korisniku:" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "Lista korisnika" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "" +"Wavelogu je potreban bar jedan konfigurisani korisnik kako bi dnevnik bio " +"funkcionalan." + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" +"Korisnicima mogu biti dodeljene uloge koje će im dati različite dozvole, kao " +"što su dodavanje veza u dnevnik i pristup Wavelog API-jima." + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" +"Korisnik koji je trenutno prijavljen prikazan je u gornjem desnom uglu svake " +"stranice." + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" +"Sa dugmetom za reset lozinke korisniku možete poslati email koji će sadržati " +"link za reset lozinke. Da bi se ovo postiglo, budite uvereni da su u opštim " +"podešavanjima ispravno upisana email podešavanja." + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "Kreiraj korisnika" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "Osveži listu" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "Vrsta" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "Poslednji put prijavljen" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "Reset lozinke" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "Oponašanje" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "Nikada" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "Lokacije" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "Dnevnici" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "Poslednji QSO:" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "U dnevniku nema QSO" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "Oponašanje korisnika" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" +"Želite da oponašate drugog korisnika. Da biste se vratili u administrativni " +"nalog, moraćete da se odajavite i ponovo prijavite kao admin." + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "Da li želite da oponašate ovog korisnika?" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "Korisničko ime:" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "Ime:" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "Pozivni znak:" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "E-mail:" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "Poslednji put viđen:" + +#: application/views/user/login.php:36 +msgid "MAINTENANCE MODE" +msgstr "MOD ODRŽAVANJA" + +#: application/views/user/login.php:56 +msgid "Welcome to the Demo of Wavelog" +msgstr "Dobrodošli u Demo Waveloga" + +#: application/views/user/login.php:57 +msgid "This demo will be reset every night at 0200z." +msgstr "Ovaj demo će biti resetovan svake noći u 0200 UTC." + +#: application/views/user/login.php:60 +#, php-format +msgid "More Information about Wavelog on %sGithub%s." +msgstr "Više informacija o Wavelogu na %sGithabu%s." + +#: application/views/user/login.php:79 +msgid "Forgot your password?" +msgstr "Zaboravili ste lozinku?" + +#: application/views/user/login.php:85 +msgid "Keep me logged in" +msgstr "Drži me prijavljenog" + +#: application/views/user/profile.php:19 +msgid "Level" +msgstr "Nivo" + +#: application/views/user/profile.php:39 +msgid "First name" +msgstr "Ime" + +#: application/views/user/profile.php:44 +msgid "Last name" +msgstr "Prezime" + +#: application/views/user/profile.php:50 +msgid "Edit profile" +msgstr "Uređivanje profila" + +#: application/views/user/reset_password.php:28 +msgid "Confirm Password" +msgstr "Potvrdi lozinku" + +#: application/views/version_dialog/index.php:20 +msgid "No Version Dialog text set. Go to the Admin Menu and set one." +msgstr "" +"Nije postavljen tekst za dijalog o verziji. Idite u administratorski meni za " +"postavljanje teksta." + +#: application/views/version_dialog/index.php:60 +msgid "Error at parsing JSON-Data or got empty result from github." +msgstr "" +"Greška u parsovanju JSON-Data ili su sa githaba dobijeni prazni rezultati." + +#: application/views/version_dialog/index.php:63 +msgid "Error at getting the data from GitHub." +msgstr "Greška u dobavljanju podataka sa GitHaba." + +#: application/views/version_dialog/index.php:75 +msgid "Don't show again" +msgstr "Ne prikazuj ponovo" + +#: application/views/view_log/index.php:4 +msgid "" +"Displaying all QSOs of station locations which are linked to this logbook" +msgstr "Prikaz svih QSO staničnih lokacija koje su povezane u ovom dnevniku" + +#: application/views/view_log/qso.php:6 +msgid "QSO Details" +msgstr "Detalji QSO" + +#: application/views/view_log/qso.php:29 +msgid "QSL Management" +msgstr "Upravljanje QSL" + +#: application/views/view_log/qso.php:131 +msgid "Total Distance" +msgstr "Ukupno rastojanje" + +#: application/views/view_log/qso.php:224 +msgid "Antenna Azimuth" +msgstr "Azimut antene" + +#: application/views/view_log/qso.php:231 +msgid "Antenna Elevation" +msgstr "Elevacija antene" + +#: application/views/view_log/qso.php:373 +msgid "QSL Card has been sent via the bureau" +msgstr "QSL karta je poslata preko biroa" + +#: application/views/view_log/qso.php:375 +msgid "QSL Card has been sent via direct" +msgstr "QSL karta je poslata direktno" + +#: application/views/view_log/qso.php:377 +msgid "QSL Card has been sent electronically" +msgstr "QSL karta je poslata elektronski" + +#: application/views/view_log/qso.php:379 +msgid "QSL Card has been sent via manager" +msgstr "QSL karta je poslata preko menadžera" + +#: application/views/view_log/qso.php:381 +msgid "QSL Card has been sent" +msgstr "QSL karta je poslata" + +#: application/views/view_log/qso.php:390 +msgid "QSL Card has been received via the bureau" +msgstr "QSL karta je primljena preko biroa" + +#: application/views/view_log/qso.php:392 +msgid "QSL Card has been received via direct" +msgstr "QSL karta je primljena direktno" + +#: application/views/view_log/qso.php:394 +msgid "QSL Card has been received electronically" +msgstr "QSL karta je primljena elektronski" + +#: application/views/view_log/qso.php:396 +msgid "QSL Card has been received via manager" +msgstr "QSL karta je primljena preko menadžera" + +#: application/views/view_log/qso.php:398 +msgid "QSL Card has been received" +msgstr "QSL karta je primljena" + +#: application/views/view_log/qso.php:407 +msgid "This station uses LoTW." +msgstr "Ova stanica koristi LoTW." + +#: application/views/view_log/qso.php:412 +#: application/views/view_log/qso.php:417 +#: application/views/view_log/qso.php:422 +#: application/views/view_log/qso.php:427 +msgid "This QSO was confirmed on" +msgstr "Ovaj QSO je potvrđen" + +#: application/views/view_log/qso.php:438 +msgid "More QSOs" +msgstr "Još QSO" + +#: application/views/view_log/qso.php:506 +msgid "Details" +msgstr "Detalji" + +#: application/views/view_log/qso.php:633 +msgid "Uploaded QSL Card front image" +msgstr "Učitana slika prednje strane QSL karte" + +#: application/views/view_log/qso.php:638 +msgid "Upload QSL Card image" +msgstr "Učitavanje slike QSL karte" + +#: application/views/view_log/qso.php:643 +msgid "Uploaded QSL Card back image" +msgstr "Učitana slike zadnje strane QSL karte" + +#: application/views/view_log/qso.php:659 +msgid "Mark QSL Received (Electronic)" +msgstr "Označi QSL primljenom (elektronski)" + +#: application/views/view_log/qso.php:665 +msgid "Mark QSL Card Requested (Bureau)" +msgstr "Označi QSL kartu zahtevanom (biro)" + +#: application/views/view_log/qso.php:667 +msgid "Mark QSL Card Requested (Direct)" +msgstr "Označi QSL kartu zahtevanom (direktno)" + +#: application/views/view_log/qso.php:682 +msgid "eQSL picture" +msgstr "Slika eQSL" + +#: application/views/visitor/layout/footer.php:242 +msgid "CSV" +msgstr "CSV" + +#: application/views/visitor/layout/header.php:74 +msgid "OQRS" +msgstr "OQRS" + +#: application/views/visitor/layout/header.php:82 +msgid "Visit Wavelog on Github" +msgstr "Posetite Wavelog na GitHabu" + +#: application/views/visitor/layout/header.php:95 +msgid "Please enter a callsign!" +msgstr "Molimo unesite pozivni znak!" + +#: application/views/webadif/export.php:22 +msgid "" +"Here you can see and upload all QSOs which have not been previously uploaded " +"to QO-100 Dx Club." +msgstr "" +"Ovde možete videti i učitati sve QSO koji nisu prethodno učitani na QO-100 " +"DX Club." + +#: application/views/webadif/export.php:33 +msgid "" +"You need to set a QO-100 Dx Club API key in your station profile. Only " +"station profiles with an API Key are displayed." +msgstr "" +"Morate podesiti QO-100 DX Club API ključ, u profilu vaše stanice. Prikazani " +"su samo stanični profili sa API ključem." + +#: application/views/webadif/export.php:63 +msgid "" +"There are currently no outstanding QSOs that need to be uploaded to the " +"QO-100 Dx Club's API." +msgstr "Trenutno nema QSO koji trebaju biti učitani na QO-100 DX Club API." + +#: application/views/webadif/export.php:64 +msgid "Go ahead and turn on your QO-100 station!" +msgstr "Uključite vašu QO-100 stanicu!" + +#: application/views/webadif/export.php:73 +#: application/views/webadif/export.php:113 +msgid "" +"None of your Logbooks are configured to export data to the QO-100 Dx Club's " +"API." +msgstr "" +"Nijedan od vaših dnevnika nije podešen za izvoz podataka na QO-100 DX Club " +"API." + +#: application/views/webadif/export.php:74 +#: application/views/webadif/export.php:114 +msgid "QO-100 Dx Club" +msgstr "QO-100 DX Club" + +#: application/views/webadif/export.php:74 +#: application/views/webadif/export.php:114 +#, php-format +msgid "" +"To configure this feature, go to your profile page at the %s and %s Create " +"%s an API key." +msgstr "" +"Za podešavanje ovog svojstva, idite na profilnu stranicu na %s i %s " +"Kreirajte %s API ključ." + +#: application/views/webadif/export.php:75 +#: application/views/webadif/export.php:115 +#, php-format +msgid "" +"Then, navigate to your %s and configure your station with the key you have " +"created at the club." +msgstr "" +"Potom, idite na vaš %s i konfigurišite vašu stanicu sa ključem koji ste " +"kreirali u klubu." + +#: application/views/webadif/export.php:83 +msgid "" +"Here you can mark as uploaded your QSOs which have not been previously " +"uploaded to QO-100 Dx Club." +msgstr "" +"Ovde možete označiti kao učitane vaše QSO koji prethodno nisu bili učitani " +"na QO-100 DX Club." + +#: application/views/webadif/export.php:107 +msgid "Mark QSOs as exported to QO-100 Dx Club" +msgstr "Označite QSO kao izvezene na QO-100 DX Club" + +#: application/views/webadif/mark_webadif.php:16 +msgid "The QSOs are marked as exported to QO-100 Dx Club." +msgstr "QSO su označeni kao izvezeni na QO-100 DX Club." + +#: application/views/widgets/oqrs.php:21 +msgid "Wavelog OQRS" +msgstr "Wavelog OQRS" + +#: application/views/widgets/oqrs.php:76 +msgid "Wavelog OQRS Request" +msgstr "Wavelog OQRS zahtev" + +#: application/views/widgets/oqrs.php:79 +#, php-format +msgid "Request a QSL card for your QSO with %s." +msgstr "Zahtevajte QSL kartu za vaš QSO sa %s." + +#: application/views/widgets/oqrs.php:83 +msgid "Your Callsign:" +msgstr "Vaš pozivni znak:" + +#: application/views/widgets/oqrs.php:90 +msgid "Submit Request" +msgstr "Pošaljite zahtev" + +#, php-format +#~ msgid "%s = Serial, %s = Gridsquare, %s = Exchange." +#~ msgstr "%s = Serijski broj, %s = Polje, %s = Razmena." + +#~ msgid "Key Disabled" +#~ msgstr "Ključ onemogućen" + +#~ msgid "No Key Found" +#~ msgstr "Ključ nije pronađen" + +#~ msgid "Key Invalid - either not found or disabled" +#~ msgstr "Ključ nije ispravan - ili nije pronađen, ili je onemogućen" + +#, php-format +#~ msgctxt "Dashboard Warning" +#~ msgid "You need to update country files! Click %s to do it." +#~ msgstr "Morate ažurirati datoteke okruga. Kliknite %s da to uradite." + +#, php-format +#~ msgctxt "Dashboard Warning" +#~ msgid "You have no station locations. Click %s to do it:" +#~ msgstr "Nemate lokacije stanice. Kliknite %s da to uradite:" + +#, php-format +#~ msgctxt "Dashboard Warning" +#~ msgid "You have no station logbook. Click %s to do it:" +#~ msgstr "Nemate dnevnike stanice. Kliknite %s da to uradite:" + +#~ msgid "Status Master-Cron" +#~ msgstr "Status Master-Cron" + +#~ msgid "Winkey Macros" +#~ msgstr "Winkey makroi" + +#~ msgid "User logged in" +#~ msgstr "Korisnik je prijavljen" + +#~ msgid "" +#~ "If selected, Wavelog will try to import all QSO's of the ADIF, " +#~ "regardless if they match to the chosen station-location." +#~ msgstr "" +#~ "Ako je izabrano, Wavelog će pkušati da uveze sve QSO iz ADIF, bez " +#~ "obzira da li se poklapaju sa izabranom lokacijom stanice." diff --git a/application/locale/sr/index.html b/application/locale/sr/index.html new file mode 100644 index 000000000..67f2d8864 --- /dev/null +++ b/application/locale/sr/index.html @@ -0,0 +1,11 @@ + + + + 403 Forbidden + + + +

Directory access is forbidden.

+ + + diff --git a/application/locale/sv_SE/LC_MESSAGES/messages.mo b/application/locale/sv_SE/LC_MESSAGES/messages.mo index fa3941a90..2aa7d2487 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 adc04a22f..24e40856b 100644 --- a/application/locale/sv_SE/LC_MESSAGES/messages.po +++ b/application/locale/sv_SE/LC_MESSAGES/messages.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-09 07:24+0000\n" -"PO-Revision-Date: 2024-07-09 13:26+0000\n" +"POT-Creation-Date: 2024-09-07 07:18+0000\n" +"PO-Revision-Date: 2024-08-17 10:48+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Swedish \n" @@ -15,10 +15,104 @@ 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.6\n" +"X-Generator: Weblate 5.6.2\n" -#: application/controllers/Accumulated.php:21 -#: application/views/interface_assets/header.php:150 +#: application/controllers/Accumulated.php:12 +#: application/controllers/Activators.php:13 +#: application/controllers/Activatorsmap.php:13 +#: application/controllers/Adif.php:13 application/controllers/Awards.php:16 +#: application/controllers/Backup.php:13 application/controllers/Backup.php:26 +#: application/controllers/Backup.php:63 application/controllers/Band.php:15 +#: application/controllers/Bandmap.php:9 +#: application/controllers/Cabrillo.php:16 +#: application/controllers/Cabrillo.php:53 +#: application/controllers/Cabrillo.php:80 +#: application/controllers/Cabrillo.php:135 +#: application/controllers/Calltester.php:11 +#: application/controllers/Cfdexport.php:18 +#: application/controllers/Cfdexport.php:29 +#: application/controllers/Components.php:13 +#: application/controllers/Contestcalendar.php:15 +#: application/controllers/Contesting.php:14 +#: application/controllers/Cron.php:26 application/controllers/Cron.php:162 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: application/controllers/Distancerecords.php:11 +#: application/controllers/Distances.php:11 +#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29 +#: application/controllers/Dxatlas.php:51 +#: application/controllers/Dxatlas.php:108 +#: application/controllers/Dxcalendar.php:8 +#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23 +#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 +#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 +#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:353 +#: application/controllers/Eqsl.php:420 application/controllers/Eqsl.php:436 +#: application/controllers/Eqsl.php:497 application/controllers/Hamsat.php:13 +#: application/controllers/Kmlexport.php:18 +#: application/controllers/Kmlexport.php:33 +#: application/controllers/Labels.php:26 +#: application/controllers/Logbookadvanced.php:16 +#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 +#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 +#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 +#: application/controllers/Notes.php:10 application/controllers/Options.php:15 +#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 +#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 +#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 +#: application/controllers/Qso.php:9 application/controllers/Qso.php:19 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:600 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Reg1test.php:18 +#: application/controllers/Reg1test.php:63 +#: application/controllers/Reg1test.php:102 +#: application/controllers/Reg1test.php:130 +#: application/controllers/Reg1test.php:164 +#: application/controllers/Satellite.php:18 +#: application/controllers/Satellite.php:37 +#: application/controllers/Satellite.php:44 +#: application/controllers/Satellite.php:53 +#: application/controllers/Satellite.php:72 +#: application/controllers/Satellite.php:87 +#: application/controllers/Satellite.php:95 +#: application/controllers/Satellite.php:103 +#: application/controllers/Satellite.php:117 +#: application/controllers/Satellite.php:135 +#: application/controllers/Satellite.php:146 +#: application/controllers/Satellite.php:162 +#: application/controllers/Satellite.php:190 +#: application/controllers/Satellite.php:201 +#: application/controllers/Satellite.php:223 +#: application/controllers/Satellite.php:236 +#: application/controllers/Satellite.php:244 +#: application/controllers/Sattimers.php:9 +#: application/controllers/Search.php:13 +#: application/controllers/Simplefle.php:7 +#: application/controllers/Station.php:17 +#: application/controllers/Stationsetup.php:15 +#: application/controllers/Themes.php:17 +#: application/controllers/Timeline.php:10 +#: application/controllers/Timeplotter.php:11 +#: application/controllers/Update.php:24 application/controllers/Update.php:273 +#: application/controllers/Update.php:284 +#: application/controllers/Update.php:295 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 +#: application/controllers/User_options.php:9 +msgid "You're not allowed to do that!" +msgstr "" + +#: application/controllers/Accumulated.php:19 +#: application/views/interface_assets/header.php:152 msgid "Accumulated Statistics" msgstr "Ackumulerad statistik" @@ -28,24 +122,26 @@ msgid "Activated Gridsquare Map" msgstr "" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:910 -#: application/controllers/Awards.php:942 +#: application/controllers/Awards.php:919 +#: application/controllers/Awards.php:951 #: application/controllers/Gridmap.php:31 -#: application/controllers/Visitor.php:374 -#: application/views/activators/index.php:101 +#: application/controllers/Visitor.php:385 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: application/views/visitor/layout/footer.php:22 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "" #: application/controllers/Activated_gridmap.php:32 #: application/controllers/Gridmap.php:32 -#: application/controllers/Visitor.php:375 +#: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "Gridsquares bekräftad" #: application/controllers/Activated_gridmap.php:33 #: application/controllers/Gridmap.php:33 -#: application/controllers/Visitor.php:376 +#: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "Gridsquares inte bekräftat" @@ -54,12 +150,13 @@ msgid "Total gridsquares activated" msgstr "" #: application/controllers/Activators.php:20 -#: application/views/activators/index.php:2 +#: application/views/activators/index.php:5 #: application/views/interface_assets/header.php:142 msgid "Gridsquare Activators" msgstr "" #: application/controllers/Activatorsmap.php:17 +#: application/views/activators/index.php:2 msgid "Activators Map" msgstr "" @@ -76,7 +173,7 @@ msgid "ADIF Export" msgstr "" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:388 msgid "ADIF Import / Export" msgstr "" @@ -89,20 +186,25 @@ msgstr "" msgid "Unsupported Filetype" msgstr "" -#: application/controllers/Adif.php:245 +#: application/controllers/Adif.php:240 +#: application/views/adif/import_failed.php:12 +msgid "ADIF Import failed!" +msgstr "" + +#: application/controllers/Adif.php:254 msgid "Station Profile not valid for User" msgstr "" -#: application/controllers/Adif.php:252 +#: application/controllers/Adif.php:261 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "" -#: application/controllers/Adif.php:263 +#: application/controllers/Adif.php:272 msgid "DCL Import" msgstr "" -#: application/controllers/Adif.php:319 +#: application/controllers/Adif.php:328 msgid "DCL Data Imported" msgstr "" @@ -132,25 +234,8 @@ msgstr "" msgid "API Key %s has been deleted" msgstr "" -#: application/controllers/Api.php:118 -msgid "Key Disabled" -msgstr "" - -#: application/controllers/Api.php:118 -msgid "No Key Found" -msgstr "" - -#: application/controllers/Api.php:120 -msgid "Key Invalid - either not found or disabled" -msgstr "" - -#: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 -msgid "Valid" -msgstr "Giltig" - #: application/controllers/Awards.php:22 -#: application/views/interface_assets/header.php:158 +#: application/views/interface_assets/header.php:160 #: application/views/qso/edit_ajax.php:35 msgid "Awards" msgstr "" @@ -165,12 +250,13 @@ msgstr "" #: application/controllers/Awards.php:652 #: application/controllers/Awards.php:714 #: application/controllers/Awards.php:776 -#: application/controllers/Awards.php:847 -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:930 -#: application/controllers/Awards.php:1125 -#: application/controllers/Awards.php:1615 -#: application/controllers/Awards.php:1755 +#: application/controllers/Awards.php:856 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:939 +#: application/controllers/Awards.php:1140 +#: application/controllers/Awards.php:1639 +#: application/controllers/Awards.php:1779 +#: application/controllers/Awards.php:1908 #, php-format msgid "Awards - %s" msgstr "" @@ -178,13 +264,13 @@ msgstr "" #: application/controllers/Awards.php:92 #: application/views/awards/dok/index.php:149 #: application/views/bands/index.php:47 -#: application/views/contesting/index.php:170 -#: application/views/interface_assets/header.php:194 -#: application/views/logbookadvanced/index.php:613 +#: application/views/contesting/index.php:53 +#: application/views/interface_assets/header.php:198 +#: application/views/logbookadvanced/index.php:641 #: application/views/logbookadvanced/useroptions.php:130 -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:264 -#: application/views/qso/index.php:508 application/views/user/edit.php:603 -#: application/views/view_log/qso.php:351 +#: application/views/qso/edit_ajax.php:388 application/views/qso/index.php:264 +#: application/views/qso/index.php:518 application/views/user/edit.php:603 +#: application/views/view_log/qso.php:354 msgid "DOK" msgstr "" @@ -192,15 +278,15 @@ msgstr "" #: application/views/bandmap/list.php:112 application/views/bands/index.php:48 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 -#: application/views/interface_assets/header.php:164 +#: application/views/interface_assets/header.php:166 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:145 -#: application/views/logbookadvanced/index.php:580 +#: application/views/logbookadvanced/index.php:156 +#: application/views/logbookadvanced/index.php:608 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 -#: application/views/lotw_views/index.php:40 +#: application/views/lotw_views/index.php:36 #: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 #: application/views/search/cqzones_result.php:15 #: application/views/search/result.php:27 @@ -215,12 +301,12 @@ msgid "Awards - WAJA" msgstr "" #: application/controllers/Awards.php:327 application/views/bands/index.php:51 -#: application/views/interface_assets/header.php:210 +#: application/views/interface_assets/header.php:214 msgid "JCC" msgstr "" #: application/controllers/Awards.php:375 application/views/bands/index.php:57 -#: application/views/interface_assets/header.php:170 +#: application/views/interface_assets/header.php:172 msgid "VUCC" msgstr "" @@ -229,15 +315,20 @@ msgid "Log View - VUCC" msgstr "" #: application/controllers/Awards.php:453 -#: application/controllers/Timeline.php:92 -#: application/controllers/Timeline.php:95 -#: application/controllers/Timeline.php:98 -#: application/controllers/Timeline.php:101 -#: application/controllers/Timeline.php:104 -#: application/controllers/Timeline.php:107 +#: application/controllers/Distancerecords.php:59 +#: application/controllers/Timeline.php:105 +#: application/controllers/Timeline.php:108 +#: application/controllers/Timeline.php:111 +#: application/controllers/Timeline.php:114 +#: application/controllers/Timeline.php:117 +#: application/controllers/Timeline.php:120 msgid "Log View" msgstr "" +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr "" + #: application/controllers/Awards.php:457 msgid " and sat " msgstr "" @@ -259,12 +350,12 @@ msgid " and " msgstr "" #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1289 #: application/views/awards/index.php:8 application/views/bands/index.php:55 #: application/views/dashboard/index.php:9 -#: application/views/interface_assets/header.php:178 -#: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:259 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -272,10 +363,10 @@ msgstr "" #: application/views/qslcard/searchresult.php:49 #: application/views/qslcard/searchresult.php:65 #: application/views/qslcard/searchresult.php:81 -#: application/views/qso/components/previous_contacts.php:83 -#: application/views/qso/edit_ajax.php:336 +#: application/views/qso/components/previous_contacts.php:82 +#: application/views/qso/edit_ajax.php:363 #: application/views/search/search_result_ajax.php:9 -#: application/views/station_profile/edit.php:216 +#: application/views/station_profile/edit.php:243 #: application/views/user/edit.php:234 application/views/user/edit.php:256 #: application/views/user/edit.php:278 application/views/user/edit.php:300 #: application/views/user/edit.php:323 @@ -285,18 +376,18 @@ msgid "SOTA" msgstr "" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1290 #: application/views/bands/index.php:60 #: application/views/dashboard/index.php:10 -#: application/views/interface_assets/header.php:172 -#: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:279 +#: application/views/interface_assets/header.php:176 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/index.php:290 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 -#: application/views/qso/components/previous_contacts.php:84 -#: application/views/qso/edit_ajax.php:341 +#: application/views/qso/components/previous_contacts.php:83 +#: application/views/qso/edit_ajax.php:368 #: application/views/search/search_result_ajax.php:10 -#: application/views/station_profile/edit.php:229 +#: application/views/station_profile/edit.php:256 #: application/views/user/edit.php:235 application/views/user/edit.php:257 #: application/views/user/edit.php:279 application/views/user/edit.php:301 #: application/views/user/edit.php:324 @@ -305,18 +396,18 @@ msgid "WWFF" msgstr "" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1291 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 -#: application/views/interface_assets/header.php:182 +#: application/views/interface_assets/header.php:186 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:274 +#: application/views/logbookadvanced/index.php:623 #: application/views/logbookadvanced/useroptions.php:106 -#: application/views/qso/components/previous_contacts.php:85 -#: application/views/qso/edit_ajax.php:346 +#: application/views/qso/components/previous_contacts.php:84 +#: application/views/qso/edit_ajax.php:373 #: application/views/search/search_result_ajax.php:11 -#: application/views/station_profile/edit.php:242 +#: application/views/station_profile/edit.php:269 #: application/views/user/edit.php:236 application/views/user/edit.php:258 #: application/views/user/edit.php:280 application/views/user/edit.php:302 #: application/views/user/edit.php:325 @@ -335,7 +426,7 @@ msgid "Worked All States (WAS)" msgstr "" #: application/controllers/Awards.php:714 application/views/bands/index.php:53 -#: application/views/interface_assets/header.php:188 +#: application/views/interface_assets/header.php:192 msgid "RAC" msgstr "" @@ -343,74 +434,80 @@ msgstr "" msgid "H26" msgstr "" -#: application/controllers/Awards.php:847 +#: application/controllers/Awards.php:856 msgid "IOTA (Island On The Air)" msgstr "" -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:872 -#: application/views/interface_assets/header.php:230 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 +#: application/views/interface_assets/header.php:234 msgid "US Counties" msgstr "" -#: application/controllers/Awards.php:887 +#: application/controllers/Awards.php:896 msgid "Log View - Counties" msgstr "" -#: application/controllers/Awards.php:894 +#: application/controllers/Awards.php:903 msgid "Awards - " msgstr "" -#: application/controllers/Awards.php:911 -#: application/controllers/Awards.php:943 +#: application/controllers/Awards.php:920 +#: application/controllers/Awards.php:952 msgid "Gridsquares worked" msgstr "" -#: application/controllers/Awards.php:912 -#: application/controllers/Awards.php:944 +#: application/controllers/Awards.php:921 +#: application/controllers/Awards.php:953 msgid "Gridsquares confirmed on LoTW" msgstr "" -#: application/controllers/Awards.php:913 -#: application/controllers/Awards.php:945 +#: application/controllers/Awards.php:922 +#: application/controllers/Awards.php:954 msgid "Gridsquares confirmed by paper QSL" msgstr "" -#: application/controllers/Awards.php:930 +#: application/controllers/Awards.php:939 msgid "Fred Fish Memorial Award (FFMA)" msgstr "" -#: application/controllers/Awards.php:1125 -#: application/views/interface_assets/header.php:168 +#: application/controllers/Awards.php:1140 +#: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "" -#: application/controllers/Awards.php:1143 +#: application/controllers/Awards.php:1158 msgid "Awards - SIG - " msgstr "" -#: application/controllers/Awards.php:1755 -#: application/views/awards/itu/index.php:18 +#: application/controllers/Awards.php:1779 +#: application/views/awards/itu/index.php:20 msgid "ITU Zones" msgstr "" +#: application/controllers/Awards.php:1908 +#: application/views/awards/wac/index.php:8 +#: application/views/interface_assets/header.php:174 +msgid "Worked All Continents (WAC)" +msgstr "" + #: application/controllers/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:284 msgid "Backup" msgstr "" -#: application/controllers/Backup.php:48 +#: application/controllers/Backup.php:50 msgid "ADIF - Backup" msgstr "" -#: application/controllers/Backup.php:80 +#: application/controllers/Backup.php:84 msgid "Notes - Backup" msgstr "" #: application/controllers/Band.php:25 application/views/bands/index.php:28 #: application/views/bands/index.php:32 -#: application/views/interface_assets/header.php:379 +#: application/views/interface_assets/header.php:383 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -426,8 +523,8 @@ msgstr "" #: application/controllers/Bandmap.php:28 #: application/controllers/Bandmap.php:69 -#: application/controllers/Options.php:137 -#: application/controllers/Options.php:148 +#: application/controllers/Options.php:145 +#: application/controllers/Options.php:156 #: application/views/options/sidebar.php:10 msgid "DXCluster" msgstr "" @@ -437,7 +534,7 @@ msgid "Export Cabrillo" msgstr "" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:396 +#: application/views/interface_assets/header.php:402 msgid "CFD Export" msgstr "" @@ -454,7 +551,7 @@ msgid "No user has configured Clublog." msgstr "" #: application/controllers/Contestcalendar.php:19 -#: application/views/interface_assets/header.php:247 +#: application/views/interface_assets/header.php:251 msgid "Contest Calendar" msgstr "" @@ -463,38 +560,62 @@ msgstr "" msgid "Contest Logging" msgstr "Contest-loggning" -#: application/controllers/Contesting.php:112 -#: application/views/interface_assets/header.php:274 +#: application/controllers/Contesting.php:113 +#: application/views/interface_assets/header.php:278 msgid "Contests" msgstr "Tävlingar" -#: application/controllers/Contesting.php:126 +#: application/controllers/Contesting.php:127 msgid "Update Contest" msgstr "" #: application/controllers/Continents.php:25 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:57 -#: application/views/interface_assets/header.php:154 +#: application/views/interface_assets/header.php:156 msgid "Continents" msgstr "Kontinenter" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:284 +#: application/views/interface_assets/header.php:288 msgid "Cron Manager" msgstr "" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:154 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "" +#: application/controllers/Cron.php:274 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:278 +#, php-format +msgid "" +"Last run occurred more than %s seconds ago.%sPlease check your master cron! " +"It should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:281 +#, php-format +msgid "" +"Last run occurred more than %s minutes ago.%sSeems like your Mastercron " +"isn't running!%sIt should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:286 application/views/cron/index.php:29 +msgctxt "Master Cron" +msgid "Not running" +msgstr "" + #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:392 +#: application/views/interface_assets/header.php:396 msgid "SOTA CSV Export" msgstr "" -#: application/controllers/Dashboard.php:108 -#: application/controllers/Visitor.php:132 +#: application/controllers/Dashboard.php:123 +#: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "" @@ -541,6 +662,12 @@ msgstr "" msgid "File Migration failed. Please check the Error Log." msgstr "" +#: application/controllers/Distancerecords.php:42 +#: application/controllers/Distancerecords.php:59 +#: application/views/interface_assets/header.php:146 +msgid "Satellite Distance Records" +msgstr "" + #: application/controllers/Distances.php:17 #: application/views/distances/index.php:5 #: application/views/distances/index.php:8 @@ -548,27 +675,31 @@ msgstr "" msgid "Distances Worked" msgstr "Arbetade avstånd" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 #: application/views/distances/index.php:15 msgid "QSOs with" msgstr "" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 msgid "and band" msgstr "" +#: application/controllers/Distances.php:83 +msgid "and propagation" +msgstr "" + #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:394 msgid "DX Atlas Gridsquare Export" msgstr "" #: application/controllers/Dxcalendar.php:10 -#: application/views/interface_assets/header.php:245 +#: application/views/interface_assets/header.php:249 msgid "DX Calendar" msgstr "" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:325 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -586,19 +717,19 @@ msgstr "" msgid "eQSL QSO Upload" msgstr "" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:424 msgid "eQSL Tools" msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid " / Errors: " msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid "Successfully downloaded: " msgstr "" -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:481 msgid "eQSL Card Image Download" msgstr "" @@ -608,7 +739,7 @@ msgid "Gridsquare Map" msgstr "Gridsquare karta" #: application/controllers/Gridmap.php:34 -#: application/controllers/Visitor.php:377 +#: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "Totala gridsquares arbetade" @@ -628,7 +759,7 @@ msgid "No QSOs found to upload." msgstr "" #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:392 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "" @@ -641,59 +772,59 @@ msgstr "" msgid "Create Label Type" msgstr "" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:402 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:406 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:403 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:407 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 #: application/views/labels/index.php:76 msgid "Paper Type" msgstr "" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:404 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:408 #: application/views/labels/index.php:42 application/views/labels/index.php:77 msgid "Measurement" msgstr "" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:405 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:409 msgid "Top Margin" msgstr "" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:406 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:410 msgid "Left Margin" msgstr "" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:407 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:411 msgid "QSLs Horizontally" msgstr "" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:408 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:412 msgid "QSLs Vertically" msgstr "" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:409 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:413 msgid "Horizontal Space" msgstr "" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:410 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:414 msgid "Vertical Space" msgstr "" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:411 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:415 msgid "Label width" msgstr "" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:412 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:416 msgid "Label height" msgstr "" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:413 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:417 msgid "Size of Font" msgstr "" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:414 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:418 msgid "Number of QSOs on label" msgstr "" @@ -702,22 +833,22 @@ msgid "Create Paper Type" msgstr "" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:461 +#: application/controllers/Labels.php:465 msgid "Paper Name" msgstr "" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:462 +#: application/controllers/Labels.php:466 msgid "Paper Width" msgstr "" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:463 +#: application/controllers/Labels.php:467 msgid "Paper Height" msgstr "" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:471 +#: application/controllers/Labels.php:475 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -744,27 +875,27 @@ msgstr "" msgid "0 QSOs found for print!" msgstr "" -#: application/controllers/Labels.php:391 +#: application/controllers/Labels.php:395 msgid "Edit Label" msgstr "" -#: application/controllers/Labels.php:420 +#: application/controllers/Labels.php:424 msgid "Label was saved." msgstr "" -#: application/controllers/Labels.php:428 +#: application/controllers/Labels.php:432 msgid "Label was deleted." msgstr "" -#: application/controllers/Labels.php:450 +#: application/controllers/Labels.php:454 msgid "Edit Paper" msgstr "" -#: application/controllers/Labels.php:475 +#: application/controllers/Labels.php:479 msgid "Paper was saved." msgstr "" -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "Paper was deleted." msgstr "" @@ -788,20 +919,20 @@ msgstr "Stationsloggböcker" msgid "Logbook" msgstr "Loggbok" -#: application/controllers/Logbook.php:653 -#: application/controllers/Logbook.php:668 +#: application/controllers/Logbook.php:657 +#: application/controllers/Logbook.php:672 #: application/views/activated_gridmap/index.php:58 #: application/views/awards/dok/index.php:55 #: application/views/awards/dxcc/index.php:61 -#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/helvetia/index.php:55 #: application/views/awards/jcc/index.php:52 -#: application/views/awards/rac/index.php:45 +#: application/views/awards/rac/index.php:47 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:72 -#: application/views/awards/waja/index.php:53 -#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:55 +#: application/views/awards/was/index.php:55 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:568 +#: application/views/logbookadvanced/index.php:596 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -814,20 +945,21 @@ msgstr "Loggbok" msgid "QSL" msgstr "" -#: application/controllers/Logbook.php:656 +#: application/controllers/Logbook.php:660 #: application/views/activated_gridmap/index.php:66 -#: application/views/awards/cq/index.php:58 +#: application/views/awards/cq/index.php:60 #: application/views/awards/dok/index.php:59 #: application/views/awards/dxcc/index.php:65 -#: application/views/awards/helvetia/index.php:57 -#: application/views/awards/itu/index.php:58 +#: application/views/awards/helvetia/index.php:59 +#: application/views/awards/itu/index.php:60 #: application/views/awards/jcc/index.php:56 -#: application/views/awards/rac/index.php:49 +#: application/views/awards/rac/index.php:51 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:80 -#: application/views/awards/waja/index.php:57 -#: application/views/awards/was/index.php:57 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -835,28 +967,29 @@ msgstr "" #: application/views/qslprint/qsolist.php:21 #: application/views/qslprint/qsolist.php:167 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:384 +#: application/views/qso/edit_ajax.php:411 #: application/views/search/result_search.php:22 #: application/views/search/search_result_ajax.php:298 #: application/views/search/search_result_ajax.php:313 #: application/views/timeline/index.php:60 application/views/user/edit.php:563 -#: application/views/user/edit.php:659 application/views/view_log/qso.php:408 +#: application/views/user/edit.php:659 application/views/view_log/qso.php:411 msgid "LoTW" msgstr "" -#: application/controllers/Logbook.php:659 +#: application/controllers/Logbook.php:663 #: application/views/activated_gridmap/index.php:74 -#: application/views/awards/cq/index.php:62 +#: application/views/awards/cq/index.php:64 #: application/views/awards/dok/index.php:63 #: application/views/awards/dxcc/index.php:69 -#: application/views/awards/helvetia/index.php:61 -#: application/views/awards/itu/index.php:62 +#: application/views/awards/helvetia/index.php:63 +#: application/views/awards/itu/index.php:64 #: application/views/awards/jcc/index.php:60 -#: application/views/awards/rac/index.php:53 +#: application/views/awards/rac/index.php:55 #: application/views/awards/wab/index.php:88 -#: application/views/awards/waja/index.php:61 -#: application/views/awards/was/index.php:61 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:52 +#: application/views/awards/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:117 #: application/views/logbookadvanced/useroptions.php:70 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 @@ -864,63 +997,67 @@ msgstr "" #: application/views/qslprint/qsolist.php:18 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:151 -#: application/views/qso/edit_ajax.php:381 +#: application/views/qso/edit_ajax.php:408 #: application/views/search/result_search.php:16 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:273 -#: application/views/station_profile/edit.php:278 +#: application/views/station_profile/edit.php:305 #: application/views/timeline/index.php:64 application/views/user/edit.php:564 #: application/views/user/edit.php:667 application/views/user/edit.php:731 msgid "eQSL" msgstr "" -#: application/controllers/Logbook.php:665 +#: application/controllers/Logbook.php:669 #: application/views/awards/dok/index.php:71 #: application/views/awards/dxcc/index.php:77 #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 -#: application/views/awards/waja/index.php:69 +#: application/views/awards/waja/index.php:71 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 -#: application/views/station_profile/edit.php:325 +#: application/views/station_profile/edit.php:352 +#: application/views/timeline/index.php:68 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 -#: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/partial/log_ajax.php:85 +#: application/views/view_log/qso.php:426 msgid "Clublog" msgstr "" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1284 #: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:39 #: application/views/adif/dcl_success.php:33 -#: application/views/awards/cq/index.php:86 +#: application/views/awards/cq/index.php:88 #: application/views/awards/dok/index.php:91 #: application/views/awards/dxcc/index.php:162 -#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/helvetia/index.php:87 #: application/views/awards/iota/index.php:105 -#: application/views/awards/itu/index.php:86 +#: application/views/awards/itu/index.php:88 #: application/views/awards/jcc/index.php:88 -#: application/views/awards/rac/index.php:77 +#: application/views/awards/rac/index.php:79 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:53 -#: application/views/awards/waja/index.php:89 -#: application/views/awards/was/index.php:85 +#: application/views/awards/wac/index.php:110 +#: application/views/awards/waja/index.php:91 +#: application/views/awards/was/index.php:87 #: application/views/components/hamsat/table.php:30 -#: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:203 +#: application/views/contesting/index.php:108 +#: application/views/contesting/index.php:250 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 +#: 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/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:170 -#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/index.php:181 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -937,14 +1074,14 @@ msgstr "" #: application/views/qslcard/searchresult.php:76 #: application/views/qslprint/qslprint.php:24 #: application/views/qslprint/qsolist.php:9 -#: application/views/qso/components/previous_contacts.php:78 +#: application/views/qso/components/previous_contacts.php:77 #: application/views/qso/edit_ajax.php:119 application/views/qso/index.php:136 #: application/views/satellite/index.php:24 #: application/views/search/cqzones_result.php:10 #: application/views/search/lotw_unconfirmed_result.php:8 #: application/views/search/result_search.php:7 #: application/views/search/search_result_ajax.php:4 -#: application/views/simplefle/index.php:144 +#: application/views/simplefle/index.php:150 #: application/views/statistics/custom.php:60 #: application/views/statistics/custom_result.php:62 #: application/views/statistics/custom_result.php:88 @@ -956,17 +1093,17 @@ msgstr "" #: application/views/user/edit.php:295 application/views/user/edit.php:318 #: application/views/view_log/partial/log.php:9 #: application/views/view_log/partial/log_ajax.php:4 -#: application/views/view_log/qso.php:104 application/views/visitor/index.php:6 +#: application/views/view_log/qso.php:107 application/views/visitor/index.php:6 #: application/views/widgets/qsos.php:29 msgid "Mode" msgstr "" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1285 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:111 -#: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:547 +#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:251 +#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -975,25 +1112,25 @@ msgstr "" #: application/views/qslcard/searchresult.php:77 #: application/views/qslprint/qslprint.php:26 #: application/views/qslprint/qsolist.php:11 -#: application/views/qso/components/previous_contacts.php:79 +#: application/views/qso/components/previous_contacts.php:78 #: application/views/qso/edit_ajax.php:142 application/views/qso/index.php:177 #: application/views/search/search_result_ajax.php:5 -#: application/views/simplefle/index.php:145 +#: application/views/simplefle/index.php:151 #: application/views/user/edit.php:230 application/views/user/edit.php:252 #: application/views/user/edit.php:274 application/views/user/edit.php:296 #: application/views/user/edit.php:319 #: application/views/view_log/partial/log.php:10 #: application/views/view_log/partial/log_ajax.php:5 -#: application/views/view_log/qso.php:109 application/views/visitor/index.php:9 +#: application/views/view_log/qso.php:112 application/views/visitor/index.php:9 msgid "RST (S)" msgstr "" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1286 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:550 +#: application/views/contesting/index.php:189 +#: application/views/contesting/index.php:252 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1002,51 +1139,50 @@ msgstr "" #: application/views/qslcard/searchresult.php:78 #: application/views/qslprint/qslprint.php:27 #: application/views/qslprint/qsolist.php:12 -#: application/views/qso/components/previous_contacts.php:80 +#: application/views/qso/components/previous_contacts.php:79 #: application/views/qso/edit_ajax.php:147 application/views/qso/index.php:182 #: application/views/search/search_result_ajax.php:6 -#: application/views/simplefle/index.php:146 +#: application/views/simplefle/index.php:152 #: application/views/user/edit.php:231 application/views/user/edit.php:253 #: application/views/user/edit.php:275 application/views/user/edit.php:297 #: application/views/user/edit.php:320 #: application/views/view_log/partial/log.php:11 #: application/views/view_log/partial/log_ajax.php:6 -#: application/views/view_log/qso.php:114 +#: application/views/view_log/qso.php:117 #: application/views/visitor/index.php:12 msgid "RST (R)" msgstr "" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1287 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 #: application/views/qslcard/searchresult.php:47 #: application/views/qslcard/searchresult.php:63 #: application/views/qslcard/searchresult.php:79 -#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/components/previous_contacts.php:80 #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 -#: application/views/station_profile/index.php:43 #: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 -#: application/views/timeline/index.php:118 application/views/user/edit.php:232 +#: application/views/timeline/index.php:151 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 #: application/views/user/edit.php:298 application/views/user/edit.php:321 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:235 -#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:238 +#: application/views/view_log/qso.php:531 #: application/views/visitor/index.php:15 msgid "Country" msgstr "Land" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1288 #: application/views/awards/iota/index.php:169 #: application/views/bands/index.php:50 application/views/dashboard/index.php:8 -#: application/views/interface_assets/header.php:180 +#: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1055,11 +1191,11 @@ msgstr "Land" #: application/views/qslcard/searchresult.php:48 #: application/views/qslcard/searchresult.php:64 #: application/views/qslcard/searchresult.php:80 -#: application/views/qso/components/previous_contacts.php:82 -#: application/views/qso/edit_ajax.php:318 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 -#: application/views/timeline/index.php:202 application/views/user/edit.php:233 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:235 application/views/user/edit.php:233 #: application/views/user/edit.php:255 application/views/user/edit.php:277 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/view_log/partial/log_ajax.php:8 @@ -1067,17 +1203,17 @@ msgstr "Land" msgid "IOTA" msgstr "" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1292 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:20 -#: application/views/awards/rac/index.php:141 -#: application/views/awards/was/index.php:149 -#: application/views/contesting/index.php:173 +#: application/views/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 +#: application/views/contesting/index.php:56 #: application/views/dashboard/index.php:12 -#: application/views/logbookadvanced/edit.php:20 -#: application/views/logbookadvanced/edit.php:64 -#: application/views/logbookadvanced/index.php:162 -#: application/views/logbookadvanced/index.php:583 +#: application/views/logbookadvanced/edit.php:21 +#: application/views/logbookadvanced/edit.php:66 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:611 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1085,9 +1221,9 @@ msgstr "" #: application/views/qslcard/searchresult.php:50 #: application/views/qslcard/searchresult.php:66 #: application/views/qslcard/searchresult.php:82 -#: application/views/qso/components/previous_contacts.php:86 +#: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 -#: application/views/timeline/index.php:177 application/views/user/edit.php:237 +#: application/views/timeline/index.php:210 application/views/user/edit.php:237 #: application/views/user/edit.php:259 application/views/user/edit.php:281 #: application/views/user/edit.php:303 application/views/user/edit.php:326 #: application/views/view_log/partial/log_ajax.php:12 @@ -1095,20 +1231,21 @@ msgstr "" msgid "State" msgstr "" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1293 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:17 -#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:13 +#: application/views/distancerecords/index.php:20 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:166 -#: application/views/logbookadvanced/index.php:556 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1117,38 +1254,39 @@ msgstr "" #: application/views/qslcard/searchresult.php:51 #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 -#: application/views/qso/components/previous_contacts.php:87 +#: application/views/qso/components/previous_contacts.php:86 #: application/views/qso/edit_ajax.php:156 application/views/qso/index.php:279 +#: application/views/satellite/pass.php:28 #: application/views/search/cqzones_result.php:12 #: application/views/search/result.php:33 #: application/views/search/search_result_ajax.php:13 -#: application/views/simplefle/index.php:147 -#: application/views/station_profile/index.php:44 +#: application/views/simplefle/index.php:153 #: application/views/stationsetup/stationsetup.php:125 -#: application/views/timeline/index.php:257 application/views/user/edit.php:130 +#: application/views/timeline/index.php:290 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 #: application/views/user/edit.php:327 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:518 #: application/views/visitor/index.php:27 msgid "Gridsquare" msgstr "" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1294 #: application/views/activated_gridmap/index.php:108 #: application/views/awards/ffma/index.php:36 #: application/views/awards/gridmaster/index.php:35 #: 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/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/index.php:12 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 #: application/views/qslcard/searchresult.php:52 #: application/views/qslcard/searchresult.php:68 #: application/views/qslcard/searchresult.php:84 -#: application/views/qso/components/previous_contacts.php:88 +#: application/views/qso/components/previous_contacts.php:87 #: application/views/search/search_result_ajax.php:14 #: application/views/user/edit.php:239 application/views/user/edit.php:261 #: application/views/user/edit.php:283 application/views/user/edit.php:305 @@ -1158,32 +1296,33 @@ msgstr "" msgid "Distance" msgstr "" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1295 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:8 -#: application/views/activators/index.php:7 +#: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 -#: application/views/awards/cq/index.php:72 +#: application/views/awards/cq/index.php:74 #: application/views/awards/dok/index.php:77 #: application/views/awards/dxcc/index.php:117 -#: application/views/awards/helvetia/index.php:71 +#: application/views/awards/helvetia/index.php:73 #: application/views/awards/iota/index.php:91 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:74 #: application/views/awards/jcc/index.php:74 #: application/views/awards/pota/index.php:35 -#: application/views/awards/rac/index.php:63 +#: application/views/awards/rac/index.php:65 #: application/views/awards/sig/qso_list.php:13 #: application/views/awards/sota/index.php:26 #: application/views/awards/vucc/index.php:21 #: application/views/awards/wab/index.php:22 -#: application/views/awards/waja/index.php:75 -#: application/views/awards/was/index.php:71 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/waja/index.php:77 +#: application/views/awards/was/index.php:73 #: application/views/awards/wwff/index.php:35 #: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:45 -#: application/views/contesting/index.php:70 -#: application/views/contesting/index.php:202 +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:249 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:549 application/views/dxatlas/index.php:31 @@ -1191,8 +1330,8 @@ msgstr "" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1210,13 +1349,13 @@ msgstr "" #: application/views/qslmanagement/index.php:24 #: application/views/qslprint/qslprint.php:25 #: application/views/qslprint/qsolist.php:10 -#: application/views/qso/components/previous_contacts.php:89 +#: application/views/qso/components/previous_contacts.php:88 #: application/views/qso/edit_ajax.php:83 application/views/qso/index.php:151 #: application/views/search/cqzones_result.php:11 #: application/views/search/lotw_unconfirmed_result.php:9 #: application/views/search/result_search.php:10 #: application/views/search/search_result_ajax.php:15 -#: application/views/simplefle/index.php:143 +#: application/views/simplefle/index.php:149 #: application/views/stationsetup/exportmapoptions.php:31 #: application/views/statistics/custom.php:53 #: application/views/statistics/custom_result.php:55 @@ -1234,72 +1373,71 @@ msgstr "" msgid "Band" msgstr "" -#: application/controllers/Logbook.php:1285 +#: application/controllers/Logbook.php:1296 #: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 -#: application/views/contesting/index.php:87 +#: application/views/contesting/index.php:138 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 #: application/views/qslcard/searchresult.php:70 #: application/views/qslcard/searchresult.php:86 -#: application/views/qso/components/previous_contacts.php:90 +#: application/views/qso/components/previous_contacts.php:89 #: application/views/qso/edit_ajax.php:71 application/views/qso/index.php:169 #: application/views/search/search_result_ajax.php:16 #: application/views/user/edit.php:228 application/views/user/edit.php:250 #: application/views/user/edit.php:272 application/views/user/edit.php:294 #: application/views/user/edit.php:317 #: application/views/view_log/partial/log_ajax.php:16 -#: application/views/view_log/qso.php:93 application/views/visitor/index.php:36 +#: application/views/view_log/qso.php:94 application/views/visitor/index.php:36 msgid "Frequency" msgstr "Frekvens" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1297 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:283 -#: application/views/logbookadvanced/index.php:598 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:626 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 #: application/views/qslcard/searchresult.php:87 -#: application/views/qso/components/previous_contacts.php:91 +#: application/views/qso/components/previous_contacts.php:90 #: application/views/search/search_result_ajax.php:17 #: application/views/simplefle/index.php:112 #: application/views/user/edit.php:240 application/views/user/edit.php:262 #: application/views/user/edit.php:284 application/views/user/edit.php:306 #: application/views/user/edit.php:329 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:538 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "Operatör" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1318 #: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:669 +#: application/views/interface_assets/footer.php:675 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:154 +#: application/views/logbookadvanced/index.php:165 #: application/views/lookup/index.php:31 -#: application/views/lotw_views/index.php:56 +#: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 #: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 -#: application/views/station_profile/create.php:73 -#: application/views/station_profile/edit.php:78 -#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 #: application/views/stationsetup/stationsetup.php:150 -#: application/views/timeline/index.php:134 +#: application/views/timeline/index.php:167 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 -#: application/views/view_log/qso.php:236 -#: application/views/view_log/qso.php:529 +#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:532 msgid "Deleted DXCC" msgstr "Struket DXCC" @@ -1313,7 +1451,7 @@ msgstr "" #: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83 #: application/controllers/Lotw.php:125 application/views/adif/import.php:27 -#: application/views/interface_assets/header.php:423 +#: application/views/interface_assets/header.php:429 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1321,28 +1459,55 @@ msgstr "" msgid "Logbook of the World" msgstr "" -#: application/controllers/Lotw.php:610 +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "" + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "" + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "" + +#: application/controllers/Lotw.php:413 +#, 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:617 msgid "LoTW ADIF Information" msgstr "" -#: application/controllers/Lotw.php:718 +#: application/controllers/Lotw.php:725 msgid "LoTW ADIF Import" msgstr "" -#: application/controllers/Lotw.php:830 +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "" + +#: application/controllers/Lotw.php:837 msgid "LoTW .TQ8 Upload" msgstr "" -#: application/controllers/Lotw.php:927 application/controllers/Lotw.php:932 +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "" + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 msgid "LoTW .TQ8 Sent" msgstr "" -#: application/controllers/Lotw.php:939 +#: application/controllers/Lotw.php:946 msgid "LoTW .TQ8 Not Sent" msgstr "" #: application/controllers/Mode.php:25 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:276 #: application/views/mode/index.php:15 msgid "Modes" msgstr "" @@ -1351,28 +1516,28 @@ msgstr "" msgid "Edit Mode" msgstr "" -#: application/controllers/Notes.php:19 +#: application/controllers/Notes.php:18 #: application/views/interface_assets/header.php:128 #: application/views/notes/add.php:9 application/views/notes/edit.php:10 #: application/views/notes/main.php:5 application/views/notes/main.php:8 #: application/views/notes/view.php:6 application/views/notes/view.php:9 #: application/views/qso/edit_ajax.php:36 -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:38 -#: application/views/qso/index.php:541 application/views/qso/index.php:586 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:590 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:38 +#: application/views/qso/index.php:563 application/views/qso/index.php:608 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:593 msgid "Notes" msgstr "Anteckningar" -#: application/controllers/Notes.php:38 +#: application/controllers/Notes.php:37 msgid "Add Notes" msgstr "" -#: application/controllers/Notes.php:58 +#: application/controllers/Notes.php:64 #: application/views/oqrs/showrequests.php:88 msgid "Note" msgstr "" -#: application/controllers/Notes.php:79 application/views/notes/edit.php:7 +#: application/controllers/Notes.php:92 application/views/notes/edit.php:7 #: application/views/notes/view.php:19 msgid "Edit Note" msgstr "Redigera anteckningar" @@ -1380,16 +1545,16 @@ msgstr "Redigera anteckningar" #: application/controllers/Options.php:31 #: application/controllers/Options.php:41 #: application/controllers/Options.php:56 -#: application/controllers/Options.php:136 -#: application/controllers/Options.php:147 -#: application/controllers/Options.php:184 -#: application/controllers/Options.php:195 -#: application/controllers/Options.php:228 -#: application/controllers/Options.php:239 -#: application/controllers/Options.php:309 -#: application/controllers/Options.php:319 -#: application/controllers/Options.php:387 -#: application/controllers/Options.php:397 +#: application/controllers/Options.php:144 +#: application/controllers/Options.php:155 +#: application/controllers/Options.php:192 +#: application/controllers/Options.php:203 +#: application/controllers/Options.php:236 +#: application/controllers/Options.php:247 +#: application/controllers/Options.php:317 +#: application/controllers/Options.php:327 +#: application/controllers/Options.php:395 +#: application/controllers/Options.php:405 msgid "Wavelog Options" msgstr "Wavelog-alternativ" @@ -1406,95 +1571,96 @@ msgstr "Utseende" #: application/controllers/Options.php:110 #: application/controllers/Options.php:118 #: application/controllers/Options.php:126 +#: application/controllers/Options.php:134 msgid "Options saved" msgstr "" -#: application/controllers/Options.php:165 +#: application/controllers/Options.php:173 msgid "de continent changed to " msgstr "kontinenten ändrats till " -#: application/controllers/Options.php:170 +#: application/controllers/Options.php:178 msgid "Maximum age of spots changed to " msgstr "Maximal ålder för fläckar ändrad till " -#: application/controllers/Options.php:175 +#: application/controllers/Options.php:183 msgid "DXCluster Cache URL changed to " msgstr "DXCluster Cache URL ändrad till " -#: application/controllers/Options.php:185 -#: application/controllers/Options.php:196 +#: application/controllers/Options.php:193 +#: application/controllers/Options.php:204 msgid "Radio Settings" msgstr "Radioinställningar" -#: application/controllers/Options.php:217 +#: application/controllers/Options.php:225 msgid "Radio Timeout Warning changed to " msgstr "Radio Timeout Warning ändras till " -#: application/controllers/Options.php:229 -#: application/controllers/Options.php:240 +#: application/controllers/Options.php:237 +#: application/controllers/Options.php:248 #: application/views/options/sidebar.php:6 msgid "Email" msgstr "E-post" -#: application/controllers/Options.php:297 +#: application/controllers/Options.php:305 msgid "The settings were saved successfully." msgstr "" -#: application/controllers/Options.php:299 +#: application/controllers/Options.php:307 msgid "Something went wrong with saving the settings. Try again." msgstr "" -#: application/controllers/Options.php:310 -#: application/controllers/Options.php:320 +#: application/controllers/Options.php:318 +#: application/controllers/Options.php:328 #: application/views/options/sidebar.php:8 msgid "OQRS Options" msgstr "OQRS Alternativ" -#: application/controllers/Options.php:333 +#: application/controllers/Options.php:341 msgid "OQRS options have been saved." msgstr "OQRS-alternativ har sparats." -#: application/controllers/Options.php:373 -#: application/controllers/Options.php:378 +#: application/controllers/Options.php:381 +#: application/controllers/Options.php:386 msgid "Testmail failed. Something went wrong." msgstr "" -#: application/controllers/Options.php:375 +#: application/controllers/Options.php:383 msgid "Testmail sent. Email settings seem to be correct." msgstr "" -#: application/controllers/Options.php:388 -#: application/controllers/Options.php:398 +#: application/controllers/Options.php:396 +#: application/controllers/Options.php:406 msgid "Version Info Settings" msgstr "" -#: application/controllers/Options.php:404 +#: application/controllers/Options.php:412 msgid "Version Info Header changed to" msgstr "" -#: application/controllers/Options.php:408 +#: application/controllers/Options.php:416 msgid "Version Info Mode changed to" msgstr "" -#: application/controllers/Options.php:413 +#: application/controllers/Options.php:421 msgid "Version Info Custom Text saved!" msgstr "" -#: application/controllers/Options.php:424 +#: application/controllers/Options.php:432 msgid "Version Info will be shown to all users again" msgstr "" -#: application/controllers/Options.php:432 +#: application/controllers/Options.php:440 msgid "Version Info will not be shown to any user" msgstr "" -#: application/controllers/Oqrs.php:22 application/controllers/Oqrs.php:61 -#: application/controllers/Oqrs.php:73 +#: application/controllers/Oqrs.php:46 application/controllers/Oqrs.php:85 +#: application/controllers/Oqrs.php:97 msgid "Log Search & OQRS" msgstr "" -#: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:413 +#: application/controllers/Oqrs.php:127 +#: application/views/interface_assets/header.php:419 msgid "OQRS Requests" msgstr "OQRS Förfrågningar" @@ -1502,8 +1668,46 @@ msgstr "OQRS Förfrågningar" msgid "QRB Calculator" msgstr "" +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "" + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" + #: application/controllers/Qrz.php:173 -#: application/views/interface_assets/header.php:426 +#: application/views/interface_assets/header.php:432 msgid "QRZ Logbook" msgstr "QRZ Loggbok" @@ -1515,8 +1719,8 @@ msgstr "" msgid "QRZ ADIF Information" msgstr "" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:261 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:277 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1539,13 +1743,13 @@ msgid "Add QSO" msgstr "" #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Hardware Interfaces" msgstr "Hårdvarugränssnitt" #: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 +#: application/views/contesting/index.php:143 #: application/views/qso/index.php:312 msgid "Radio" msgstr "" @@ -1555,10 +1759,10 @@ msgid "Timestamp" msgstr "" #: application/controllers/Radio.php:52 -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 +#: application/views/logbookadvanced/index.php:550 +#: application/views/lotw_views/index.php:43 #: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 +#: application/views/simplefle/index.php:177 #: application/views/stationsetup/exportmapoptions.php:5 #: application/views/statistics/custom.php:31 #: application/views/statistics/custom_result.php:33 @@ -1566,7 +1770,7 @@ msgid "Options" msgstr "Alternativ" #: application/controllers/Radio.php:90 -#: application/views/contesting/index.php:96 +#: application/views/contesting/index.php:147 #: application/views/qso/index.php:316 msgid "last updated" msgstr "" @@ -1582,26 +1786,24 @@ msgstr "" #: application/controllers/Radio.php:105 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2323 -#: application/views/interface_assets/footer.php:2341 -#: application/views/interface_assets/footer.php:2362 -#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2337 +#: application/views/interface_assets/footer.php:2355 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 #: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:514 -#: application/views/lotw_views/index.php:118 +#: application/views/logbookadvanced/index.php:542 +#: application/views/lotw_views/index.php:114 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 #: application/views/qslcard/index.php:65 #: application/views/satellite/edit.php:40 #: application/views/satellite/index.php:26 #: application/views/search/stored_queries.php:22 -#: application/views/station_profile/index.php:55 -#: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 #: application/views/stationsetup/stationsetup.php:137 #: application/views/stationsetup/stationsetup.php:192 -#: application/views/themes/index.php:107 application/views/user/main.php:54 -#: application/views/view_log/qso.php:613 +#: application/views/themes/index.php:107 application/views/user/index.php:57 +#: application/views/view_log/qso.php:616 msgid "Delete" msgstr "Radera" @@ -1609,11 +1811,15 @@ msgstr "Radera" msgid "No CAT interfaced radios found." msgstr "" -#: application/controllers/Satellite.php:37 +#: application/controllers/Reg1test.php:25 +msgid "Export EDI" +msgstr "" + +#: application/controllers/Satellite.php:39 msgid "Create Satellite" msgstr "" -#: application/controllers/Satellite.php:60 +#: application/controllers/Satellite.php:66 msgid "Edit Satellite" msgstr "" @@ -1626,10 +1832,7 @@ msgstr "" #: application/views/awards/counties/index.php:8 #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:19 -#: application/views/awards/was/index.php:21 -#: application/views/dashboard/index.php:64 -#: application/views/dashboard/index.php:73 -#: application/views/dashboard/index.php:82 +#: application/views/awards/was/index.php:23 #: application/views/simplefle/index.php:16 msgid "here" msgstr "" @@ -1641,9 +1844,10 @@ msgstr "" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:336 -#: application/views/interface_assets/header.php:343 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:340 +#: application/views/interface_assets/header.php:347 +#: application/views/logbookadvanced/index.php:538 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1657,8 +1861,8 @@ msgstr "" #: application/views/search/lotw_unconfirmed.php:37 #: application/views/search/main.php:4 application/views/search/main.php:12 #: application/views/search/main.php:33 -#: application/views/visitor/layout/header.php:99 -#: application/views/visitor/layout/header.php:100 +#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:98 msgid "Search" msgstr "" @@ -1676,15 +1880,23 @@ msgid "" "date" msgstr "" -#: application/controllers/Station.php:35 -#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/controllers/Station.php:36 +#: application/controllers/Stationsetup.php:226 +msgid "Create Station Location" +msgstr "" + +#: application/controllers/Station.php:51 +msgid "Edit Station Location: " +msgstr "" + +#: application/controllers/Station.php:59 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 -#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/edit.php:19 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:427 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 @@ -1692,22 +1904,13 @@ msgstr "" msgid "Station Location" msgstr "Stationsplats" -#: application/controllers/Station.php:55 -#: application/controllers/Stationsetup.php:226 -msgid "Create Station Location" -msgstr "" - -#: application/controllers/Station.php:70 -msgid "Edit Station Location: " -msgstr "" - -#: application/controllers/Station.php:92 +#: application/controllers/Station.php:73 msgid "Duplicate Station Location:" msgstr "" #: application/controllers/Stationsetup.php:35 -#: application/views/interface_assets/header.php:377 -#: application/views/interface_assets/header.php:488 +#: application/views/interface_assets/header.php:381 +#: application/views/interface_assets/header.php:494 msgid "Station Setup" msgstr "" @@ -1725,7 +1928,7 @@ msgstr "" #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 #: application/controllers/Stationsetup.php:436 -#: application/views/qso/index.php:608 +#: application/views/qso/index.php:630 msgid "Error" msgstr "" @@ -1757,9 +1960,10 @@ msgstr "" #: application/views/options/appearance.php:83 #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 +#: application/views/options/appearance.php:110 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:259 -#: application/views/station_profile/edit.php:312 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 msgid "Disabled" @@ -1771,7 +1975,7 @@ msgid "Set as Active Logbook" msgstr "" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:486 +#: application/views/interface_assets/header.php:492 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1794,20 +1998,17 @@ msgid "Are you sure you want to delete the public slug?" msgstr "" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "" "Are you sure you want to make the following station the active station: " msgstr "" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "" #: application/controllers/Stationsetup.php:351 -#: application/views/station_profile/index.php:71 #: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "" @@ -1816,54 +2017,45 @@ msgstr "" #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:28 -#: application/views/station_profile/index.php:76 #: application/views/stationsetup/stationsetup.php:161 -#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/user/index.php:90 application/views/user/index.php:92 msgid "QSO" msgstr "" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 -#: application/views/cron/index.php:56 -#: application/views/interface_assets/footer.php:535 -#: application/views/interface_assets/footer.php:544 +#: application/views/cron/index.php:58 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 #: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:541 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 -#: application/views/station_profile/index.php:46 -#: application/views/station_profile/index.php:79 #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 -#: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/views/themes/index.php:104 application/views/user/index.php:52 msgid "Edit" msgstr "Redigera" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:99 #: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:54 -#: application/views/station_profile/index.php:101 #: application/views/stationsetup/stationsetup.php:136 #: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "" #: application/controllers/Stationsetup.php:367 -#: application/views/station_profile/index.php:47 -#: application/views/station_profile/index.php:82 #: application/views/stationsetup/stationsetup.php:129 #: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "" #: application/controllers/Stationsetup.php:372 -#: application/views/station_profile/index.php:105 #: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "" @@ -1896,7 +2088,7 @@ msgid "QSL Statistics" msgstr "" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:282 msgid "Themes" msgstr "Teman" @@ -1908,14 +2100,14 @@ msgstr "" msgid "Edit Theme" msgstr "" -#: application/controllers/Timeline.php:17 -#: application/views/interface_assets/header.php:148 +#: application/controllers/Timeline.php:15 +#: application/views/interface_assets/header.php:150 #: application/views/timeline/index.php:2 msgid "Timeline" msgstr "Tidslinje" #: application/controllers/Timeplotter.php:17 -#: application/views/interface_assets/header.php:152 +#: application/views/interface_assets/header.php:154 #: application/views/timeplotter/index.php:9 msgid "Timeplotter" msgstr "Tidplotter" @@ -1956,130 +2148,154 @@ msgstr "" msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:268 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:272 msgid "User Accounts" msgstr "" -#: application/controllers/User.php:52 +#: application/controllers/User.php:76 msgid "Add User" msgstr "" -#: application/controllers/User.php:166 +#: application/controllers/User.php:190 msgid "Users" msgstr "" -#: application/controllers/User.php:240 application/controllers/User.php:673 +#: application/controllers/User.php:264 application/controllers/User.php:697 msgid "Edit User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 -#: application/views/user/main.php:3 application/views/user/main.php:46 +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 msgid "User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 +#: application/controllers/User.php:689 application/controllers/User.php:692 msgid "edited" msgstr "" -#: application/controllers/User.php:722 +#: application/controllers/User.php:746 msgid "Profile" msgstr "" -#: application/controllers/User.php:779 +#: application/controllers/User.php:803 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "" -#: application/controllers/User.php:843 application/controllers/User.php:853 +#: application/controllers/User.php:867 application/controllers/User.php:877 msgid "Login failed. Try again." msgstr "" -#: application/controllers/User.php:860 -#: application/views/interface_assets/header.php:356 -#: application/views/user/login.php:89 -#: application/views/visitor/layout/header.php:88 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:360 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "" -#: application/controllers/User.php:868 -msgid "User logged in" -msgstr "" - -#: application/controllers/User.php:899 +#: application/controllers/User.php:922 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " "Only administrators are currently allowed to log in." msgstr "" -#: application/controllers/User.php:902 +#: application/controllers/User.php:925 msgid "Incorrect username or password!" msgstr "" -#: application/controllers/User.php:919 +#: application/controllers/User.php:942 #, php-format msgid "User %s logged out." msgstr "" -#: application/controllers/User.php:933 +#: application/controllers/User.php:956 msgid "Password Reset is disabled on the Demo!" msgstr "" -#: application/controllers/User.php:946 +#: application/controllers/User.php:969 msgid "Forgot Password" msgstr "" -#: application/controllers/User.php:996 application/views/user/main.php:8 +#: application/controllers/User.php:1019 application/views/user/index.php:8 msgid "Email settings are incorrect." msgstr "" -#: application/controllers/User.php:1000 application/controllers/User.php:1005 +#: application/controllers/User.php:1023 application/controllers/User.php:1028 msgid "Password Reset Processed." msgstr "" -#: application/controllers/User.php:1107 +#: application/controllers/User.php:1129 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "Återställ lösenord" +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "" + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "" + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "" + #: application/controllers/Visitor.php:50 -#: application/controllers/Visitor.php:79 -#: application/controllers/Visitor.php:142 -#: application/controllers/Visitor.php:169 -#: application/controllers/Visitor.php:199 -#: application/controllers/Visitor.php:478 +#: application/controllers/Visitor.php:81 +#: application/controllers/Visitor.php:148 +#: application/controllers/Visitor.php:175 +#: application/controllers/Visitor.php:210 +#: application/controllers/Visitor.php:472 #: application/controllers/Widgets.php:40 msgid "Unknown Public Page." msgstr "" -#: application/controllers/Visitor.php:74 -#: application/controllers/Visitor.php:165 -#: application/controllers/Visitor.php:195 -#: application/controllers/Visitor.php:474 +#: application/controllers/Visitor.php:76 +#: application/controllers/Visitor.php:171 +#: application/controllers/Visitor.php:206 +#: application/controllers/Visitor.php:468 #: application/controllers/Widgets.php:36 msgid "Empty Logbook" msgstr "" -#: application/controllers/Visitor.php:205 +#: application/controllers/Visitor.php:216 msgid "Satellite Gridsquare Map" msgstr "" -#: application/controllers/Visitor.php:411 +#: application/controllers/Visitor.php:405 #: application/views/stationsetup/stationsetup.php:35 msgid "Public Search" msgstr "" -#: application/controllers/Visitor.php:444 +#: application/controllers/Visitor.php:438 msgid "Export Map" msgstr "" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:427 +#: application/views/interface_assets/header.php:433 msgid "QO-100 Dx Club Upload" msgstr "QO-100 Dx Club Ladda upp" @@ -2091,6 +2307,84 @@ msgstr "" msgid "No stations found that are using Wavelog OQRS." msgstr "" +#: application/libraries/Subdivisions.php:31 +msgctxt "Division Name (States in various countries)." +msgid "Province" +msgstr "" + +#: application/libraries/Subdivisions.php:39 +msgctxt "Division Name (States in various countries)." +msgid "Oblast" +msgstr "" + +#: application/libraries/Subdivisions.php:41 +#: application/libraries/Subdivisions.php:47 +msgctxt "Division Name (States in various countries)." +msgid "Region" +msgstr "" + +#: application/libraries/Subdivisions.php:45 +msgctxt "Division Name (States in various countries)." +msgid "Department" +msgstr "" + +#: application/libraries/Subdivisions.php:49 +msgctxt "Division Name (States in various countries)." +msgid "Municipality" +msgstr "" + +#: application/libraries/Subdivisions.php:51 +msgctxt "Division Name (States in various countries)." +msgid "Federal State" +msgstr "" + +#: application/libraries/Subdivisions.php:56 +#: application/libraries/Subdivisions.php:94 +msgctxt "Division Name (States in various countries)." +msgid "County" +msgstr "" + +#: application/libraries/Subdivisions.php:60 +#: application/libraries/Subdivisions.php:85 +msgctxt "Division Name (States in various countries)." +msgid "District" +msgstr "" + +#: application/libraries/Subdivisions.php:62 +msgctxt "Division Name (States in various countries)." +msgid "Canton" +msgstr "" + +#: application/libraries/Subdivisions.php:64 +msgctxt "Division Name (States in various countries)." +msgid "US State" +msgstr "" + +#: application/libraries/Subdivisions.php:67 +msgctxt "Division Name (States in various countries)." +msgid "Prefecture" +msgstr "" + +#: application/libraries/Subdivisions.php:69 +msgctxt "Division Name (States in various countries)." +msgid "State" +msgstr "" + +#: application/libraries/Subdivisions.php:78 +msgctxt "Division Name (States in various countries)." +msgid "US County" +msgstr "" + +#: application/libraries/Subdivisions.php:90 +msgctxt "Division Name (States in various countries)." +msgid "DME" +msgstr "" + +#: application/libraries/Subdivisions.php:92 +msgctxt "Division Name (States in various countries)." +msgid "City / Ku / Gun" +msgstr "" + #: application/models/Eqslmethods_model.php:281 msgid "Your eQSL username and/or password is incorrect." msgstr "" @@ -2127,31 +2421,31 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4255 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4261 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4266 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4269 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4272 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4275 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4278 msgid "unknown" msgstr "" @@ -2180,7 +2474,7 @@ msgid "Accumulated number of WAJA worked" msgstr "" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:222 +#: application/views/dashboard/index.php:238 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2193,7 +2487,7 @@ msgid "Yearly" msgstr "" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:243 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Denna månad" @@ -2209,29 +2503,33 @@ msgstr "" #: application/views/accumulate/index.php:24 #: application/views/accumulate/index.php:34 +#: application/views/accumulate/index.php:83 #: application/views/activated_gridmap/index.php:10 #: application/views/activated_gridmap/index.php:22 #: application/views/activated_gridmap/index.php:32 #: application/views/activated_gridmap/index.php:41 -#: application/views/activators/index.php:10 -#: application/views/awards/cq/index.php:75 -#: application/views/awards/cq/index.php:89 +#: application/views/activators/index.php:13 +#: application/views/awards/cq/index.php:77 +#: application/views/awards/cq/index.php:91 #: application/views/awards/dok/index.php:94 #: application/views/awards/dxcc/index.php:134 #: application/views/awards/dxcc/index.php:150 #: application/views/awards/dxcc/index.php:165 -#: application/views/awards/helvetia/index.php:88 +#: application/views/awards/helvetia/index.php:90 #: application/views/awards/iota/index.php:108 -#: application/views/awards/itu/index.php:75 -#: application/views/awards/itu/index.php:89 +#: application/views/awards/itu/index.php:77 +#: application/views/awards/itu/index.php:91 #: application/views/awards/jcc/index.php:91 -#: application/views/awards/rac/index.php:80 +#: application/views/awards/rac/index.php:82 #: application/views/awards/wab/index.php:24 #: application/views/awards/wab/index.php:36 #: application/views/awards/wab/index.php:46 #: application/views/awards/wab/index.php:55 -#: application/views/awards/waja/index.php:92 -#: application/views/awards/was/index.php:88 +#: application/views/awards/wac/index.php:81 +#: application/views/awards/wac/index.php:97 +#: application/views/awards/wac/index.php:113 +#: application/views/awards/waja/index.php:94 +#: application/views/awards/was/index.php:90 #: application/views/bandmap/list.php:71 application/views/bandmap/list.php:78 #: application/views/bandmap/list.php:90 application/views/bands/index.php:117 #: application/views/cabrillo/index.php:65 @@ -2242,6 +2540,7 @@ msgstr "" #: application/views/csv/index.php:94 application/views/distances/index.php:21 #: application/views/distances/index.php:36 #: application/views/distances/index.php:46 +#: application/views/distances/index.php:56 #: application/views/dxatlas/index.php:21 #: application/views/dxatlas/index.php:33 #: application/views/dxatlas/index.php:44 @@ -2253,28 +2552,29 @@ msgstr "" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1435 -#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1448 +#: application/views/interface_assets/footer.php:1587 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:172 #: application/views/logbookadvanced/index.php:183 #: application/views/logbookadvanced/index.php:194 -#: application/views/logbookadvanced/index.php:203 -#: application/views/logbookadvanced/index.php:212 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:205 +#: application/views/logbookadvanced/index.php:214 +#: application/views/logbookadvanced/index.php:223 #: application/views/logbookadvanced/index.php:248 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:321 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:374 -#: application/views/logbookadvanced/index.php:385 -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:259 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:423 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2285,11 +2585,12 @@ msgstr "" #: application/views/stationsetup/exportmapoptions.php:33 #: application/views/timeline/index.php:10 #: application/views/timeline/index.php:22 +#: application/views/timeline/index.php:77 #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 #: application/views/user/edit.php:633 -#: application/views/visitor/layout/footer.php:169 +#: application/views/visitor/layout/footer.php:171 msgid "All" msgstr "" @@ -2327,29 +2628,254 @@ msgstr "" msgid "Period" msgstr "" -#: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: application/views/accumulate/index.php:80 +#: application/views/distances/index.php:53 +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/timeline/index.php:74 +msgid "Propagation" +msgstr "" + +#: application/views/accumulate/index.php:84 +#: application/views/distances/index.php:57 +#: application/views/timeline/index.php:78 +msgid "All but SAT" +msgstr "" + +#: application/views/accumulate/index.php:85 +#: application/views/distances/index.php:58 +#: application/views/gridmap/index.php:42 +#: application/views/logbookadvanced/edit.php:142 +#: application/views/logbookadvanced/index.php:307 +#: application/views/timeline/index.php:79 +msgid "None/Empty" +msgstr "" + +#: application/views/accumulate/index.php:86 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/logbookadvanced/index.php:225 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:414 +#: application/views/timeline/index.php:80 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/accumulate/index.php:87 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/logbookadvanced/index.php:226 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:415 +#: application/views/timeline/index.php:81 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/accumulate/index.php:88 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/logbookadvanced/index.php:227 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:416 +#: application/views/timeline/index.php:82 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/accumulate/index.php:89 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/logbookadvanced/index.php:228 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:417 +#: application/views/timeline/index.php:83 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/accumulate/index.php:90 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/logbookadvanced/index.php:229 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:418 +#: application/views/timeline/index.php:84 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/accumulate/index.php:91 +#: 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/logbookadvanced/index.php:230 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:419 +#: application/views/timeline/index.php:85 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/accumulate/index.php:92 +#: 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/logbookadvanced/index.php:231 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:420 +#: application/views/timeline/index.php:86 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/accumulate/index.php:93 +#: 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/logbookadvanced/index.php:232 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:421 +#: application/views/timeline/index.php:87 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/accumulate/index.php:94 +#: 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/logbookadvanced/index.php:233 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:422 +#: application/views/timeline/index.php:88 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/accumulate/index.php:95 +#: 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/logbookadvanced/index.php:234 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:423 +#: application/views/timeline/index.php:89 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/accumulate/index.php:96 +#: 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/logbookadvanced/index.php:235 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:424 +#: application/views/timeline/index.php:90 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/accumulate/index.php:97 +#: 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/logbookadvanced/index.php:236 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:425 +#: application/views/timeline/index.php:91 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/accumulate/index.php:98 +#: 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/logbookadvanced/index.php:237 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:426 +#: application/views/timeline/index.php:92 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/accumulate/index.php:99 +#: 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/logbookadvanced/index.php:238 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:427 +#: application/views/timeline/index.php:93 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/accumulate/index.php:100 +#: 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/logbookadvanced/index.php:239 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:428 +#: application/views/timeline/index.php:94 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/accumulate/index.php:101 +#: 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/logbookadvanced/index.php:240 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:429 +#: application/views/timeline/index.php:95 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Satellit" + +#: application/views/accumulate/index.php:102 +#: 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/logbookadvanced/index.php:241 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:430 +#: application/views/timeline/index.php:96 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/accumulate/index.php:103 +#: 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/logbookadvanced/index.php:242 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:431 +#: application/views/timeline/index.php:97 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/accumulate/index.php:112 +#: application/views/activators/index.php:53 +#: application/views/awards/cq/index.php:113 #: application/views/awards/dok/index.php:127 #: application/views/awards/dxcc/index.php:187 -#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/helvetia/index.php:112 #: application/views/awards/iota/index.php:130 -#: application/views/awards/itu/index.php:111 +#: application/views/awards/itu/index.php:113 #: application/views/awards/jcc/index.php:113 -#: application/views/awards/rac/index.php:102 -#: application/views/awards/waja/index.php:114 -#: application/views/awards/was/index.php:110 -#: application/views/distances/index.php:53 +#: application/views/awards/rac/index.php:104 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:79 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 #: application/views/stationsetup/exportmapoptions.php:6 -#: application/views/timeline/index.php:72 -#: application/views/timeline/index.php:137 -#: application/views/timeline/index.php:164 -#: application/views/timeline/index.php:189 -#: application/views/timeline/index.php:218 -#: application/views/timeline/index.php:243 -#: application/views/timeline/index.php:270 +#: application/views/timeline/index.php:105 +#: application/views/timeline/index.php:170 +#: application/views/timeline/index.php:197 +#: application/views/timeline/index.php:222 +#: application/views/timeline/index.php:251 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:303 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "" @@ -2357,12 +2883,15 @@ msgstr "" #: application/views/activated_gridmap/index.php:20 #: application/views/awards/dxcc/index.php:131 #: application/views/awards/wab/index.php:34 +#: application/views/awards/wac/index.php:78 #: 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/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/edit.php:17 +#: application/views/logbookadvanced/index.php:203 #: application/views/satellite/flightpath.php:34 +#: application/views/satellite/passtable.php:5 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2371,9 +2900,10 @@ msgstr "Satellit" #: application/views/activated_gridmap/index.php:30 #: application/views/awards/dxcc/index.php:147 #: application/views/awards/wab/index.php:44 +#: application/views/awards/wac/index.php:94 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:212 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2388,16 +2918,17 @@ msgid "Confirmation" msgstr "" #: application/views/activated_gridmap/index.php:82 -#: application/views/awards/cq/index.php:66 +#: application/views/awards/cq/index.php:68 #: application/views/awards/dok/index.php:67 #: application/views/awards/dxcc/index.php:73 -#: application/views/awards/helvetia/index.php:65 -#: application/views/awards/itu/index.php:66 +#: application/views/awards/helvetia/index.php:67 +#: application/views/awards/itu/index.php:68 #: application/views/awards/jcc/index.php:64 -#: application/views/awards/rac/index.php:57 +#: application/views/awards/rac/index.php:59 #: application/views/awards/wab/index.php:96 -#: application/views/awards/waja/index.php:65 -#: application/views/awards/was/index.php:65 +#: application/views/awards/wac/index.php:56 +#: application/views/awards/waja/index.php:67 +#: application/views/awards/was/index.php:67 #: application/views/gridmap/index.php:125 application/views/user/edit.php:675 msgid "QRZ.com" msgstr "" @@ -2433,59 +2964,62 @@ msgstr "" #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:37 #: application/views/gridmap/index.php:156 -#: application/views/logbookadvanced/index.php:12 +#: application/views/logbookadvanced/index.php:13 msgid "Bearing" msgstr "" -#: application/views/activators/index.php:23 +#: application/views/activators/index.php:26 msgctxt "Orbiter LEO or GEO" msgid "Both" msgstr "" -#: application/views/activators/index.php:30 +#: application/views/activators/index.php:33 msgid "Minimum Count" msgstr "" -#: application/views/activators/index.php:77 +#: application/views/activators/index.php:76 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:46 -#: application/views/awards/cq/index.php:196 +#: application/views/awards/cq/index.php:198 #: application/views/awards/dok/index.php:196 #: application/views/awards/dxcc/index.php:280 -#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/helvetia/index.php:200 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:196 +#: application/views/awards/itu/index.php:198 #: application/views/awards/jcc/index.php:236 #: application/views/awards/pota/index.php:67 -#: application/views/awards/rac/index.php:190 +#: application/views/awards/rac/index.php:192 #: application/views/awards/sig/index.php:45 #: application/views/awards/sota/index.php:53 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:39 -#: application/views/awards/waja/index.php:200 -#: application/views/awards/was/index.php:198 +#: application/views/awards/wac/index.php:199 +#: application/views/awards/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 +#: application/views/distancerecords/index.php:50 #: application/views/public_search/empty.php:3 -#: application/views/qrz/export.php:64 application/views/timeline/index.php:102 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:135 msgid "Nothing found!" msgstr "" -#: application/views/activators/index.php:99 -#: application/views/adif/import.php:66 application/views/adif/import.php:172 -#: application/views/adif/import.php:217 +#: application/views/activators/index.php:98 +#: application/views/adif/import.php:66 application/views/adif/import.php:182 +#: application/views/adif/import.php:227 #: application/views/awards/pota/index.php:34 #: application/views/awards/sig/qso_list.php:11 #: application/views/awards/sota/index.php:25 #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:104 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:152 +#: application/views/contesting/index.php:156 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:168 +#: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 -#: application/views/lotw_views/index.php:39 +#: application/views/lotw_views/index.php:35 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 #: application/views/qslcard/index.php:28 @@ -2494,35 +3028,36 @@ msgstr "" #: application/views/qslprint/qslprint.php:21 #: application/views/qslprint/qsolist.php:6 #: application/views/qso/edit_ajax.php:62 application/views/qso/index.php:124 +#: application/views/reg1test/index.php:33 #: application/views/search/cqzones.php:32 #: application/views/search/cqzones_result.php:9 #: application/views/search/lotw_unconfirmed.php:33 #: application/views/search/lotw_unconfirmed_result.php:6 #: application/views/search/result.php:11 -#: application/views/simplefle/index.php:142 -#: application/views/station_profile/edit.php:36 +#: application/views/simplefle/index.php:148 +#: application/views/station_profile/edit.php:63 #: application/views/stationsetup/linkedlocations.php:17 -#: application/views/user/edit.php:123 application/views/user/main.php:4 -#: application/views/user/main.php:47 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:507 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 +#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:510 msgid "Callsign" msgstr "" -#: application/views/activators/index.php:100 +#: application/views/activators/index.php:99 msgid "Count" msgstr "" -#: application/views/activators/index.php:102 -#: application/views/timeline/index.php:121 -#: application/views/timeline/index.php:153 -#: application/views/timeline/index.php:178 -#: application/views/timeline/index.php:205 -#: application/views/timeline/index.php:232 -#: application/views/timeline/index.php:258 +#: application/views/activators/index.php:101 +#: application/views/timeline/index.php:154 +#: application/views/timeline/index.php:186 +#: application/views/timeline/index.php:211 +#: application/views/timeline/index.php:238 +#: application/views/timeline/index.php:265 +#: application/views/timeline/index.php:291 msgid "Show QSO's" msgstr "" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "" @@ -2563,10 +3098,12 @@ msgstr "" #: application/views/awards/wwff/index.php:32 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:25 -#: application/views/contesting/index.php:42 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36 +#: application/views/contesting/index.php:93 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:163 +#: application/views/debug/index.php:545 +#: application/views/distancerecords/index.php:16 +#: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2579,22 +3116,22 @@ msgstr "" #: application/views/qslcard/searchresult.php:4 #: application/views/qslprint/qslprint.php:22 #: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:64 -#: application/views/qso/index.php:100 +#: application/views/qso/index.php:100 application/views/satellite/pass.php:473 #: application/views/search/cqzones_result.php:7 #: application/views/search/result_search.php:4 #: application/views/search/search_result_ajax.php:89 -#: application/views/simplefle/index.php:140 +#: application/views/simplefle/index.php:146 #: application/views/statistics/custom.php:38 #: application/views/statistics/custom_result.php:40 #: application/views/statistics/custom_result.php:85 -#: application/views/timeline/index.php:116 -#: application/views/timeline/index.php:151 -#: application/views/timeline/index.php:176 -#: application/views/timeline/index.php:201 -#: application/views/timeline/index.php:230 -#: application/views/timeline/index.php:255 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:184 +#: application/views/timeline/index.php:209 +#: application/views/timeline/index.php:234 +#: application/views/timeline/index.php:263 +#: application/views/timeline/index.php:288 #: application/views/view_log/partial/log.php:4 -#: application/views/view_log/partial/log_ajax.php:57 +#: application/views/view_log/partial/log_ajax.php:59 #: application/views/visitor/index.php:147 #: application/views/widgets/qsos.php:24 msgid "Date" @@ -2605,10 +3142,12 @@ msgstr "Datum" #: application/views/awards/wwff/index.php:33 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:26 -#: application/views/contesting/index.php:47 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37 +#: application/views/contesting/index.php:98 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:166 +#: application/views/debug/index.php:546 +#: application/views/distancerecords/index.php:17 +#: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2619,12 +3158,12 @@ msgstr "Datum" #: application/views/search/cqzones_result.php:8 #: application/views/search/result_search.php:5 #: application/views/search/search_result_ajax.php:91 -#: application/views/simplefle/index.php:141 +#: application/views/simplefle/index.php:147 #: application/views/statistics/custom_result.php:86 -#: application/views/timeline/index.php:256 +#: application/views/timeline/index.php:289 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 -#: application/views/view_log/partial/log_ajax.php:59 +#: application/views/view_log/partial/log_ajax.php:61 #: application/views/visitor/index.php:150 #: application/views/widgets/qsos.php:26 msgid "Time" @@ -2633,7 +3172,7 @@ msgstr "Tid" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 -#: application/views/contesting/index.php:201 +#: application/views/contesting/index.php:248 #: application/views/debug/index.php:547 application/views/debug/index.php:582 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -2645,7 +3184,7 @@ msgstr "Tid" #: application/views/search/search_result_ajax.php:93 #: application/views/statistics/custom_result.php:87 #: application/views/view_log/partial/log.php:8 -#: application/views/view_log/partial/log_ajax.php:61 +#: application/views/view_log/partial/log_ajax.php:63 #: application/views/visitor/index.php:152 #: application/views/widgets/qsos.php:28 msgid "Call" @@ -2663,14 +3202,14 @@ msgstr "" msgid "DCL QSL Status" msgstr "" -#: application/views/adif/import.php:36 application/views/adif/import.php:242 +#: application/views/adif/import.php:36 application/views/adif/import.php:252 msgid "DARC DCL" msgstr "" #: application/views/adif/import.php:55 -#: application/views/dashboard/index.php:97 -#: application/views/dashboard/index.php:118 -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:112 +#: application/views/dashboard/index.php:133 +#: application/views/dashboard/index.php:139 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2680,29 +3219,29 @@ msgstr "Viktigt" msgid "Log Files must have the file type *.adi" msgstr "" -#: application/views/adif/import.php:56 application/views/view_log/qso.php:622 +#: application/views/adif/import.php:56 application/views/view_log/qso.php:625 msgid "Maximum file upload size is " msgstr "" -#: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:175 +#: application/views/adif/import.php:56 application/views/adif/import.php:230 +#: application/views/adif/import.php:268 application/views/debug/index.php:175 #: application/views/debug/index.php:192 application/views/debug/index.php:537 #: application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:34 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 -#: application/views/station_profile/index.php:31 #: application/views/stationsetup/stationsetup.php:111 -#: application/views/view_log/qso.php:622 +#: application/views/view_log/qso.php:625 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" msgstr "" #: application/views/adif/import.php:60 application/views/adif/import.php:62 -#: application/views/adif/import.php:168 application/views/adif/import.php:215 +#: application/views/adif/import.php:178 application/views/adif/import.php:225 #: application/views/eqsl/import.php:36 application/views/hrdlog/export.php:69 -#: application/views/qrz/export.php:89 application/views/webadif/export.php:89 +#: application/views/qrz/export.php:89 application/views/reg1test/index.php:30 +#: application/views/webadif/export.php:89 msgid "Select Station Location" msgstr "" @@ -2729,69 +3268,75 @@ msgstr "" #: application/views/adif/import.php:95 application/views/adif/import.php:105 #: application/views/adif/import.php:115 application/views/adif/import.php:125 +#: application/views/adif/import.php:135 msgid "Select if ADIF being imported does not contain this information." msgstr "" #: application/views/adif/import.php:103 -msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" +msgid "Mark imported QSOs as uploaded to eQSL Logbook" msgstr "" #: application/views/adif/import.php:113 -msgid "Mark imported QSOs as uploaded to QRZ Logbook" +msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" msgstr "" #: application/views/adif/import.php:123 -msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgid "Mark imported QSOs as uploaded to QRZ Logbook" msgstr "" #: application/views/adif/import.php:133 +msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgstr "" + +#: application/views/adif/import.php:143 msgid "Use DXCC information from ADIF" msgstr "" -#: application/views/adif/import.php:135 +#: application/views/adif/import.php:145 msgid "" "If not selected, Wavelog will attempt to determine DXCC information " "automatically." msgstr "" -#: application/views/adif/import.php:143 +#: application/views/adif/import.php:153 msgid "Always use login-callsign as operator-name on import" msgstr "" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:32 -#: application/views/interface_assets/footer.php:495 -#: application/views/interface_assets/footer.php:2119 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2133 msgid "DANGER" msgstr "" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 msgid "Ignore Stationcallsign on import" msgstr "" -#: application/views/adif/import.php:154 +#: application/views/adif/import.php:164 +#, php-format msgid "" -"If selected, Wavelog will try to import all QSO's of the ADIF, " +"If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " "regardless if they match to the chosen station-location." msgstr "" -#: application/views/adif/import.php:158 application/views/adif/import.php:273 +#: application/views/adif/import.php:168 application/views/adif/import.php:283 #: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 #: application/views/webadif/export.php:55 msgid "Upload" msgstr "" -#: application/views/adif/import.php:165 +#: application/views/adif/import.php:175 msgid "Take your logbook file anywhere!" msgstr "" -#: application/views/adif/import.php:166 +#: application/views/adif/import.php:176 msgid "" "Exporting ADIFs allows you to import contacts into third party applications " "like LoTW, Awards or just for keeping a backup." msgstr "" -#: application/views/adif/import.php:176 application/views/adif/import.php:222 +#: application/views/adif/import.php:186 application/views/adif/import.php:232 #: application/views/cfd/index.php:15 application/views/csv/index.php:118 #: application/views/dxatlas/index.php:118 #: application/views/hrdlog/export.php:77 application/views/kml/index.php:103 @@ -2800,7 +3345,7 @@ msgstr "" msgid "From date" msgstr "Från datum" -#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/adif/import.php:189 application/views/adif/import.php:235 #: application/views/cfd/index.php:20 application/views/csv/index.php:123 #: application/views/dxatlas/index.php:123 #: application/views/hrdlog/export.php:82 application/views/kml/index.php:108 @@ -2809,40 +3354,40 @@ msgstr "Från datum" msgid "To date" msgstr "" -#: application/views/adif/import.php:187 +#: application/views/adif/import.php:197 msgid "Mark exported QSOs as uploaded to LoTW" msgstr "" -#: application/views/adif/import.php:195 +#: application/views/adif/import.php:205 msgid "Export QSOs not uploaded to LoTW" msgstr "" -#: application/views/adif/import.php:200 +#: application/views/adif/import.php:210 msgid "Export QSO's" msgstr "" -#: application/views/adif/import.php:205 +#: application/views/adif/import.php:215 msgid "Export Satellite-Only QSOs" msgstr "" -#: application/views/adif/import.php:206 +#: application/views/adif/import.php:216 msgid "Export All Satellite QSOs" msgstr "" -#: application/views/adif/import.php:208 +#: application/views/adif/import.php:218 msgid "Export All Satellite QSOs Confirmed on LoTW" msgstr "" -#: application/views/adif/import.php:220 application/views/hrdlog/export.php:74 +#: application/views/adif/import.php:230 application/views/hrdlog/export.php:74 #: application/views/qrz/export.php:94 application/views/webadif/export.php:94 msgid "If a date range is not selected then all QSOs will be marked!" msgstr "" -#: application/views/adif/import.php:228 +#: application/views/adif/import.php:238 msgid "Mark QSOs as exported to LoTW" msgstr "" -#: application/views/adif/import.php:242 +#: application/views/adif/import.php:252 #, php-format msgid "" "Go to %s and export your logbook with confirmed DOKs. To speed up the " @@ -2851,36 +3396,47 @@ msgid "" "with DOK info." msgstr "" -#: application/views/adif/import.php:249 +#: application/views/adif/import.php:259 msgid "Only import DOK data from QSOs confirmed on DCL." msgstr "" -#: application/views/adif/import.php:251 +#: application/views/adif/import.php:261 msgid "" "Uncheck if you also want to update DOK with data from unconfirmed QSOs in " "DCL." msgstr "" -#: application/views/adif/import.php:258 +#: application/views/adif/import.php:268 msgid "Overwrites exisiting DOK in log by DCL (if different)." msgstr "" -#: application/views/adif/import.php:260 +#: application/views/adif/import.php:270 msgid "" "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " "log." msgstr "" -#: application/views/adif/import.php:267 +#: application/views/adif/import.php:277 msgid "Ignore QSOs that cannot be matched." msgstr "Ignore QSOs that cannot be matched" -#: application/views/adif/import.php:269 +#: application/views/adif/import.php:279 msgid "" "If unchecked, information about QSOs which could not be found in Wavelog " "will be displayed." msgstr "" +#: application/views/adif/import_failed.php:15 +msgid "The ADIF file could not be parsed correctly." +msgstr "" + +#: application/views/adif/import_failed.php:16 +msgid "" +"At least one of the ADIF fields could not be parsed and/or inserted into the " +"database. Please check the imported ADIF file. You can use an online ADIF " +"file checker. For example:" +msgstr "" + #: application/views/adif/import_success.php:15 msgid "Yay, its imported!" msgstr "" @@ -2933,24 +3489,22 @@ msgstr "" #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 -#: application/views/interface_assets/footer.php:43 -#: application/views/interface_assets/footer.php:530 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 -#: application/views/options/appearance.php:107 +#: application/views/options/appearance.php:116 #: application/views/options/dxcluster.php:67 #: application/views/options/email.php:112 #: application/views/options/oqrs.php:63 #: application/views/options/radios.php:45 #: application/views/options/version_dialog.php:78 -#: application/views/qso/components/winkeysettings.php:90 -#: application/views/qso/components/winkeysettings_results.php:90 #: application/views/satellite/create.php:70 #: application/views/simplefle/index.php:22 msgid "Save" msgstr "" #: application/views/api/help.php:14 -#: application/views/interface_assets/header.php:431 +#: application/views/interface_assets/header.php:437 msgid "API Keys" msgstr "" @@ -2974,7 +3528,7 @@ msgid "API URL" msgstr "" #: application/views/api/help.php:19 application/views/api/help.php:38 -#: application/views/cron/index.php:21 application/views/debug/index.php:36 +#: application/views/cron/index.php:22 application/views/debug/index.php:36 msgid "Copy to clipboard" msgstr "Kopiera till clipboard" @@ -2983,14 +3537,15 @@ msgid "The API URL for this Wavelog instance is" msgstr "" #: application/views/api/help.php:20 application/views/dxcalendar/index.php:15 -#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:477 -#: application/views/qso/index.php:538 application/views/qso/index.php:583 +#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:504 +#: application/views/qso/index.php:560 application/views/qso/index.php:605 #: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 #: application/views/sattimers/index.php:73 #: application/views/sattimers/index.php:75 +#: application/views/sattimers/index.php:77 #: application/views/search/filter.php:69 msgid "Info" msgstr "" @@ -3006,7 +3561,7 @@ msgid "API Key" msgstr "" #: application/views/api/help.php:28 application/views/cron/edit.php:30 -#: application/views/cron/index.php:51 +#: application/views/cron/index.php:53 #: application/views/search/stored_queries.php:8 msgid "Description" msgstr "" @@ -3019,19 +3574,18 @@ msgstr "" msgid "Permissions" msgstr "" -#: application/views/api/help.php:31 application/views/cron/index.php:52 -#: application/views/lotw_views/index.php:45 +#: application/views/api/help.php:31 application/views/cron/index.php:54 +#: application/views/lotw_views/index.php:41 #: application/views/mode/index.php:31 #: application/views/oqrs/showrequests.php:91 #: application/views/sattimers/index.php:39 #: application/views/stationsetup/stationsetup.php:31 -#: application/views/timeline/index.php:119 -#: application/views/update/index.php:30 +#: application/views/timeline/index.php:152 msgid "Status" msgstr "" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:519 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3067,6 +3621,7 @@ msgstr "" #: application/views/awards/counties/details.php:4 #: application/views/awards/details.php:1 #: application/views/awards/vucc/band.php:4 +#: application/views/distancerecords/details.php:1 #: application/views/timeline/details.php:2 msgid "Filtering on" msgstr "" @@ -3077,8 +3632,8 @@ msgstr "" #: application/views/awards/counties/index.php:6 #: application/views/awards/counties/index.php:13 -#: application/views/awards/cq/index.php:17 -#: application/views/awards/cq/index.php:24 +#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:26 #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:13 #: application/views/awards/dxcc/index.php:13 @@ -3087,12 +3642,12 @@ msgstr "" #: application/views/awards/ffma/index.php:14 #: application/views/awards/gridmaster/index.php:6 #: application/views/awards/gridmaster/index.php:13 -#: application/views/awards/helvetia/index.php:17 -#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:26 #: application/views/awards/iota/index.php:15 #: application/views/awards/iota/index.php:22 -#: application/views/awards/itu/index.php:17 -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:26 #: application/views/awards/jcc/index.php:15 #: application/views/awards/jcc/index.php:22 #: application/views/awards/pota/index.php:6 @@ -3105,10 +3660,12 @@ msgstr "" #: application/views/awards/vucc/index.php:13 #: application/views/awards/wab/index.php:11 #: application/views/awards/wab/index.php:18 -#: application/views/awards/waja/index.php:16 -#: application/views/awards/waja/index.php:23 -#: application/views/awards/was/index.php:17 -#: application/views/awards/was/index.php:24 +#: application/views/awards/wac/index.php:7 +#: application/views/awards/wac/index.php:14 +#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:25 +#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:26 #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:13 msgid "Award Info" @@ -3146,17 +3703,18 @@ msgid "Counties Confirmed" msgstr "" #: application/views/awards/counties/index.php:39 -#: application/views/awards/cq/index.php:174 +#: application/views/awards/cq/index.php:176 #: application/views/awards/dok/index.php:174 #: application/views/awards/dxcc/index.php:257 -#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/helvetia/index.php:179 #: application/views/awards/iota/index.php:201 -#: application/views/awards/itu/index.php:174 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:185 -#: application/views/awards/rac/index.php:169 -#: application/views/awards/waja/index.php:177 -#: application/views/awards/was/index.php:177 -#: application/views/dashboard/index.php:217 +#: application/views/awards/rac/index.php:171 +#: application/views/awards/wac/index.php:177 +#: application/views/awards/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:233 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3172,213 +3730,230 @@ msgstr "" msgid "Total" msgstr "" -#: application/views/awards/cq/index.php:18 +#: application/views/awards/cq/index.php:3 +#: application/views/awards/cq/index.php:150 application/views/csv/index.php:80 +#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/logbookadvanced/edit.php:6 +#: application/views/logbookadvanced/index.php:246 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:284 +#: application/views/qso/index.php:390 +#: application/views/search/cqzones_result.php:13 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:264 +#: application/views/timeplotter/index.php:44 +msgid "CQ Zone" +msgstr "" + +#: application/views/awards/cq/index.php:4 +#: application/views/awards/itu/index.php:4 +msgid "Hover over a zone" +msgstr "" + +#: application/views/awards/cq/index.php:20 msgid "CQ Magazine WAZ Award" msgstr "" -#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:21 msgid "" "The CQ Magazine is located in the US and one of the most popular amateur " "radio magazines in the world. The magazine first appeared in January 1945 " "and focuses on awards and the practical aspects of amateur radio." msgstr "" -#: application/views/awards/cq/index.php:20 +#: application/views/awards/cq/index.php:22 msgid "" "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to " "all 40 CQ Zones along with the corresponding confirmation." msgstr "" -#: application/views/awards/cq/index.php:21 +#: application/views/awards/cq/index.php:23 #, php-format msgctxt "uses 'CQ Magazine'" msgid "You can find all the information and rules on the Website of the %s." msgstr "" -#: application/views/awards/cq/index.php:23 +#: application/views/awards/cq/index.php:25 msgid "Awards - CQ Magazine WAZ" msgstr "" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 #: application/views/awards/wab/list.php:6 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:73 -#: application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:362 -#: application/views/interface_assets/footer.php:39 +#: application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:378 +#: application/views/interface_assets/footer.php:40 #: application/views/visitor/index.php:266 msgid "Confirmed" msgstr "Bekräftade" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:256 +#: application/views/dashboard/index.php:372 #: application/views/visitor/index.php:262 msgid "Worked" msgstr "Körda" -#: application/views/awards/cq/index.php:36 +#: application/views/awards/cq/index.php:38 #: application/views/awards/dok/index.php:41 #: application/views/awards/dxcc/index.php:43 -#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:43 -#: application/views/awards/itu/index.php:36 +#: application/views/awards/itu/index.php:38 #: application/views/awards/jcc/index.php:34 -#: application/views/awards/rac/index.php:27 -#: application/views/awards/waja/index.php:35 -#: application/views/awards/was/index.php:35 +#: application/views/awards/rac/index.php:29 +#: application/views/awards/wac/index.php:26 +#: application/views/awards/waja/index.php:37 +#: application/views/awards/was/index.php:37 msgid "Show worked" msgstr "" -#: application/views/awards/cq/index.php:40 +#: application/views/awards/cq/index.php:42 #: application/views/awards/dok/index.php:45 #: application/views/awards/dxcc/index.php:47 -#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:47 -#: application/views/awards/itu/index.php:40 +#: application/views/awards/itu/index.php:42 #: application/views/awards/jcc/index.php:38 -#: application/views/awards/rac/index.php:31 -#: application/views/awards/waja/index.php:39 -#: application/views/awards/was/index.php:39 +#: application/views/awards/rac/index.php:33 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/waja/index.php:41 +#: application/views/awards/was/index.php:41 msgid "Show confirmed" msgstr "" -#: application/views/awards/cq/index.php:44 +#: application/views/awards/cq/index.php:46 #: application/views/awards/dxcc/index.php:51 -#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:51 -#: application/views/awards/itu/index.php:44 +#: application/views/awards/itu/index.php:46 #: application/views/awards/jcc/index.php:42 -#: application/views/awards/rac/index.php:35 -#: application/views/awards/waja/index.php:43 -#: application/views/awards/was/index.php:43 +#: application/views/awards/rac/index.php:37 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/waja/index.php:45 +#: application/views/awards/was/index.php:45 msgid "Show not worked" msgstr "" -#: application/views/awards/cq/index.php:50 +#: application/views/awards/cq/index.php:52 #: application/views/awards/dok/index.php:51 #: application/views/awards/dxcc/index.php:57 -#: application/views/awards/helvetia/index.php:49 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/helvetia/index.php:51 +#: application/views/awards/itu/index.php:52 #: application/views/awards/jcc/index.php:48 -#: application/views/awards/rac/index.php:41 -#: application/views/awards/waja/index.php:49 -#: application/views/awards/was/index.php:49 +#: application/views/awards/rac/index.php:43 +#: application/views/awards/wac/index.php:40 +#: application/views/awards/waja/index.php:51 +#: application/views/awards/was/index.php:51 msgid "Show QSO with QSL Type" msgstr "" -#: application/views/awards/cq/index.php:54 -#: application/views/awards/itu/index.php:54 -#: application/views/interface_assets/footer.php:2098 -#: application/views/qso/edit_ajax.php:378 +#: application/views/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/awards/wac/index.php:44 +#: application/views/interface_assets/footer.php:2112 +#: application/views/qso/edit_ajax.php:405 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "QSL-kort" -#: application/views/awards/cq/index.php:110 +#: application/views/awards/cq/index.php:112 #: application/views/awards/dok/index.php:126 #: application/views/awards/dxcc/index.php:186 -#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/helvetia/index.php:111 #: application/views/awards/iota/index.php:129 -#: application/views/awards/itu/index.php:110 +#: application/views/awards/itu/index.php:112 #: application/views/awards/jcc/index.php:112 -#: application/views/awards/rac/index.php:101 -#: application/views/awards/waja/index.php:113 -#: application/views/awards/was/index.php:109 +#: application/views/awards/rac/index.php:103 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/waja/index.php:115 +#: application/views/awards/was/index.php:111 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:523 +#: application/views/logbookadvanced/index.php:551 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 msgid "Reset" msgstr "" -#: application/views/awards/cq/index.php:113 +#: application/views/awards/cq/index.php:115 msgid "Show CQ Zone Map" msgstr "" -#: application/views/awards/cq/index.php:122 +#: application/views/awards/cq/index.php:124 #: application/views/awards/dxcc/index.php:199 -#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/helvetia/index.php:124 #: application/views/awards/iota/index.php:142 -#: application/views/awards/itu/index.php:122 -#: application/views/awards/rac/index.php:114 -#: application/views/awards/waja/index.php:126 -#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:124 +#: application/views/awards/rac/index.php:116 +#: application/views/awards/waja/index.php:128 +#: application/views/awards/was/index.php:124 msgid "Table" msgstr "" -#: application/views/awards/cq/index.php:125 +#: application/views/awards/cq/index.php:127 #: application/views/awards/dok/index.php:128 #: application/views/awards/dxcc/index.php:202 -#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/helvetia/index.php:127 #: application/views/awards/iota/index.php:145 -#: application/views/awards/itu/index.php:125 +#: application/views/awards/itu/index.php:127 #: application/views/awards/jcc/index.php:129 -#: application/views/awards/rac/index.php:117 +#: application/views/awards/rac/index.php:119 #: application/views/awards/wab/index.php:108 -#: application/views/awards/waja/index.php:129 -#: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:516 +#: application/views/awards/waja/index.php:131 +#: application/views/awards/was/index.php:127 +#: application/views/logbookadvanced/index.php:544 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "" -#: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 -#: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:235 -#: application/views/logbookadvanced/index.php:586 -#: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:90 -#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 -#: application/views/qso/index.php:390 -#: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:106 -#: application/views/station_profile/edit.php:126 -#: application/views/timeline/index.php:231 -#: application/views/timeplotter/index.php:44 -msgid "CQ Zone" -msgstr "" - -#: application/views/awards/cq/index.php:165 +#: application/views/awards/cq/index.php:167 #: application/views/awards/dok/index.php:165 #: application/views/awards/dxcc/index.php:248 -#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/helvetia/index.php:170 #: application/views/awards/iota/index.php:192 -#: application/views/awards/itu/index.php:165 +#: application/views/awards/itu/index.php:167 #: application/views/awards/jcc/index.php:168 -#: application/views/awards/rac/index.php:160 -#: application/views/awards/waja/index.php:168 -#: application/views/awards/was/index.php:168 +#: application/views/awards/rac/index.php:162 +#: application/views/awards/wac/index.php:168 +#: application/views/awards/waja/index.php:170 +#: application/views/awards/was/index.php:170 msgid "Summary" msgstr "" -#: application/views/awards/cq/index.php:178 +#: application/views/awards/cq/index.php:180 #: application/views/awards/dok/index.php:178 #: application/views/awards/dxcc/index.php:262 -#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:206 -#: application/views/awards/itu/index.php:178 +#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:195 -#: application/views/awards/rac/index.php:173 -#: application/views/awards/waja/index.php:182 -#: application/views/awards/was/index.php:181 +#: application/views/awards/rac/index.php:175 +#: application/views/awards/wac/index.php:181 +#: application/views/awards/waja/index.php:184 +#: application/views/awards/was/index.php:183 msgid "Total worked" msgstr "" -#: application/views/awards/cq/index.php:185 +#: application/views/awards/cq/index.php:187 #: application/views/awards/dok/index.php:185 #: application/views/awards/dxcc/index.php:269 -#: application/views/awards/helvetia/index.php:188 +#: application/views/awards/helvetia/index.php:190 #: application/views/awards/iota/index.php:213 -#: application/views/awards/itu/index.php:185 +#: application/views/awards/itu/index.php:187 #: application/views/awards/jcc/index.php:214 -#: application/views/awards/rac/index.php:180 -#: application/views/awards/waja/index.php:189 -#: application/views/awards/was/index.php:188 +#: application/views/awards/rac/index.php:182 +#: application/views/awards/wac/index.php:188 +#: application/views/awards/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "" @@ -3426,23 +4001,24 @@ msgstr "" #: application/views/awards/dok/index.php:37 #: application/views/awards/dxcc/index.php:39 -#: application/views/awards/helvetia/index.php:31 +#: application/views/awards/helvetia/index.php:33 #: application/views/awards/iota/index.php:39 #: application/views/awards/jcc/index.php:30 -#: application/views/awards/rac/index.php:23 -#: application/views/awards/waja/index.php:31 -#: application/views/awards/was/index.php:31 +#: application/views/awards/rac/index.php:25 +#: application/views/awards/waja/index.php:33 +#: application/views/awards/was/index.php:33 msgid "Worked / Confirmed" msgstr "" #: application/views/awards/dok/index.php:80 #: application/views/awards/dxcc/index.php:120 -#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/helvetia/index.php:76 #: application/views/awards/iota/index.php:94 #: application/views/awards/jcc/index.php:77 -#: application/views/awards/rac/index.php:66 -#: application/views/awards/waja/index.php:78 -#: application/views/awards/was/index.php:74 +#: application/views/awards/rac/index.php:68 +#: application/views/awards/wac/index.php:66 +#: application/views/awards/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "" @@ -3463,10 +4039,12 @@ msgid "" msgstr "" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 msgid "ARRL website" msgstr "" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 #, php-format msgid "You can find all information about the DXCC Award on the %s." msgstr "" @@ -3488,63 +4066,77 @@ msgstr "" #: application/views/awards/dxcc/index.php:87 #: application/views/awards/iota/index.php:61 #: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/logbookadvanced/edit.php:144 +#: application/views/logbookadvanced/index.php:309 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 -#: application/views/view_log/qso.php:250 +#: application/views/view_log/qso.php:253 msgid "Antarctica" msgstr "Antarktis" #: application/views/awards/dxcc/index.php:91 #: application/views/awards/iota/index.php:65 #: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/logbookadvanced/edit.php:143 +#: application/views/logbookadvanced/index.php:308 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 -#: application/views/view_log/qso.php:247 +#: application/views/view_log/qso.php:250 msgid "Africa" msgstr "Afrika" #: application/views/awards/dxcc/index.php:95 #: application/views/awards/iota/index.php:69 #: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/logbookadvanced/edit.php:146 +#: application/views/logbookadvanced/index.php:311 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 -#: application/views/view_log/qso.php:253 +#: application/views/view_log/qso.php:256 msgid "Asia" msgstr "Asien" #: application/views/awards/dxcc/index.php:99 #: application/views/awards/iota/index.php:73 #: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/logbookadvanced/edit.php:147 +#: application/views/logbookadvanced/index.php:312 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 -#: application/views/view_log/qso.php:256 +#: application/views/view_log/qso.php:259 msgid "Europe" msgstr "Europa" #: application/views/awards/dxcc/index.php:103 #: application/views/awards/iota/index.php:77 #: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/logbookadvanced/edit.php:145 +#: application/views/logbookadvanced/index.php:310 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 -#: application/views/view_log/qso.php:259 +#: application/views/view_log/qso.php:262 msgid "North America" msgstr "Nordamerika" #: application/views/awards/dxcc/index.php:107 #: application/views/awards/iota/index.php:81 #: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/logbookadvanced/edit.php:148 +#: application/views/logbookadvanced/index.php:313 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:265 +#: application/views/view_log/qso.php:268 msgid "South America" msgstr "Sydamerika" #: application/views/awards/dxcc/index.php:111 #: application/views/awards/iota/index.php:85 #: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/logbookadvanced/edit.php:149 +#: application/views/logbookadvanced/index.php:314 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 -#: application/views/view_log/qso.php:262 +#: application/views/view_log/qso.php:265 msgid "Oceania" msgstr "Oceanien" @@ -3558,13 +4150,13 @@ msgstr "" #: application/views/awards/dxcc/index.php:226 #: application/views/awards/iota/index.php:170 -#: application/views/timeline/index.php:117 -#: application/views/timeline/index.php:204 +#: application/views/timeline/index.php:150 +#: application/views/timeline/index.php:237 msgid "Prefix" msgstr "" #: application/views/awards/ffma/index.php:8 -#: application/views/interface_assets/header.php:236 +#: application/views/interface_assets/header.php:240 msgid "Fred Fish Memorial Award" msgstr "" @@ -3619,11 +4211,20 @@ msgstr "" msgid "This map shows only QSOs worked on SAT." msgstr "" -#: application/views/awards/helvetia/index.php:18 +#: application/views/awards/helvetia/index.php:3 +msgctxt "Switzerland Canton" +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:4 +msgid "Hover over a canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:20 msgid "HELVETIA 26 | SWITZERLAND AWARD" msgstr "" -#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:21 msgid "" "The USKA (Union of Swiss Shortwave Amateurs) sponsors two awards, the " "HELVETIA 26 (H26) Award and the SWITZERLAND Award, aimed at promoting " @@ -3631,33 +4232,33 @@ msgid "" "as possible on multiple bands." msgstr "" -#: application/views/awards/helvetia/index.php:20 +#: application/views/awards/helvetia/index.php:22 msgid "" "These awards come in two versions: one for HF bands and the other for VHF " "(including SHF and UHF) bands. Valid connections for these awards date back " "to January 1, 1980" msgstr "" -#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/helvetia/index.php:23 #: application/views/awards/jcc/index.php:19 #: application/views/awards/sota/index.php:10 #: application/views/awards/wab/index.php:15 -#: application/views/awards/waja/index.php:20 +#: application/views/awards/waja/index.php:22 #: application/views/awards/wwff/index.php:10 #, php-format msgid "For more information, please visit: %s." msgstr "" -#: application/views/awards/helvetia/index.php:112 +#: application/views/awards/helvetia/index.php:114 msgid "Show Helvetia Map" msgstr "" -#: application/views/awards/helvetia/index.php:149 +#: application/views/awards/helvetia/index.php:151 msgid "Canton" msgstr "" #: application/views/awards/index.php:9 application/views/bands/index.php:46 -#: application/views/interface_assets/header.php:162 +#: application/views/interface_assets/header.php:164 msgid "CQ" msgstr "" @@ -3705,11 +4306,11 @@ msgstr "" #: application/views/awards/iota/index.php:171 #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 -#: application/views/contesting/index.php:153 -#: application/views/contesting/index.php:171 +#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:214 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:559 +#: application/views/logbookadvanced/index.php:587 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3719,12 +4320,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:19 #: application/views/stationsetup/stationsetup.php:30 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:203 application/views/user/edit.php:241 +#: application/views/timeline/index.php:236 application/views/user/edit.php:241 #: application/views/user/edit.php:263 application/views/user/edit.php:285 #: application/views/user/edit.php:307 application/views/user/edit.php:330 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:191 -#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:194 +#: application/views/view_log/qso.php:514 msgid "Name" msgstr "" @@ -3732,7 +4333,19 @@ msgstr "" msgid "Deleted" msgstr "" -#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:3 +#: application/views/awards/itu/index.php:150 +#: application/views/logbookadvanced/edit.php:10 +#: application/views/logbookadvanced/index.php:257 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:400 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 +msgid "ITU Zone" +msgstr "" + +#: application/views/awards/itu/index.php:21 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -3740,30 +4353,20 @@ msgid "" "(ITU)." msgstr "" -#: application/views/awards/itu/index.php:20 +#: application/views/awards/itu/index.php:22 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "" -#: application/views/awards/itu/index.php:23 +#: application/views/awards/itu/index.php:25 msgid "Awards - ITU Zones" msgstr "" -#: application/views/awards/itu/index.php:113 +#: application/views/awards/itu/index.php:115 msgid "Show ITU Zone Map" msgstr "" -#: application/views/awards/itu/index.php:148 -#: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:246 -#: application/views/logbookadvanced/index.php:589 -#: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:120 -#: application/views/station_profile/edit.php:143 -msgid "ITU Zone" -msgstr "" - #: application/views/awards/jcc/index.php:16 msgid "JCC - Japan Century Cities Award" msgstr "" @@ -3789,7 +4392,7 @@ msgstr "" #: application/views/awards/jcc/index.php:116 #: application/views/cabrillo/index.php:180 application/views/cfd/index.php:25 #: application/views/csv/index.php:128 application/views/dxatlas/index.php:128 -#: application/views/kml/index.php:113 +#: application/views/kml/index.php:113 application/views/reg1test/index.php:145 msgid "Export" msgstr "" @@ -3800,18 +4403,19 @@ msgid "Results" msgstr "" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 +#: application/views/distancerecords/index.php:13 msgid "Number" msgstr "" #: application/views/awards/jcc/index.php:152 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:524 msgid "City" msgstr "" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:368 #: application/views/distances/index.php:23 msgid "SAT" msgstr "" @@ -3843,15 +4447,24 @@ msgid "" msgstr "" #: application/views/awards/pota/index.php:31 -#: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:177 -#: application/views/station_profile/edit.php:245 -#: application/views/user/edit.php:595 application/views/view_log/qso.php:303 -#: application/views/view_log/qso.php:570 +#: application/views/qso/index.php:236 application/views/qso/index.php:492 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 +#: application/views/user/edit.php:595 application/views/view_log/qso.php:306 +#: application/views/view_log/qso.php:573 msgid "POTA Reference(s)" msgstr "" -#: application/views/awards/rac/index.php:104 +#: application/views/awards/rac/index.php:3 +msgctxt "Canada Province" +msgid "Province" +msgstr "" + +#: application/views/awards/rac/index.php:4 +msgid "Hover over a province" +msgstr "" + +#: application/views/awards/rac/index.php:106 msgid "Show RAC Map" msgstr "" @@ -3901,7 +4514,7 @@ msgstr "" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:535 +#: application/views/logbookadvanced/index.php:563 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -3997,17 +4610,48 @@ msgstr "" msgid "WAB Square" msgstr "" -#: application/views/awards/waja/index.php:17 +#: application/views/awards/wac/index.php:9 +msgid "" +"Sponsored by the International Amateur Radio Union (IARU), the Worked All " +"Continents award is issued for working and confirming all six continents. " +"These are North America, South America, Oceania, Asia, Europe and Africa." +msgstr "" + +#: application/views/awards/wac/index.php:13 +msgid "Awards - Worked All Continents (WAC)" +msgstr "" + +#: application/views/awards/wac/index.php:151 +#: application/views/continents/index.php:62 +#: application/views/logbookadvanced/edit.php:25 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 +#: application/views/view_log/qso.php:245 +msgid "Continent" +msgstr "Kontinent" + +#: application/views/awards/waja/index.php:3 +msgctxt "Japan Prefecture" +msgid "Prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:4 +msgid "Hover over a prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:19 msgid "WAJA - Worked All Japan prefectures Award" msgstr "" -#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:20 msgid "" "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " "radio operators to work all the prefectures in Japan." msgstr "" -#: application/views/awards/waja/index.php:19 +#: application/views/awards/waja/index.php:21 msgid "" "May be claimed for having contacted (heard) and received a QSL card from an " "amateur station located in each of the 47 prefectures of Japan. A list of " @@ -4015,20 +4659,29 @@ msgid "" "however names of prefectures may be omitted." msgstr "" -#: application/views/awards/waja/index.php:116 +#: application/views/awards/waja/index.php:118 msgid "Show WAJA Map" msgstr "" -#: application/views/awards/waja/index.php:152 -#: application/views/timeline/index.php:152 +#: application/views/awards/waja/index.php:154 +#: application/views/timeline/index.php:185 msgid "Prefecture" msgstr "" -#: application/views/awards/was/index.php:18 +#: application/views/awards/was/index.php:3 +msgctxt "USA State" +msgid "State" +msgstr "" + +#: application/views/awards/was/index.php:4 +msgid "Hover over a state" +msgstr "" + +#: application/views/awards/was/index.php:20 msgid "WAS Award" msgstr "" -#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:21 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -4036,7 +4689,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:20 +#: application/views/awards/was/index.php:22 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -4045,13 +4698,13 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:21 +#: application/views/awards/was/index.php:23 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:112 +#: application/views/awards/was/index.php:114 msgid "Show WAS Map" msgstr "" @@ -4074,11 +4727,11 @@ msgid "" msgstr "" #: application/views/awards/wwff/index.php:31 -#: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:171 -#: application/views/station_profile/edit.php:232 -#: application/views/user/edit.php:591 application/views/view_log/qso.php:296 -#: application/views/view_log/qso.php:563 +#: application/views/qso/index.php:224 application/views/qso/index.php:479 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 +#: application/views/user/edit.php:591 application/views/view_log/qso.php:299 +#: application/views/view_log/qso.php:566 msgid "WWFF Reference" msgstr "" @@ -4133,8 +4786,8 @@ msgstr "" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 #: application/views/contesting/index.php:15 -#: application/views/contesting/index.php:94 -#: application/views/contesting/index.php:169 +#: application/views/contesting/index.php:52 +#: application/views/contesting/index.php:145 #: application/views/qso/index.php:314 msgid "None" msgstr "" @@ -4214,25 +4867,25 @@ msgid "" "will be hidden and cannot be selected." msgstr "" -#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:351 -#: application/views/qso/index.php:248 application/views/qso/index.php:494 -#: application/views/user/edit.php:599 application/views/view_log/qso.php:325 -#: application/views/view_log/qso.php:577 +#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 +#: application/views/qso/index.php:248 application/views/qso/index.php:504 +#: application/views/user/edit.php:599 application/views/view_log/qso.php:328 +#: application/views/view_log/qso.php:580 msgid "Sig" msgstr "" -#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:312 -#: application/views/qso/index.php:433 +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:339 +#: application/views/qso/index.php:443 msgid "USA County" msgstr "" #: application/views/bands/index.php:58 -#: application/views/interface_assets/header.php:208 +#: application/views/interface_assets/header.php:212 msgid "WAJA" msgstr "" #: application/views/bands/index.php:59 -#: application/views/interface_assets/header.php:232 +#: application/views/interface_assets/header.php:236 msgid "WAS" msgstr "" @@ -4262,9 +4915,8 @@ msgstr "" #: application/views/bands/index.php:152 #: application/views/contesting/add.php:74 -#: application/views/interface_assets/footer.php:42 -#: application/views/qso/components/winkeysettings.php:91 -#: application/views/qso/components/winkeysettings_results.php:91 +#: application/views/contesting/index.php:83 +#: application/views/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4294,22 +4946,28 @@ msgstr "" #: application/views/cabrillo/index.php:2 #: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:59 +#: application/views/reg1test/index.php:2 +#: application/views/reg1test/index.php:36 msgid "Proceed" msgstr "" #: application/views/cabrillo/index.php:3 +#: application/views/reg1test/index.php:3 msgid "Select Year" msgstr "" #: application/views/cabrillo/index.php:4 +#: application/views/reg1test/index.php:4 msgid "Select Contest" msgstr "" #: application/views/cabrillo/index.php:5 +#: application/views/reg1test/index.php:5 msgid "Select Date Range" msgstr "" #: application/views/cabrillo/index.php:6 +#: application/views/reg1test/index.php:7 msgid "No contests were found for this station location!" msgstr "" @@ -4322,10 +4980,12 @@ msgid "Select Station Location:" msgstr "" #: application/views/cabrillo/index.php:44 +#: application/views/reg1test/index.php:53 msgid "Club" msgstr "" #: application/views/cabrillo/index.php:48 +#: application/views/reg1test/index.php:58 msgid "Category Operator" msgstr "" @@ -4366,10 +5026,12 @@ msgid "Category Overlay" msgstr "" #: application/views/cabrillo/index.php:150 +#: application/views/reg1test/index.php:70 msgid "Operators" msgstr "" #: application/views/cabrillo/index.php:155 +#: application/views/reg1test/index.php:139 msgid "Soapbox" msgstr "" @@ -4394,6 +5056,7 @@ msgid "Address Country" msgstr "" #: application/views/cabrillo/index.php:186 +#: application/views/reg1test/index.php:150 msgid "No contests were found in your log." msgstr "" @@ -4427,13 +5090,13 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:158 +#: application/views/contesting/index.php:219 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:629 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 -#: application/views/view_log/qso.php:199 +#: application/views/view_log/qso.php:202 msgid "Comment" msgstr "Notering" @@ -4465,9 +5128,9 @@ msgid "No Contests" msgstr "" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/edit.php:21 -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:635 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4495,10 +5158,11 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:38 -#: application/views/dashboard/index.php:262 -#: application/views/dashboard/index.php:289 -#: application/views/dashboard/index.php:310 -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:278 +#: application/views/dashboard/index.php:305 +#: application/views/dashboard/index.php:326 +#: application/views/dashboard/index.php:347 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "" @@ -4532,7 +5196,7 @@ msgstr "" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:466 +#: application/views/interface_assets/header.php:472 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:43 @@ -4587,15 +5251,15 @@ msgid "Name of Contest in ADIF-specification" msgstr "" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "" #: application/views/contesting/edit.php:31 -#: application/views/contesting/index.php:24 -#: application/views/qso/edit_ajax.php:548 -#: application/views/view_log/qso.php:275 +#: application/views/contesting/index.php:25 +#: application/views/qso/edit_ajax.php:575 +#: application/views/view_log/qso.php:278 msgid "Contest Name" msgstr "Contest-namn" @@ -4631,90 +5295,138 @@ msgstr "" msgid "Serial + Gridsquare" msgstr "" -#: application/views/contesting/index.php:34 +#: application/views/contesting/index.php:21 +msgid "Serial + Gridsquare + Exchange" +msgstr "" + +#: application/views/contesting/index.php:35 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:539 application/views/qso/index.php:352 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:352 msgid "Operator Callsign" msgstr "" -#: application/views/contesting/index.php:116 -#: application/views/contesting/index.php:208 -#: application/views/qso/edit_ajax.php:571 -msgid "Serial (S)" +#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:45 +msgid "More Settings" msgstr "" -#: application/views/contesting/index.php:121 -#: application/views/contesting/index.php:206 -msgid "Exch (S)" -msgstr "" - -#: application/views/contesting/index.php:126 -msgid "Gridsquare (S)" -msgstr "" - -#: application/views/contesting/index.php:136 -#: application/views/contesting/index.php:209 -#: application/views/qso/edit_ajax.php:566 -msgid "Serial (R)" -msgstr "" - -#: application/views/contesting/index.php:141 -#: application/views/contesting/index.php:207 -msgid "Exch (R)" -msgstr "" - -#: application/views/contesting/index.php:146 -msgid "Gridsquare (R)" -msgstr "" - -#: application/views/contesting/index.php:163 -msgid "Reset QSO" -msgstr "" - -#: application/views/contesting/index.php:164 -#: application/views/qso/index.php:607 -msgid "Save QSO" -msgstr "Spara QSO" - -#: application/views/contesting/index.php:166 +#: application/views/contesting/index.php:49 msgid "Copy received exchange to" msgstr "" -#: application/views/contesting/index.php:168 +#: application/views/contesting/index.php:51 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "" -#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:55 msgid "Age" msgstr "" -#: application/views/contesting/index.php:174 +#: application/views/contesting/index.php:57 msgid "RX Power (W)" msgstr "" -#: application/views/contesting/index.php:175 +#: application/views/contesting/index.php:58 msgid "Locator" msgstr "Lokator" -#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:59 +#: application/views/qso/edit_ajax.php:177 +msgid "QTH" +msgstr "" + +#: application/views/contesting/index.php:64 +msgid "Sequence of Exchanges" +msgstr "" + +#: application/views/contesting/index.php:67 +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 "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Grid" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Serial" +msgstr "" + +#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:255 +#: application/views/qso/edit_ajax.php:598 +msgid "Serial (S)" +msgstr "" + +#: application/views/contesting/index.php:177 +msgid "Gridsquare (S)" +msgstr "" + +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:253 +msgid "Exch (S)" +msgstr "" + +#: application/views/contesting/index.php:196 +#: application/views/contesting/index.php:256 +#: application/views/qso/edit_ajax.php:593 +msgid "Serial (R)" +msgstr "" + +#: application/views/contesting/index.php:201 +msgid "Gridsquare (R)" +msgstr "" + +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:254 +msgid "Exch (R)" +msgstr "" + +#: application/views/contesting/index.php:224 +msgid "Reset QSO" +msgstr "" + +#: application/views/contesting/index.php:225 +#: application/views/qso/index.php:629 +msgid "Save QSO" +msgstr "Spara QSO" + +#: application/views/contesting/index.php:234 msgid "Callsign Suggestions" msgstr "Signal-förslag" -#: application/views/contesting/index.php:194 +#: application/views/contesting/index.php:241 msgid "Contest Logbook" msgstr "Contest loggbok" -#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:258 #: application/views/qso/edit_ajax.php:164 msgid "VUCC Gridsquare" msgstr "" -#: application/views/continents/index.php:62 -#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 -#: application/views/view_log/qso.php:242 -msgid "Continent" -msgstr "Kontinent" - #: application/views/continents/index.php:63 #: application/views/statistics/index.php:19 #: application/views/statistics/index.php:113 @@ -4732,14 +5444,15 @@ msgstr "" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:261 -#: application/views/station_profile/edit.php:314 +#: application/views/options/appearance.php:109 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 msgid "Enabled" msgstr "" -#: application/views/cron/edit.php:36 application/views/cron/index.php:53 +#: application/views/cron/edit.php:36 application/views/cron/index.php:55 msgid "Intervall" msgstr "" @@ -4789,6 +5502,7 @@ msgstr "" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "" @@ -4802,79 +5516,84 @@ msgid "" "requiring CLI access." msgstr "" -#: application/views/cron/index.php:18 +#: application/views/cron/index.php:19 msgid "" "To execute cron jobs based on the data below, remove all old cron jobs and " "create a new one:" msgstr "" -#: application/views/cron/index.php:27 application/views/cron/index.php:31 -msgid "Status Master-Cron" +#: application/views/cron/index.php:29 application/views/cron/index.php:33 +msgid "Status Master-Cron:" msgstr "" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgctxt "PHP Version" msgid "Min. Version is" msgstr "" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgid "PHP Version not supported." msgstr "" -#: application/views/cron/index.php:41 +#: application/views/cron/index.php:43 msgid "Cron List" msgstr "" -#: application/views/cron/index.php:50 +#: application/views/cron/index.php:52 #: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "" -#: application/views/cron/index.php:54 +#: application/views/cron/index.php:56 msgid "Last Run" msgstr "" -#: application/views/cron/index.php:55 +#: application/views/cron/index.php:57 msgid "Next Run" msgstr "" -#: application/views/cron/index.php:68 +#: application/views/cron/index.php:70 msgid "healthy" msgstr "" -#: application/views/cron/index.php:70 +#: application/views/cron/index.php:72 msgid "failed" msgstr "" -#: application/views/cron/index.php:75 +#: application/views/cron/index.php:74 +msgid "pending" +msgstr "" + +#: application/views/cron/index.php:79 msgid "disabled" msgstr "" -#: application/views/cron/index.php:79 application/views/cron/index.php:81 -#: application/views/cron/index.php:83 application/views/debug/index.php:494 +#: application/views/cron/index.php:83 application/views/cron/index.php:85 +#: application/views/cron/index.php:87 application/views/debug/index.php:494 #: application/views/debug/index.php:500 application/views/debug/index.php:505 #: application/views/debug/index.php:510 application/views/debug/index.php:515 #: application/views/debug/index.php:520 application/views/debug/index.php:525 +#: application/views/user/index.php:138 msgid "never" msgstr "" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:102 msgid "Your Mastercron isn't running." msgstr "" -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:103 msgid "" "Copy the cron above to a external cron service or into your server's cron to " "use this cron manager." msgstr "" -#: application/views/cron/index.php:100 +#: application/views/cron/index.php:104 msgid "" "On a basic linux server with shell access use this command to edit your " "crons:" msgstr "" -#: application/views/cron/index.php:107 +#: application/views/cron/index.php:111 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -4892,154 +5611,10 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:411 msgid "Propagation Mode" msgstr "" -#: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:214 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 -msgctxt "Propagation Mode" -msgid "Aircraft Scatter" -msgstr "" - -#: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:215 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 -msgctxt "Propagation Mode" -msgid "Aurora" -msgstr "" - -#: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:216 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 -msgctxt "Propagation Mode" -msgid "Aurora-E" -msgstr "" - -#: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:217 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 -msgctxt "Propagation Mode" -msgid "Back scatter" -msgstr "" - -#: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:218 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 -msgctxt "Propagation Mode" -msgid "EchoLink" -msgstr "" - -#: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:219 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 -msgctxt "Propagation Mode" -msgid "Earth-Moon-Earth" -msgstr "" - -#: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:220 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 -msgctxt "Propagation Mode" -msgid "Sporadic E" -msgstr "" - -#: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:221 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 -msgctxt "Propagation Mode" -msgid "Field Aligned Irregularities" -msgstr "" - -#: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:222 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 -msgctxt "Propagation Mode" -msgid "F2 Reflection" -msgstr "" - -#: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:223 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 -msgctxt "Propagation Mode" -msgid "Internet-assisted" -msgstr "" - -#: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:224 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 -msgctxt "Propagation Mode" -msgid "Ionoscatter" -msgstr "" - -#: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:225 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 -msgctxt "Propagation Mode" -msgid "IRLP" -msgstr "" - -#: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:226 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 -msgctxt "Propagation Mode" -msgid "Meteor scatter" -msgstr "" - -#: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:227 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 -msgctxt "Propagation Mode" -msgid "Terrestrial or atmospheric repeater or transponder" -msgstr "" - -#: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:228 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 -msgctxt "Propagation Mode" -msgid "Rain scatter" -msgstr "" - -#: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:229 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 -msgctxt "Propagation Mode" -msgid "Satellite" -msgstr "Satellit" - -#: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:230 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 -msgctxt "Propagation Mode" -msgid "Trans-equatorial" -msgstr "" - -#: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:231 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 -msgctxt "Propagation Mode" -msgid "Tropospheric ducting" -msgstr "" - #: application/views/dashboard/index.php:5 msgid "RSTS" msgstr "" @@ -5048,85 +5623,99 @@ msgstr "" msgid "RSTR" msgstr "" -#: application/views/dashboard/index.php:56 +#: application/views/dashboard/index.php:58 msgid "" "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" msgstr "" -#: application/views/dashboard/index.php:63 +#: application/views/dashboard/index.php:65 #, php-format msgctxt "Dashboard Warning" -msgid "You need to update country files! Click %s to do it." +msgid "You need to update country files! Click %shere%s to do it." msgstr "" -#: application/views/dashboard/index.php:72 +#: application/views/dashboard/index.php:73 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station locations. Click %s to do it:" +msgid "You have no station locations. Click %shere%s to do it." msgstr "" #: application/views/dashboard/index.php:81 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station logbook. Click %s to do it:" +msgid "You have no station logbook. Click %shere%s to do it." msgstr "" -#: application/views/dashboard/index.php:91 +#: application/views/dashboard/index.php:89 +#, php-format +msgctxt "Dashboard Warning" +msgid "" +"Your active Station Location isn't linked to your Logbook. Click %shere%s to " +"do it." +msgstr "" + +#: application/views/dashboard/index.php:97 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station linked to your Logbook. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:106 #, php-format msgid "You have had %d QSO today" msgid_plural "You have had %d QSOs today" msgstr[0] "" msgstr[1] "" -#: application/views/dashboard/index.php:97 +#: application/views/dashboard/index.php:112 msgid "You have made no QSOs today; time to turn on the radio!" msgstr "Inga QSOn idag - dags att slå på radion!" -#: application/views/dashboard/index.php:104 +#: application/views/dashboard/index.php:119 msgid "Attention: you need to set an active station location." msgstr "OBS! Du behöver ange en aktiv station location." -#: application/views/dashboard/index.php:110 +#: application/views/dashboard/index.php:125 msgid "" "You have themes without defined theme mode. Please ask the admin to edit the " "themes." msgstr "" -#: application/views/dashboard/index.php:118 +#: application/views/dashboard/index.php:133 msgid "At least one of your LoTW certificates is expired!" msgstr "Minst ett av dina LoTW-certifikat har löpt ut!" -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:139 msgid "At least one of your LoTW certificates is about to expire!" msgstr "Minst ett av dina LoTW-certifikat är på väg att löpa ut!" -#: application/views/dashboard/index.php:213 +#: application/views/dashboard/index.php:229 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:252 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "Länder Breakdown" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:269 #: application/views/visitor/index.php:275 msgid "Needed" msgstr "Behövs" -#: application/views/dashboard/index.php:266 -#: application/views/dashboard/index.php:293 -#: application/views/dashboard/index.php:314 -#: application/views/dashboard/index.php:335 +#: application/views/dashboard/index.php:282 +#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:330 +#: application/views/dashboard/index.php:351 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:167 -#: application/views/qso/edit_ajax.php:390 -#: application/views/qso/edit_ajax.php:451 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:550 +#: application/views/qso/edit_ajax.php:417 +#: application/views/qso/edit_ajax.php:478 +#: application/views/qso/edit_ajax.php:518 application/views/qso/index.php:572 #: application/views/search/result_search.php:8 #: application/views/search/search_result_ajax.php:180 #: application/views/search/search_result_ajax.php:260 @@ -5134,91 +5723,91 @@ msgstr "Behövs" #: application/views/search/search_result_ajax.php:332 #: application/views/search/search_result_ajax.php:362 #: application/views/statistics/custom_result.php:89 -#: application/views/view_log/partial/log_ajax.php:140 -#: application/views/view_log/partial/log_ajax.php:217 -#: application/views/view_log/partial/log_ajax.php:237 -#: application/views/view_log/partial/log_ajax.php:287 -#: application/views/view_log/partial/log_ajax.php:295 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:289 +#: application/views/view_log/partial/log_ajax.php:297 #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 -#: src/QSLManager/QSO.php:371 src/QSLManager/QSO.php:423 -#: src/QSLManager/QSO.php:459 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:270 +#: src/QSLManager/QSO.php:373 src/QSLManager/QSO.php:425 +#: src/QSLManager/QSO.php:461 msgid "Sent" msgstr "Skickad" -#: application/views/dashboard/index.php:272 -#: application/views/dashboard/index.php:299 -#: application/views/dashboard/index.php:320 -#: application/views/dashboard/index.php:341 +#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:315 +#: application/views/dashboard/index.php:336 +#: application/views/dashboard/index.php:357 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 #: application/views/qslprint/qsolist.php:151 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:423 -#: application/views/qso/edit_ajax.php:464 -#: application/views/qso/edit_ajax.php:503 +#: application/views/qso/edit_ajax.php:450 +#: application/views/qso/edit_ajax.php:491 +#: application/views/qso/edit_ajax.php:530 #: application/views/search/search_result_ajax.php:222 #: application/views/search/search_result_ajax.php:273 #: application/views/search/search_result_ajax.php:313 #: application/views/search/search_result_ajax.php:345 #: application/views/search/search_result_ajax.php:375 -#: application/views/view_log/partial/log_ajax.php:178 -#: application/views/view_log/partial/log_ajax.php:218 -#: application/views/view_log/partial/log_ajax.php:263 -#: application/views/view_log/partial/log_ajax.php:288 -#: application/views/view_log/partial/log_ajax.php:296 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:265 +#: application/views/view_log/partial/log_ajax.php:290 +#: application/views/view_log/partial/log_ajax.php:298 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 -#: src/QSLManager/QSO.php:394 src/QSLManager/QSO.php:436 -#: src/QSLManager/QSO.php:472 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:315 +#: src/QSLManager/QSO.php:396 src/QSLManager/QSO.php:438 +#: src/QSLManager/QSO.php:474 msgid "Received" msgstr "Mottagen" -#: application/views/dashboard/index.php:278 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:388 -#: application/views/logbookadvanced/index.php:399 +#: application/views/dashboard/index.php:294 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:415 +#: application/views/logbookadvanced/index.php:426 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 -#: application/views/qso/edit_ajax.php:395 -#: application/views/qso/edit_ajax.php:428 -#: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:469 +#: application/views/qso/edit_ajax.php:422 +#: application/views/qso/edit_ajax.php:455 +#: application/views/qso/edit_ajax.php:483 #: application/views/qso/edit_ajax.php:496 -#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:555 +#: application/views/qso/edit_ajax.php:523 +#: application/views/qso/edit_ajax.php:535 application/views/qso/index.php:577 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 -#: application/views/view_log/partial/log_ajax.php:146 -#: application/views/view_log/partial/log_ajax.php:184 -#: application/views/view_log/partial/log_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:273 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 -#: src/QSLManager/QSO.php:319 src/QSLManager/QSO.php:379 -#: src/QSLManager/QSO.php:402 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +#: application/views/view_log/partial/log_ajax.php:249 +#: application/views/view_log/partial/log_ajax.php:275 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:276 +#: src/QSLManager/QSO.php:321 src/QSLManager/QSO.php:381 +#: src/QSLManager/QSO.php:404 msgid "Requested" msgstr "Begärd" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:304 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:351 +#: application/views/dashboard/index.php:367 msgid "VUCC-Grids" msgstr "" #: application/views/dayswithqso/index.php:2 -#: application/views/interface_assets/header.php:146 +#: application/views/interface_assets/header.php:148 msgid "Days with QSOs" msgstr "Dagar med QSOs" @@ -5247,7 +5836,7 @@ msgstr "" #: application/views/dayswithqso/index.php:58 #: application/views/dayswithqso/index.php:86 #: application/views/dayswithqso/index.php:108 -#: application/views/timeline/index.php:120 +#: application/views/timeline/index.php:153 msgid "End Date" msgstr "" @@ -5314,9 +5903,7 @@ msgstr "" #: application/views/debug/index.php:47 #, php-format -msgid "" -"Check this wiki article here for " -"more information." +msgid "Check this wiki article %shere%s for more information." msgstr "" #: application/views/debug/index.php:48 @@ -5460,7 +6047,7 @@ msgstr "" msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:283 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:671 msgid "Settings" msgstr "" @@ -5517,7 +6104,7 @@ msgstr "" #: application/views/debug/index.php:506 application/views/debug/index.php:511 #: application/views/debug/index.php:516 application/views/debug/index.php:521 #: application/views/debug/index.php:526 -#: application/views/station_profile/edit.php:22 +#: application/views/station_profile/edit.php:49 msgid "Update" msgstr "" @@ -5559,9 +6146,8 @@ msgstr[1] "" #: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:57 -#: application/views/station_profile/edit.php:46 -#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" @@ -5589,69 +6175,93 @@ msgid "Everything ok" msgstr "" #: application/views/debug/index.php:629 -msgid "Bulgarian" +msgid "Albanian" msgstr "" #: application/views/debug/index.php:630 -msgid "Chinese (Simplified)" +msgid "Bosnian" msgstr "" #: application/views/debug/index.php:631 -msgid "Czech" +msgid "Bulgarian" msgstr "" #: application/views/debug/index.php:632 -msgid "Dutch" +msgid "Chinese (Simplified)" msgstr "" #: application/views/debug/index.php:633 -msgid "English" +msgid "Croatian" msgstr "" #: application/views/debug/index.php:634 -msgid "Finnish" +msgid "Czech" msgstr "" #: application/views/debug/index.php:635 -msgid "French" +msgid "Dutch" msgstr "" #: application/views/debug/index.php:636 -msgid "German" +msgid "English" msgstr "" #: application/views/debug/index.php:637 -msgid "Greek" +msgid "Finnish" msgstr "" #: application/views/debug/index.php:638 -msgid "Italian" +msgid "French" msgstr "" #: application/views/debug/index.php:639 -msgid "Polish" +msgid "German" msgstr "" #: application/views/debug/index.php:640 -msgid "Portuguese" +msgid "Greek" msgstr "" #: application/views/debug/index.php:641 -msgid "Russian" +msgid "Italian" msgstr "" #: application/views/debug/index.php:642 -msgid "Spanish" +msgid "Montenegrin" msgstr "" #: application/views/debug/index.php:643 -msgid "Swedish" +msgid "Polish" msgstr "" #: application/views/debug/index.php:644 +msgid "Portuguese" +msgstr "" + +#: application/views/debug/index.php:645 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:646 +msgid "Serbian" +msgstr "" + +#: application/views/debug/index.php:647 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:648 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:649 msgid "Turkish" msgstr "" +#: application/views/distancerecords/index.php:4 +msgid "This page lists distance records per satellite based on gridsquares." +msgstr "" + #: application/views/distances/index.php:7 #: application/views/interface_assets/footer.php:30 #: application/views/simplefle/index.php:68 @@ -5659,7 +6269,8 @@ msgid "QSO Data" msgstr "" #: application/views/distances/index.php:9 -msgid "contacts were plotted.
Your furthest contact was with" +#, php-format +msgid "contacts were plotted.%s Your furthest contact was with" msgstr "" #: application/views/distances/index.php:10 @@ -5701,7 +6312,7 @@ msgid "Date to" msgstr "" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:366 +#: application/views/view_log/qso.php:369 msgid "QSL Info" msgstr "QSL-info" @@ -5727,7 +6338,7 @@ msgstr "" #: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 #: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 #: application/views/eqsl/tools.php:15 -#: application/views/interface_assets/header.php:243 +#: application/views/interface_assets/header.php:247 msgid "Tools" msgstr "" @@ -5867,27 +6478,15 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2324 -#: application/views/interface_assets/footer.php:2342 -#: application/views/interface_assets/footer.php:2363 -#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2338 +#: application/views/interface_assets/footer.php:2356 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 #: application/views/qslcard/index.php:66 -#: application/views/view_log/qso.php:614 +#: application/views/view_log/qso.php:617 msgid "View" msgstr "" -#: application/views/gridmap/index.php:38 -#: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:604 -#: application/views/logbookadvanced/useroptions.php:118 -msgid "Propagation" -msgstr "" - -#: application/views/gridmap/index.php:42 -msgid "None/Empty" -msgstr "" - #: application/views/gridmap/index.php:43 msgid "All except SAT" msgstr "" @@ -5983,8 +6582,8 @@ msgstr "" #: application/views/interface_assets/footer.php:31 #: application/views/search/search_result_ajax.php:404 #: application/views/view_log/partial/log.php:135 -#: application/views/view_log/partial/log_ajax.php:318 -#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log_ajax.php:320 +#: application/views/view_log/qso.php:437 msgid "Edit QSO" msgstr "Redigera QSO" @@ -5992,171 +6591,192 @@ msgstr "Redigera QSO" msgid "Attention" msgstr "" -#: application/views/interface_assets/footer.php:36 -msgid "OK" -msgstr "" - -#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/footer.php:38 msgid "Warning! Are you sure you want delete QSO with " msgstr "" -#: application/views/interface_assets/footer.php:38 +#: application/views/interface_assets/footer.php:39 #: application/views/user/edit.php:493 msgid "Colors" msgstr "" -#: application/views/interface_assets/footer.php:40 +#: application/views/interface_assets/footer.php:41 msgid "Worked not confirmed" msgstr "" -#: application/views/interface_assets/footer.php:41 +#: application/views/interface_assets/footer.php:42 msgid "Not worked" msgstr "" -#: application/views/interface_assets/footer.php:44 -#: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/interface_assets/footer.php:46 +#: application/views/qso/index.php:623 +#: application/views/visitor/layout/footer.php:246 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:47 #: application/views/qso/edit_ajax.php:211 -#: application/views/qso/edit_ajax.php:512 +#: application/views/qso/edit_ajax.php:539 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "" -#: application/views/interface_assets/footer.php:127 -#: application/views/interface_assets/header.php:434 +#: application/views/interface_assets/footer.php:48 +msgid "No states for this DXCC available" +msgstr "" + +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "" + +#: application/views/interface_assets/footer.php:132 +#: application/views/interface_assets/header.php:440 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:392 +#: application/views/interface_assets/footer.php:398 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:395 +#: application/views/interface_assets/footer.php:401 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:411 +#: application/views/interface_assets/footer.php:417 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:413 +#: application/views/interface_assets/footer.php:419 #: application/views/search/filter.php:46 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:415 +#: application/views/interface_assets/footer.php:421 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:420 +#: application/views/interface_assets/footer.php:426 #: application/views/search/filter.php:60 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:432 -#: application/views/interface_assets/footer.php:561 -#: application/views/interface_assets/footer.php:625 +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:437 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:458 -#: application/views/interface_assets/footer.php:589 +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 #: application/views/search/filter.php:79 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:496 +#: application/views/interface_assets/footer.php:502 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:516 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:519 +#: application/views/interface_assets/footer.php:525 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:545 +#: application/views/interface_assets/footer.php:551 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:549 +#: application/views/interface_assets/footer.php:555 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:678 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1156 -#, php-format -msgid "You're not logged it. Please login" +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:533 +msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:1362 -#: application/views/interface_assets/footer.php:1366 -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1506 -#: application/views/interface_assets/footer.php:1510 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:731 +msgid "Count: " +msgstr "" + +#: application/views/interface_assets/footer.php:732 +msgid "Grids: " +msgstr "" + +#: application/views/interface_assets/footer.php:1167 +#, php-format +msgid "You're not logged in. Please %slogin%s" +msgstr "" + +#: application/views/interface_assets/footer.php:1375 +#: application/views/interface_assets/footer.php:1379 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1523 +#: application/views/interface_assets/footer.php:1526 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1526 msgid "Total count" msgstr "Totalt antal" -#: application/views/interface_assets/footer.php:2100 +#: application/views/interface_assets/footer.php:2114 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2120 +#: application/views/interface_assets/footer.php:2134 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2160 +#: application/views/interface_assets/footer.php:2174 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2162 +#: application/views/interface_assets/footer.php:2176 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2335 -#: application/views/interface_assets/footer.php:2374 -#: application/views/view_log/qso.php:604 +#: application/views/interface_assets/footer.php:2349 +#: application/views/interface_assets/footer.php:2388 +#: application/views/view_log/qso.php:607 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2354 +#: application/views/interface_assets/footer.php:2368 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2392 +#: application/views/interface_assets/footer.php:2406 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2403 -#: application/views/interface_assets/footer.php:2428 +#: application/views/interface_assets/footer.php:2417 +#: application/views/interface_assets/footer.php:2442 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2439 +#: application/views/interface_assets/footer.php:2453 msgid "Something went wrong. Please try again!" msgstr "" @@ -6212,91 +6832,91 @@ msgstr "Analyser" msgid "Activated Gridsquares" msgstr "Aktiverad Gridsquares" -#: application/views/interface_assets/header.php:160 +#: application/views/interface_assets/header.php:162 msgid "International" msgstr "" -#: application/views/interface_assets/header.php:166 +#: application/views/interface_assets/header.php:168 msgid "ITU" msgstr "" -#: application/views/interface_assets/header.php:186 +#: application/views/interface_assets/header.php:190 msgid "Canada" msgstr "" -#: application/views/interface_assets/header.php:192 +#: application/views/interface_assets/header.php:196 msgid "Germany" msgstr "" -#: application/views/interface_assets/header.php:196 +#: application/views/interface_assets/header.php:200 msgid "DL Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:200 +#: application/views/interface_assets/header.php:204 msgid "Great Britain" msgstr "" -#: application/views/interface_assets/header.php:202 +#: application/views/interface_assets/header.php:206 msgid "WAB" msgstr "" -#: application/views/interface_assets/header.php:206 +#: application/views/interface_assets/header.php:210 msgid "Japan" msgstr "" -#: application/views/interface_assets/header.php:212 +#: application/views/interface_assets/header.php:216 msgid "JA Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:216 +#: application/views/interface_assets/header.php:220 msgid "Luxemburg" msgstr "" -#: application/views/interface_assets/header.php:218 +#: application/views/interface_assets/header.php:222 msgid "LX Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:222 +#: application/views/interface_assets/header.php:226 msgid "Switzerland" msgstr "" -#: application/views/interface_assets/header.php:228 +#: application/views/interface_assets/header.php:232 msgid "USA" msgstr "" -#: application/views/interface_assets/header.php:234 +#: application/views/interface_assets/header.php:238 msgid "US Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:251 +#: application/views/interface_assets/header.php:255 msgid "Bandmap" msgstr "Bandkarta" -#: application/views/interface_assets/header.php:253 +#: application/views/interface_assets/header.php:257 msgid "SAT Timers" msgstr "" -#: application/views/interface_assets/header.php:256 +#: application/views/interface_assets/header.php:260 msgid "Satellite Flightpath" msgstr "" -#: application/views/interface_assets/header.php:258 +#: application/views/interface_assets/header.php:262 msgid "Satellite Pass" msgstr "" -#: application/views/interface_assets/header.php:265 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:269 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:274 msgid "Global Options" msgstr "Globala alternativ" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:280 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:11 +#: application/views/satellite/pass.php:495 #: application/views/statistics/custom.php:20 #: application/views/statistics/custom_result.php:21 #: application/views/statistics/index.php:39 @@ -6304,79 +6924,83 @@ msgstr "Globala alternativ" msgid "Satellites" msgstr "" -#: application/views/interface_assets/header.php:282 +#: application/views/interface_assets/header.php:286 msgid "Update Country Files" msgstr "Uppdatera landsfiler" -#: application/views/interface_assets/header.php:286 +#: application/views/interface_assets/header.php:290 msgid "Debug Information" msgstr "Debug Info" -#: application/views/interface_assets/header.php:333 +#: application/views/interface_assets/header.php:337 msgid "Add/Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:335 +#: application/views/interface_assets/header.php:339 msgid "Log" msgstr "" -#: application/views/interface_assets/header.php:342 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:346 +#: application/views/logbookadvanced/index.php:474 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:371 +#: application/views/interface_assets/header.php:375 #: application/views/user/edit.php:49 msgid "Account" msgstr "Användarkontoinformation" -#: application/views/interface_assets/header.php:386 +#: application/views/interface_assets/header.php:390 msgid "Other Export Options" msgstr "" -#: application/views/interface_assets/header.php:394 +#: application/views/interface_assets/header.php:398 msgid "Cabrillo Export" msgstr "" -#: application/views/interface_assets/header.php:418 -msgid "QSL Queue" -msgstr "" - -#: application/views/interface_assets/header.php:419 -msgid "Labels" -msgstr "Etiketter" - -#: application/views/interface_assets/header.php:421 -msgid "Third-Party Services" +#: application/views/interface_assets/header.php:400 +msgid "EDI Export" msgstr "" #: application/views/interface_assets/header.php:424 -msgid "eQSL Import / Export" +msgid "QSL Queue" msgstr "" #: application/views/interface_assets/header.php:425 +msgid "Labels" +msgstr "Etiketter" + +#: application/views/interface_assets/header.php:427 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:430 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:431 msgid "HRDLog Logbook" msgstr "HRDLog Loggbok" -#: application/views/interface_assets/header.php:435 +#: application/views/interface_assets/header.php:441 msgid "Help" msgstr "Hjälp" -#: application/views/interface_assets/header.php:436 +#: application/views/interface_assets/header.php:442 msgid "Forum" msgstr "" -#: application/views/interface_assets/header.php:438 +#: application/views/interface_assets/header.php:444 msgid "Logout" msgstr "Logga ut" -#: application/views/interface_assets/header.php:446 +#: application/views/interface_assets/header.php:452 msgid "Select a Location" msgstr "" -#: application/views/interface_assets/header.php:525 +#: application/views/interface_assets/header.php:531 msgid "Extras" msgstr "" @@ -6647,86 +7271,122 @@ msgid "Start printing at?" msgstr "" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:405 -#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" -#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/edit.php:23 msgid "LoTW Sent" msgstr "" -#: application/views/logbookadvanced/edit.php:23 +#: application/views/logbookadvanced/edit.php:24 msgid "LoTW Received" msgstr "" -#: application/views/logbookadvanced/edit.php:73 +#: application/views/logbookadvanced/edit.php:75 msgid "SAT Mode" msgstr "" -#: application/views/logbookadvanced/edit.php:87 +#: application/views/logbookadvanced/edit.php:89 msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:174 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:144 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:148 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:152 +#: application/views/logbookadvanced/index.php:569 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:148 +#: application/views/logbookadvanced/index.php:159 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:224 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:540 +msgid "Invalid" +msgstr "" + +#: application/views/logbookadvanced/index.php:324 msgid "QSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:375 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:397 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:439 #: application/views/lookup/lotwuser.php:12 -#: application/views/qso/edit_ajax.php:394 -#: application/views/qso/edit_ajax.php:427 -#: application/views/qso/edit_ajax.php:455 -#: application/views/qso/edit_ajax.php:468 +#: application/views/qso/edit_ajax.php:421 +#: application/views/qso/edit_ajax.php:454 +#: application/views/qso/edit_ajax.php:482 #: application/views/qso/edit_ajax.php:495 -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 +#: application/views/qso/edit_ajax.php:522 +#: application/views/qso/edit_ajax.php:534 application/views/qso/index.php:576 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:209 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:236 -#: application/views/station_profile/create.php:275 -#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 #: application/views/station_profile/create.php:293 -#: application/views/station_profile/edit.php:330 -#: application/views/station_profile/edit.php:338 -#: application/views/station_profile/edit.php:364 -#: application/views/station_profile/edit.php:385 -#: application/views/station_profile/edit.php:403 -#: application/views/station_profile/edit.php:410 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 +#: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 #: application/views/user/edit.php:347 application/views/user/edit.php:358 #: application/views/user/edit.php:369 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:399 @@ -6736,35 +7396,35 @@ msgstr "" msgid "Yes" msgstr "Ja" -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 -#: application/views/logbookadvanced/index.php:376 -#: application/views/logbookadvanced/index.php:387 -#: application/views/logbookadvanced/index.php:398 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:440 #: application/views/lookup/lotwuser.php:14 -#: application/views/qso/edit_ajax.php:393 -#: application/views/qso/edit_ajax.php:426 -#: application/views/qso/edit_ajax.php:454 -#: application/views/qso/edit_ajax.php:467 +#: application/views/qso/edit_ajax.php:420 +#: application/views/qso/edit_ajax.php:453 +#: application/views/qso/edit_ajax.php:481 #: application/views/qso/edit_ajax.php:494 -#: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 +#: application/views/qso/edit_ajax.php:521 +#: application/views/qso/edit_ajax.php:533 application/views/qso/index.php:575 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:210 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:237 -#: application/views/station_profile/create.php:276 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/create.php:292 -#: application/views/station_profile/edit.php:331 -#: application/views/station_profile/edit.php:339 -#: application/views/station_profile/edit.php:365 -#: application/views/station_profile/edit.php:386 -#: application/views/station_profile/edit.php:404 -#: application/views/station_profile/edit.php:411 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 #: application/views/user/edit.php:348 application/views/user/edit.php:359 #: application/views/user/edit.php:370 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:400 @@ -6775,32 +7435,32 @@ msgstr "Ja" msgid "No" msgstr "Nej" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 -#: application/views/logbookadvanced/index.php:389 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:416 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 -#: application/views/qso/edit_ajax.php:396 -#: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:497 application/views/qso/index.php:556 +#: application/views/qso/edit_ajax.php:423 +#: application/views/qso/edit_ajax.php:484 +#: application/views/qso/edit_ajax.php:524 application/views/qso/index.php:578 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:225 -#: application/views/view_log/partial/log_ajax.php:143 -#: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +#: src/QSLManager/QSO.php:273 src/QSLManager/QSO.php:318 msgid "Queued" msgstr "Köad" -#: application/views/logbookadvanced/index.php:304 -#: application/views/logbookadvanced/index.php:314 -#: application/views/logbookadvanced/index.php:346 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:368 -#: application/views/logbookadvanced/index.php:378 -#: application/views/logbookadvanced/index.php:390 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:373 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:417 +#: application/views/logbookadvanced/index.php:427 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6808,42 +7468,42 @@ msgstr "Köad" #: application/views/qslprint/qsolist.php:109 #: application/views/qslprint/qsolist.php:174 #: application/views/qslprint/qsolist.php:189 -#: application/views/qso/edit_ajax.php:397 -#: application/views/qso/edit_ajax.php:429 -#: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:470 -#: application/views/qso/edit_ajax.php:498 -#: application/views/qso/edit_ajax.php:509 application/views/qso/index.php:557 +#: application/views/qso/edit_ajax.php:424 +#: application/views/qso/edit_ajax.php:456 +#: application/views/qso/edit_ajax.php:485 +#: application/views/qso/edit_ajax.php:497 +#: application/views/qso/edit_ajax.php:525 +#: application/views/qso/edit_ajax.php:536 application/views/qso/index.php:579 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/search/search_result_ajax.php:305 #: application/views/search/search_result_ajax.php:320 -#: application/views/view_log/partial/log_ajax.php:149 -#: application/views/view_log/partial/log_ajax.php:187 -#: application/views/view_log/partial/log_ajax.php:242 -#: application/views/view_log/partial/log_ajax.php:268 -#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 -#: src/QSLManager/QSO.php:375 src/QSLManager/QSO.php:398 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +#: application/views/view_log/partial/log_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:270 +#: src/QSLManager/QSO.php:279 src/QSLManager/QSO.php:324 +#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:400 msgid "Invalid (Ignore)" msgstr "" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:335 msgid "QSL received" msgstr "" -#: application/views/logbookadvanced/index.php:315 -#: application/views/logbookadvanced/index.php:357 -#: application/views/logbookadvanced/index.php:379 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:428 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:346 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:359 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6852,268 +7512,264 @@ msgstr "" #: application/views/qslprint/qsolist.php:77 #: application/views/qslprint/qsolist.php:119 #: application/views/qslprint/qsolist.php:210 -#: application/views/qso/edit_ajax.php:408 -#: application/views/qso/edit_ajax.php:441 application/views/qso/index.php:568 +#: application/views/qso/edit_ajax.php:435 +#: application/views/qso/edit_ajax.php:468 application/views/qso/index.php:590 #: application/views/search/search_result_ajax.php:199 #: application/views/search/search_result_ajax.php:241 -#: application/views/view_log/partial/log_ajax.php:162 -#: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +#: src/QSLManager/QSO.php:296 src/QSLManager/QSO.php:339 msgid "Bureau" msgstr "Byrå" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:360 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 #: application/views/qslprint/qsolist.php:80 #: application/views/qslprint/qsolist.php:122 #: application/views/qslprint/qsolist.php:211 -#: application/views/qso/edit_ajax.php:407 -#: application/views/qso/edit_ajax.php:440 application/views/qso/index.php:567 +#: application/views/qso/edit_ajax.php:434 +#: application/views/qso/edit_ajax.php:467 application/views/qso/index.php:589 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 -#: application/views/view_log/partial/log_ajax.php:165 -#: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +#: src/QSLManager/QSO.php:299 src/QSLManager/QSO.php:342 msgid "Direct" msgstr "Direkt" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 #: application/views/qslprint/qsolist.php:86 #: application/views/qslprint/qsolist.php:128 #: application/views/qslprint/qsolist.php:212 -#: application/views/qso/edit_ajax.php:409 -#: application/views/qso/edit_ajax.php:442 application/views/qso/index.php:569 +#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:591 #: application/views/search/search_result_ajax.php:208 #: application/views/search/search_result_ajax.php:250 -#: application/views/view_log/partial/log_ajax.php:171 -#: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +#: src/QSLManager/QSO.php:305 src/QSLManager/QSO.php:348 msgid "Electronic" msgstr "Elektronisk" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:362 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 -#: application/views/qso/edit_ajax.php:410 -#: application/views/qso/edit_ajax.php:443 application/views/qso/index.php:570 +#: application/views/qso/edit_ajax.php:437 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:592 #: application/views/search/search_result_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:206 +#: application/views/view_log/partial/log_ajax.php:208 msgid "Manager" msgstr "" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:356 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:366 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:377 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:388 msgid "Clublog sent" msgstr "" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:399 msgid "Clublog received" msgstr "" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:410 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:436 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:448 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" -#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:451 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:425 -#: application/views/qso/edit_ajax.php:595 +#: application/views/logbookadvanced/index.php:452 +#: application/views/qso/edit_ajax.php:622 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:453 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:454 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:456 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:457 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:459 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:460 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:462 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:463 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:465 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:466 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:472 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:477 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:480 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:486 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:492 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:495 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:498 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:501 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:507 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:516 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:518 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:527 #: application/views/qso/index.php:272 -#: application/views/station_profile/edit.php:65 +#: application/views/station_profile/edit.php:92 msgid "Location" msgstr "QTH" -#: application/views/logbookadvanced/index.php:506 -msgid "Callsign: " -msgstr "" - -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:539 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:547 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:605 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:650 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -7141,41 +7797,15 @@ msgstr "" msgid "Column" msgstr "" -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/useroptions.php:152 msgctxt "Map Options" msgid "Layer" msgstr "" -#: application/views/logbookadvanced/useroptions.php:149 +#: application/views/logbookadvanced/useroptions.php:153 msgid "Default on" msgstr "" -#: application/views/logbookadvanced/useroptions.php:154 -#: application/views/stationsetup/exportmapoptions.php:23 -msgctxt "Map Options" -msgid "Path lines" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:158 -msgctxt "Map Options" -msgid "Gridsquares" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:162 -msgctxt "Map Options" -msgid "CQ Zones" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:166 -msgctxt "Map Options" -msgid "ITU Zones" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:170 -msgctxt "Map Options" -msgid "Night Shadow" -msgstr "" - #: application/views/lookup/index.php:8 msgid "US State" msgstr "" @@ -7279,59 +7909,63 @@ msgstr "Tillgängliga certifikat" msgid "Upload Certificate" msgstr "Ladda upp certifikat" -#: application/views/lotw_views/index.php:41 +#: application/views/lotw_views/index.php:37 msgid "QSO Start Date" msgstr "QSO startdatum" -#: application/views/lotw_views/index.php:42 +#: application/views/lotw_views/index.php:38 msgid "QSO End Date" msgstr "QSO slutdatum" -#: application/views/lotw_views/index.php:43 +#: application/views/lotw_views/index.php:39 msgid "Date Created" msgstr "Skapad datum" -#: application/views/lotw_views/index.php:44 +#: application/views/lotw_views/index.php:40 msgid "Date Expires" msgstr "Utgår datum" -#: application/views/lotw_views/index.php:46 -#: application/views/view_log/qso.php:404 +#: application/views/lotw_views/index.php:42 +#: application/views/view_log/qso.php:407 msgid "Last Upload" msgstr "Last upload" -#: application/views/lotw_views/index.php:91 +#: application/views/lotw_views/index.php:87 msgid "Expired" msgstr "Utgått" -#: application/views/lotw_views/index.php:93 +#: application/views/lotw_views/index.php:89 msgid "Expiring" msgstr "Utgår" -#: application/views/lotw_views/index.php:105 +#: application/views/lotw_views/index.php:91 +msgid "Valid" +msgstr "Giltig" + +#: application/views/lotw_views/index.php:101 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:108 +#: application/views/lotw_views/index.php:104 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:114 +#: application/views/lotw_views/index.php:110 msgid "Not Synced" msgstr "Ej synkad" -#: application/views/lotw_views/index.php:129 +#: application/views/lotw_views/index.php:125 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:144 +#: application/views/lotw_views/index.php:140 msgid "Information" msgstr "" -#: application/views/lotw_views/index.php:149 +#: application/views/lotw_views/index.php:145 msgid "Manual Sync" msgstr "Manuell synk" @@ -7543,6 +8177,14 @@ msgstr "" msgid "This enables the button to Wavelog's Github page in the public view" msgstr "" +#: application/views/options/appearance.php:107 +msgid "Public Login Button" +msgstr "" + +#: application/views/options/appearance.php:112 +msgid "This enables the button to login to Wavelog in the public view" +msgstr "" + #: application/views/options/dxcluster.php:38 msgid "Provider of DXClusterCache" msgstr "Leverantör av DXClusterCache" @@ -7848,7 +8490,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:64 #: application/views/oqrs/showrequests.php:87 -#: application/views/user/main.php:48 application/views/user/profile.php:24 +#: application/views/user/index.php:48 application/views/user/profile.php:24 msgid "E-mail" msgstr "E-post" @@ -7871,21 +8513,21 @@ msgstr "" #: application/views/search/search_result_ajax.php:127 #: application/views/user/edit.php:478 #: application/views/view_log/partial/log.php:22 -#: application/views/view_log/partial/log_ajax.php:86 -#: application/views/view_log/qso.php:503 -#: application/views/view_log/qso.php:507 -#: application/views/view_log/qso.php:511 -#: application/views/view_log/qso.php:515 -#: application/views/view_log/qso.php:521 -#: application/views/view_log/qso.php:528 -#: application/views/view_log/qso.php:535 -#: application/views/view_log/qso.php:542 -#: application/views/view_log/qso.php:549 -#: application/views/view_log/qso.php:556 -#: application/views/view_log/qso.php:563 -#: application/views/view_log/qso.php:570 -#: application/views/view_log/qso.php:577 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log_ajax.php:88 +#: application/views/view_log/qso.php:506 +#: application/views/view_log/qso.php:510 +#: application/views/view_log/qso.php:514 +#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:531 +#: application/views/view_log/qso.php:538 +#: application/views/view_log/qso.php:545 +#: application/views/view_log/qso.php:552 +#: application/views/view_log/qso.php:559 +#: application/views/view_log/qso.php:566 +#: application/views/view_log/qso.php:573 +#: application/views/view_log/qso.php:580 +#: application/views/view_log/qso.php:585 msgid "Station" msgstr "" @@ -7893,10 +8535,10 @@ msgstr "" #: application/views/qslprint/qslprint.php:28 #: application/views/qslprint/qsolist.php:14 #: application/views/qslprint/qsolist.php:83 -#: application/views/qso/index.php:576 +#: application/views/qso/index.php:598 #: application/views/search/search_result_ajax.php:205 -#: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:300 +#: application/views/view_log/partial/log_ajax.php:170 +#: src/QSLManager/QSO.php:302 msgid "Via" msgstr "" @@ -8125,7 +8767,7 @@ msgid "Remove" msgstr "" #: application/views/qslprint/qslprint.php:33 -#: application/views/simplefle/index.php:133 +#: application/views/simplefle/index.php:139 msgid "QSO List" msgstr "" @@ -8171,35 +8813,20 @@ msgid "" "queue." msgstr "" -#: application/views/qso/components/winkeysettings.php:7 -#: application/views/qso/components/winkeysettings_results.php:7 -msgid "Winkey Macros" -msgstr "" - -#: application/views/qso/components/winkeysettings.php:12 -#: application/views/qso/components/winkeysettings.php:28 -#: application/views/qso/components/winkeysettings.php:44 -#: application/views/qso/components/winkeysettings.php:60 -#: application/views/qso/components/winkeysettings.php:76 -#: application/views/qso/components/winkeysettings_results.php:12 -#: application/views/qso/components/winkeysettings_results.php:28 -#: application/views/qso/components/winkeysettings_results.php:44 -#: application/views/qso/components/winkeysettings_results.php:60 -#: application/views/qso/components/winkeysettings_results.php:76 -#, php-format -msgid "Function %d - Name" -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:83 -#: application/views/qso/components/winkeysettings_results.php:19 -#: application/views/qso/components/winkeysettings_results.php:35 -#: application/views/qso/components/winkeysettings_results.php:51 -#: application/views/qso/components/winkeysettings_results.php:67 -#: application/views/qso/components/winkeysettings_results.php:83 +#, 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 #, php-format msgid "Function %d - Macro" msgstr "" @@ -8225,7 +8852,8 @@ msgid "RX Band" msgstr "" #: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:346 -#: application/views/view_log/qso.php:542 +#: application/views/reg1test/index.php:114 +#: application/views/view_log/qso.php:545 msgid "Transmit Power (W)" msgstr "Effekt (W)" @@ -8237,10 +8865,6 @@ msgstr "Ange effekt i watt, enbart med siffror." msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:177 -msgid "QTH" -msgstr "" - #: application/views/qso/edit_ajax.php:258 msgid "Sat Name" msgstr "" @@ -8249,69 +8873,85 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:356 application/views/qso/index.php:255 -#: application/views/qso/index.php:500 application/views/user/edit.php:599 -#: application/views/view_log/qso.php:332 -#: application/views/view_log/qso.php:582 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:545 +msgid "Antenna Azimuth (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:547 +msgid "Antenna azimuth in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:274 application/views/qso/index.php:551 +msgid "Antenna Elevation (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:276 application/views/qso/index.php:553 +msgid "Antenna elevation in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:383 application/views/qso/index.php:255 +#: application/views/qso/index.php:510 application/views/user/edit.php:599 +#: application/views/view_log/qso.php:335 +#: application/views/view_log/qso.php:585 msgid "Sig Info" msgstr "" -#: application/views/qso/edit_ajax.php:369 +#: application/views/qso/edit_ajax.php:396 msgid "Notes (for internal usage only)" msgstr "" -#: application/views/qso/edit_ajax.php:403 +#: application/views/qso/edit_ajax.php:430 msgid "Sent Method" msgstr "" -#: application/views/qso/edit_ajax.php:406 -#: application/views/qso/edit_ajax.php:439 application/views/qso/index.php:563 -#: application/views/qso/index.php:566 +#: application/views/qso/edit_ajax.php:433 +#: application/views/qso/edit_ajax.php:466 application/views/qso/index.php:585 +#: application/views/qso/index.php:588 msgid "Method" msgstr "Metod" -#: application/views/qso/edit_ajax.php:416 +#: application/views/qso/edit_ajax.php:443 msgid "Sent Via" msgstr "" -#: application/views/qso/edit_ajax.php:430 -#: application/views/qso/edit_ajax.php:471 -#: application/views/qso/edit_ajax.php:510 +#: application/views/qso/edit_ajax.php:457 +#: application/views/qso/edit_ajax.php:498 +#: application/views/qso/edit_ajax.php:537 msgid "Verified (Match)" msgstr "" -#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:463 msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:477 application/views/qso/index.php:583 +#: application/views/qso/edit_ajax.php:504 application/views/qso/index.php:605 msgid "This note content is exported to QSL services like eqsl.cc." msgstr "Detta innehåll exporteras till QSL-services som eqsl etc." -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:586 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:608 msgid "Get the default message for eQSL, for this station." msgstr "" -#: application/views/qso/edit_ajax.php:530 +#: application/views/qso/edit_ajax.php:557 msgid "Change Station Profile" msgstr "" -#: application/views/qso/edit_ajax.php:576 +#: application/views/qso/edit_ajax.php:603 msgid "Exchange (R)" msgstr "" -#: application/views/qso/edit_ajax.php:581 +#: application/views/qso/edit_ajax.php:608 msgid "Exchange (S)" msgstr "" -#: application/views/qso/edit_ajax.php:593 +#: application/views/qso/edit_ajax.php:620 #: application/views/search/search_result_ajax.php:432 #: application/views/view_log/partial/log.php:156 -#: application/views/view_log/partial/log_ajax.php:346 +#: application/views/view_log/partial/log_ajax.php:348 msgid "Delete QSO" msgstr "Radera QSO" -#: application/views/qso/edit_ajax.php:596 +#: application/views/qso/edit_ajax.php:623 msgid "Save changes" msgstr "" @@ -8319,7 +8959,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:5 application/views/qso/index.php:694 +#: application/views/qso/index.php:5 application/views/qso/index.php:718 msgid "Previous Contacts" msgstr "Föregående QSOn" @@ -8359,23 +8999,23 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:149 -#: application/views/station_profile/edit.php:191 -#: application/views/user/edit.php:583 application/views/view_log/qso.php:282 -#: application/views/view_log/qso.php:549 +#: application/views/qso/index.php:196 application/views/qso/index.php:449 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 +#: application/views/user/edit.php:583 application/views/view_log/qso.php:285 +#: application/views/view_log/qso.php:552 msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:165 -#: application/views/station_profile/edit.php:219 -#: application/views/user/edit.php:587 application/views/view_log/qso.php:289 -#: application/views/view_log/qso.php:556 +#: application/views/qso/index.php:212 application/views/qso/index.php:466 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 +#: application/views/user/edit.php:587 application/views/view_log/qso.php:292 +#: application/views/view_log/qso.php:559 msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:322 application/views/view_log/qso.php:98 +#: application/views/qso/index.php:322 application/views/view_log/qso.php:100 msgid "Frequency (RX)" msgstr "Frekvens (RX)" @@ -8383,66 +9023,86 @@ msgstr "Frekvens (RX)" msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:458 +#: application/views/qso/index.php:468 msgid "For example: GM/NS-001." msgstr "Exempel: GM/NS-001." -#: application/views/qso/index.php:471 +#: application/views/qso/index.php:481 msgid "For example: DLFF-0069." msgstr "Exempel: SMFF-0069." -#: application/views/qso/index.php:484 +#: application/views/qso/index.php:494 msgid "For example: PA-0150. Multiple values allowed." msgstr "Exempel: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:496 +#: application/views/qso/index.php:506 msgid "For example: GMA" msgstr "Exempel: GMA" -#: application/views/qso/index.php:502 +#: application/views/qso/index.php:512 msgid "For example: DA/NW-357" msgstr "Exempel: DA/NW-357" -#: application/views/qso/index.php:510 +#: application/views/qso/index.php:520 msgid "For example: Q03" msgstr "Exempel: Q03" -#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +#: application/views/qso/index.php:529 application/views/view_log/qso.php:210 msgid "Satellite Name" msgstr "Satellitnamn" -#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +#: application/views/qso/index.php:537 application/views/view_log/qso.php:217 msgid "Satellite Mode" msgstr "Satellite-mode" -#: application/views/qso/index.php:538 +#: application/views/qso/index.php:560 msgid "" "Note content is used within Wavelog only and is not exported to other " "services." msgstr "" "Detta innehåll används bara inom Wavelog och kommer inte att exporteras." -#: application/views/qso/index.php:604 +#: application/views/qso/index.php:626 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:645 +#: application/views/qso/index.php:667 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:647 +#: application/views/qso/index.php:669 msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:678 +msgid "Stop" +msgstr "" + +#: application/views/qso/index.php:679 +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:680 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:686 +msgid "CW Speed" +msgstr "" + +#: application/views/qso/index.php:691 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:701 msgid "Suggestions" msgstr "Förslag" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:708 msgid "Profile Picture" msgstr "Profilbild" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:732 msgid "Max. 5 previous contacts are shown" msgstr "" @@ -8473,6 +9133,137 @@ msgstr "" msgid "Please wait..." msgstr "" +#: application/views/reg1test/index.php:6 +msgid "Select Band" +msgstr "" + +#: application/views/reg1test/index.php:8 +msgid "" +"Bands below 50Mhz are not valid for the EDI REG1TEST format and will produce " +"invalid files." +msgstr "" + +#: application/views/reg1test/index.php:18 +msgid "Export a contest to a REG1TEST EDI log" +msgstr "" + +#: application/views/reg1test/index.php:48 +msgid "Sent Exchange" +msgstr "" + +#: application/views/reg1test/index.php:50 +msgid "" +"The exchange which was sent during the contest. Can be any type of " +"information, e.g. Province, DOK, County, State, Power, Name. Max. length: 6 " +"characters." +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:66 +msgid "Callsign of responsible operator" +msgstr "" + +#: application/views/reg1test/index.php:72 +msgid "" +"List of all operators. Seperated with a semicolon ';'. The responsible " +"operator is not needed here." +msgstr "" + +#: application/views/reg1test/index.php:75 +msgid "Contest Address 1" +msgstr "" + +#: application/views/reg1test/index.php:77 +msgid "Address of the QTH used during the contest." +msgstr "" + +#: application/views/reg1test/index.php:80 +msgid "Contest Address 2" +msgstr "" + +#: application/views/reg1test/index.php:84 +msgid "Operator Address 1" +msgstr "" + +#: application/views/reg1test/index.php:86 +msgid "Address of the responsible operator." +msgstr "" + +#: application/views/reg1test/index.php:89 +msgid "Operator Address 2" +msgstr "" + +#: application/views/reg1test/index.php:93 +msgid "Operator Address Postalcode" +msgstr "" + +#: application/views/reg1test/index.php:97 +msgid "Operator Address City" +msgstr "" + +#: application/views/reg1test/index.php:101 +msgid "Operator Address Country" +msgstr "" + +#: application/views/reg1test/index.php:105 +msgid "Operator Phone Number" +msgstr "" + +#: application/views/reg1test/index.php:109 +msgid "Transmit Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:111 +msgid "Short description of the used equipment." +msgstr "" + +#: application/views/reg1test/index.php:116 +msgid "TX Power during the contest in Watt." +msgstr "" + +#: application/views/reg1test/index.php:119 +msgid "Receive Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:121 +msgid "If you used another gear for RX, then describe it here." +msgstr "" + +#: application/views/reg1test/index.php:124 +msgid "Antenna Description" +msgstr "" + +#: application/views/reg1test/index.php:126 +msgid "What kind of antenna was used." +msgstr "" + +#: application/views/reg1test/index.php:129 +msgid "Antenna Height Above Ground (m)" +msgstr "" + +#: application/views/reg1test/index.php:131 +msgid "Height of the antenna above the ground." +msgstr "" + +#: application/views/reg1test/index.php:134 +msgid "Band multiplicator" +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:141 +msgid "Any other remarks." +msgstr "" + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8562,10 +9353,71 @@ msgstr "" msgid "Satellite passes" msgstr "" -#: application/views/satellite/pass.php:548 +#: application/views/satellite/pass.php:8 +msgid "Min. Satellite Elevation" +msgstr "" + +#: application/views/satellite/pass.php:12 +msgid "Min. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:20 +msgid "Max. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:32 +msgid "Altitude (meters)" +msgstr "" + +#: application/views/satellite/pass.php:36 application/views/user/edit.php:179 +msgid "Timezone" +msgstr "Tidszon" + +#: application/views/satellite/pass.php:479 +msgid "Min. time" +msgstr "" + +#: application/views/satellite/pass.php:487 +msgid "Max. time" +msgstr "" + +#: application/views/satellite/pass.php:504 msgid "Load predictions" msgstr "" +#: application/views/satellite/passtable.php:6 +msgid "AOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:7 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "" + +#: application/views/satellite/passtable.php:8 +msgid "AOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:9 +msgid "AOS El" +msgstr "" + +#: application/views/satellite/passtable.php:10 +msgid "Max El" +msgstr "" + +#: application/views/satellite/passtable.php:11 +msgid "LOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:12 +msgid "LOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:13 +msgid "LOS El" +msgstr "" + #: application/views/sattimers/index.php:15 #, php-format msgid "" @@ -8586,10 +9438,6 @@ msgstr "" msgid "Max Elevation" msgstr "" -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "" - #: application/views/search/cqzones.php:5 #: application/views/search/lotw_unconfirmed.php:5 #: application/views/search/main.php:5 @@ -8696,50 +9544,50 @@ msgstr "" #: application/views/search/search_result_ajax.php:409 #: application/views/view_log/partial/log.php:140 -#: application/views/view_log/partial/log_ajax.php:323 +#: application/views/view_log/partial/log_ajax.php:325 msgid "Mark QSL Sent (Bureau)" msgstr "Ange QSL skickad (Byrå)" #: application/views/search/search_result_ajax.php:410 #: application/views/view_log/partial/log.php:141 -#: application/views/view_log/partial/log_ajax.php:324 +#: application/views/view_log/partial/log_ajax.php:326 msgid "Mark QSL Sent (Direct)" msgstr "Ange QSL skickad (Direkt)" #: application/views/search/search_result_ajax.php:417 #: application/views/view_log/partial/log.php:148 -#: application/views/view_log/partial/log_ajax.php:333 -#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log_ajax.php:335 +#: application/views/view_log/qso.php:655 msgid "Mark QSL Received (Bureau)" msgstr "Ange QSL mottagen (Byrå)" #: application/views/search/search_result_ajax.php:418 #: application/views/view_log/partial/log.php:149 -#: application/views/view_log/partial/log_ajax.php:334 -#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log_ajax.php:336 +#: application/views/view_log/qso.php:657 msgid "Mark QSL Received (Direct)" msgstr "Ange QSL mottagen (Direkt)" #: application/views/search/search_result_ajax.php:419 #: application/views/view_log/partial/log.php:150 -#: application/views/view_log/partial/log_ajax.php:325 +#: application/views/view_log/partial/log_ajax.php:327 msgid "Mark QSL Card Requested" msgstr "Ange QSL Karta Begärda" #: application/views/search/search_result_ajax.php:420 #: application/views/view_log/partial/log.php:151 -#: application/views/view_log/partial/log_ajax.php:326 -#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log_ajax.php:328 +#: application/views/view_log/qso.php:669 msgid "Mark QSL Card Not Required" msgstr "Ange QSL Karta Inte Nödvändig" #: application/views/search/search_result_ajax.php:426 -#: application/views/view_log/partial/log_ajax.php:340 +#: application/views/view_log/partial/log_ajax.php:342 msgid "Lookup on QRZ.com" msgstr "" #: application/views/search/search_result_ajax.php:428 -#: application/views/view_log/partial/log_ajax.php:342 +#: application/views/view_log/partial/log_ajax.php:344 msgid "Lookup on HamQTH" msgstr "" @@ -8774,7 +9622,7 @@ msgid "" msgstr "" #: application/views/simplefle/index.php:17 -#: application/views/simplefle/index.php:170 +#: application/views/simplefle/index.php:176 msgid "Syntax Help" msgstr "" @@ -8868,8 +9716,8 @@ msgstr "" #: application/views/simplefle/index.php:107 #, php-format msgid "" -"If you did operate from a new location, first create a new Station Location" +"If you did operate from a new location, first create a new %sStation " +"Location%s" msgstr "" #: application/views/simplefle/index.php:112 @@ -8884,24 +9732,24 @@ msgstr "" msgid "Enter the Data" msgstr "" -#: application/views/simplefle/index.php:148 +#: application/views/simplefle/index.php:154 msgid "Refs" msgstr "" -#: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +#: application/views/simplefle/index.php:166 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" msgstr "" -#: application/views/simplefle/index.php:167 +#: application/views/simplefle/index.php:173 msgid "Reload QSO List" msgstr "" -#: application/views/simplefle/index.php:168 +#: application/views/simplefle/index.php:174 msgid "Save in Wavelog" msgstr "" -#: application/views/simplefle/index.php:169 +#: application/views/simplefle/index.php:175 msgid "Clear Logging Session" msgstr "" @@ -8958,122 +9806,121 @@ msgstr "" #: application/views/simplefle/syntax_help.php:28 #, php-format -msgctxt "uses 'this article'" msgid "" -"A full summary of all commands and the necessary syntax can be found in %s " -"of our Wiki." +"A full summary of all commands and the necessary syntax can be found in " +"%sthis article%s of our Wiki." msgstr "" -#: application/views/station_profile/create.php:51 -#: application/views/station_profile/edit.php:40 +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:52 -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:59 -#: application/views/station_profile/edit.php:48 +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 msgid "Station callsign. For example: 4W7EST/P" msgstr "" -#: application/views/station_profile/create.php:63 -#: application/views/station_profile/edit.php:52 +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 msgid "Station Power (W)" msgstr "" -#: application/views/station_profile/create.php:65 -#: application/views/station_profile/edit.php:54 +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" -#: application/views/station_profile/create.php:68 -#: application/views/station_profile/edit.php:69 +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 msgid "Station DXCC" msgstr "" -#: application/views/station_profile/create.php:71 -#: application/views/station_profile/edit.php:72 +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 msgctxt "DXCC selection" msgid "None" msgstr "" -#: application/views/station_profile/create.php:78 -#: application/views/station_profile/edit.php:85 +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:83 -#: application/views/station_profile/edit.php:91 +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 msgid "Station City" msgstr "" -#: application/views/station_profile/create.php:85 -#: application/views/station_profile/edit.php:93 +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:94 -#: application/views/station_profile/edit.php:105 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 msgid "Station state. Applies to certain countries only." msgstr "" -#: application/views/station_profile/create.php:99 -#: application/views/station_profile/edit.php:110 +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 msgid "Station County" msgstr "" -#: application/views/station_profile/create.php:101 -#: application/views/station_profile/edit.php:112 +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/edit.php:138 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:138 -#: application/views/station_profile/edit.php:155 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 msgid "click here" msgstr "" -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/edit.php:155 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:135 -#: application/views/station_profile/edit.php:167 -#: application/views/station_profile/edit.php:170 +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 msgid "Station Gridsquare" msgstr "" -#: application/views/station_profile/create.php:140 -#: application/views/station_profile/edit.php:175 +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 msgid "Get Gridsquare" msgstr "" -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 #, php-format msgctxt "uses 'click here'" msgid "" @@ -9081,304 +9928,250 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:145 -#: application/views/station_profile/edit.php:180 +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" -#: application/views/station_profile/create.php:160 -#: application/views/station_profile/edit.php:205 +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 msgid "Station IOTA reference. For example: EU-005" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 #, php-format msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:183 -#: application/views/station_profile/edit.php:260 +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 msgid "Signature Name" msgstr "" -#: application/views/station_profile/create.php:185 -#: application/views/station_profile/edit.php:262 +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 msgid "Station Signature (e.g. GMA).." msgstr "" -#: application/views/station_profile/create.php:189 -#: application/views/station_profile/edit.php:266 +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 msgid "Signature Information" msgstr "" -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/edit.php:268 +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "" -#: application/views/station_profile/create.php:195 -#: application/views/station_profile/edit.php:281 +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:197 -#: application/views/station_profile/edit.php:283 +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "" -#: application/views/station_profile/create.php:201 -#: application/views/station_profile/edit.php:286 +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 msgid "Default QSLMSG" msgstr "" -#: application/views/station_profile/create.php:204 -#: application/views/station_profile/edit.php:289 +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "" -#: application/views/station_profile/create.php:207 -#: application/views/station_profile/edit.php:328 +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:212 -#: application/views/station_profile/edit.php:333 +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " "Clublog. If this is deactivated on it's own please check if the Call is " "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:215 -#: application/views/station_profile/edit.php:336 +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 msgid "ClubLog Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:224 -#: application/views/station_profile/edit.php:352 +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 msgid "HRDLog.net Username" msgstr "" -#: application/views/station_profile/create.php:226 -#: application/views/station_profile/edit.php:354 +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" -#: application/views/station_profile/create.php:229 -#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 msgid "HRDLog.net API Key" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:234 -#: application/views/station_profile/edit.php:362 +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 msgid "HRDLog.net Logbook Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:243 -#: application/views/station_profile/edit.php:297 +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 msgid "Subscription Required" msgstr "" -#: application/views/station_profile/create.php:248 +#: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/edit.php:310 +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 msgid "QRZ.com Logbook Upload" msgstr "" -#: application/views/station_profile/create.php:260 -#: application/views/station_profile/edit.php:313 +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:268 -#: application/views/station_profile/edit.php:378 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:273 -#: application/views/station_profile/edit.php:383 +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 msgid "QO-100 Dx Club Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:283 -#: application/views/station_profile/edit.php:401 +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 msgid "OQRS Enabled" msgstr "" -#: application/views/station_profile/create.php:290 -#: application/views/station_profile/edit.php:408 +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 msgid "OQRS Email alert" msgstr "" -#: application/views/station_profile/create.php:295 -#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 msgid "Make sure email is set up under admin and global options." msgstr "" -#: application/views/station_profile/create.php:298 -#: application/views/station_profile/edit.php:416 +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 msgid "OQRS Text" msgstr "" -#: application/views/station_profile/create.php:300 -#: application/views/station_profile/edit.php:418 +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 msgid "Some info you want to add regarding QSL'ing." msgstr "" -#: application/views/station_profile/edit.php:122 +#: application/views/station_profile/edit.php:149 msgid "Zones" msgstr "" -#: application/views/station_profile/edit.php:257 +#: application/views/station_profile/edit.php:284 msgid "Signature" msgstr "" -#: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:95 -msgid "" -"Station Locations define operating locations, such as your QTH, a friends " -"QTH, or a portable station." -msgstr "" - -#: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:96 -msgid "Similar to logbooks, a station profile keeps a set of QSOs together." -msgstr "" - -#: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:97 -msgid "" -"Only one station may be active at a time. In the table below this is shown " -"with the -Active Station- badge." -msgstr "" - -#: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:101 -msgid "Create a Station Location" -msgstr "" - -#: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:105 -msgid "" -"Attention: You need to set an active station location. Go to Callsign-" -">Station Location to select one." -msgstr "" - -#: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:111 -msgid "" -"Due to recent changes within Wavelog you need to reassign QSOs to your " -"station profiles." -msgstr "" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Maintenance" -msgstr "" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Please reassign them at " -msgstr "" - -#: application/views/station_profile/index.php:41 -#: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:122 -msgid "Profile Name" -msgstr "" - #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "" @@ -9426,6 +10219,11 @@ msgstr "" msgid "Link Location" msgstr "" +#: application/views/stationsetup/linkedlocations.php:31 +#: application/views/stationsetup/stationsetup.php:122 +msgid "Profile Name" +msgstr "" + #: application/views/stationsetup/linkedlocations.php:34 msgid "Unlink Station Location" msgstr "" @@ -9450,12 +10248,52 @@ msgstr "" msgid "Station Locations" msgstr "" +#: application/views/stationsetup/stationsetup.php:95 +msgid "" +"Station Locations define operating locations, such as your QTH, a friends " +"QTH, or a portable station." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:96 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:97 +msgid "" +"Only one station may be active at a time. In the table below this is shown " +"with the -Active Station- badge." +msgstr "" + #: application/views/stationsetup/stationsetup.php:98 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." msgstr "" +#: application/views/stationsetup/stationsetup.php:101 +msgid "Create a Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:105 +msgid "" +"Attention: You need to set an active station location. Go to Callsign-" +">Station Location to select one." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:111 +msgid "" +"Due to recent changes within Wavelog you need to reassign QSOs to your " +"station profiles." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Maintenance" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Please reassign them at " +msgstr "" + #: application/views/stationsetup/stationsetup.php:127 msgid "Linked" msgstr "" @@ -9672,9 +10510,10 @@ msgid "4. Step" msgstr "" #: application/views/themes/index.php:73 +#, php-format msgid "" "Click here on 'Add a Theme' and type in the necessary data. Type in the " -"filenames for the logos without the file extension '.png'" +"filenames for the logos %swithout%s the file extension '.png'" msgstr "" #: application/views/themes/index.php:83 @@ -9737,6 +10576,10 @@ msgstr "" msgid "Update DXCC Data" msgstr "" +#: application/views/update/index.php:30 +msgid "Status:" +msgstr "" + #: application/views/update/index.php:34 msgid "Apply DXCC Data to Logbook" msgstr "" @@ -9750,36 +10593,43 @@ msgid "" "\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." msgstr "" -#: application/views/update/index.php:40 +#: application/views/update/index.php:45 msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:54 application/views/update/index.php:95 msgid "Re-check all QSOs in logbook" msgstr "" -#: application/views/update/index.php:45 +#: application/views/update/index.php:59 msgid "Apply Continent Data to Logbook" msgstr "" -#: application/views/update/index.php:47 +#: application/views/update/index.php:61 msgid "" "This function can be used to update QSO continent information for all QSOs " "in Wavelog missing that information." msgstr "" -#: application/views/update/index.php:49 +#: application/views/update/index.php:68 msgid "Check QSOs missing continent data" msgstr "" -#: application/views/update/index.php:59 +#: application/views/update/index.php:80 msgid "Here you can update QSOs with missing distance information." msgstr "" -#: application/views/update/index.php:60 +#: application/views/update/index.php:86 msgid "Update distance data" msgstr "" +#: application/views/update/index.php:89 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" + #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "Ta bort användarkonto" @@ -9809,13 +10659,13 @@ msgid "General Information" msgstr "" #: application/views/user/edit.php:52 application/views/user/login.php:58 -#: application/views/user/login.php:67 application/views/user/login.php:68 +#: application/views/user/login.php:69 application/views/user/login.php:70 #: application/views/user/profile.php:14 msgid "Username" msgstr "Användarnamn" #: application/views/user/edit.php:64 application/views/user/login.php:59 -#: application/views/user/login.php:71 application/views/user/login.php:72 +#: application/views/user/login.php:73 application/views/user/login.php:74 #: application/views/user/reset_password.php:21 #: application/views/user/reset_password.php:23 #: application/views/user/reset_password.php:30 @@ -9858,10 +10708,6 @@ msgstr "" msgid "Choose Wavelog language." msgstr "" -#: application/views/user/edit.php:179 -msgid "Timezone" -msgstr "Tidszon" - #: application/views/user/edit.php:187 msgid "Date Format" msgstr "Datumformat" @@ -10201,6 +11047,125 @@ msgstr "Glömt lösenord?" msgid "You can reset your password here." msgstr "" +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "" + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "Användarlista" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "Wavelog behöver minst en användare konfigurerad för att fungera." + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" +"Användare kan tilldelas roller som ger dem olika behörigheter, som att lägga " +"till QSO:er i loggboken och komma åt Wavelog API:er." + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" +"Den för närvarande inloggade användaren visas uppe till höger på varje sida." + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "Skapa användare" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "Typ" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "" @@ -10215,99 +11180,17 @@ msgstr "" #: application/views/user/login.php:60 #, php-format -msgid "" -"More Information about Wavelog on Github." +msgid "More Information about Wavelog on %sGithub%s." msgstr "" -#: application/views/user/login.php:77 +#: application/views/user/login.php:79 msgid "Forgot your password?" msgstr "Glömt lösenord?" -#: application/views/user/login.php:83 +#: application/views/user/login.php:85 msgid "Keep me logged in" msgstr "" -#: application/views/user/main.php:2 -msgid "Do you really want to send this user a password-reset link?" -msgstr "" - -#: application/views/user/main.php:6 -msgid "Please Wait ..." -msgstr "" - -#: application/views/user/main.php:9 -msgid "Password-reset e-mail sent to user:" -msgstr "" - -#: application/views/user/main.php:30 -msgid "User List" -msgstr "Användarlista" - -#: application/views/user/main.php:33 -msgid "Wavelog needs at least one user configured in order to operate." -msgstr "Wavelog behöver minst en användare konfigurerad för att fungera." - -#: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" -"Användare kan tilldelas roller som ger dem olika behörigheter, som att lägga " -"till QSO:er i loggboken och komma åt Wavelog API:er." - -#: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "" -"Den för närvarande inloggade användaren visas uppe till höger på varje sida." - -#: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." -msgstr "" - -#: application/views/user/main.php:38 -msgid "Create user" -msgstr "Skapa användare" - -#: application/views/user/main.php:39 -msgid "Refresh List" -msgstr "" - -#: application/views/user/main.php:49 -msgid "Type" -msgstr "Typ" - -#: application/views/user/main.php:50 -msgid "Last seen" -msgstr "" - -#: application/views/user/main.php:53 -msgid "Password Reset" -msgstr "" - -#: application/views/user/main.php:79 -msgid "Never" -msgstr "" - -#: application/views/user/main.php:83 -msgid "Locations" -msgstr "" - -#: application/views/user/main.php:85 -msgid "Logbooks" -msgstr "" - -#: application/views/user/main.php:87 -msgid "Last QSO:" -msgstr "" - -#: application/views/user/main.php:89 -msgid "No QSOs in Log" -msgstr "" - #: application/views/user/profile.php:19 msgid "Level" msgstr "" @@ -10357,118 +11240,118 @@ msgstr "QSO-detaljer" msgid "QSL Management" msgstr "" -#: application/views/view_log/qso.php:128 +#: application/views/view_log/qso.php:131 msgid "Total Distance" msgstr "Totalt avstånd" -#: application/views/view_log/qso.php:221 +#: application/views/view_log/qso.php:224 msgid "Antenna Azimuth" msgstr "" -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:231 msgid "Antenna Elevation" msgstr "" -#: application/views/view_log/qso.php:370 +#: application/views/view_log/qso.php:373 msgid "QSL Card has been sent via the bureau" msgstr "QSL-kort har skickats via byrå" -#: application/views/view_log/qso.php:372 +#: application/views/view_log/qso.php:375 msgid "QSL Card has been sent via direct" msgstr "QSL-kort har skickats direkt" -#: application/views/view_log/qso.php:374 +#: application/views/view_log/qso.php:377 msgid "QSL Card has been sent electronically" msgstr "QSL-kort har skickats elektroniskt" -#: application/views/view_log/qso.php:376 +#: application/views/view_log/qso.php:379 msgid "QSL Card has been sent via manager" msgstr "QSL-kort har skickats via manager" -#: application/views/view_log/qso.php:378 +#: application/views/view_log/qso.php:381 msgid "QSL Card has been sent" msgstr "QSL-kort har skickats" -#: application/views/view_log/qso.php:387 +#: application/views/view_log/qso.php:390 msgid "QSL Card has been received via the bureau" msgstr "QSL-kort har mottagits via byrå" -#: application/views/view_log/qso.php:389 +#: application/views/view_log/qso.php:392 msgid "QSL Card has been received via direct" msgstr "QSL-kort har mottagits direkt" -#: application/views/view_log/qso.php:391 +#: application/views/view_log/qso.php:394 msgid "QSL Card has been received electronically" msgstr "QSL-kort har tagits emot elektroniskt" -#: application/views/view_log/qso.php:393 +#: application/views/view_log/qso.php:396 msgid "QSL Card has been received via manager" msgstr "QSL-kort har tagits emot via manager" -#: application/views/view_log/qso.php:395 +#: application/views/view_log/qso.php:398 msgid "QSL Card has been received" msgstr "QSL-kort har mottagits" -#: application/views/view_log/qso.php:404 +#: application/views/view_log/qso.php:407 msgid "This station uses LoTW." msgstr "Denna station använder LoTW. Den senaste uppladdningen var" -#: application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:414 -#: application/views/view_log/qso.php:419 -#: application/views/view_log/qso.php:424 +#: application/views/view_log/qso.php:412 +#: application/views/view_log/qso.php:417 +#: application/views/view_log/qso.php:422 +#: application/views/view_log/qso.php:427 msgid "This QSO was confirmed on" msgstr "Detta QSO blev konfirmerat" -#: application/views/view_log/qso.php:435 +#: application/views/view_log/qso.php:438 msgid "More QSOs" msgstr "" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:506 msgid "Details" msgstr "" -#: application/views/view_log/qso.php:630 +#: application/views/view_log/qso.php:633 msgid "Uploaded QSL Card front image" msgstr "Uppladdat QSL-kort bild framsida" -#: application/views/view_log/qso.php:635 +#: application/views/view_log/qso.php:638 msgid "Upload QSL Card image" msgstr "Uppladdat QSL-kort bild" -#: application/views/view_log/qso.php:640 +#: application/views/view_log/qso.php:643 msgid "Uploaded QSL Card back image" msgstr "Uppladdat QSL-kort bild baksida" -#: application/views/view_log/qso.php:656 +#: application/views/view_log/qso.php:659 msgid "Mark QSL Received (Electronic)" msgstr "Ange QSL mottagen (Elektronisk)" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:665 msgid "Mark QSL Card Requested (Bureau)" msgstr "Ange QSL Karta Begärda (Byrå)" -#: application/views/view_log/qso.php:664 +#: application/views/view_log/qso.php:667 msgid "Mark QSL Card Requested (Direct)" msgstr "Ange QSL Karta Begärda (Direkt)" -#: application/views/view_log/qso.php:679 +#: application/views/view_log/qso.php:682 msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:242 msgid "CSV" msgstr "" -#: application/views/visitor/layout/header.php:75 +#: application/views/visitor/layout/header.php:74 msgid "OQRS" msgstr "" -#: application/views/visitor/layout/header.php:83 +#: application/views/visitor/layout/header.php:82 msgid "Visit Wavelog on Github" msgstr "" -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Please enter a callsign!" msgstr "" diff --git a/application/locale/tr_TR/LC_MESSAGES/messages.mo b/application/locale/tr_TR/LC_MESSAGES/messages.mo index a9e6465b5..320ebea02 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 cd2a0f502..6388b7df2 100644 --- a/application/locale/tr_TR/LC_MESSAGES/messages.po +++ b/application/locale/tr_TR/LC_MESSAGES/messages.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-09 07:24+0000\n" -"PO-Revision-Date: 2024-07-26 14:02+0000\n" +"POT-Creation-Date: 2024-09-07 07:18+0000\n" +"PO-Revision-Date: 2024-08-17 10:48+0000\n" "Last-Translator: Halil AYYILDIZ \n" "Language-Team: Turkish \n" @@ -18,8 +18,102 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.6.2\n" -#: application/controllers/Accumulated.php:21 -#: application/views/interface_assets/header.php:150 +#: application/controllers/Accumulated.php:12 +#: application/controllers/Activators.php:13 +#: application/controllers/Activatorsmap.php:13 +#: application/controllers/Adif.php:13 application/controllers/Awards.php:16 +#: application/controllers/Backup.php:13 application/controllers/Backup.php:26 +#: application/controllers/Backup.php:63 application/controllers/Band.php:15 +#: application/controllers/Bandmap.php:9 +#: application/controllers/Cabrillo.php:16 +#: application/controllers/Cabrillo.php:53 +#: application/controllers/Cabrillo.php:80 +#: application/controllers/Cabrillo.php:135 +#: application/controllers/Calltester.php:11 +#: application/controllers/Cfdexport.php:18 +#: application/controllers/Cfdexport.php:29 +#: application/controllers/Components.php:13 +#: application/controllers/Contestcalendar.php:15 +#: application/controllers/Contesting.php:14 +#: application/controllers/Cron.php:26 application/controllers/Cron.php:162 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: application/controllers/Distancerecords.php:11 +#: application/controllers/Distances.php:11 +#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29 +#: application/controllers/Dxatlas.php:51 +#: application/controllers/Dxatlas.php:108 +#: application/controllers/Dxcalendar.php:8 +#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23 +#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 +#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 +#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:353 +#: application/controllers/Eqsl.php:420 application/controllers/Eqsl.php:436 +#: application/controllers/Eqsl.php:497 application/controllers/Hamsat.php:13 +#: application/controllers/Kmlexport.php:18 +#: application/controllers/Kmlexport.php:33 +#: application/controllers/Labels.php:26 +#: application/controllers/Logbookadvanced.php:16 +#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 +#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 +#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 +#: application/controllers/Notes.php:10 application/controllers/Options.php:15 +#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 +#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 +#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 +#: application/controllers/Qso.php:9 application/controllers/Qso.php:19 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:600 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Reg1test.php:18 +#: application/controllers/Reg1test.php:63 +#: application/controllers/Reg1test.php:102 +#: application/controllers/Reg1test.php:130 +#: application/controllers/Reg1test.php:164 +#: application/controllers/Satellite.php:18 +#: application/controllers/Satellite.php:37 +#: application/controllers/Satellite.php:44 +#: application/controllers/Satellite.php:53 +#: application/controllers/Satellite.php:72 +#: application/controllers/Satellite.php:87 +#: application/controllers/Satellite.php:95 +#: application/controllers/Satellite.php:103 +#: application/controllers/Satellite.php:117 +#: application/controllers/Satellite.php:135 +#: application/controllers/Satellite.php:146 +#: application/controllers/Satellite.php:162 +#: application/controllers/Satellite.php:190 +#: application/controllers/Satellite.php:201 +#: application/controllers/Satellite.php:223 +#: application/controllers/Satellite.php:236 +#: application/controllers/Satellite.php:244 +#: application/controllers/Sattimers.php:9 +#: application/controllers/Search.php:13 +#: application/controllers/Simplefle.php:7 +#: application/controllers/Station.php:17 +#: application/controllers/Stationsetup.php:15 +#: application/controllers/Themes.php:17 +#: application/controllers/Timeline.php:10 +#: application/controllers/Timeplotter.php:11 +#: application/controllers/Update.php:24 application/controllers/Update.php:273 +#: application/controllers/Update.php:284 +#: application/controllers/Update.php:295 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 +#: application/controllers/User_options.php:9 +msgid "You're not allowed to do that!" +msgstr "" + +#: application/controllers/Accumulated.php:19 +#: application/views/interface_assets/header.php:152 msgid "Accumulated Statistics" msgstr "Toplu İstatistikler" @@ -29,24 +123,26 @@ msgid "Activated Gridsquare Map" msgstr "Etkinleştirilmiş Konum Belirteci Haritası" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:910 -#: application/controllers/Awards.php:942 +#: application/controllers/Awards.php:919 +#: application/controllers/Awards.php:951 #: application/controllers/Gridmap.php:31 -#: application/controllers/Visitor.php:374 -#: application/views/activators/index.php:101 +#: application/controllers/Visitor.php:385 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: application/views/visitor/layout/footer.php:22 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "Konum Belirteci" #: application/controllers/Activated_gridmap.php:32 #: application/controllers/Gridmap.php:32 -#: application/controllers/Visitor.php:375 +#: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "Konum Belirteci onaylandı" #: application/controllers/Activated_gridmap.php:33 #: application/controllers/Gridmap.php:33 -#: application/controllers/Visitor.php:376 +#: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "Konum Belirteci onaylanmadı" @@ -55,12 +151,13 @@ msgid "Total gridsquares activated" msgstr "Toplam Konum Belirteci etkinleştirildi" #: application/controllers/Activators.php:20 -#: application/views/activators/index.php:2 +#: application/views/activators/index.php:5 #: application/views/interface_assets/header.php:142 msgid "Gridsquare Activators" msgstr "Konum Belirteci Aktivatörleri" #: application/controllers/Activatorsmap.php:17 +#: application/views/activators/index.php:2 msgid "Activators Map" msgstr "Aktivatörler Haritası" @@ -77,7 +174,7 @@ msgid "ADIF Export" msgstr "ADIF Dışa Aktarma" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:388 msgid "ADIF Import / Export" msgstr "ADIF İçe / Dışa Aktarma" @@ -90,20 +187,25 @@ msgstr "ADIF İçe Aktarma" msgid "Unsupported Filetype" msgstr "Desteklenmeyen Dosya Tipi" -#: application/controllers/Adif.php:245 +#: application/controllers/Adif.php:240 +#: application/views/adif/import_failed.php:12 +msgid "ADIF Import failed!" +msgstr "" + +#: application/controllers/Adif.php:254 msgid "Station Profile not valid for User" msgstr "Kullanıcı için İstasyon Profili geçerli değil" -#: application/controllers/Adif.php:252 +#: application/controllers/Adif.php:261 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "ADIF İçe Aktarıldı" -#: application/controllers/Adif.php:263 +#: application/controllers/Adif.php:272 msgid "DCL Import" msgstr "DCL İçe Aktarma" -#: application/controllers/Adif.php:319 +#: application/controllers/Adif.php:328 msgid "DCL Data Imported" msgstr "DCL Verileri İçe Aktarıldı" @@ -133,25 +235,8 @@ msgstr "API Anahtarı %s açıklaması güncellendi." msgid "API Key %s has been deleted" msgstr "API Anahtarı %s silindi" -#: application/controllers/Api.php:118 -msgid "Key Disabled" -msgstr "Anahtar Devre Dışı" - -#: application/controllers/Api.php:118 -msgid "No Key Found" -msgstr "Anahtar Bulunamadı" - -#: application/controllers/Api.php:120 -msgid "Key Invalid - either not found or disabled" -msgstr "Anahtar Geçersiz - bulunamadı veya devre dışı bırakıldı" - -#: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 -msgid "Valid" -msgstr "Geçerli" - #: application/controllers/Awards.php:22 -#: application/views/interface_assets/header.php:158 +#: application/views/interface_assets/header.php:160 #: application/views/qso/edit_ajax.php:35 msgid "Awards" msgstr "Ödüller" @@ -166,12 +251,13 @@ msgstr "Ödüller" #: application/controllers/Awards.php:652 #: application/controllers/Awards.php:714 #: application/controllers/Awards.php:776 -#: application/controllers/Awards.php:847 -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:930 -#: application/controllers/Awards.php:1125 -#: application/controllers/Awards.php:1615 -#: application/controllers/Awards.php:1755 +#: application/controllers/Awards.php:856 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:939 +#: application/controllers/Awards.php:1140 +#: application/controllers/Awards.php:1639 +#: application/controllers/Awards.php:1779 +#: application/controllers/Awards.php:1908 #, php-format msgid "Awards - %s" msgstr "Ödüller - %s" @@ -179,13 +265,13 @@ msgstr "Ödüller - %s" #: application/controllers/Awards.php:92 #: application/views/awards/dok/index.php:149 #: application/views/bands/index.php:47 -#: application/views/contesting/index.php:170 -#: application/views/interface_assets/header.php:194 -#: application/views/logbookadvanced/index.php:613 +#: application/views/contesting/index.php:53 +#: application/views/interface_assets/header.php:198 +#: application/views/logbookadvanced/index.php:641 #: application/views/logbookadvanced/useroptions.php:130 -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:264 -#: application/views/qso/index.php:508 application/views/user/edit.php:603 -#: application/views/view_log/qso.php:351 +#: application/views/qso/edit_ajax.php:388 application/views/qso/index.php:264 +#: application/views/qso/index.php:518 application/views/user/edit.php:603 +#: application/views/view_log/qso.php:354 msgid "DOK" msgstr "DOK" @@ -193,15 +279,15 @@ msgstr "DOK" #: application/views/bandmap/list.php:112 application/views/bands/index.php:48 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 -#: application/views/interface_assets/header.php:164 +#: application/views/interface_assets/header.php:166 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:145 -#: application/views/logbookadvanced/index.php:580 +#: application/views/logbookadvanced/index.php:156 +#: application/views/logbookadvanced/index.php:608 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 -#: application/views/lotw_views/index.php:40 +#: application/views/lotw_views/index.php:36 #: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 #: application/views/search/cqzones_result.php:15 #: application/views/search/result.php:27 @@ -216,12 +302,12 @@ msgid "Awards - WAJA" msgstr "Ödüller - WAJA" #: application/controllers/Awards.php:327 application/views/bands/index.php:51 -#: application/views/interface_assets/header.php:210 +#: application/views/interface_assets/header.php:214 msgid "JCC" msgstr "JCC" #: application/controllers/Awards.php:375 application/views/bands/index.php:57 -#: application/views/interface_assets/header.php:170 +#: application/views/interface_assets/header.php:172 msgid "VUCC" msgstr "VUCC" @@ -230,15 +316,20 @@ msgid "Log View - VUCC" msgstr "Kayıt Görünümü - VUCC" #: application/controllers/Awards.php:453 -#: application/controllers/Timeline.php:92 -#: application/controllers/Timeline.php:95 -#: application/controllers/Timeline.php:98 -#: application/controllers/Timeline.php:101 -#: application/controllers/Timeline.php:104 -#: application/controllers/Timeline.php:107 +#: application/controllers/Distancerecords.php:59 +#: application/controllers/Timeline.php:105 +#: application/controllers/Timeline.php:108 +#: application/controllers/Timeline.php:111 +#: application/controllers/Timeline.php:114 +#: application/controllers/Timeline.php:117 +#: application/controllers/Timeline.php:120 msgid "Log View" msgstr "Kayıt Görünümü" +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr "" + #: application/controllers/Awards.php:457 msgid " and sat " msgstr "" @@ -260,12 +351,12 @@ msgid " and " msgstr " ve " #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1289 #: application/views/awards/index.php:8 application/views/bands/index.php:55 #: application/views/dashboard/index.php:9 -#: application/views/interface_assets/header.php:178 -#: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:259 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -273,10 +364,10 @@ msgstr " ve " #: application/views/qslcard/searchresult.php:49 #: application/views/qslcard/searchresult.php:65 #: application/views/qslcard/searchresult.php:81 -#: application/views/qso/components/previous_contacts.php:83 -#: application/views/qso/edit_ajax.php:336 +#: application/views/qso/components/previous_contacts.php:82 +#: application/views/qso/edit_ajax.php:363 #: application/views/search/search_result_ajax.php:9 -#: application/views/station_profile/edit.php:216 +#: application/views/station_profile/edit.php:243 #: application/views/user/edit.php:234 application/views/user/edit.php:256 #: application/views/user/edit.php:278 application/views/user/edit.php:300 #: application/views/user/edit.php:323 @@ -286,18 +377,18 @@ msgid "SOTA" msgstr "SOTA" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1290 #: application/views/bands/index.php:60 #: application/views/dashboard/index.php:10 -#: application/views/interface_assets/header.php:172 -#: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:279 +#: application/views/interface_assets/header.php:176 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/index.php:290 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 -#: application/views/qso/components/previous_contacts.php:84 -#: application/views/qso/edit_ajax.php:341 +#: application/views/qso/components/previous_contacts.php:83 +#: application/views/qso/edit_ajax.php:368 #: application/views/search/search_result_ajax.php:10 -#: application/views/station_profile/edit.php:229 +#: application/views/station_profile/edit.php:256 #: application/views/user/edit.php:235 application/views/user/edit.php:257 #: application/views/user/edit.php:279 application/views/user/edit.php:301 #: application/views/user/edit.php:324 @@ -306,18 +397,18 @@ msgid "WWFF" msgstr "WWFF" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1291 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 -#: application/views/interface_assets/header.php:182 +#: application/views/interface_assets/header.php:186 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:274 +#: application/views/logbookadvanced/index.php:623 #: application/views/logbookadvanced/useroptions.php:106 -#: application/views/qso/components/previous_contacts.php:85 -#: application/views/qso/edit_ajax.php:346 +#: application/views/qso/components/previous_contacts.php:84 +#: application/views/qso/edit_ajax.php:373 #: application/views/search/search_result_ajax.php:11 -#: application/views/station_profile/edit.php:242 +#: application/views/station_profile/edit.php:269 #: application/views/user/edit.php:236 application/views/user/edit.php:258 #: application/views/user/edit.php:280 application/views/user/edit.php:302 #: application/views/user/edit.php:325 @@ -336,7 +427,7 @@ msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" #: application/controllers/Awards.php:714 application/views/bands/index.php:53 -#: application/views/interface_assets/header.php:188 +#: application/views/interface_assets/header.php:192 msgid "RAC" msgstr "RAC" @@ -344,74 +435,80 @@ msgstr "RAC" msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:847 +#: application/controllers/Awards.php:856 msgid "IOTA (Island On The Air)" msgstr "IOTA (Yayındaki Ada)" -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:872 -#: application/views/interface_assets/header.php:230 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 +#: application/views/interface_assets/header.php:234 msgid "US Counties" msgstr "ABD İlçeleri" -#: application/controllers/Awards.php:887 +#: application/controllers/Awards.php:896 msgid "Log View - Counties" msgstr "Kayıt Görünümü - İlçeler" -#: application/controllers/Awards.php:894 +#: application/controllers/Awards.php:903 msgid "Awards - " msgstr "Ödüller - " -#: application/controllers/Awards.php:911 -#: application/controllers/Awards.php:943 +#: application/controllers/Awards.php:920 +#: application/controllers/Awards.php:952 msgid "Gridsquares worked" msgstr "Konum Belirteci çalışılan" -#: application/controllers/Awards.php:912 -#: application/controllers/Awards.php:944 +#: application/controllers/Awards.php:921 +#: application/controllers/Awards.php:953 msgid "Gridsquares confirmed on LoTW" msgstr "Konum Belirteci çalışılan LoTW'de onaylandı" -#: application/controllers/Awards.php:913 -#: application/controllers/Awards.php:945 +#: application/controllers/Awards.php:922 +#: application/controllers/Awards.php:954 msgid "Gridsquares confirmed by paper QSL" msgstr "Konum Belirteci çalışılan kart QSL ile doğrulandı" -#: application/controllers/Awards.php:930 +#: application/controllers/Awards.php:939 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial Award (FFMA)" -#: application/controllers/Awards.php:1125 -#: application/views/interface_assets/header.php:168 +#: application/controllers/Awards.php:1140 +#: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1143 +#: application/controllers/Awards.php:1158 msgid "Awards - SIG - " msgstr "Ödüller - SIG - " -#: application/controllers/Awards.php:1755 -#: application/views/awards/itu/index.php:18 +#: application/controllers/Awards.php:1779 +#: application/views/awards/itu/index.php:20 msgid "ITU Zones" msgstr "ITU Bölgeleri" +#: application/controllers/Awards.php:1908 +#: application/views/awards/wac/index.php:8 +#: application/views/interface_assets/header.php:174 +msgid "Worked All Continents (WAC)" +msgstr "" + #: application/controllers/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:284 msgid "Backup" msgstr "Yedekleme" -#: application/controllers/Backup.php:48 +#: application/controllers/Backup.php:50 msgid "ADIF - Backup" msgstr "ADIF - Yedekleme" -#: application/controllers/Backup.php:80 +#: application/controllers/Backup.php:84 msgid "Notes - Backup" msgstr "Notlar - Yedekleme" #: application/controllers/Band.php:25 application/views/bands/index.php:28 #: application/views/bands/index.php:32 -#: application/views/interface_assets/header.php:379 +#: application/views/interface_assets/header.php:383 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -427,8 +524,8 @@ msgstr "Bandı Düzenle" #: application/controllers/Bandmap.php:28 #: application/controllers/Bandmap.php:69 -#: application/controllers/Options.php:137 -#: application/controllers/Options.php:148 +#: application/controllers/Options.php:145 +#: application/controllers/Options.php:156 #: application/views/options/sidebar.php:10 msgid "DXCluster" msgstr "DXCluster" @@ -438,7 +535,7 @@ msgid "Export Cabrillo" msgstr "Cabrillo'yu dışa aktar" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:396 +#: application/views/interface_assets/header.php:402 msgid "CFD Export" msgstr "CFD Dışa Aktarımı" @@ -455,7 +552,7 @@ msgid "No user has configured Clublog." msgstr "Clublog'u hiçbir kullanıcı yapılandırmadı." #: application/controllers/Contestcalendar.php:19 -#: application/views/interface_assets/header.php:247 +#: application/views/interface_assets/header.php:251 msgid "Contest Calendar" msgstr "Yarışma Takvimi" @@ -464,38 +561,62 @@ msgstr "Yarışma Takvimi" msgid "Contest Logging" msgstr "Yarışma Kayıtları" -#: application/controllers/Contesting.php:112 -#: application/views/interface_assets/header.php:274 +#: application/controllers/Contesting.php:113 +#: application/views/interface_assets/header.php:278 msgid "Contests" msgstr "Yarışmalar" -#: application/controllers/Contesting.php:126 +#: application/controllers/Contesting.php:127 msgid "Update Contest" msgstr "Yarışmayı Güncelleyin" #: application/controllers/Continents.php:25 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:57 -#: application/views/interface_assets/header.php:154 +#: application/views/interface_assets/header.php:156 msgid "Continents" msgstr "Kıtalar" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:284 +#: application/views/interface_assets/header.php:288 msgid "Cron Manager" msgstr "Cron Yöneticisi" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:154 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "Cronjob'u Düzenle" +#: application/controllers/Cron.php:274 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:278 +#, php-format +msgid "" +"Last run occurred more than %s seconds ago.%sPlease check your master cron! " +"It should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:281 +#, php-format +msgid "" +"Last run occurred more than %s minutes ago.%sSeems like your Mastercron " +"isn't running!%sIt should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:286 application/views/cron/index.php:29 +msgctxt "Master Cron" +msgid "Not running" +msgstr "" + #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:392 +#: application/views/interface_assets/header.php:396 msgid "SOTA CSV Export" msgstr "SOTA CSV Dışa Aktarma" -#: application/controllers/Dashboard.php:108 -#: application/controllers/Visitor.php:132 +#: application/controllers/Dashboard.php:123 +#: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "Kontrol Paneli" @@ -546,6 +667,12 @@ 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." +#: application/controllers/Distancerecords.php:42 +#: application/controllers/Distancerecords.php:59 +#: application/views/interface_assets/header.php:146 +msgid "Satellite Distance Records" +msgstr "" + #: application/controllers/Distances.php:17 #: application/views/distances/index.php:5 #: application/views/distances/index.php:8 @@ -553,27 +680,31 @@ msgstr "" msgid "Distances Worked" msgstr "Çalışılan Mesafeler" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 #: application/views/distances/index.php:15 msgid "QSOs with" msgstr "QSO'lar ile" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 msgid "and band" msgstr "ve bant" +#: application/controllers/Distances.php:83 +msgid "and propagation" +msgstr "" + #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:394 msgid "DX Atlas Gridsquare Export" msgstr "DX Atlas Konum belirleyici Dışa Aktarma" #: application/controllers/Dxcalendar.php:10 -#: application/views/interface_assets/header.php:245 +#: application/views/interface_assets/header.php:249 msgid "DX Calendar" msgstr "DX Takvimi" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:325 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -591,19 +722,19 @@ msgstr "eQSL İçe Aktarma Bilgileri" msgid "eQSL QSO Upload" msgstr "eQSL QSO Yükleme" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:424 msgid "eQSL Tools" msgstr "eQSL Araçları" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid " / Errors: " msgstr " / Hatalar: " -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid "Successfully downloaded: " msgstr "Başarıyla indirildi: " -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:481 msgid "eQSL Card Image Download" msgstr "eQSL Kart Görüntüsü İndirme" @@ -613,7 +744,7 @@ msgid "Gridsquare Map" msgstr "Konum belirleyici Haritası" #: application/controllers/Gridmap.php:34 -#: application/controllers/Visitor.php:377 +#: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "Toplam çalışılan konum belirteci sayısı" @@ -633,7 +764,7 @@ msgid "No QSOs found to upload." msgstr "Yüklenecek QSO bulunamadı." #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:392 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "KML Dışa Aktarma" @@ -646,59 +777,59 @@ msgstr "QSL Kart Etiketleri" msgid "Create Label Type" msgstr "Etiket Türü Oluştur" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:402 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:406 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "Etiket adı" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:403 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:407 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 #: application/views/labels/index.php:76 msgid "Paper Type" msgstr "Kağıt Tipi" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:404 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:408 #: application/views/labels/index.php:42 application/views/labels/index.php:77 msgid "Measurement" msgstr "Ölçüm" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:405 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:409 msgid "Top Margin" msgstr "Üst boşluk" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:406 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:410 msgid "Left Margin" msgstr "Sol Kenar Boşluğu" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:407 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:411 msgid "QSLs Horizontally" msgstr "QSL'ler Yatay Olarak" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:408 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:412 msgid "QSLs Vertically" msgstr "QSL'ler Dikey Olarak" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:409 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:413 msgid "Horizontal Space" msgstr "Yatay Boşluk" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:410 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:414 msgid "Vertical Space" msgstr "Dikey Boşluk" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:411 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:415 msgid "Label width" msgstr "Etiket genişliği" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:412 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:416 msgid "Label height" msgstr "Etiket yüksekliği" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:413 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:417 msgid "Size of Font" msgstr "Yazı Tipi Boyutu" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:414 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:418 msgid "Number of QSOs on label" msgstr "Etiketteki QSO sayısı" @@ -707,22 +838,22 @@ msgid "Create Paper Type" msgstr "Kağıt Tipi Oluştur" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:461 +#: application/controllers/Labels.php:465 msgid "Paper Name" msgstr "Kağıt Adı" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:462 +#: application/controllers/Labels.php:466 msgid "Paper Width" msgstr "Kağıt Adı" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:463 +#: application/controllers/Labels.php:467 msgid "Paper Height" msgstr "Kağıt Yüksekliği" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:471 +#: application/controllers/Labels.php:475 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -749,27 +880,27 @@ msgstr "" msgid "0 QSOs found for print!" msgstr "" -#: application/controllers/Labels.php:391 +#: application/controllers/Labels.php:395 msgid "Edit Label" msgstr "" -#: application/controllers/Labels.php:420 +#: application/controllers/Labels.php:424 msgid "Label was saved." msgstr "" -#: application/controllers/Labels.php:428 +#: application/controllers/Labels.php:432 msgid "Label was deleted." msgstr "" -#: application/controllers/Labels.php:450 +#: application/controllers/Labels.php:454 msgid "Edit Paper" msgstr "" -#: application/controllers/Labels.php:475 +#: application/controllers/Labels.php:479 msgid "Paper was saved." msgstr "" -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "Paper was deleted." msgstr "" @@ -793,20 +924,20 @@ msgstr "" msgid "Logbook" msgstr "Kayıt defteri" -#: application/controllers/Logbook.php:653 -#: application/controllers/Logbook.php:668 +#: application/controllers/Logbook.php:657 +#: application/controllers/Logbook.php:672 #: application/views/activated_gridmap/index.php:58 #: application/views/awards/dok/index.php:55 #: application/views/awards/dxcc/index.php:61 -#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/helvetia/index.php:55 #: application/views/awards/jcc/index.php:52 -#: application/views/awards/rac/index.php:45 +#: application/views/awards/rac/index.php:47 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:72 -#: application/views/awards/waja/index.php:53 -#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:55 +#: application/views/awards/was/index.php:55 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:568 +#: application/views/logbookadvanced/index.php:596 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -819,20 +950,21 @@ msgstr "Kayıt defteri" msgid "QSL" msgstr "" -#: application/controllers/Logbook.php:656 +#: application/controllers/Logbook.php:660 #: application/views/activated_gridmap/index.php:66 -#: application/views/awards/cq/index.php:58 +#: application/views/awards/cq/index.php:60 #: application/views/awards/dok/index.php:59 #: application/views/awards/dxcc/index.php:65 -#: application/views/awards/helvetia/index.php:57 -#: application/views/awards/itu/index.php:58 +#: application/views/awards/helvetia/index.php:59 +#: application/views/awards/itu/index.php:60 #: application/views/awards/jcc/index.php:56 -#: application/views/awards/rac/index.php:49 +#: application/views/awards/rac/index.php:51 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:80 -#: application/views/awards/waja/index.php:57 -#: application/views/awards/was/index.php:57 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -840,28 +972,29 @@ msgstr "" #: application/views/qslprint/qsolist.php:21 #: application/views/qslprint/qsolist.php:167 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:384 +#: application/views/qso/edit_ajax.php:411 #: application/views/search/result_search.php:22 #: application/views/search/search_result_ajax.php:298 #: application/views/search/search_result_ajax.php:313 #: application/views/timeline/index.php:60 application/views/user/edit.php:563 -#: application/views/user/edit.php:659 application/views/view_log/qso.php:408 +#: application/views/user/edit.php:659 application/views/view_log/qso.php:411 msgid "LoTW" msgstr "" -#: application/controllers/Logbook.php:659 +#: application/controllers/Logbook.php:663 #: application/views/activated_gridmap/index.php:74 -#: application/views/awards/cq/index.php:62 +#: application/views/awards/cq/index.php:64 #: application/views/awards/dok/index.php:63 #: application/views/awards/dxcc/index.php:69 -#: application/views/awards/helvetia/index.php:61 -#: application/views/awards/itu/index.php:62 +#: application/views/awards/helvetia/index.php:63 +#: application/views/awards/itu/index.php:64 #: application/views/awards/jcc/index.php:60 -#: application/views/awards/rac/index.php:53 +#: application/views/awards/rac/index.php:55 #: application/views/awards/wab/index.php:88 -#: application/views/awards/waja/index.php:61 -#: application/views/awards/was/index.php:61 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:52 +#: application/views/awards/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:117 #: application/views/logbookadvanced/useroptions.php:70 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 @@ -869,63 +1002,67 @@ msgstr "" #: application/views/qslprint/qsolist.php:18 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:151 -#: application/views/qso/edit_ajax.php:381 +#: application/views/qso/edit_ajax.php:408 #: application/views/search/result_search.php:16 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:273 -#: application/views/station_profile/edit.php:278 +#: application/views/station_profile/edit.php:305 #: application/views/timeline/index.php:64 application/views/user/edit.php:564 #: application/views/user/edit.php:667 application/views/user/edit.php:731 msgid "eQSL" msgstr "" -#: application/controllers/Logbook.php:665 +#: application/controllers/Logbook.php:669 #: application/views/awards/dok/index.php:71 #: application/views/awards/dxcc/index.php:77 #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 -#: application/views/awards/waja/index.php:69 +#: application/views/awards/waja/index.php:71 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 -#: application/views/station_profile/edit.php:325 +#: application/views/station_profile/edit.php:352 +#: application/views/timeline/index.php:68 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 -#: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/partial/log_ajax.php:85 +#: application/views/view_log/qso.php:426 msgid "Clublog" msgstr "" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1284 #: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:39 #: application/views/adif/dcl_success.php:33 -#: application/views/awards/cq/index.php:86 +#: application/views/awards/cq/index.php:88 #: application/views/awards/dok/index.php:91 #: application/views/awards/dxcc/index.php:162 -#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/helvetia/index.php:87 #: application/views/awards/iota/index.php:105 -#: application/views/awards/itu/index.php:86 +#: application/views/awards/itu/index.php:88 #: application/views/awards/jcc/index.php:88 -#: application/views/awards/rac/index.php:77 +#: application/views/awards/rac/index.php:79 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:53 -#: application/views/awards/waja/index.php:89 -#: application/views/awards/was/index.php:85 +#: application/views/awards/wac/index.php:110 +#: application/views/awards/waja/index.php:91 +#: application/views/awards/was/index.php:87 #: application/views/components/hamsat/table.php:30 -#: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:203 +#: application/views/contesting/index.php:108 +#: application/views/contesting/index.php:250 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 +#: 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/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:170 -#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/index.php:181 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -942,14 +1079,14 @@ msgstr "" #: application/views/qslcard/searchresult.php:76 #: application/views/qslprint/qslprint.php:24 #: application/views/qslprint/qsolist.php:9 -#: application/views/qso/components/previous_contacts.php:78 +#: application/views/qso/components/previous_contacts.php:77 #: application/views/qso/edit_ajax.php:119 application/views/qso/index.php:136 #: application/views/satellite/index.php:24 #: application/views/search/cqzones_result.php:10 #: application/views/search/lotw_unconfirmed_result.php:8 #: application/views/search/result_search.php:7 #: application/views/search/search_result_ajax.php:4 -#: application/views/simplefle/index.php:144 +#: application/views/simplefle/index.php:150 #: application/views/statistics/custom.php:60 #: application/views/statistics/custom_result.php:62 #: application/views/statistics/custom_result.php:88 @@ -961,17 +1098,17 @@ msgstr "" #: application/views/user/edit.php:295 application/views/user/edit.php:318 #: application/views/view_log/partial/log.php:9 #: application/views/view_log/partial/log_ajax.php:4 -#: application/views/view_log/qso.php:104 application/views/visitor/index.php:6 +#: application/views/view_log/qso.php:107 application/views/visitor/index.php:6 #: application/views/widgets/qsos.php:29 msgid "Mode" msgstr "Mod" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1285 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:111 -#: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:547 +#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:251 +#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -980,25 +1117,25 @@ msgstr "Mod" #: application/views/qslcard/searchresult.php:77 #: application/views/qslprint/qslprint.php:26 #: application/views/qslprint/qsolist.php:11 -#: application/views/qso/components/previous_contacts.php:79 +#: application/views/qso/components/previous_contacts.php:78 #: application/views/qso/edit_ajax.php:142 application/views/qso/index.php:177 #: application/views/search/search_result_ajax.php:5 -#: application/views/simplefle/index.php:145 +#: application/views/simplefle/index.php:151 #: application/views/user/edit.php:230 application/views/user/edit.php:252 #: application/views/user/edit.php:274 application/views/user/edit.php:296 #: application/views/user/edit.php:319 #: application/views/view_log/partial/log.php:10 #: application/views/view_log/partial/log_ajax.php:5 -#: application/views/view_log/qso.php:109 application/views/visitor/index.php:9 +#: application/views/view_log/qso.php:112 application/views/visitor/index.php:9 msgid "RST (S)" msgstr "RST (G)" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1286 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:550 +#: application/views/contesting/index.php:189 +#: application/views/contesting/index.php:252 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1007,51 +1144,50 @@ msgstr "RST (G)" #: application/views/qslcard/searchresult.php:78 #: application/views/qslprint/qslprint.php:27 #: application/views/qslprint/qsolist.php:12 -#: application/views/qso/components/previous_contacts.php:80 +#: application/views/qso/components/previous_contacts.php:79 #: application/views/qso/edit_ajax.php:147 application/views/qso/index.php:182 #: application/views/search/search_result_ajax.php:6 -#: application/views/simplefle/index.php:146 +#: application/views/simplefle/index.php:152 #: application/views/user/edit.php:231 application/views/user/edit.php:253 #: application/views/user/edit.php:275 application/views/user/edit.php:297 #: application/views/user/edit.php:320 #: application/views/view_log/partial/log.php:11 #: application/views/view_log/partial/log_ajax.php:6 -#: application/views/view_log/qso.php:114 +#: application/views/view_log/qso.php:117 #: application/views/visitor/index.php:12 msgid "RST (R)" msgstr "RST (A)" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1287 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 #: application/views/qslcard/searchresult.php:47 #: application/views/qslcard/searchresult.php:63 #: application/views/qslcard/searchresult.php:79 -#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/components/previous_contacts.php:80 #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 -#: application/views/station_profile/index.php:43 #: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 -#: application/views/timeline/index.php:118 application/views/user/edit.php:232 +#: application/views/timeline/index.php:151 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 #: application/views/user/edit.php:298 application/views/user/edit.php:321 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:235 -#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:238 +#: application/views/view_log/qso.php:531 #: application/views/visitor/index.php:15 msgid "Country" msgstr "Ülke" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1288 #: application/views/awards/iota/index.php:169 #: application/views/bands/index.php:50 application/views/dashboard/index.php:8 -#: application/views/interface_assets/header.php:180 +#: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1060,11 +1196,11 @@ msgstr "Ülke" #: application/views/qslcard/searchresult.php:48 #: application/views/qslcard/searchresult.php:64 #: application/views/qslcard/searchresult.php:80 -#: application/views/qso/components/previous_contacts.php:82 -#: application/views/qso/edit_ajax.php:318 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 -#: application/views/timeline/index.php:202 application/views/user/edit.php:233 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:235 application/views/user/edit.php:233 #: application/views/user/edit.php:255 application/views/user/edit.php:277 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/view_log/partial/log_ajax.php:8 @@ -1072,17 +1208,17 @@ msgstr "Ülke" msgid "IOTA" msgstr "" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1292 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:20 -#: application/views/awards/rac/index.php:141 -#: application/views/awards/was/index.php:149 -#: application/views/contesting/index.php:173 +#: application/views/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 +#: application/views/contesting/index.php:56 #: application/views/dashboard/index.php:12 -#: application/views/logbookadvanced/edit.php:20 -#: application/views/logbookadvanced/edit.php:64 -#: application/views/logbookadvanced/index.php:162 -#: application/views/logbookadvanced/index.php:583 +#: application/views/logbookadvanced/edit.php:21 +#: application/views/logbookadvanced/edit.php:66 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:611 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1090,9 +1226,9 @@ msgstr "" #: application/views/qslcard/searchresult.php:50 #: application/views/qslcard/searchresult.php:66 #: application/views/qslcard/searchresult.php:82 -#: application/views/qso/components/previous_contacts.php:86 +#: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 -#: application/views/timeline/index.php:177 application/views/user/edit.php:237 +#: application/views/timeline/index.php:210 application/views/user/edit.php:237 #: application/views/user/edit.php:259 application/views/user/edit.php:281 #: application/views/user/edit.php:303 application/views/user/edit.php:326 #: application/views/view_log/partial/log_ajax.php:12 @@ -1100,20 +1236,21 @@ msgstr "" msgid "State" msgstr "Eyalet" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1293 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:17 -#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:13 +#: application/views/distancerecords/index.php:20 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:166 -#: application/views/logbookadvanced/index.php:556 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1122,38 +1259,39 @@ msgstr "Eyalet" #: application/views/qslcard/searchresult.php:51 #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 -#: application/views/qso/components/previous_contacts.php:87 +#: application/views/qso/components/previous_contacts.php:86 #: application/views/qso/edit_ajax.php:156 application/views/qso/index.php:279 +#: application/views/satellite/pass.php:28 #: application/views/search/cqzones_result.php:12 #: application/views/search/result.php:33 #: application/views/search/search_result_ajax.php:13 -#: application/views/simplefle/index.php:147 -#: application/views/station_profile/index.php:44 +#: application/views/simplefle/index.php:153 #: application/views/stationsetup/stationsetup.php:125 -#: application/views/timeline/index.php:257 application/views/user/edit.php:130 +#: application/views/timeline/index.php:290 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 #: application/views/user/edit.php:327 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:518 #: application/views/visitor/index.php:27 msgid "Gridsquare" msgstr "" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1294 #: application/views/activated_gridmap/index.php:108 #: application/views/awards/ffma/index.php:36 #: application/views/awards/gridmaster/index.php:35 #: 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/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/index.php:12 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 #: application/views/qslcard/searchresult.php:52 #: application/views/qslcard/searchresult.php:68 #: application/views/qslcard/searchresult.php:84 -#: application/views/qso/components/previous_contacts.php:88 +#: application/views/qso/components/previous_contacts.php:87 #: application/views/search/search_result_ajax.php:14 #: application/views/user/edit.php:239 application/views/user/edit.php:261 #: application/views/user/edit.php:283 application/views/user/edit.php:305 @@ -1163,32 +1301,33 @@ msgstr "" msgid "Distance" msgstr "" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1295 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:8 -#: application/views/activators/index.php:7 +#: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 -#: application/views/awards/cq/index.php:72 +#: application/views/awards/cq/index.php:74 #: application/views/awards/dok/index.php:77 #: application/views/awards/dxcc/index.php:117 -#: application/views/awards/helvetia/index.php:71 +#: application/views/awards/helvetia/index.php:73 #: application/views/awards/iota/index.php:91 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:74 #: application/views/awards/jcc/index.php:74 #: application/views/awards/pota/index.php:35 -#: application/views/awards/rac/index.php:63 +#: application/views/awards/rac/index.php:65 #: application/views/awards/sig/qso_list.php:13 #: application/views/awards/sota/index.php:26 #: application/views/awards/vucc/index.php:21 #: application/views/awards/wab/index.php:22 -#: application/views/awards/waja/index.php:75 -#: application/views/awards/was/index.php:71 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/waja/index.php:77 +#: application/views/awards/was/index.php:73 #: application/views/awards/wwff/index.php:35 #: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:45 -#: application/views/contesting/index.php:70 -#: application/views/contesting/index.php:202 +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:249 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:549 application/views/dxatlas/index.php:31 @@ -1196,8 +1335,8 @@ msgstr "" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1215,13 +1354,13 @@ msgstr "" #: application/views/qslmanagement/index.php:24 #: application/views/qslprint/qslprint.php:25 #: application/views/qslprint/qsolist.php:10 -#: application/views/qso/components/previous_contacts.php:89 +#: application/views/qso/components/previous_contacts.php:88 #: application/views/qso/edit_ajax.php:83 application/views/qso/index.php:151 #: application/views/search/cqzones_result.php:11 #: application/views/search/lotw_unconfirmed_result.php:9 #: application/views/search/result_search.php:10 #: application/views/search/search_result_ajax.php:15 -#: application/views/simplefle/index.php:143 +#: application/views/simplefle/index.php:149 #: application/views/stationsetup/exportmapoptions.php:31 #: application/views/statistics/custom.php:53 #: application/views/statistics/custom_result.php:55 @@ -1239,72 +1378,71 @@ msgstr "" msgid "Band" msgstr "Bant" -#: application/controllers/Logbook.php:1285 +#: application/controllers/Logbook.php:1296 #: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 -#: application/views/contesting/index.php:87 +#: application/views/contesting/index.php:138 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 #: application/views/qslcard/searchresult.php:70 #: application/views/qslcard/searchresult.php:86 -#: application/views/qso/components/previous_contacts.php:90 +#: application/views/qso/components/previous_contacts.php:89 #: application/views/qso/edit_ajax.php:71 application/views/qso/index.php:169 #: application/views/search/search_result_ajax.php:16 #: application/views/user/edit.php:228 application/views/user/edit.php:250 #: application/views/user/edit.php:272 application/views/user/edit.php:294 #: application/views/user/edit.php:317 #: application/views/view_log/partial/log_ajax.php:16 -#: application/views/view_log/qso.php:93 application/views/visitor/index.php:36 +#: application/views/view_log/qso.php:94 application/views/visitor/index.php:36 msgid "Frequency" msgstr "Frekans" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1297 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:283 -#: application/views/logbookadvanced/index.php:598 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:626 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 #: application/views/qslcard/searchresult.php:87 -#: application/views/qso/components/previous_contacts.php:91 +#: application/views/qso/components/previous_contacts.php:90 #: application/views/search/search_result_ajax.php:17 #: application/views/simplefle/index.php:112 #: application/views/user/edit.php:240 application/views/user/edit.php:262 #: application/views/user/edit.php:284 application/views/user/edit.php:306 #: application/views/user/edit.php:329 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:538 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "Operatör" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1318 #: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:669 +#: application/views/interface_assets/footer.php:675 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:154 +#: application/views/logbookadvanced/index.php:165 #: application/views/lookup/index.php:31 -#: application/views/lotw_views/index.php:56 +#: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 #: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 -#: application/views/station_profile/create.php:73 -#: application/views/station_profile/edit.php:78 -#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 #: application/views/stationsetup/stationsetup.php:150 -#: application/views/timeline/index.php:134 +#: application/views/timeline/index.php:167 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 -#: application/views/view_log/qso.php:236 -#: application/views/view_log/qso.php:529 +#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:532 msgid "Deleted DXCC" msgstr "Silinmiş DXCC" @@ -1318,7 +1456,7 @@ msgstr "" #: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83 #: application/controllers/Lotw.php:125 application/views/adif/import.php:27 -#: application/views/interface_assets/header.php:423 +#: application/views/interface_assets/header.php:429 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1326,28 +1464,55 @@ msgstr "" msgid "Logbook of the World" msgstr "" -#: application/controllers/Lotw.php:610 +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "" + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "" + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "" + +#: application/controllers/Lotw.php:413 +#, 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:617 msgid "LoTW ADIF Information" msgstr "" -#: application/controllers/Lotw.php:718 +#: application/controllers/Lotw.php:725 msgid "LoTW ADIF Import" msgstr "" -#: application/controllers/Lotw.php:830 +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "" + +#: application/controllers/Lotw.php:837 msgid "LoTW .TQ8 Upload" msgstr "" -#: application/controllers/Lotw.php:927 application/controllers/Lotw.php:932 +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "" + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 msgid "LoTW .TQ8 Sent" msgstr "" -#: application/controllers/Lotw.php:939 +#: application/controllers/Lotw.php:946 msgid "LoTW .TQ8 Not Sent" msgstr "" #: application/controllers/Mode.php:25 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:276 #: application/views/mode/index.php:15 msgid "Modes" msgstr "" @@ -1356,28 +1521,28 @@ msgstr "" msgid "Edit Mode" msgstr "" -#: application/controllers/Notes.php:19 +#: application/controllers/Notes.php:18 #: application/views/interface_assets/header.php:128 #: application/views/notes/add.php:9 application/views/notes/edit.php:10 #: application/views/notes/main.php:5 application/views/notes/main.php:8 #: application/views/notes/view.php:6 application/views/notes/view.php:9 #: application/views/qso/edit_ajax.php:36 -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:38 -#: application/views/qso/index.php:541 application/views/qso/index.php:586 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:590 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:38 +#: application/views/qso/index.php:563 application/views/qso/index.php:608 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:593 msgid "Notes" msgstr "Notlar" -#: application/controllers/Notes.php:38 +#: application/controllers/Notes.php:37 msgid "Add Notes" msgstr "" -#: application/controllers/Notes.php:58 +#: application/controllers/Notes.php:64 #: application/views/oqrs/showrequests.php:88 msgid "Note" msgstr "" -#: application/controllers/Notes.php:79 application/views/notes/edit.php:7 +#: application/controllers/Notes.php:92 application/views/notes/edit.php:7 #: application/views/notes/view.php:19 msgid "Edit Note" msgstr "Notu düzenle" @@ -1385,16 +1550,16 @@ msgstr "Notu düzenle" #: application/controllers/Options.php:31 #: application/controllers/Options.php:41 #: application/controllers/Options.php:56 -#: application/controllers/Options.php:136 -#: application/controllers/Options.php:147 -#: application/controllers/Options.php:184 -#: application/controllers/Options.php:195 -#: application/controllers/Options.php:228 -#: application/controllers/Options.php:239 -#: application/controllers/Options.php:309 -#: application/controllers/Options.php:319 -#: application/controllers/Options.php:387 -#: application/controllers/Options.php:397 +#: application/controllers/Options.php:144 +#: application/controllers/Options.php:155 +#: application/controllers/Options.php:192 +#: application/controllers/Options.php:203 +#: application/controllers/Options.php:236 +#: application/controllers/Options.php:247 +#: application/controllers/Options.php:317 +#: application/controllers/Options.php:327 +#: application/controllers/Options.php:395 +#: application/controllers/Options.php:405 msgid "Wavelog Options" msgstr "" @@ -1411,95 +1576,96 @@ msgstr "" #: application/controllers/Options.php:110 #: application/controllers/Options.php:118 #: application/controllers/Options.php:126 +#: application/controllers/Options.php:134 msgid "Options saved" msgstr "" -#: application/controllers/Options.php:165 +#: application/controllers/Options.php:173 msgid "de continent changed to " msgstr "" -#: application/controllers/Options.php:170 +#: application/controllers/Options.php:178 msgid "Maximum age of spots changed to " msgstr "" -#: application/controllers/Options.php:175 +#: application/controllers/Options.php:183 msgid "DXCluster Cache URL changed to " msgstr "" -#: application/controllers/Options.php:185 -#: application/controllers/Options.php:196 +#: application/controllers/Options.php:193 +#: application/controllers/Options.php:204 msgid "Radio Settings" msgstr "" -#: application/controllers/Options.php:217 +#: application/controllers/Options.php:225 msgid "Radio Timeout Warning changed to " msgstr "" -#: application/controllers/Options.php:229 -#: application/controllers/Options.php:240 +#: application/controllers/Options.php:237 +#: application/controllers/Options.php:248 #: application/views/options/sidebar.php:6 msgid "Email" msgstr "" -#: application/controllers/Options.php:297 +#: application/controllers/Options.php:305 msgid "The settings were saved successfully." msgstr "" -#: application/controllers/Options.php:299 +#: application/controllers/Options.php:307 msgid "Something went wrong with saving the settings. Try again." msgstr "" -#: application/controllers/Options.php:310 -#: application/controllers/Options.php:320 +#: application/controllers/Options.php:318 +#: application/controllers/Options.php:328 #: application/views/options/sidebar.php:8 msgid "OQRS Options" msgstr "" -#: application/controllers/Options.php:333 +#: application/controllers/Options.php:341 msgid "OQRS options have been saved." msgstr "" -#: application/controllers/Options.php:373 -#: application/controllers/Options.php:378 +#: application/controllers/Options.php:381 +#: application/controllers/Options.php:386 msgid "Testmail failed. Something went wrong." msgstr "" -#: application/controllers/Options.php:375 +#: application/controllers/Options.php:383 msgid "Testmail sent. Email settings seem to be correct." msgstr "" -#: application/controllers/Options.php:388 -#: application/controllers/Options.php:398 +#: application/controllers/Options.php:396 +#: application/controllers/Options.php:406 msgid "Version Info Settings" msgstr "" -#: application/controllers/Options.php:404 +#: application/controllers/Options.php:412 msgid "Version Info Header changed to" msgstr "" -#: application/controllers/Options.php:408 +#: application/controllers/Options.php:416 msgid "Version Info Mode changed to" msgstr "" -#: application/controllers/Options.php:413 +#: application/controllers/Options.php:421 msgid "Version Info Custom Text saved!" msgstr "" -#: application/controllers/Options.php:424 +#: application/controllers/Options.php:432 msgid "Version Info will be shown to all users again" msgstr "" -#: application/controllers/Options.php:432 +#: application/controllers/Options.php:440 msgid "Version Info will not be shown to any user" msgstr "" -#: application/controllers/Oqrs.php:22 application/controllers/Oqrs.php:61 -#: application/controllers/Oqrs.php:73 +#: application/controllers/Oqrs.php:46 application/controllers/Oqrs.php:85 +#: application/controllers/Oqrs.php:97 msgid "Log Search & OQRS" msgstr "" -#: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:413 +#: application/controllers/Oqrs.php:127 +#: application/views/interface_assets/header.php:419 msgid "OQRS Requests" msgstr "" @@ -1507,8 +1673,46 @@ msgstr "" msgid "QRB Calculator" msgstr "" +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "" + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" + #: application/controllers/Qrz.php:173 -#: application/views/interface_assets/header.php:426 +#: application/views/interface_assets/header.php:432 msgid "QRZ Logbook" msgstr "" @@ -1520,8 +1724,8 @@ msgstr "" msgid "QRZ ADIF Information" msgstr "" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:261 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:277 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1544,13 +1748,13 @@ msgid "Add QSO" msgstr "" #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Hardware Interfaces" msgstr "" #: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 +#: application/views/contesting/index.php:143 #: application/views/qso/index.php:312 msgid "Radio" msgstr "Telsiz" @@ -1560,10 +1764,10 @@ msgid "Timestamp" msgstr "" #: application/controllers/Radio.php:52 -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 +#: application/views/logbookadvanced/index.php:550 +#: application/views/lotw_views/index.php:43 #: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 +#: application/views/simplefle/index.php:177 #: application/views/stationsetup/exportmapoptions.php:5 #: application/views/statistics/custom.php:31 #: application/views/statistics/custom_result.php:33 @@ -1571,7 +1775,7 @@ msgid "Options" msgstr "" #: application/controllers/Radio.php:90 -#: application/views/contesting/index.php:96 +#: application/views/contesting/index.php:147 #: application/views/qso/index.php:316 msgid "last updated" msgstr "" @@ -1587,26 +1791,24 @@ msgstr "" #: application/controllers/Radio.php:105 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2323 -#: application/views/interface_assets/footer.php:2341 -#: application/views/interface_assets/footer.php:2362 -#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2337 +#: application/views/interface_assets/footer.php:2355 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 #: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:514 -#: application/views/lotw_views/index.php:118 +#: application/views/logbookadvanced/index.php:542 +#: application/views/lotw_views/index.php:114 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 #: application/views/qslcard/index.php:65 #: application/views/satellite/edit.php:40 #: application/views/satellite/index.php:26 #: application/views/search/stored_queries.php:22 -#: application/views/station_profile/index.php:55 -#: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 #: application/views/stationsetup/stationsetup.php:137 #: application/views/stationsetup/stationsetup.php:192 -#: application/views/themes/index.php:107 application/views/user/main.php:54 -#: application/views/view_log/qso.php:613 +#: application/views/themes/index.php:107 application/views/user/index.php:57 +#: application/views/view_log/qso.php:616 msgid "Delete" msgstr "" @@ -1614,11 +1816,15 @@ msgstr "" msgid "No CAT interfaced radios found." msgstr "" -#: application/controllers/Satellite.php:37 +#: application/controllers/Reg1test.php:25 +msgid "Export EDI" +msgstr "" + +#: application/controllers/Satellite.php:39 msgid "Create Satellite" msgstr "" -#: application/controllers/Satellite.php:60 +#: application/controllers/Satellite.php:66 msgid "Edit Satellite" msgstr "" @@ -1631,10 +1837,7 @@ msgstr "" #: application/views/awards/counties/index.php:8 #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:19 -#: application/views/awards/was/index.php:21 -#: application/views/dashboard/index.php:64 -#: application/views/dashboard/index.php:73 -#: application/views/dashboard/index.php:82 +#: application/views/awards/was/index.php:23 #: application/views/simplefle/index.php:16 msgid "here" msgstr "" @@ -1646,9 +1849,10 @@ msgstr "" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:336 -#: application/views/interface_assets/header.php:343 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:340 +#: application/views/interface_assets/header.php:347 +#: application/views/logbookadvanced/index.php:538 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1662,8 +1866,8 @@ msgstr "" #: application/views/search/lotw_unconfirmed.php:37 #: application/views/search/main.php:4 application/views/search/main.php:12 #: application/views/search/main.php:33 -#: application/views/visitor/layout/header.php:99 -#: application/views/visitor/layout/header.php:100 +#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:98 msgid "Search" msgstr "" @@ -1681,15 +1885,23 @@ msgid "" "date" msgstr "" -#: application/controllers/Station.php:35 -#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/controllers/Station.php:36 +#: application/controllers/Stationsetup.php:226 +msgid "Create Station Location" +msgstr "" + +#: application/controllers/Station.php:51 +msgid "Edit Station Location: " +msgstr "" + +#: application/controllers/Station.php:59 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 -#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/edit.php:19 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:427 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 @@ -1697,22 +1909,13 @@ msgstr "" msgid "Station Location" msgstr "İstasyon Konumu" -#: application/controllers/Station.php:55 -#: application/controllers/Stationsetup.php:226 -msgid "Create Station Location" -msgstr "" - -#: application/controllers/Station.php:70 -msgid "Edit Station Location: " -msgstr "" - -#: application/controllers/Station.php:92 +#: application/controllers/Station.php:73 msgid "Duplicate Station Location:" msgstr "" #: application/controllers/Stationsetup.php:35 -#: application/views/interface_assets/header.php:377 -#: application/views/interface_assets/header.php:488 +#: application/views/interface_assets/header.php:381 +#: application/views/interface_assets/header.php:494 msgid "Station Setup" msgstr "" @@ -1730,7 +1933,7 @@ msgstr "" #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 #: application/controllers/Stationsetup.php:436 -#: application/views/qso/index.php:608 +#: application/views/qso/index.php:630 msgid "Error" msgstr "" @@ -1762,9 +1965,10 @@ msgstr "" #: application/views/options/appearance.php:83 #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 +#: application/views/options/appearance.php:110 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:259 -#: application/views/station_profile/edit.php:312 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 msgid "Disabled" @@ -1776,7 +1980,7 @@ msgid "Set as Active Logbook" msgstr "" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:486 +#: application/views/interface_assets/header.php:492 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1799,20 +2003,17 @@ msgid "Are you sure you want to delete the public slug?" msgstr "" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "" "Are you sure you want to make the following station the active station: " msgstr "" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "" #: application/controllers/Stationsetup.php:351 -#: application/views/station_profile/index.php:71 #: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "" @@ -1821,54 +2022,45 @@ msgstr "" #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:28 -#: application/views/station_profile/index.php:76 #: application/views/stationsetup/stationsetup.php:161 -#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/user/index.php:90 application/views/user/index.php:92 msgid "QSO" msgstr "" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 -#: application/views/cron/index.php:56 -#: application/views/interface_assets/footer.php:535 -#: application/views/interface_assets/footer.php:544 +#: application/views/cron/index.php:58 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 #: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:541 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 -#: application/views/station_profile/index.php:46 -#: application/views/station_profile/index.php:79 #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 -#: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/views/themes/index.php:104 application/views/user/index.php:52 msgid "Edit" msgstr "" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:99 #: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:54 -#: application/views/station_profile/index.php:101 #: application/views/stationsetup/stationsetup.php:136 #: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "" #: application/controllers/Stationsetup.php:367 -#: application/views/station_profile/index.php:47 -#: application/views/station_profile/index.php:82 #: application/views/stationsetup/stationsetup.php:129 #: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "" #: application/controllers/Stationsetup.php:372 -#: application/views/station_profile/index.php:105 #: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "" @@ -1901,7 +2093,7 @@ msgid "QSL Statistics" msgstr "" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:282 msgid "Themes" msgstr "" @@ -1913,14 +2105,14 @@ msgstr "" msgid "Edit Theme" msgstr "" -#: application/controllers/Timeline.php:17 -#: application/views/interface_assets/header.php:148 +#: application/controllers/Timeline.php:15 +#: application/views/interface_assets/header.php:150 #: application/views/timeline/index.php:2 msgid "Timeline" msgstr "" #: application/controllers/Timeplotter.php:17 -#: application/views/interface_assets/header.php:152 +#: application/views/interface_assets/header.php:154 #: application/views/timeplotter/index.php:9 msgid "Timeplotter" msgstr "" @@ -1961,130 +2153,154 @@ msgstr "" msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:268 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:272 msgid "User Accounts" msgstr "" -#: application/controllers/User.php:52 +#: application/controllers/User.php:76 msgid "Add User" msgstr "" -#: application/controllers/User.php:166 +#: application/controllers/User.php:190 msgid "Users" msgstr "" -#: application/controllers/User.php:240 application/controllers/User.php:673 +#: application/controllers/User.php:264 application/controllers/User.php:697 msgid "Edit User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 -#: application/views/user/main.php:3 application/views/user/main.php:46 +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 msgid "User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 +#: application/controllers/User.php:689 application/controllers/User.php:692 msgid "edited" msgstr "" -#: application/controllers/User.php:722 +#: application/controllers/User.php:746 msgid "Profile" msgstr "" -#: application/controllers/User.php:779 +#: application/controllers/User.php:803 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "" -#: application/controllers/User.php:843 application/controllers/User.php:853 +#: application/controllers/User.php:867 application/controllers/User.php:877 msgid "Login failed. Try again." msgstr "" -#: application/controllers/User.php:860 -#: application/views/interface_assets/header.php:356 -#: application/views/user/login.php:89 -#: application/views/visitor/layout/header.php:88 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:360 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "" -#: application/controllers/User.php:868 -msgid "User logged in" -msgstr "" - -#: application/controllers/User.php:899 +#: application/controllers/User.php:922 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " "Only administrators are currently allowed to log in." msgstr "" -#: application/controllers/User.php:902 +#: application/controllers/User.php:925 msgid "Incorrect username or password!" msgstr "" -#: application/controllers/User.php:919 +#: application/controllers/User.php:942 #, php-format msgid "User %s logged out." msgstr "" -#: application/controllers/User.php:933 +#: application/controllers/User.php:956 msgid "Password Reset is disabled on the Demo!" msgstr "" -#: application/controllers/User.php:946 +#: application/controllers/User.php:969 msgid "Forgot Password" msgstr "" -#: application/controllers/User.php:996 application/views/user/main.php:8 +#: application/controllers/User.php:1019 application/views/user/index.php:8 msgid "Email settings are incorrect." msgstr "" -#: application/controllers/User.php:1000 application/controllers/User.php:1005 +#: application/controllers/User.php:1023 application/controllers/User.php:1028 msgid "Password Reset Processed." msgstr "" -#: application/controllers/User.php:1107 +#: application/controllers/User.php:1129 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "" +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "" + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "" + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "" + #: application/controllers/Visitor.php:50 -#: application/controllers/Visitor.php:79 -#: application/controllers/Visitor.php:142 -#: application/controllers/Visitor.php:169 -#: application/controllers/Visitor.php:199 -#: application/controllers/Visitor.php:478 +#: application/controllers/Visitor.php:81 +#: application/controllers/Visitor.php:148 +#: application/controllers/Visitor.php:175 +#: application/controllers/Visitor.php:210 +#: application/controllers/Visitor.php:472 #: application/controllers/Widgets.php:40 msgid "Unknown Public Page." msgstr "" -#: application/controllers/Visitor.php:74 -#: application/controllers/Visitor.php:165 -#: application/controllers/Visitor.php:195 -#: application/controllers/Visitor.php:474 +#: application/controllers/Visitor.php:76 +#: application/controllers/Visitor.php:171 +#: application/controllers/Visitor.php:206 +#: application/controllers/Visitor.php:468 #: application/controllers/Widgets.php:36 msgid "Empty Logbook" msgstr "" -#: application/controllers/Visitor.php:205 +#: application/controllers/Visitor.php:216 msgid "Satellite Gridsquare Map" msgstr "" -#: application/controllers/Visitor.php:411 +#: application/controllers/Visitor.php:405 #: application/views/stationsetup/stationsetup.php:35 msgid "Public Search" msgstr "" -#: application/controllers/Visitor.php:444 +#: application/controllers/Visitor.php:438 msgid "Export Map" msgstr "" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:427 +#: application/views/interface_assets/header.php:433 msgid "QO-100 Dx Club Upload" msgstr "" @@ -2096,6 +2312,84 @@ msgstr "" msgid "No stations found that are using Wavelog OQRS." msgstr "" +#: application/libraries/Subdivisions.php:31 +msgctxt "Division Name (States in various countries)." +msgid "Province" +msgstr "" + +#: application/libraries/Subdivisions.php:39 +msgctxt "Division Name (States in various countries)." +msgid "Oblast" +msgstr "" + +#: application/libraries/Subdivisions.php:41 +#: application/libraries/Subdivisions.php:47 +msgctxt "Division Name (States in various countries)." +msgid "Region" +msgstr "" + +#: application/libraries/Subdivisions.php:45 +msgctxt "Division Name (States in various countries)." +msgid "Department" +msgstr "" + +#: application/libraries/Subdivisions.php:49 +msgctxt "Division Name (States in various countries)." +msgid "Municipality" +msgstr "" + +#: application/libraries/Subdivisions.php:51 +msgctxt "Division Name (States in various countries)." +msgid "Federal State" +msgstr "" + +#: application/libraries/Subdivisions.php:56 +#: application/libraries/Subdivisions.php:94 +msgctxt "Division Name (States in various countries)." +msgid "County" +msgstr "" + +#: application/libraries/Subdivisions.php:60 +#: application/libraries/Subdivisions.php:85 +msgctxt "Division Name (States in various countries)." +msgid "District" +msgstr "" + +#: application/libraries/Subdivisions.php:62 +msgctxt "Division Name (States in various countries)." +msgid "Canton" +msgstr "" + +#: application/libraries/Subdivisions.php:64 +msgctxt "Division Name (States in various countries)." +msgid "US State" +msgstr "" + +#: application/libraries/Subdivisions.php:67 +msgctxt "Division Name (States in various countries)." +msgid "Prefecture" +msgstr "" + +#: application/libraries/Subdivisions.php:69 +msgctxt "Division Name (States in various countries)." +msgid "State" +msgstr "" + +#: application/libraries/Subdivisions.php:78 +msgctxt "Division Name (States in various countries)." +msgid "US County" +msgstr "" + +#: application/libraries/Subdivisions.php:90 +msgctxt "Division Name (States in various countries)." +msgid "DME" +msgstr "" + +#: application/libraries/Subdivisions.php:92 +msgctxt "Division Name (States in various countries)." +msgid "City / Ku / Gun" +msgstr "" + #: application/models/Eqslmethods_model.php:281 msgid "Your eQSL username and/or password is incorrect." msgstr "" @@ -2132,31 +2426,31 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4255 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4261 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4266 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4269 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4272 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4275 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4278 msgid "unknown" msgstr "" @@ -2185,7 +2479,7 @@ msgid "Accumulated number of WAJA worked" msgstr "" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:222 +#: application/views/dashboard/index.php:238 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2198,7 +2492,7 @@ msgid "Yearly" msgstr "" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:243 #: application/views/visitor/index.php:251 msgid "Month" msgstr "Ay" @@ -2214,29 +2508,33 @@ msgstr "" #: application/views/accumulate/index.php:24 #: application/views/accumulate/index.php:34 +#: application/views/accumulate/index.php:83 #: application/views/activated_gridmap/index.php:10 #: application/views/activated_gridmap/index.php:22 #: application/views/activated_gridmap/index.php:32 #: application/views/activated_gridmap/index.php:41 -#: application/views/activators/index.php:10 -#: application/views/awards/cq/index.php:75 -#: application/views/awards/cq/index.php:89 +#: application/views/activators/index.php:13 +#: application/views/awards/cq/index.php:77 +#: application/views/awards/cq/index.php:91 #: application/views/awards/dok/index.php:94 #: application/views/awards/dxcc/index.php:134 #: application/views/awards/dxcc/index.php:150 #: application/views/awards/dxcc/index.php:165 -#: application/views/awards/helvetia/index.php:88 +#: application/views/awards/helvetia/index.php:90 #: application/views/awards/iota/index.php:108 -#: application/views/awards/itu/index.php:75 -#: application/views/awards/itu/index.php:89 +#: application/views/awards/itu/index.php:77 +#: application/views/awards/itu/index.php:91 #: application/views/awards/jcc/index.php:91 -#: application/views/awards/rac/index.php:80 +#: application/views/awards/rac/index.php:82 #: application/views/awards/wab/index.php:24 #: application/views/awards/wab/index.php:36 #: application/views/awards/wab/index.php:46 #: application/views/awards/wab/index.php:55 -#: application/views/awards/waja/index.php:92 -#: application/views/awards/was/index.php:88 +#: application/views/awards/wac/index.php:81 +#: application/views/awards/wac/index.php:97 +#: application/views/awards/wac/index.php:113 +#: application/views/awards/waja/index.php:94 +#: application/views/awards/was/index.php:90 #: application/views/bandmap/list.php:71 application/views/bandmap/list.php:78 #: application/views/bandmap/list.php:90 application/views/bands/index.php:117 #: application/views/cabrillo/index.php:65 @@ -2247,6 +2545,7 @@ msgstr "" #: application/views/csv/index.php:94 application/views/distances/index.php:21 #: application/views/distances/index.php:36 #: application/views/distances/index.php:46 +#: application/views/distances/index.php:56 #: application/views/dxatlas/index.php:21 #: application/views/dxatlas/index.php:33 #: application/views/dxatlas/index.php:44 @@ -2258,28 +2557,29 @@ msgstr "" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1435 -#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1448 +#: application/views/interface_assets/footer.php:1587 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:172 #: application/views/logbookadvanced/index.php:183 #: application/views/logbookadvanced/index.php:194 -#: application/views/logbookadvanced/index.php:203 -#: application/views/logbookadvanced/index.php:212 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:205 +#: application/views/logbookadvanced/index.php:214 +#: application/views/logbookadvanced/index.php:223 #: application/views/logbookadvanced/index.php:248 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:321 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:374 -#: application/views/logbookadvanced/index.php:385 -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:259 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:423 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2290,11 +2590,12 @@ msgstr "" #: application/views/stationsetup/exportmapoptions.php:33 #: application/views/timeline/index.php:10 #: application/views/timeline/index.php:22 +#: application/views/timeline/index.php:77 #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 #: application/views/user/edit.php:633 -#: application/views/visitor/layout/footer.php:169 +#: application/views/visitor/layout/footer.php:171 msgid "All" msgstr "" @@ -2332,29 +2633,254 @@ msgstr "" msgid "Period" msgstr "" -#: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: application/views/accumulate/index.php:80 +#: application/views/distances/index.php:53 +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/timeline/index.php:74 +msgid "Propagation" +msgstr "" + +#: application/views/accumulate/index.php:84 +#: application/views/distances/index.php:57 +#: application/views/timeline/index.php:78 +msgid "All but SAT" +msgstr "" + +#: application/views/accumulate/index.php:85 +#: application/views/distances/index.php:58 +#: application/views/gridmap/index.php:42 +#: application/views/logbookadvanced/edit.php:142 +#: application/views/logbookadvanced/index.php:307 +#: application/views/timeline/index.php:79 +msgid "None/Empty" +msgstr "" + +#: application/views/accumulate/index.php:86 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/logbookadvanced/index.php:225 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:414 +#: application/views/timeline/index.php:80 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/accumulate/index.php:87 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/logbookadvanced/index.php:226 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:415 +#: application/views/timeline/index.php:81 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/accumulate/index.php:88 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/logbookadvanced/index.php:227 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:416 +#: application/views/timeline/index.php:82 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/accumulate/index.php:89 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/logbookadvanced/index.php:228 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:417 +#: application/views/timeline/index.php:83 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/accumulate/index.php:90 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/logbookadvanced/index.php:229 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:418 +#: application/views/timeline/index.php:84 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/accumulate/index.php:91 +#: 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/logbookadvanced/index.php:230 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:419 +#: application/views/timeline/index.php:85 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/accumulate/index.php:92 +#: 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/logbookadvanced/index.php:231 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:420 +#: application/views/timeline/index.php:86 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/accumulate/index.php:93 +#: 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/logbookadvanced/index.php:232 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:421 +#: application/views/timeline/index.php:87 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/accumulate/index.php:94 +#: 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/logbookadvanced/index.php:233 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:422 +#: application/views/timeline/index.php:88 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/accumulate/index.php:95 +#: 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/logbookadvanced/index.php:234 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:423 +#: application/views/timeline/index.php:89 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/accumulate/index.php:96 +#: 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/logbookadvanced/index.php:235 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:424 +#: application/views/timeline/index.php:90 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/accumulate/index.php:97 +#: 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/logbookadvanced/index.php:236 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:425 +#: application/views/timeline/index.php:91 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/accumulate/index.php:98 +#: 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/logbookadvanced/index.php:237 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:426 +#: application/views/timeline/index.php:92 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/accumulate/index.php:99 +#: 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/logbookadvanced/index.php:238 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:427 +#: application/views/timeline/index.php:93 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/accumulate/index.php:100 +#: 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/logbookadvanced/index.php:239 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:428 +#: application/views/timeline/index.php:94 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/accumulate/index.php:101 +#: 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/logbookadvanced/index.php:240 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:429 +#: application/views/timeline/index.php:95 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Uydu" + +#: application/views/accumulate/index.php:102 +#: 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/logbookadvanced/index.php:241 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:430 +#: application/views/timeline/index.php:96 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/accumulate/index.php:103 +#: 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/logbookadvanced/index.php:242 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:431 +#: application/views/timeline/index.php:97 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/accumulate/index.php:112 +#: application/views/activators/index.php:53 +#: application/views/awards/cq/index.php:113 #: application/views/awards/dok/index.php:127 #: application/views/awards/dxcc/index.php:187 -#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/helvetia/index.php:112 #: application/views/awards/iota/index.php:130 -#: application/views/awards/itu/index.php:111 +#: application/views/awards/itu/index.php:113 #: application/views/awards/jcc/index.php:113 -#: application/views/awards/rac/index.php:102 -#: application/views/awards/waja/index.php:114 -#: application/views/awards/was/index.php:110 -#: application/views/distances/index.php:53 +#: application/views/awards/rac/index.php:104 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:79 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 #: application/views/stationsetup/exportmapoptions.php:6 -#: application/views/timeline/index.php:72 -#: application/views/timeline/index.php:137 -#: application/views/timeline/index.php:164 -#: application/views/timeline/index.php:189 -#: application/views/timeline/index.php:218 -#: application/views/timeline/index.php:243 -#: application/views/timeline/index.php:270 +#: application/views/timeline/index.php:105 +#: application/views/timeline/index.php:170 +#: application/views/timeline/index.php:197 +#: application/views/timeline/index.php:222 +#: application/views/timeline/index.php:251 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:303 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "" @@ -2362,12 +2888,15 @@ msgstr "" #: application/views/activated_gridmap/index.php:20 #: application/views/awards/dxcc/index.php:131 #: application/views/awards/wab/index.php:34 +#: application/views/awards/wac/index.php:78 #: 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/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/edit.php:17 +#: application/views/logbookadvanced/index.php:203 #: application/views/satellite/flightpath.php:34 +#: application/views/satellite/passtable.php:5 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2376,9 +2905,10 @@ msgstr "Uydu" #: application/views/activated_gridmap/index.php:30 #: application/views/awards/dxcc/index.php:147 #: application/views/awards/wab/index.php:44 +#: application/views/awards/wac/index.php:94 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:212 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2393,16 +2923,17 @@ msgid "Confirmation" msgstr "" #: application/views/activated_gridmap/index.php:82 -#: application/views/awards/cq/index.php:66 +#: application/views/awards/cq/index.php:68 #: application/views/awards/dok/index.php:67 #: application/views/awards/dxcc/index.php:73 -#: application/views/awards/helvetia/index.php:65 -#: application/views/awards/itu/index.php:66 +#: application/views/awards/helvetia/index.php:67 +#: application/views/awards/itu/index.php:68 #: application/views/awards/jcc/index.php:64 -#: application/views/awards/rac/index.php:57 +#: application/views/awards/rac/index.php:59 #: application/views/awards/wab/index.php:96 -#: application/views/awards/waja/index.php:65 -#: application/views/awards/was/index.php:65 +#: application/views/awards/wac/index.php:56 +#: application/views/awards/waja/index.php:67 +#: application/views/awards/was/index.php:67 #: application/views/gridmap/index.php:125 application/views/user/edit.php:675 msgid "QRZ.com" msgstr "" @@ -2438,59 +2969,62 @@ msgstr "" #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:37 #: application/views/gridmap/index.php:156 -#: application/views/logbookadvanced/index.php:12 +#: application/views/logbookadvanced/index.php:13 msgid "Bearing" msgstr "" -#: application/views/activators/index.php:23 +#: application/views/activators/index.php:26 msgctxt "Orbiter LEO or GEO" msgid "Both" msgstr "" -#: application/views/activators/index.php:30 +#: application/views/activators/index.php:33 msgid "Minimum Count" msgstr "" -#: application/views/activators/index.php:77 +#: application/views/activators/index.php:76 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:46 -#: application/views/awards/cq/index.php:196 +#: application/views/awards/cq/index.php:198 #: application/views/awards/dok/index.php:196 #: application/views/awards/dxcc/index.php:280 -#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/helvetia/index.php:200 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:196 +#: application/views/awards/itu/index.php:198 #: application/views/awards/jcc/index.php:236 #: application/views/awards/pota/index.php:67 -#: application/views/awards/rac/index.php:190 +#: application/views/awards/rac/index.php:192 #: application/views/awards/sig/index.php:45 #: application/views/awards/sota/index.php:53 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:39 -#: application/views/awards/waja/index.php:200 -#: application/views/awards/was/index.php:198 +#: application/views/awards/wac/index.php:199 +#: application/views/awards/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 +#: application/views/distancerecords/index.php:50 #: application/views/public_search/empty.php:3 -#: application/views/qrz/export.php:64 application/views/timeline/index.php:102 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:135 msgid "Nothing found!" msgstr "" -#: application/views/activators/index.php:99 -#: application/views/adif/import.php:66 application/views/adif/import.php:172 -#: application/views/adif/import.php:217 +#: application/views/activators/index.php:98 +#: application/views/adif/import.php:66 application/views/adif/import.php:182 +#: application/views/adif/import.php:227 #: application/views/awards/pota/index.php:34 #: application/views/awards/sig/qso_list.php:11 #: application/views/awards/sota/index.php:25 #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:104 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:152 +#: application/views/contesting/index.php:156 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:168 +#: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 -#: application/views/lotw_views/index.php:39 +#: application/views/lotw_views/index.php:35 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 #: application/views/qslcard/index.php:28 @@ -2499,35 +3033,36 @@ msgstr "" #: application/views/qslprint/qslprint.php:21 #: application/views/qslprint/qsolist.php:6 #: application/views/qso/edit_ajax.php:62 application/views/qso/index.php:124 +#: application/views/reg1test/index.php:33 #: application/views/search/cqzones.php:32 #: application/views/search/cqzones_result.php:9 #: application/views/search/lotw_unconfirmed.php:33 #: application/views/search/lotw_unconfirmed_result.php:6 #: application/views/search/result.php:11 -#: application/views/simplefle/index.php:142 -#: application/views/station_profile/edit.php:36 +#: application/views/simplefle/index.php:148 +#: application/views/station_profile/edit.php:63 #: application/views/stationsetup/linkedlocations.php:17 -#: application/views/user/edit.php:123 application/views/user/main.php:4 -#: application/views/user/main.php:47 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:507 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 +#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:510 msgid "Callsign" msgstr "Çağrı işareti" -#: application/views/activators/index.php:100 +#: application/views/activators/index.php:99 msgid "Count" msgstr "" -#: application/views/activators/index.php:102 -#: application/views/timeline/index.php:121 -#: application/views/timeline/index.php:153 -#: application/views/timeline/index.php:178 -#: application/views/timeline/index.php:205 -#: application/views/timeline/index.php:232 -#: application/views/timeline/index.php:258 +#: application/views/activators/index.php:101 +#: application/views/timeline/index.php:154 +#: application/views/timeline/index.php:186 +#: application/views/timeline/index.php:211 +#: application/views/timeline/index.php:238 +#: application/views/timeline/index.php:265 +#: application/views/timeline/index.php:291 msgid "Show QSO's" msgstr "" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "" @@ -2568,10 +3103,12 @@ msgstr "" #: application/views/awards/wwff/index.php:32 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:25 -#: application/views/contesting/index.php:42 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36 +#: application/views/contesting/index.php:93 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:163 +#: application/views/debug/index.php:545 +#: application/views/distancerecords/index.php:16 +#: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2584,22 +3121,22 @@ msgstr "" #: application/views/qslcard/searchresult.php:4 #: application/views/qslprint/qslprint.php:22 #: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:64 -#: application/views/qso/index.php:100 +#: application/views/qso/index.php:100 application/views/satellite/pass.php:473 #: application/views/search/cqzones_result.php:7 #: application/views/search/result_search.php:4 #: application/views/search/search_result_ajax.php:89 -#: application/views/simplefle/index.php:140 +#: application/views/simplefle/index.php:146 #: application/views/statistics/custom.php:38 #: application/views/statistics/custom_result.php:40 #: application/views/statistics/custom_result.php:85 -#: application/views/timeline/index.php:116 -#: application/views/timeline/index.php:151 -#: application/views/timeline/index.php:176 -#: application/views/timeline/index.php:201 -#: application/views/timeline/index.php:230 -#: application/views/timeline/index.php:255 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:184 +#: application/views/timeline/index.php:209 +#: application/views/timeline/index.php:234 +#: application/views/timeline/index.php:263 +#: application/views/timeline/index.php:288 #: application/views/view_log/partial/log.php:4 -#: application/views/view_log/partial/log_ajax.php:57 +#: application/views/view_log/partial/log_ajax.php:59 #: application/views/visitor/index.php:147 #: application/views/widgets/qsos.php:24 msgid "Date" @@ -2610,10 +3147,12 @@ msgstr "Tarih" #: application/views/awards/wwff/index.php:33 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:26 -#: application/views/contesting/index.php:47 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37 +#: application/views/contesting/index.php:98 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:166 +#: application/views/debug/index.php:546 +#: application/views/distancerecords/index.php:17 +#: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2624,12 +3163,12 @@ msgstr "Tarih" #: application/views/search/cqzones_result.php:8 #: application/views/search/result_search.php:5 #: application/views/search/search_result_ajax.php:91 -#: application/views/simplefle/index.php:141 +#: application/views/simplefle/index.php:147 #: application/views/statistics/custom_result.php:86 -#: application/views/timeline/index.php:256 +#: application/views/timeline/index.php:289 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 -#: application/views/view_log/partial/log_ajax.php:59 +#: application/views/view_log/partial/log_ajax.php:61 #: application/views/visitor/index.php:150 #: application/views/widgets/qsos.php:26 msgid "Time" @@ -2638,7 +3177,7 @@ msgstr "Saat" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 -#: application/views/contesting/index.php:201 +#: application/views/contesting/index.php:248 #: application/views/debug/index.php:547 application/views/debug/index.php:582 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -2650,7 +3189,7 @@ msgstr "Saat" #: application/views/search/search_result_ajax.php:93 #: application/views/statistics/custom_result.php:87 #: application/views/view_log/partial/log.php:8 -#: application/views/view_log/partial/log_ajax.php:61 +#: application/views/view_log/partial/log_ajax.php:63 #: application/views/visitor/index.php:152 #: application/views/widgets/qsos.php:28 msgid "Call" @@ -2668,14 +3207,14 @@ msgstr "" msgid "DCL QSL Status" msgstr "" -#: application/views/adif/import.php:36 application/views/adif/import.php:242 +#: application/views/adif/import.php:36 application/views/adif/import.php:252 msgid "DARC DCL" msgstr "" #: application/views/adif/import.php:55 -#: application/views/dashboard/index.php:97 -#: application/views/dashboard/index.php:118 -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:112 +#: application/views/dashboard/index.php:133 +#: application/views/dashboard/index.php:139 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2685,29 +3224,29 @@ msgstr "Önemli" msgid "Log Files must have the file type *.adi" msgstr "" -#: application/views/adif/import.php:56 application/views/view_log/qso.php:622 +#: application/views/adif/import.php:56 application/views/view_log/qso.php:625 msgid "Maximum file upload size is " msgstr "" -#: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:175 +#: application/views/adif/import.php:56 application/views/adif/import.php:230 +#: application/views/adif/import.php:268 application/views/debug/index.php:175 #: application/views/debug/index.php:192 application/views/debug/index.php:537 #: application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:34 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 -#: application/views/station_profile/index.php:31 #: application/views/stationsetup/stationsetup.php:111 -#: application/views/view_log/qso.php:622 +#: application/views/view_log/qso.php:625 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" msgstr "" #: application/views/adif/import.php:60 application/views/adif/import.php:62 -#: application/views/adif/import.php:168 application/views/adif/import.php:215 +#: application/views/adif/import.php:178 application/views/adif/import.php:225 #: application/views/eqsl/import.php:36 application/views/hrdlog/export.php:69 -#: application/views/qrz/export.php:89 application/views/webadif/export.php:89 +#: application/views/qrz/export.php:89 application/views/reg1test/index.php:30 +#: application/views/webadif/export.php:89 msgid "Select Station Location" msgstr "" @@ -2734,69 +3273,75 @@ msgstr "" #: application/views/adif/import.php:95 application/views/adif/import.php:105 #: application/views/adif/import.php:115 application/views/adif/import.php:125 +#: application/views/adif/import.php:135 msgid "Select if ADIF being imported does not contain this information." msgstr "" #: application/views/adif/import.php:103 -msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" +msgid "Mark imported QSOs as uploaded to eQSL Logbook" msgstr "" #: application/views/adif/import.php:113 -msgid "Mark imported QSOs as uploaded to QRZ Logbook" +msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" msgstr "" #: application/views/adif/import.php:123 -msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgid "Mark imported QSOs as uploaded to QRZ Logbook" msgstr "" #: application/views/adif/import.php:133 +msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgstr "" + +#: application/views/adif/import.php:143 msgid "Use DXCC information from ADIF" msgstr "" -#: application/views/adif/import.php:135 +#: application/views/adif/import.php:145 msgid "" "If not selected, Wavelog will attempt to determine DXCC information " "automatically." msgstr "" -#: application/views/adif/import.php:143 +#: application/views/adif/import.php:153 msgid "Always use login-callsign as operator-name on import" msgstr "" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:32 -#: application/views/interface_assets/footer.php:495 -#: application/views/interface_assets/footer.php:2119 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2133 msgid "DANGER" msgstr "" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 msgid "Ignore Stationcallsign on import" msgstr "" -#: application/views/adif/import.php:154 +#: application/views/adif/import.php:164 +#, php-format msgid "" -"If selected, Wavelog will try to import all QSO's of the ADIF, " +"If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " "regardless if they match to the chosen station-location." msgstr "" -#: application/views/adif/import.php:158 application/views/adif/import.php:273 +#: application/views/adif/import.php:168 application/views/adif/import.php:283 #: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 #: application/views/webadif/export.php:55 msgid "Upload" msgstr "" -#: application/views/adif/import.php:165 +#: application/views/adif/import.php:175 msgid "Take your logbook file anywhere!" msgstr "" -#: application/views/adif/import.php:166 +#: application/views/adif/import.php:176 msgid "" "Exporting ADIFs allows you to import contacts into third party applications " "like LoTW, Awards or just for keeping a backup." msgstr "" -#: application/views/adif/import.php:176 application/views/adif/import.php:222 +#: application/views/adif/import.php:186 application/views/adif/import.php:232 #: application/views/cfd/index.php:15 application/views/csv/index.php:118 #: application/views/dxatlas/index.php:118 #: application/views/hrdlog/export.php:77 application/views/kml/index.php:103 @@ -2805,7 +3350,7 @@ msgstr "" msgid "From date" msgstr "Tarihten itibaren" -#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/adif/import.php:189 application/views/adif/import.php:235 #: application/views/cfd/index.php:20 application/views/csv/index.php:123 #: application/views/dxatlas/index.php:123 #: application/views/hrdlog/export.php:82 application/views/kml/index.php:108 @@ -2814,40 +3359,40 @@ msgstr "Tarihten itibaren" msgid "To date" msgstr "" -#: application/views/adif/import.php:187 +#: application/views/adif/import.php:197 msgid "Mark exported QSOs as uploaded to LoTW" msgstr "" -#: application/views/adif/import.php:195 +#: application/views/adif/import.php:205 msgid "Export QSOs not uploaded to LoTW" msgstr "" -#: application/views/adif/import.php:200 +#: application/views/adif/import.php:210 msgid "Export QSO's" msgstr "" -#: application/views/adif/import.php:205 +#: application/views/adif/import.php:215 msgid "Export Satellite-Only QSOs" msgstr "" -#: application/views/adif/import.php:206 +#: application/views/adif/import.php:216 msgid "Export All Satellite QSOs" msgstr "" -#: application/views/adif/import.php:208 +#: application/views/adif/import.php:218 msgid "Export All Satellite QSOs Confirmed on LoTW" msgstr "" -#: application/views/adif/import.php:220 application/views/hrdlog/export.php:74 +#: application/views/adif/import.php:230 application/views/hrdlog/export.php:74 #: application/views/qrz/export.php:94 application/views/webadif/export.php:94 msgid "If a date range is not selected then all QSOs will be marked!" msgstr "" -#: application/views/adif/import.php:228 +#: application/views/adif/import.php:238 msgid "Mark QSOs as exported to LoTW" msgstr "" -#: application/views/adif/import.php:242 +#: application/views/adif/import.php:252 #, php-format msgid "" "Go to %s and export your logbook with confirmed DOKs. To speed up the " @@ -2856,36 +3401,47 @@ msgid "" "with DOK info." msgstr "" -#: application/views/adif/import.php:249 +#: application/views/adif/import.php:259 msgid "Only import DOK data from QSOs confirmed on DCL." msgstr "" -#: application/views/adif/import.php:251 +#: application/views/adif/import.php:261 msgid "" "Uncheck if you also want to update DOK with data from unconfirmed QSOs in " "DCL." msgstr "" -#: application/views/adif/import.php:258 +#: application/views/adif/import.php:268 msgid "Overwrites exisiting DOK in log by DCL (if different)." msgstr "" -#: application/views/adif/import.php:260 +#: application/views/adif/import.php:270 msgid "" "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " "log." msgstr "" -#: application/views/adif/import.php:267 +#: application/views/adif/import.php:277 msgid "Ignore QSOs that cannot be matched." msgstr "Ignore QSOs that cannot be matched" -#: application/views/adif/import.php:269 +#: application/views/adif/import.php:279 msgid "" "If unchecked, information about QSOs which could not be found in Wavelog " "will be displayed." msgstr "" +#: application/views/adif/import_failed.php:15 +msgid "The ADIF file could not be parsed correctly." +msgstr "" + +#: application/views/adif/import_failed.php:16 +msgid "" +"At least one of the ADIF fields could not be parsed and/or inserted into the " +"database. Please check the imported ADIF file. You can use an online ADIF " +"file checker. For example:" +msgstr "" + #: application/views/adif/import_success.php:15 msgid "Yay, its imported!" msgstr "" @@ -2938,24 +3494,22 @@ msgstr "" #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 -#: application/views/interface_assets/footer.php:43 -#: application/views/interface_assets/footer.php:530 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 -#: application/views/options/appearance.php:107 +#: application/views/options/appearance.php:116 #: application/views/options/dxcluster.php:67 #: application/views/options/email.php:112 #: application/views/options/oqrs.php:63 #: application/views/options/radios.php:45 #: application/views/options/version_dialog.php:78 -#: application/views/qso/components/winkeysettings.php:90 -#: application/views/qso/components/winkeysettings_results.php:90 #: application/views/satellite/create.php:70 #: application/views/simplefle/index.php:22 msgid "Save" msgstr "" #: application/views/api/help.php:14 -#: application/views/interface_assets/header.php:431 +#: application/views/interface_assets/header.php:437 msgid "API Keys" msgstr "" @@ -2979,7 +3533,7 @@ msgid "API URL" msgstr "" #: application/views/api/help.php:19 application/views/api/help.php:38 -#: application/views/cron/index.php:21 application/views/debug/index.php:36 +#: application/views/cron/index.php:22 application/views/debug/index.php:36 msgid "Copy to clipboard" msgstr "Panoya kopyala" @@ -2988,14 +3542,15 @@ msgid "The API URL for this Wavelog instance is" msgstr "" #: application/views/api/help.php:20 application/views/dxcalendar/index.php:15 -#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:477 -#: application/views/qso/index.php:538 application/views/qso/index.php:583 +#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:504 +#: application/views/qso/index.php:560 application/views/qso/index.php:605 #: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 #: application/views/sattimers/index.php:73 #: application/views/sattimers/index.php:75 +#: application/views/sattimers/index.php:77 #: application/views/search/filter.php:69 msgid "Info" msgstr "Bilgiler" @@ -3011,7 +3566,7 @@ msgid "API Key" msgstr "" #: application/views/api/help.php:28 application/views/cron/edit.php:30 -#: application/views/cron/index.php:51 +#: application/views/cron/index.php:53 #: application/views/search/stored_queries.php:8 msgid "Description" msgstr "" @@ -3024,19 +3579,18 @@ msgstr "" msgid "Permissions" msgstr "" -#: application/views/api/help.php:31 application/views/cron/index.php:52 -#: application/views/lotw_views/index.php:45 +#: application/views/api/help.php:31 application/views/cron/index.php:54 +#: application/views/lotw_views/index.php:41 #: application/views/mode/index.php:31 #: application/views/oqrs/showrequests.php:91 #: application/views/sattimers/index.php:39 #: application/views/stationsetup/stationsetup.php:31 -#: application/views/timeline/index.php:119 -#: application/views/update/index.php:30 +#: application/views/timeline/index.php:152 msgid "Status" msgstr "Durum" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:519 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3072,6 +3626,7 @@ msgstr "" #: application/views/awards/counties/details.php:4 #: application/views/awards/details.php:1 #: application/views/awards/vucc/band.php:4 +#: application/views/distancerecords/details.php:1 #: application/views/timeline/details.php:2 msgid "Filtering on" msgstr "" @@ -3082,8 +3637,8 @@ msgstr "" #: application/views/awards/counties/index.php:6 #: application/views/awards/counties/index.php:13 -#: application/views/awards/cq/index.php:17 -#: application/views/awards/cq/index.php:24 +#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:26 #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:13 #: application/views/awards/dxcc/index.php:13 @@ -3092,12 +3647,12 @@ msgstr "" #: application/views/awards/ffma/index.php:14 #: application/views/awards/gridmaster/index.php:6 #: application/views/awards/gridmaster/index.php:13 -#: application/views/awards/helvetia/index.php:17 -#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:26 #: application/views/awards/iota/index.php:15 #: application/views/awards/iota/index.php:22 -#: application/views/awards/itu/index.php:17 -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:26 #: application/views/awards/jcc/index.php:15 #: application/views/awards/jcc/index.php:22 #: application/views/awards/pota/index.php:6 @@ -3110,10 +3665,12 @@ msgstr "" #: application/views/awards/vucc/index.php:13 #: application/views/awards/wab/index.php:11 #: application/views/awards/wab/index.php:18 -#: application/views/awards/waja/index.php:16 -#: application/views/awards/waja/index.php:23 -#: application/views/awards/was/index.php:17 -#: application/views/awards/was/index.php:24 +#: application/views/awards/wac/index.php:7 +#: application/views/awards/wac/index.php:14 +#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:25 +#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:26 #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:13 msgid "Award Info" @@ -3151,17 +3708,18 @@ msgid "Counties Confirmed" msgstr "" #: application/views/awards/counties/index.php:39 -#: application/views/awards/cq/index.php:174 +#: application/views/awards/cq/index.php:176 #: application/views/awards/dok/index.php:174 #: application/views/awards/dxcc/index.php:257 -#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/helvetia/index.php:179 #: application/views/awards/iota/index.php:201 -#: application/views/awards/itu/index.php:174 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:185 -#: application/views/awards/rac/index.php:169 -#: application/views/awards/waja/index.php:177 -#: application/views/awards/was/index.php:177 -#: application/views/dashboard/index.php:217 +#: application/views/awards/rac/index.php:171 +#: application/views/awards/wac/index.php:177 +#: application/views/awards/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:233 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3177,213 +3735,230 @@ msgstr "" msgid "Total" msgstr "" -#: application/views/awards/cq/index.php:18 +#: application/views/awards/cq/index.php:3 +#: application/views/awards/cq/index.php:150 application/views/csv/index.php:80 +#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/logbookadvanced/edit.php:6 +#: application/views/logbookadvanced/index.php:246 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:284 +#: application/views/qso/index.php:390 +#: application/views/search/cqzones_result.php:13 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:264 +#: application/views/timeplotter/index.php:44 +msgid "CQ Zone" +msgstr "CQ Alanı" + +#: application/views/awards/cq/index.php:4 +#: application/views/awards/itu/index.php:4 +msgid "Hover over a zone" +msgstr "" + +#: application/views/awards/cq/index.php:20 msgid "CQ Magazine WAZ Award" msgstr "" -#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:21 msgid "" "The CQ Magazine is located in the US and one of the most popular amateur " "radio magazines in the world. The magazine first appeared in January 1945 " "and focuses on awards and the practical aspects of amateur radio." msgstr "" -#: application/views/awards/cq/index.php:20 +#: application/views/awards/cq/index.php:22 msgid "" "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to " "all 40 CQ Zones along with the corresponding confirmation." msgstr "" -#: application/views/awards/cq/index.php:21 +#: application/views/awards/cq/index.php:23 #, php-format msgctxt "uses 'CQ Magazine'" msgid "You can find all the information and rules on the Website of the %s." msgstr "" -#: application/views/awards/cq/index.php:23 +#: application/views/awards/cq/index.php:25 msgid "Awards - CQ Magazine WAZ" msgstr "" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 #: application/views/awards/wab/list.php:6 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:73 -#: application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:362 -#: application/views/interface_assets/footer.php:39 +#: application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:378 +#: application/views/interface_assets/footer.php:40 #: application/views/visitor/index.php:266 msgid "Confirmed" msgstr "Onaylanan" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:256 +#: application/views/dashboard/index.php:372 #: application/views/visitor/index.php:262 msgid "Worked" msgstr "Çalışılanlar" -#: application/views/awards/cq/index.php:36 +#: application/views/awards/cq/index.php:38 #: application/views/awards/dok/index.php:41 #: application/views/awards/dxcc/index.php:43 -#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:43 -#: application/views/awards/itu/index.php:36 +#: application/views/awards/itu/index.php:38 #: application/views/awards/jcc/index.php:34 -#: application/views/awards/rac/index.php:27 -#: application/views/awards/waja/index.php:35 -#: application/views/awards/was/index.php:35 +#: application/views/awards/rac/index.php:29 +#: application/views/awards/wac/index.php:26 +#: application/views/awards/waja/index.php:37 +#: application/views/awards/was/index.php:37 msgid "Show worked" msgstr "" -#: application/views/awards/cq/index.php:40 +#: application/views/awards/cq/index.php:42 #: application/views/awards/dok/index.php:45 #: application/views/awards/dxcc/index.php:47 -#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:47 -#: application/views/awards/itu/index.php:40 +#: application/views/awards/itu/index.php:42 #: application/views/awards/jcc/index.php:38 -#: application/views/awards/rac/index.php:31 -#: application/views/awards/waja/index.php:39 -#: application/views/awards/was/index.php:39 +#: application/views/awards/rac/index.php:33 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/waja/index.php:41 +#: application/views/awards/was/index.php:41 msgid "Show confirmed" msgstr "" -#: application/views/awards/cq/index.php:44 +#: application/views/awards/cq/index.php:46 #: application/views/awards/dxcc/index.php:51 -#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:51 -#: application/views/awards/itu/index.php:44 +#: application/views/awards/itu/index.php:46 #: application/views/awards/jcc/index.php:42 -#: application/views/awards/rac/index.php:35 -#: application/views/awards/waja/index.php:43 -#: application/views/awards/was/index.php:43 +#: application/views/awards/rac/index.php:37 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/waja/index.php:45 +#: application/views/awards/was/index.php:45 msgid "Show not worked" msgstr "" -#: application/views/awards/cq/index.php:50 +#: application/views/awards/cq/index.php:52 #: application/views/awards/dok/index.php:51 #: application/views/awards/dxcc/index.php:57 -#: application/views/awards/helvetia/index.php:49 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/helvetia/index.php:51 +#: application/views/awards/itu/index.php:52 #: application/views/awards/jcc/index.php:48 -#: application/views/awards/rac/index.php:41 -#: application/views/awards/waja/index.php:49 -#: application/views/awards/was/index.php:49 +#: application/views/awards/rac/index.php:43 +#: application/views/awards/wac/index.php:40 +#: application/views/awards/waja/index.php:51 +#: application/views/awards/was/index.php:51 msgid "Show QSO with QSL Type" msgstr "" -#: application/views/awards/cq/index.php:54 -#: application/views/awards/itu/index.php:54 -#: application/views/interface_assets/footer.php:2098 -#: application/views/qso/edit_ajax.php:378 +#: application/views/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/awards/wac/index.php:44 +#: application/views/interface_assets/footer.php:2112 +#: application/views/qso/edit_ajax.php:405 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "QSL Kartı" -#: application/views/awards/cq/index.php:110 +#: application/views/awards/cq/index.php:112 #: application/views/awards/dok/index.php:126 #: application/views/awards/dxcc/index.php:186 -#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/helvetia/index.php:111 #: application/views/awards/iota/index.php:129 -#: application/views/awards/itu/index.php:110 +#: application/views/awards/itu/index.php:112 #: application/views/awards/jcc/index.php:112 -#: application/views/awards/rac/index.php:101 -#: application/views/awards/waja/index.php:113 -#: application/views/awards/was/index.php:109 +#: application/views/awards/rac/index.php:103 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/waja/index.php:115 +#: application/views/awards/was/index.php:111 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:523 +#: application/views/logbookadvanced/index.php:551 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 msgid "Reset" msgstr "" -#: application/views/awards/cq/index.php:113 +#: application/views/awards/cq/index.php:115 msgid "Show CQ Zone Map" msgstr "" -#: application/views/awards/cq/index.php:122 +#: application/views/awards/cq/index.php:124 #: application/views/awards/dxcc/index.php:199 -#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/helvetia/index.php:124 #: application/views/awards/iota/index.php:142 -#: application/views/awards/itu/index.php:122 -#: application/views/awards/rac/index.php:114 -#: application/views/awards/waja/index.php:126 -#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:124 +#: application/views/awards/rac/index.php:116 +#: application/views/awards/waja/index.php:128 +#: application/views/awards/was/index.php:124 msgid "Table" msgstr "" -#: application/views/awards/cq/index.php:125 +#: application/views/awards/cq/index.php:127 #: application/views/awards/dok/index.php:128 #: application/views/awards/dxcc/index.php:202 -#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/helvetia/index.php:127 #: application/views/awards/iota/index.php:145 -#: application/views/awards/itu/index.php:125 +#: application/views/awards/itu/index.php:127 #: application/views/awards/jcc/index.php:129 -#: application/views/awards/rac/index.php:117 +#: application/views/awards/rac/index.php:119 #: application/views/awards/wab/index.php:108 -#: application/views/awards/waja/index.php:129 -#: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:516 +#: application/views/awards/waja/index.php:131 +#: application/views/awards/was/index.php:127 +#: application/views/logbookadvanced/index.php:544 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "" -#: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 -#: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:235 -#: application/views/logbookadvanced/index.php:586 -#: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:90 -#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 -#: application/views/qso/index.php:390 -#: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:106 -#: application/views/station_profile/edit.php:126 -#: application/views/timeline/index.php:231 -#: application/views/timeplotter/index.php:44 -msgid "CQ Zone" -msgstr "CQ Alanı" - -#: application/views/awards/cq/index.php:165 +#: application/views/awards/cq/index.php:167 #: application/views/awards/dok/index.php:165 #: application/views/awards/dxcc/index.php:248 -#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/helvetia/index.php:170 #: application/views/awards/iota/index.php:192 -#: application/views/awards/itu/index.php:165 +#: application/views/awards/itu/index.php:167 #: application/views/awards/jcc/index.php:168 -#: application/views/awards/rac/index.php:160 -#: application/views/awards/waja/index.php:168 -#: application/views/awards/was/index.php:168 +#: application/views/awards/rac/index.php:162 +#: application/views/awards/wac/index.php:168 +#: application/views/awards/waja/index.php:170 +#: application/views/awards/was/index.php:170 msgid "Summary" msgstr "" -#: application/views/awards/cq/index.php:178 +#: application/views/awards/cq/index.php:180 #: application/views/awards/dok/index.php:178 #: application/views/awards/dxcc/index.php:262 -#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:206 -#: application/views/awards/itu/index.php:178 +#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:195 -#: application/views/awards/rac/index.php:173 -#: application/views/awards/waja/index.php:182 -#: application/views/awards/was/index.php:181 +#: application/views/awards/rac/index.php:175 +#: application/views/awards/wac/index.php:181 +#: application/views/awards/waja/index.php:184 +#: application/views/awards/was/index.php:183 msgid "Total worked" msgstr "" -#: application/views/awards/cq/index.php:185 +#: application/views/awards/cq/index.php:187 #: application/views/awards/dok/index.php:185 #: application/views/awards/dxcc/index.php:269 -#: application/views/awards/helvetia/index.php:188 +#: application/views/awards/helvetia/index.php:190 #: application/views/awards/iota/index.php:213 -#: application/views/awards/itu/index.php:185 +#: application/views/awards/itu/index.php:187 #: application/views/awards/jcc/index.php:214 -#: application/views/awards/rac/index.php:180 -#: application/views/awards/waja/index.php:189 -#: application/views/awards/was/index.php:188 +#: application/views/awards/rac/index.php:182 +#: application/views/awards/wac/index.php:188 +#: application/views/awards/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "" @@ -3431,23 +4006,24 @@ msgstr "" #: application/views/awards/dok/index.php:37 #: application/views/awards/dxcc/index.php:39 -#: application/views/awards/helvetia/index.php:31 +#: application/views/awards/helvetia/index.php:33 #: application/views/awards/iota/index.php:39 #: application/views/awards/jcc/index.php:30 -#: application/views/awards/rac/index.php:23 -#: application/views/awards/waja/index.php:31 -#: application/views/awards/was/index.php:31 +#: application/views/awards/rac/index.php:25 +#: application/views/awards/waja/index.php:33 +#: application/views/awards/was/index.php:33 msgid "Worked / Confirmed" msgstr "" #: application/views/awards/dok/index.php:80 #: application/views/awards/dxcc/index.php:120 -#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/helvetia/index.php:76 #: application/views/awards/iota/index.php:94 #: application/views/awards/jcc/index.php:77 -#: application/views/awards/rac/index.php:66 -#: application/views/awards/waja/index.php:78 -#: application/views/awards/was/index.php:74 +#: application/views/awards/rac/index.php:68 +#: application/views/awards/wac/index.php:66 +#: application/views/awards/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "" @@ -3468,10 +4044,12 @@ msgid "" msgstr "" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 msgid "ARRL website" msgstr "" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 #, php-format msgid "You can find all information about the DXCC Award on the %s." msgstr "" @@ -3493,63 +4071,77 @@ msgstr "" #: application/views/awards/dxcc/index.php:87 #: application/views/awards/iota/index.php:61 #: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/logbookadvanced/edit.php:144 +#: application/views/logbookadvanced/index.php:309 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 -#: application/views/view_log/qso.php:250 +#: application/views/view_log/qso.php:253 msgid "Antarctica" msgstr "" #: application/views/awards/dxcc/index.php:91 #: application/views/awards/iota/index.php:65 #: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/logbookadvanced/edit.php:143 +#: application/views/logbookadvanced/index.php:308 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 -#: application/views/view_log/qso.php:247 +#: application/views/view_log/qso.php:250 msgid "Africa" msgstr "" #: application/views/awards/dxcc/index.php:95 #: application/views/awards/iota/index.php:69 #: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/logbookadvanced/edit.php:146 +#: application/views/logbookadvanced/index.php:311 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 -#: application/views/view_log/qso.php:253 +#: application/views/view_log/qso.php:256 msgid "Asia" msgstr "" #: application/views/awards/dxcc/index.php:99 #: application/views/awards/iota/index.php:73 #: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/logbookadvanced/edit.php:147 +#: application/views/logbookadvanced/index.php:312 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 -#: application/views/view_log/qso.php:256 +#: application/views/view_log/qso.php:259 msgid "Europe" msgstr "" #: application/views/awards/dxcc/index.php:103 #: application/views/awards/iota/index.php:77 #: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/logbookadvanced/edit.php:145 +#: application/views/logbookadvanced/index.php:310 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 -#: application/views/view_log/qso.php:259 +#: application/views/view_log/qso.php:262 msgid "North America" msgstr "" #: application/views/awards/dxcc/index.php:107 #: application/views/awards/iota/index.php:81 #: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/logbookadvanced/edit.php:148 +#: application/views/logbookadvanced/index.php:313 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:265 +#: application/views/view_log/qso.php:268 msgid "South America" msgstr "" #: application/views/awards/dxcc/index.php:111 #: application/views/awards/iota/index.php:85 #: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/logbookadvanced/edit.php:149 +#: application/views/logbookadvanced/index.php:314 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 -#: application/views/view_log/qso.php:262 +#: application/views/view_log/qso.php:265 msgid "Oceania" msgstr "" @@ -3563,13 +4155,13 @@ msgstr "" #: application/views/awards/dxcc/index.php:226 #: application/views/awards/iota/index.php:170 -#: application/views/timeline/index.php:117 -#: application/views/timeline/index.php:204 +#: application/views/timeline/index.php:150 +#: application/views/timeline/index.php:237 msgid "Prefix" msgstr "" #: application/views/awards/ffma/index.php:8 -#: application/views/interface_assets/header.php:236 +#: application/views/interface_assets/header.php:240 msgid "Fred Fish Memorial Award" msgstr "" @@ -3624,11 +4216,20 @@ msgstr "" msgid "This map shows only QSOs worked on SAT." msgstr "" -#: application/views/awards/helvetia/index.php:18 +#: application/views/awards/helvetia/index.php:3 +msgctxt "Switzerland Canton" +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:4 +msgid "Hover over a canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:20 msgid "HELVETIA 26 | SWITZERLAND AWARD" msgstr "" -#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:21 msgid "" "The USKA (Union of Swiss Shortwave Amateurs) sponsors two awards, the " "HELVETIA 26 (H26) Award and the SWITZERLAND Award, aimed at promoting " @@ -3636,33 +4237,33 @@ msgid "" "as possible on multiple bands." msgstr "" -#: application/views/awards/helvetia/index.php:20 +#: application/views/awards/helvetia/index.php:22 msgid "" "These awards come in two versions: one for HF bands and the other for VHF " "(including SHF and UHF) bands. Valid connections for these awards date back " "to January 1, 1980" msgstr "" -#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/helvetia/index.php:23 #: application/views/awards/jcc/index.php:19 #: application/views/awards/sota/index.php:10 #: application/views/awards/wab/index.php:15 -#: application/views/awards/waja/index.php:20 +#: application/views/awards/waja/index.php:22 #: application/views/awards/wwff/index.php:10 #, php-format msgid "For more information, please visit: %s." msgstr "" -#: application/views/awards/helvetia/index.php:112 +#: application/views/awards/helvetia/index.php:114 msgid "Show Helvetia Map" msgstr "" -#: application/views/awards/helvetia/index.php:149 +#: application/views/awards/helvetia/index.php:151 msgid "Canton" msgstr "" #: application/views/awards/index.php:9 application/views/bands/index.php:46 -#: application/views/interface_assets/header.php:162 +#: application/views/interface_assets/header.php:164 msgid "CQ" msgstr "" @@ -3710,11 +4311,11 @@ msgstr "" #: application/views/awards/iota/index.php:171 #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 -#: application/views/contesting/index.php:153 -#: application/views/contesting/index.php:171 +#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:214 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:559 +#: application/views/logbookadvanced/index.php:587 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3724,12 +4325,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:19 #: application/views/stationsetup/stationsetup.php:30 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:203 application/views/user/edit.php:241 +#: application/views/timeline/index.php:236 application/views/user/edit.php:241 #: application/views/user/edit.php:263 application/views/user/edit.php:285 #: application/views/user/edit.php:307 application/views/user/edit.php:330 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:191 -#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:194 +#: application/views/view_log/qso.php:514 msgid "Name" msgstr "" @@ -3737,7 +4338,19 @@ msgstr "" msgid "Deleted" msgstr "" -#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:3 +#: application/views/awards/itu/index.php:150 +#: application/views/logbookadvanced/edit.php:10 +#: application/views/logbookadvanced/index.php:257 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:400 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 +msgid "ITU Zone" +msgstr "" + +#: application/views/awards/itu/index.php:21 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -3745,30 +4358,20 @@ msgid "" "(ITU)." msgstr "" -#: application/views/awards/itu/index.php:20 +#: application/views/awards/itu/index.php:22 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "" -#: application/views/awards/itu/index.php:23 +#: application/views/awards/itu/index.php:25 msgid "Awards - ITU Zones" msgstr "" -#: application/views/awards/itu/index.php:113 +#: application/views/awards/itu/index.php:115 msgid "Show ITU Zone Map" msgstr "" -#: application/views/awards/itu/index.php:148 -#: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:246 -#: application/views/logbookadvanced/index.php:589 -#: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:120 -#: application/views/station_profile/edit.php:143 -msgid "ITU Zone" -msgstr "" - #: application/views/awards/jcc/index.php:16 msgid "JCC - Japan Century Cities Award" msgstr "" @@ -3794,7 +4397,7 @@ msgstr "" #: application/views/awards/jcc/index.php:116 #: application/views/cabrillo/index.php:180 application/views/cfd/index.php:25 #: application/views/csv/index.php:128 application/views/dxatlas/index.php:128 -#: application/views/kml/index.php:113 +#: application/views/kml/index.php:113 application/views/reg1test/index.php:145 msgid "Export" msgstr "" @@ -3805,18 +4408,19 @@ msgid "Results" msgstr "" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 +#: application/views/distancerecords/index.php:13 msgid "Number" msgstr "" #: application/views/awards/jcc/index.php:152 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:524 msgid "City" msgstr "Şehir" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:368 #: application/views/distances/index.php:23 msgid "SAT" msgstr "" @@ -3848,15 +4452,24 @@ msgid "" msgstr "" #: application/views/awards/pota/index.php:31 -#: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:177 -#: application/views/station_profile/edit.php:245 -#: application/views/user/edit.php:595 application/views/view_log/qso.php:303 -#: application/views/view_log/qso.php:570 +#: application/views/qso/index.php:236 application/views/qso/index.php:492 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 +#: application/views/user/edit.php:595 application/views/view_log/qso.php:306 +#: application/views/view_log/qso.php:573 msgid "POTA Reference(s)" msgstr "POTA Referansı" -#: application/views/awards/rac/index.php:104 +#: application/views/awards/rac/index.php:3 +msgctxt "Canada Province" +msgid "Province" +msgstr "" + +#: application/views/awards/rac/index.php:4 +msgid "Hover over a province" +msgstr "" + +#: application/views/awards/rac/index.php:106 msgid "Show RAC Map" msgstr "" @@ -3906,7 +4519,7 @@ msgstr "" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:535 +#: application/views/logbookadvanced/index.php:563 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4002,17 +4615,48 @@ msgstr "" msgid "WAB Square" msgstr "" -#: application/views/awards/waja/index.php:17 +#: application/views/awards/wac/index.php:9 +msgid "" +"Sponsored by the International Amateur Radio Union (IARU), the Worked All " +"Continents award is issued for working and confirming all six continents. " +"These are North America, South America, Oceania, Asia, Europe and Africa." +msgstr "" + +#: application/views/awards/wac/index.php:13 +msgid "Awards - Worked All Continents (WAC)" +msgstr "" + +#: application/views/awards/wac/index.php:151 +#: application/views/continents/index.php:62 +#: application/views/logbookadvanced/edit.php:25 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 +#: application/views/view_log/qso.php:245 +msgid "Continent" +msgstr "" + +#: application/views/awards/waja/index.php:3 +msgctxt "Japan Prefecture" +msgid "Prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:4 +msgid "Hover over a prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:19 msgid "WAJA - Worked All Japan prefectures Award" msgstr "" -#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:20 msgid "" "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " "radio operators to work all the prefectures in Japan." msgstr "" -#: application/views/awards/waja/index.php:19 +#: application/views/awards/waja/index.php:21 msgid "" "May be claimed for having contacted (heard) and received a QSL card from an " "amateur station located in each of the 47 prefectures of Japan. A list of " @@ -4020,20 +4664,29 @@ msgid "" "however names of prefectures may be omitted." msgstr "" -#: application/views/awards/waja/index.php:116 +#: application/views/awards/waja/index.php:118 msgid "Show WAJA Map" msgstr "" -#: application/views/awards/waja/index.php:152 -#: application/views/timeline/index.php:152 +#: application/views/awards/waja/index.php:154 +#: application/views/timeline/index.php:185 msgid "Prefecture" msgstr "" -#: application/views/awards/was/index.php:18 +#: application/views/awards/was/index.php:3 +msgctxt "USA State" +msgid "State" +msgstr "" + +#: application/views/awards/was/index.php:4 +msgid "Hover over a state" +msgstr "" + +#: application/views/awards/was/index.php:20 msgid "WAS Award" msgstr "" -#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:21 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -4041,7 +4694,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:20 +#: application/views/awards/was/index.php:22 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -4050,13 +4703,13 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:21 +#: application/views/awards/was/index.php:23 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:112 +#: application/views/awards/was/index.php:114 msgid "Show WAS Map" msgstr "" @@ -4079,11 +4732,11 @@ msgid "" msgstr "" #: application/views/awards/wwff/index.php:31 -#: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:171 -#: application/views/station_profile/edit.php:232 -#: application/views/user/edit.php:591 application/views/view_log/qso.php:296 -#: application/views/view_log/qso.php:563 +#: application/views/qso/index.php:224 application/views/qso/index.php:479 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 +#: application/views/user/edit.php:591 application/views/view_log/qso.php:299 +#: application/views/view_log/qso.php:566 msgid "WWFF Reference" msgstr "WWFF Referansı" @@ -4138,8 +4791,8 @@ msgstr "" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 #: application/views/contesting/index.php:15 -#: application/views/contesting/index.php:94 -#: application/views/contesting/index.php:169 +#: application/views/contesting/index.php:52 +#: application/views/contesting/index.php:145 #: application/views/qso/index.php:314 msgid "None" msgstr "" @@ -4219,25 +4872,25 @@ msgid "" "will be hidden and cannot be selected." msgstr "" -#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:351 -#: application/views/qso/index.php:248 application/views/qso/index.php:494 -#: application/views/user/edit.php:599 application/views/view_log/qso.php:325 -#: application/views/view_log/qso.php:577 +#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 +#: application/views/qso/index.php:248 application/views/qso/index.php:504 +#: application/views/user/edit.php:599 application/views/view_log/qso.php:328 +#: application/views/view_log/qso.php:580 msgid "Sig" msgstr "İmza" -#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:312 -#: application/views/qso/index.php:433 +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:339 +#: application/views/qso/index.php:443 msgid "USA County" msgstr "ABD İlçesi" #: application/views/bands/index.php:58 -#: application/views/interface_assets/header.php:208 +#: application/views/interface_assets/header.php:212 msgid "WAJA" msgstr "" #: application/views/bands/index.php:59 -#: application/views/interface_assets/header.php:232 +#: application/views/interface_assets/header.php:236 msgid "WAS" msgstr "" @@ -4267,9 +4920,8 @@ msgstr "" #: application/views/bands/index.php:152 #: application/views/contesting/add.php:74 -#: application/views/interface_assets/footer.php:42 -#: application/views/qso/components/winkeysettings.php:91 -#: application/views/qso/components/winkeysettings_results.php:91 +#: application/views/contesting/index.php:83 +#: application/views/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4299,22 +4951,28 @@ msgstr "" #: application/views/cabrillo/index.php:2 #: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:59 +#: application/views/reg1test/index.php:2 +#: application/views/reg1test/index.php:36 msgid "Proceed" msgstr "" #: application/views/cabrillo/index.php:3 +#: application/views/reg1test/index.php:3 msgid "Select Year" msgstr "" #: application/views/cabrillo/index.php:4 +#: application/views/reg1test/index.php:4 msgid "Select Contest" msgstr "" #: application/views/cabrillo/index.php:5 +#: application/views/reg1test/index.php:5 msgid "Select Date Range" msgstr "" #: application/views/cabrillo/index.php:6 +#: application/views/reg1test/index.php:7 msgid "No contests were found for this station location!" msgstr "" @@ -4327,10 +4985,12 @@ msgid "Select Station Location:" msgstr "" #: application/views/cabrillo/index.php:44 +#: application/views/reg1test/index.php:53 msgid "Club" msgstr "" #: application/views/cabrillo/index.php:48 +#: application/views/reg1test/index.php:58 msgid "Category Operator" msgstr "" @@ -4371,10 +5031,12 @@ msgid "Category Overlay" msgstr "" #: application/views/cabrillo/index.php:150 +#: application/views/reg1test/index.php:70 msgid "Operators" msgstr "" #: application/views/cabrillo/index.php:155 +#: application/views/reg1test/index.php:139 msgid "Soapbox" msgstr "" @@ -4399,6 +5061,7 @@ msgid "Address Country" msgstr "" #: application/views/cabrillo/index.php:186 +#: application/views/reg1test/index.php:150 msgid "No contests were found in your log." msgstr "" @@ -4432,13 +5095,13 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:158 +#: application/views/contesting/index.php:219 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:629 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 -#: application/views/view_log/qso.php:199 +#: application/views/view_log/qso.php:202 msgid "Comment" msgstr "Yorum" @@ -4470,9 +5133,9 @@ msgid "No Contests" msgstr "" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/edit.php:21 -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:635 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4500,10 +5163,11 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:38 -#: application/views/dashboard/index.php:262 -#: application/views/dashboard/index.php:289 -#: application/views/dashboard/index.php:310 -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:278 +#: application/views/dashboard/index.php:305 +#: application/views/dashboard/index.php:326 +#: application/views/dashboard/index.php:347 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "" @@ -4537,7 +5201,7 @@ msgstr "" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:466 +#: application/views/interface_assets/header.php:472 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:43 @@ -4592,15 +5256,15 @@ msgid "Name of Contest in ADIF-specification" msgstr "" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "" #: application/views/contesting/edit.php:31 -#: application/views/contesting/index.php:24 -#: application/views/qso/edit_ajax.php:548 -#: application/views/view_log/qso.php:275 +#: application/views/contesting/index.php:25 +#: application/views/qso/edit_ajax.php:575 +#: application/views/view_log/qso.php:278 msgid "Contest Name" msgstr "Yarışma İsmi" @@ -4636,90 +5300,138 @@ msgstr "" msgid "Serial + Gridsquare" msgstr "" -#: application/views/contesting/index.php:34 +#: application/views/contesting/index.php:21 +msgid "Serial + Gridsquare + Exchange" +msgstr "" + +#: application/views/contesting/index.php:35 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:539 application/views/qso/index.php:352 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:352 msgid "Operator Callsign" msgstr "" -#: application/views/contesting/index.php:116 -#: application/views/contesting/index.php:208 -#: application/views/qso/edit_ajax.php:571 -msgid "Serial (S)" +#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:45 +msgid "More Settings" msgstr "" -#: application/views/contesting/index.php:121 -#: application/views/contesting/index.php:206 -msgid "Exch (S)" -msgstr "Exch (G)" - -#: application/views/contesting/index.php:126 -msgid "Gridsquare (S)" -msgstr "" - -#: application/views/contesting/index.php:136 -#: application/views/contesting/index.php:209 -#: application/views/qso/edit_ajax.php:566 -msgid "Serial (R)" -msgstr "" - -#: application/views/contesting/index.php:141 -#: application/views/contesting/index.php:207 -msgid "Exch (R)" -msgstr "Exch (A)" - -#: application/views/contesting/index.php:146 -msgid "Gridsquare (R)" -msgstr "" - -#: application/views/contesting/index.php:163 -msgid "Reset QSO" -msgstr "QSO'yu baştan başlat" - -#: application/views/contesting/index.php:164 -#: application/views/qso/index.php:607 -msgid "Save QSO" -msgstr "QSO'yu kaydet" - -#: application/views/contesting/index.php:166 +#: application/views/contesting/index.php:49 msgid "Copy received exchange to" msgstr "" -#: application/views/contesting/index.php:168 +#: application/views/contesting/index.php:51 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "" -#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:55 msgid "Age" msgstr "" -#: application/views/contesting/index.php:174 +#: application/views/contesting/index.php:57 msgid "RX Power (W)" msgstr "" -#: application/views/contesting/index.php:175 +#: application/views/contesting/index.php:58 msgid "Locator" msgstr "Konum kodu" -#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:59 +#: application/views/qso/edit_ajax.php:177 +msgid "QTH" +msgstr "" + +#: application/views/contesting/index.php:64 +msgid "Sequence of Exchanges" +msgstr "" + +#: application/views/contesting/index.php:67 +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 "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Grid" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Serial" +msgstr "" + +#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:255 +#: application/views/qso/edit_ajax.php:598 +msgid "Serial (S)" +msgstr "" + +#: application/views/contesting/index.php:177 +msgid "Gridsquare (S)" +msgstr "" + +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:253 +msgid "Exch (S)" +msgstr "Exch (G)" + +#: application/views/contesting/index.php:196 +#: application/views/contesting/index.php:256 +#: application/views/qso/edit_ajax.php:593 +msgid "Serial (R)" +msgstr "" + +#: application/views/contesting/index.php:201 +msgid "Gridsquare (R)" +msgstr "" + +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:254 +msgid "Exch (R)" +msgstr "Exch (A)" + +#: application/views/contesting/index.php:224 +msgid "Reset QSO" +msgstr "QSO'yu baştan başlat" + +#: application/views/contesting/index.php:225 +#: application/views/qso/index.php:629 +msgid "Save QSO" +msgstr "QSO'yu kaydet" + +#: application/views/contesting/index.php:234 msgid "Callsign Suggestions" msgstr "Çağrı Kodu Önerileri" -#: application/views/contesting/index.php:194 +#: application/views/contesting/index.php:241 msgid "Contest Logbook" msgstr "Yarışma kayıt defteri" -#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:258 #: application/views/qso/edit_ajax.php:164 msgid "VUCC Gridsquare" msgstr "" -#: application/views/continents/index.php:62 -#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 -#: application/views/view_log/qso.php:242 -msgid "Continent" -msgstr "" - #: application/views/continents/index.php:63 #: application/views/statistics/index.php:19 #: application/views/statistics/index.php:113 @@ -4737,14 +5449,15 @@ msgstr "" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:261 -#: application/views/station_profile/edit.php:314 +#: application/views/options/appearance.php:109 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 msgid "Enabled" msgstr "" -#: application/views/cron/edit.php:36 application/views/cron/index.php:53 +#: application/views/cron/edit.php:36 application/views/cron/index.php:55 msgid "Intervall" msgstr "" @@ -4794,6 +5507,7 @@ msgstr "" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "" @@ -4807,79 +5521,84 @@ msgid "" "requiring CLI access." msgstr "" -#: application/views/cron/index.php:18 +#: application/views/cron/index.php:19 msgid "" "To execute cron jobs based on the data below, remove all old cron jobs and " "create a new one:" msgstr "" -#: application/views/cron/index.php:27 application/views/cron/index.php:31 -msgid "Status Master-Cron" +#: application/views/cron/index.php:29 application/views/cron/index.php:33 +msgid "Status Master-Cron:" msgstr "" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgctxt "PHP Version" msgid "Min. Version is" msgstr "" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgid "PHP Version not supported." msgstr "" -#: application/views/cron/index.php:41 +#: application/views/cron/index.php:43 msgid "Cron List" msgstr "" -#: application/views/cron/index.php:50 +#: application/views/cron/index.php:52 #: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "" -#: application/views/cron/index.php:54 +#: application/views/cron/index.php:56 msgid "Last Run" msgstr "" -#: application/views/cron/index.php:55 +#: application/views/cron/index.php:57 msgid "Next Run" msgstr "" -#: application/views/cron/index.php:68 +#: application/views/cron/index.php:70 msgid "healthy" msgstr "" -#: application/views/cron/index.php:70 +#: application/views/cron/index.php:72 msgid "failed" msgstr "" -#: application/views/cron/index.php:75 +#: application/views/cron/index.php:74 +msgid "pending" +msgstr "" + +#: application/views/cron/index.php:79 msgid "disabled" msgstr "" -#: application/views/cron/index.php:79 application/views/cron/index.php:81 -#: application/views/cron/index.php:83 application/views/debug/index.php:494 +#: application/views/cron/index.php:83 application/views/cron/index.php:85 +#: application/views/cron/index.php:87 application/views/debug/index.php:494 #: application/views/debug/index.php:500 application/views/debug/index.php:505 #: application/views/debug/index.php:510 application/views/debug/index.php:515 #: application/views/debug/index.php:520 application/views/debug/index.php:525 +#: application/views/user/index.php:138 msgid "never" msgstr "" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:102 msgid "Your Mastercron isn't running." msgstr "" -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:103 msgid "" "Copy the cron above to a external cron service or into your server's cron to " "use this cron manager." msgstr "" -#: application/views/cron/index.php:100 +#: application/views/cron/index.php:104 msgid "" "On a basic linux server with shell access use this command to edit your " "crons:" msgstr "" -#: application/views/cron/index.php:107 +#: application/views/cron/index.php:111 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -4897,154 +5616,10 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:411 msgid "Propagation Mode" msgstr "Yayın Mode" -#: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:214 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 -msgctxt "Propagation Mode" -msgid "Aircraft Scatter" -msgstr "" - -#: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:215 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 -msgctxt "Propagation Mode" -msgid "Aurora" -msgstr "" - -#: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:216 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 -msgctxt "Propagation Mode" -msgid "Aurora-E" -msgstr "" - -#: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:217 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 -msgctxt "Propagation Mode" -msgid "Back scatter" -msgstr "" - -#: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:218 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 -msgctxt "Propagation Mode" -msgid "EchoLink" -msgstr "" - -#: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:219 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 -msgctxt "Propagation Mode" -msgid "Earth-Moon-Earth" -msgstr "" - -#: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:220 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 -msgctxt "Propagation Mode" -msgid "Sporadic E" -msgstr "" - -#: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:221 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 -msgctxt "Propagation Mode" -msgid "Field Aligned Irregularities" -msgstr "" - -#: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:222 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 -msgctxt "Propagation Mode" -msgid "F2 Reflection" -msgstr "" - -#: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:223 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 -msgctxt "Propagation Mode" -msgid "Internet-assisted" -msgstr "" - -#: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:224 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 -msgctxt "Propagation Mode" -msgid "Ionoscatter" -msgstr "" - -#: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:225 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 -msgctxt "Propagation Mode" -msgid "IRLP" -msgstr "" - -#: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:226 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 -msgctxt "Propagation Mode" -msgid "Meteor scatter" -msgstr "" - -#: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:227 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 -msgctxt "Propagation Mode" -msgid "Terrestrial or atmospheric repeater or transponder" -msgstr "" - -#: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:228 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 -msgctxt "Propagation Mode" -msgid "Rain scatter" -msgstr "" - -#: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:229 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 -msgctxt "Propagation Mode" -msgid "Satellite" -msgstr "Uydu" - -#: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:230 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 -msgctxt "Propagation Mode" -msgid "Trans-equatorial" -msgstr "" - -#: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:231 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 -msgctxt "Propagation Mode" -msgid "Tropospheric ducting" -msgstr "" - #: application/views/dashboard/index.php:5 msgid "RSTS" msgstr "" @@ -5053,85 +5628,99 @@ msgstr "" msgid "RSTR" msgstr "" -#: application/views/dashboard/index.php:56 +#: application/views/dashboard/index.php:58 msgid "" "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" msgstr "" -#: application/views/dashboard/index.php:63 +#: application/views/dashboard/index.php:65 #, php-format msgctxt "Dashboard Warning" -msgid "You need to update country files! Click %s to do it." +msgid "You need to update country files! Click %shere%s to do it." msgstr "" -#: application/views/dashboard/index.php:72 +#: application/views/dashboard/index.php:73 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station locations. Click %s to do it:" +msgid "You have no station locations. Click %shere%s to do it." msgstr "" #: application/views/dashboard/index.php:81 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station logbook. Click %s to do it:" +msgid "You have no station logbook. Click %shere%s to do it." msgstr "" -#: application/views/dashboard/index.php:91 +#: application/views/dashboard/index.php:89 +#, php-format +msgctxt "Dashboard Warning" +msgid "" +"Your active Station Location isn't linked to your Logbook. Click %shere%s to " +"do it." +msgstr "" + +#: application/views/dashboard/index.php:97 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station linked to your Logbook. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:106 #, php-format msgid "You have had %d QSO today" msgid_plural "You have had %d QSOs today" msgstr[0] "" msgstr[1] "" -#: application/views/dashboard/index.php:97 +#: application/views/dashboard/index.php:112 msgid "You have made no QSOs today; time to turn on the radio!" msgstr "Bu gün hiç bir QSO yapmadınız. Telsizi açmanın zamanı geldi!" -#: application/views/dashboard/index.php:104 +#: application/views/dashboard/index.php:119 msgid "Attention: you need to set an active station location." msgstr "Dikkat: aktif bir istasyon konumu ayarlamanız gerekir." -#: application/views/dashboard/index.php:110 +#: application/views/dashboard/index.php:125 msgid "" "You have themes without defined theme mode. Please ask the admin to edit the " "themes." msgstr "" -#: application/views/dashboard/index.php:118 +#: application/views/dashboard/index.php:133 msgid "At least one of your LoTW certificates is expired!" msgstr "" -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:139 msgid "At least one of your LoTW certificates is about to expire!" msgstr "" -#: application/views/dashboard/index.php:213 +#: application/views/dashboard/index.php:229 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "QSO'ların Analizi" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:252 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "Ülke Analizi" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:269 #: application/views/visitor/index.php:275 msgid "Needed" msgstr "İstenenler" -#: application/views/dashboard/index.php:266 -#: application/views/dashboard/index.php:293 -#: application/views/dashboard/index.php:314 -#: application/views/dashboard/index.php:335 +#: application/views/dashboard/index.php:282 +#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:330 +#: application/views/dashboard/index.php:351 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:167 -#: application/views/qso/edit_ajax.php:390 -#: application/views/qso/edit_ajax.php:451 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:550 +#: application/views/qso/edit_ajax.php:417 +#: application/views/qso/edit_ajax.php:478 +#: application/views/qso/edit_ajax.php:518 application/views/qso/index.php:572 #: application/views/search/result_search.php:8 #: application/views/search/search_result_ajax.php:180 #: application/views/search/search_result_ajax.php:260 @@ -5139,91 +5728,91 @@ msgstr "İstenenler" #: application/views/search/search_result_ajax.php:332 #: application/views/search/search_result_ajax.php:362 #: application/views/statistics/custom_result.php:89 -#: application/views/view_log/partial/log_ajax.php:140 -#: application/views/view_log/partial/log_ajax.php:217 -#: application/views/view_log/partial/log_ajax.php:237 -#: application/views/view_log/partial/log_ajax.php:287 -#: application/views/view_log/partial/log_ajax.php:295 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:289 +#: application/views/view_log/partial/log_ajax.php:297 #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 -#: src/QSLManager/QSO.php:371 src/QSLManager/QSO.php:423 -#: src/QSLManager/QSO.php:459 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:270 +#: src/QSLManager/QSO.php:373 src/QSLManager/QSO.php:425 +#: src/QSLManager/QSO.php:461 msgid "Sent" msgstr "Gönderilen" -#: application/views/dashboard/index.php:272 -#: application/views/dashboard/index.php:299 -#: application/views/dashboard/index.php:320 -#: application/views/dashboard/index.php:341 +#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:315 +#: application/views/dashboard/index.php:336 +#: application/views/dashboard/index.php:357 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 #: application/views/qslprint/qsolist.php:151 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:423 -#: application/views/qso/edit_ajax.php:464 -#: application/views/qso/edit_ajax.php:503 +#: application/views/qso/edit_ajax.php:450 +#: application/views/qso/edit_ajax.php:491 +#: application/views/qso/edit_ajax.php:530 #: application/views/search/search_result_ajax.php:222 #: application/views/search/search_result_ajax.php:273 #: application/views/search/search_result_ajax.php:313 #: application/views/search/search_result_ajax.php:345 #: application/views/search/search_result_ajax.php:375 -#: application/views/view_log/partial/log_ajax.php:178 -#: application/views/view_log/partial/log_ajax.php:218 -#: application/views/view_log/partial/log_ajax.php:263 -#: application/views/view_log/partial/log_ajax.php:288 -#: application/views/view_log/partial/log_ajax.php:296 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:265 +#: application/views/view_log/partial/log_ajax.php:290 +#: application/views/view_log/partial/log_ajax.php:298 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 -#: src/QSLManager/QSO.php:394 src/QSLManager/QSO.php:436 -#: src/QSLManager/QSO.php:472 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:315 +#: src/QSLManager/QSO.php:396 src/QSLManager/QSO.php:438 +#: src/QSLManager/QSO.php:474 msgid "Received" msgstr "Gelen" -#: application/views/dashboard/index.php:278 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:388 -#: application/views/logbookadvanced/index.php:399 +#: application/views/dashboard/index.php:294 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:415 +#: application/views/logbookadvanced/index.php:426 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 -#: application/views/qso/edit_ajax.php:395 -#: application/views/qso/edit_ajax.php:428 -#: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:469 +#: application/views/qso/edit_ajax.php:422 +#: application/views/qso/edit_ajax.php:455 +#: application/views/qso/edit_ajax.php:483 #: application/views/qso/edit_ajax.php:496 -#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:555 +#: application/views/qso/edit_ajax.php:523 +#: application/views/qso/edit_ajax.php:535 application/views/qso/index.php:577 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 -#: application/views/view_log/partial/log_ajax.php:146 -#: application/views/view_log/partial/log_ajax.php:184 -#: application/views/view_log/partial/log_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:273 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 -#: src/QSLManager/QSO.php:319 src/QSLManager/QSO.php:379 -#: src/QSLManager/QSO.php:402 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +#: application/views/view_log/partial/log_ajax.php:249 +#: application/views/view_log/partial/log_ajax.php:275 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:276 +#: src/QSLManager/QSO.php:321 src/QSLManager/QSO.php:381 +#: src/QSLManager/QSO.php:404 msgid "Requested" msgstr "İstenen" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:304 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:351 +#: application/views/dashboard/index.php:367 msgid "VUCC-Grids" msgstr "" #: application/views/dayswithqso/index.php:2 -#: application/views/interface_assets/header.php:146 +#: application/views/interface_assets/header.php:148 msgid "Days with QSOs" msgstr "" @@ -5252,7 +5841,7 @@ msgstr "" #: application/views/dayswithqso/index.php:58 #: application/views/dayswithqso/index.php:86 #: application/views/dayswithqso/index.php:108 -#: application/views/timeline/index.php:120 +#: application/views/timeline/index.php:153 msgid "End Date" msgstr "" @@ -5319,9 +5908,7 @@ msgstr "" #: application/views/debug/index.php:47 #, php-format -msgid "" -"Check this wiki article here for " -"more information." +msgid "Check this wiki article %shere%s for more information." msgstr "" #: application/views/debug/index.php:48 @@ -5465,7 +6052,7 @@ msgstr "Kurulmuş" msgid "Not Installed" msgstr "Kurulu Değil" -#: application/views/debug/index.php:283 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:671 msgid "Settings" msgstr "" @@ -5522,7 +6109,7 @@ msgstr "" #: application/views/debug/index.php:506 application/views/debug/index.php:511 #: application/views/debug/index.php:516 application/views/debug/index.php:521 #: application/views/debug/index.php:526 -#: application/views/station_profile/edit.php:22 +#: application/views/station_profile/edit.php:49 msgid "Update" msgstr "" @@ -5564,9 +6151,8 @@ msgstr[1] "" #: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:57 -#: application/views/station_profile/edit.php:46 -#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" @@ -5594,69 +6180,93 @@ msgid "Everything ok" msgstr "" #: application/views/debug/index.php:629 +msgid "Albanian" +msgstr "" + +#: application/views/debug/index.php:630 +msgid "Bosnian" +msgstr "" + +#: application/views/debug/index.php:631 msgid "Bulgarian" msgstr "Bulgarca" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:632 msgid "Chinese (Simplified)" msgstr "Çince (Basitleştirilmiş)" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:633 +msgid "Croatian" +msgstr "" + +#: application/views/debug/index.php:634 msgid "Czech" msgstr "Çek" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:635 msgid "Dutch" msgstr "Flemenkçe" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:636 msgid "English" msgstr "İngilizce" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:637 msgid "Finnish" msgstr "Fince" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:638 msgid "French" msgstr "Fransızca" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:639 msgid "German" msgstr "Almanca" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:640 msgid "Greek" msgstr "Yunanca" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:641 msgid "Italian" msgstr "İtalyanca" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:642 +msgid "Montenegrin" +msgstr "" + +#: application/views/debug/index.php:643 msgid "Polish" msgstr "Polonyaca" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:644 msgid "Portuguese" msgstr "Portekizce" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:645 msgid "Russian" msgstr "Rusça" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:646 +msgid "Serbian" +msgstr "" + +#: application/views/debug/index.php:647 msgid "Spanish" msgstr "İspanyolca" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:648 msgid "Swedish" msgstr "İsveççe" -#: application/views/debug/index.php:644 +#: application/views/debug/index.php:649 msgid "Turkish" msgstr "Türkçe" +#: application/views/distancerecords/index.php:4 +msgid "This page lists distance records per satellite based on gridsquares." +msgstr "" + #: application/views/distances/index.php:7 #: application/views/interface_assets/footer.php:30 #: application/views/simplefle/index.php:68 @@ -5664,7 +6274,8 @@ msgid "QSO Data" msgstr "" #: application/views/distances/index.php:9 -msgid "contacts were plotted.
Your furthest contact was with" +#, php-format +msgid "contacts were plotted.%s Your furthest contact was with" msgstr "" #: application/views/distances/index.php:10 @@ -5706,7 +6317,7 @@ msgid "Date to" msgstr "" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:366 +#: application/views/view_log/qso.php:369 msgid "QSL Info" msgstr "QSL Bilgileri" @@ -5732,7 +6343,7 @@ msgstr "" #: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 #: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 #: application/views/eqsl/tools.php:15 -#: application/views/interface_assets/header.php:243 +#: application/views/interface_assets/header.php:247 msgid "Tools" msgstr "" @@ -5872,27 +6483,15 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2324 -#: application/views/interface_assets/footer.php:2342 -#: application/views/interface_assets/footer.php:2363 -#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2338 +#: application/views/interface_assets/footer.php:2356 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 #: application/views/qslcard/index.php:66 -#: application/views/view_log/qso.php:614 +#: application/views/view_log/qso.php:617 msgid "View" msgstr "" -#: application/views/gridmap/index.php:38 -#: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:604 -#: application/views/logbookadvanced/useroptions.php:118 -msgid "Propagation" -msgstr "" - -#: application/views/gridmap/index.php:42 -msgid "None/Empty" -msgstr "" - #: application/views/gridmap/index.php:43 msgid "All except SAT" msgstr "" @@ -5988,8 +6587,8 @@ msgstr "" #: application/views/interface_assets/footer.php:31 #: application/views/search/search_result_ajax.php:404 #: application/views/view_log/partial/log.php:135 -#: application/views/view_log/partial/log_ajax.php:318 -#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log_ajax.php:320 +#: application/views/view_log/qso.php:437 msgid "Edit QSO" msgstr "QSO değiştirme" @@ -5997,171 +6596,192 @@ msgstr "QSO değiştirme" msgid "Attention" msgstr "" -#: application/views/interface_assets/footer.php:36 -msgid "OK" -msgstr "" - -#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/footer.php:38 msgid "Warning! Are you sure you want delete QSO with " msgstr "" -#: application/views/interface_assets/footer.php:38 +#: application/views/interface_assets/footer.php:39 #: application/views/user/edit.php:493 msgid "Colors" msgstr "" -#: application/views/interface_assets/footer.php:40 +#: application/views/interface_assets/footer.php:41 msgid "Worked not confirmed" msgstr "" -#: application/views/interface_assets/footer.php:41 +#: application/views/interface_assets/footer.php:42 msgid "Not worked" msgstr "" -#: application/views/interface_assets/footer.php:44 -#: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/interface_assets/footer.php:46 +#: application/views/qso/index.php:623 +#: application/views/visitor/layout/footer.php:246 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:47 #: application/views/qso/edit_ajax.php:211 -#: application/views/qso/edit_ajax.php:512 +#: application/views/qso/edit_ajax.php:539 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "" -#: application/views/interface_assets/footer.php:127 -#: application/views/interface_assets/header.php:434 +#: application/views/interface_assets/footer.php:48 +msgid "No states for this DXCC available" +msgstr "" + +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "" + +#: application/views/interface_assets/footer.php:132 +#: application/views/interface_assets/header.php:440 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:392 +#: application/views/interface_assets/footer.php:398 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:395 +#: application/views/interface_assets/footer.php:401 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:411 +#: application/views/interface_assets/footer.php:417 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:413 +#: application/views/interface_assets/footer.php:419 #: application/views/search/filter.php:46 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:415 +#: application/views/interface_assets/footer.php:421 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:420 +#: application/views/interface_assets/footer.php:426 #: application/views/search/filter.php:60 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:432 -#: application/views/interface_assets/footer.php:561 -#: application/views/interface_assets/footer.php:625 +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:437 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:458 -#: application/views/interface_assets/footer.php:589 +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 #: application/views/search/filter.php:79 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:496 +#: application/views/interface_assets/footer.php:502 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:516 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:519 +#: application/views/interface_assets/footer.php:525 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:545 +#: application/views/interface_assets/footer.php:551 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:549 +#: application/views/interface_assets/footer.php:555 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:678 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1156 -#, php-format -msgid "You're not logged it. Please login" +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:533 +msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:1362 -#: application/views/interface_assets/footer.php:1366 -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1506 -#: application/views/interface_assets/footer.php:1510 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:731 +msgid "Count: " +msgstr "" + +#: application/views/interface_assets/footer.php:732 +msgid "Grids: " +msgstr "" + +#: application/views/interface_assets/footer.php:1167 +#, php-format +msgid "You're not logged in. Please %slogin%s" +msgstr "" + +#: application/views/interface_assets/footer.php:1375 +#: application/views/interface_assets/footer.php:1379 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1523 +#: application/views/interface_assets/footer.php:1526 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1526 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2100 +#: application/views/interface_assets/footer.php:2114 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2120 +#: application/views/interface_assets/footer.php:2134 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2160 +#: application/views/interface_assets/footer.php:2174 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2162 +#: application/views/interface_assets/footer.php:2176 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2335 -#: application/views/interface_assets/footer.php:2374 -#: application/views/view_log/qso.php:604 +#: application/views/interface_assets/footer.php:2349 +#: application/views/interface_assets/footer.php:2388 +#: application/views/view_log/qso.php:607 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2354 +#: application/views/interface_assets/footer.php:2368 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2392 +#: application/views/interface_assets/footer.php:2406 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2403 -#: application/views/interface_assets/footer.php:2428 +#: application/views/interface_assets/footer.php:2417 +#: application/views/interface_assets/footer.php:2442 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2439 +#: application/views/interface_assets/footer.php:2453 msgid "Something went wrong. Please try again!" msgstr "" @@ -6217,91 +6837,91 @@ msgstr "" msgid "Activated Gridsquares" msgstr "" -#: application/views/interface_assets/header.php:160 +#: application/views/interface_assets/header.php:162 msgid "International" msgstr "" -#: application/views/interface_assets/header.php:166 +#: application/views/interface_assets/header.php:168 msgid "ITU" msgstr "" -#: application/views/interface_assets/header.php:186 +#: application/views/interface_assets/header.php:190 msgid "Canada" msgstr "" -#: application/views/interface_assets/header.php:192 +#: application/views/interface_assets/header.php:196 msgid "Germany" msgstr "" -#: application/views/interface_assets/header.php:196 +#: application/views/interface_assets/header.php:200 msgid "DL Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:200 +#: application/views/interface_assets/header.php:204 msgid "Great Britain" msgstr "" -#: application/views/interface_assets/header.php:202 +#: application/views/interface_assets/header.php:206 msgid "WAB" msgstr "" -#: application/views/interface_assets/header.php:206 +#: application/views/interface_assets/header.php:210 msgid "Japan" msgstr "" -#: application/views/interface_assets/header.php:212 +#: application/views/interface_assets/header.php:216 msgid "JA Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:216 +#: application/views/interface_assets/header.php:220 msgid "Luxemburg" msgstr "" -#: application/views/interface_assets/header.php:218 +#: application/views/interface_assets/header.php:222 msgid "LX Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:222 +#: application/views/interface_assets/header.php:226 msgid "Switzerland" msgstr "" -#: application/views/interface_assets/header.php:228 +#: application/views/interface_assets/header.php:232 msgid "USA" msgstr "" -#: application/views/interface_assets/header.php:234 +#: application/views/interface_assets/header.php:238 msgid "US Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:251 +#: application/views/interface_assets/header.php:255 msgid "Bandmap" msgstr "" -#: application/views/interface_assets/header.php:253 +#: application/views/interface_assets/header.php:257 msgid "SAT Timers" msgstr "" -#: application/views/interface_assets/header.php:256 +#: application/views/interface_assets/header.php:260 msgid "Satellite Flightpath" msgstr "" -#: application/views/interface_assets/header.php:258 +#: application/views/interface_assets/header.php:262 msgid "Satellite Pass" msgstr "" -#: application/views/interface_assets/header.php:265 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:269 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:274 msgid "Global Options" msgstr "" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:280 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:11 +#: application/views/satellite/pass.php:495 #: application/views/statistics/custom.php:20 #: application/views/statistics/custom_result.php:21 #: application/views/statistics/index.php:39 @@ -6309,79 +6929,83 @@ msgstr "" msgid "Satellites" msgstr "" -#: application/views/interface_assets/header.php:282 +#: application/views/interface_assets/header.php:286 msgid "Update Country Files" msgstr "" -#: application/views/interface_assets/header.php:286 +#: application/views/interface_assets/header.php:290 msgid "Debug Information" msgstr "" -#: application/views/interface_assets/header.php:333 +#: application/views/interface_assets/header.php:337 msgid "Add/Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:335 +#: application/views/interface_assets/header.php:339 msgid "Log" msgstr "" -#: application/views/interface_assets/header.php:342 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:346 +#: application/views/logbookadvanced/index.php:474 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:371 +#: application/views/interface_assets/header.php:375 #: application/views/user/edit.php:49 msgid "Account" msgstr "" -#: application/views/interface_assets/header.php:386 +#: application/views/interface_assets/header.php:390 msgid "Other Export Options" msgstr "" -#: application/views/interface_assets/header.php:394 +#: application/views/interface_assets/header.php:398 msgid "Cabrillo Export" msgstr "" -#: application/views/interface_assets/header.php:418 -msgid "QSL Queue" -msgstr "" - -#: application/views/interface_assets/header.php:419 -msgid "Labels" -msgstr "" - -#: application/views/interface_assets/header.php:421 -msgid "Third-Party Services" +#: application/views/interface_assets/header.php:400 +msgid "EDI Export" msgstr "" #: application/views/interface_assets/header.php:424 -msgid "eQSL Import / Export" +msgid "QSL Queue" msgstr "" #: application/views/interface_assets/header.php:425 +msgid "Labels" +msgstr "" + +#: application/views/interface_assets/header.php:427 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:430 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:431 msgid "HRDLog Logbook" msgstr "" -#: application/views/interface_assets/header.php:435 +#: application/views/interface_assets/header.php:441 msgid "Help" msgstr "" -#: application/views/interface_assets/header.php:436 +#: application/views/interface_assets/header.php:442 msgid "Forum" msgstr "" -#: application/views/interface_assets/header.php:438 +#: application/views/interface_assets/header.php:444 msgid "Logout" msgstr "" -#: application/views/interface_assets/header.php:446 +#: application/views/interface_assets/header.php:452 msgid "Select a Location" msgstr "" -#: application/views/interface_assets/header.php:525 +#: application/views/interface_assets/header.php:531 msgid "Extras" msgstr "" @@ -6652,86 +7276,122 @@ msgid "Start printing at?" msgstr "" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:405 -#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" -#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/edit.php:23 msgid "LoTW Sent" msgstr "" -#: application/views/logbookadvanced/edit.php:23 +#: application/views/logbookadvanced/edit.php:24 msgid "LoTW Received" msgstr "" -#: application/views/logbookadvanced/edit.php:73 +#: application/views/logbookadvanced/edit.php:75 msgid "SAT Mode" msgstr "" -#: application/views/logbookadvanced/edit.php:87 +#: application/views/logbookadvanced/edit.php:89 msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:174 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:144 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:148 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:152 +#: application/views/logbookadvanced/index.php:569 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:148 +#: application/views/logbookadvanced/index.php:159 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:224 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:540 +msgid "Invalid" +msgstr "" + +#: application/views/logbookadvanced/index.php:324 msgid "QSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:375 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:397 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:439 #: application/views/lookup/lotwuser.php:12 -#: application/views/qso/edit_ajax.php:394 -#: application/views/qso/edit_ajax.php:427 -#: application/views/qso/edit_ajax.php:455 -#: application/views/qso/edit_ajax.php:468 +#: application/views/qso/edit_ajax.php:421 +#: application/views/qso/edit_ajax.php:454 +#: application/views/qso/edit_ajax.php:482 #: application/views/qso/edit_ajax.php:495 -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 +#: application/views/qso/edit_ajax.php:522 +#: application/views/qso/edit_ajax.php:534 application/views/qso/index.php:576 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:209 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:236 -#: application/views/station_profile/create.php:275 -#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 #: application/views/station_profile/create.php:293 -#: application/views/station_profile/edit.php:330 -#: application/views/station_profile/edit.php:338 -#: application/views/station_profile/edit.php:364 -#: application/views/station_profile/edit.php:385 -#: application/views/station_profile/edit.php:403 -#: application/views/station_profile/edit.php:410 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 +#: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 #: application/views/user/edit.php:347 application/views/user/edit.php:358 #: application/views/user/edit.php:369 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:399 @@ -6741,35 +7401,35 @@ msgstr "" msgid "Yes" msgstr "Evet" -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 -#: application/views/logbookadvanced/index.php:376 -#: application/views/logbookadvanced/index.php:387 -#: application/views/logbookadvanced/index.php:398 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:440 #: application/views/lookup/lotwuser.php:14 -#: application/views/qso/edit_ajax.php:393 -#: application/views/qso/edit_ajax.php:426 -#: application/views/qso/edit_ajax.php:454 -#: application/views/qso/edit_ajax.php:467 +#: application/views/qso/edit_ajax.php:420 +#: application/views/qso/edit_ajax.php:453 +#: application/views/qso/edit_ajax.php:481 #: application/views/qso/edit_ajax.php:494 -#: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 +#: application/views/qso/edit_ajax.php:521 +#: application/views/qso/edit_ajax.php:533 application/views/qso/index.php:575 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:210 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:237 -#: application/views/station_profile/create.php:276 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/create.php:292 -#: application/views/station_profile/edit.php:331 -#: application/views/station_profile/edit.php:339 -#: application/views/station_profile/edit.php:365 -#: application/views/station_profile/edit.php:386 -#: application/views/station_profile/edit.php:404 -#: application/views/station_profile/edit.php:411 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 #: application/views/user/edit.php:348 application/views/user/edit.php:359 #: application/views/user/edit.php:370 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:400 @@ -6780,32 +7440,32 @@ msgstr "Evet" msgid "No" msgstr "Hayır" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 -#: application/views/logbookadvanced/index.php:389 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:416 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 -#: application/views/qso/edit_ajax.php:396 -#: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:497 application/views/qso/index.php:556 +#: application/views/qso/edit_ajax.php:423 +#: application/views/qso/edit_ajax.php:484 +#: application/views/qso/edit_ajax.php:524 application/views/qso/index.php:578 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:225 -#: application/views/view_log/partial/log_ajax.php:143 -#: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +#: src/QSLManager/QSO.php:273 src/QSLManager/QSO.php:318 msgid "Queued" msgstr "Sıralanan" -#: application/views/logbookadvanced/index.php:304 -#: application/views/logbookadvanced/index.php:314 -#: application/views/logbookadvanced/index.php:346 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:368 -#: application/views/logbookadvanced/index.php:378 -#: application/views/logbookadvanced/index.php:390 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:373 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:417 +#: application/views/logbookadvanced/index.php:427 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6813,42 +7473,42 @@ msgstr "Sıralanan" #: application/views/qslprint/qsolist.php:109 #: application/views/qslprint/qsolist.php:174 #: application/views/qslprint/qsolist.php:189 -#: application/views/qso/edit_ajax.php:397 -#: application/views/qso/edit_ajax.php:429 -#: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:470 -#: application/views/qso/edit_ajax.php:498 -#: application/views/qso/edit_ajax.php:509 application/views/qso/index.php:557 +#: application/views/qso/edit_ajax.php:424 +#: application/views/qso/edit_ajax.php:456 +#: application/views/qso/edit_ajax.php:485 +#: application/views/qso/edit_ajax.php:497 +#: application/views/qso/edit_ajax.php:525 +#: application/views/qso/edit_ajax.php:536 application/views/qso/index.php:579 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/search/search_result_ajax.php:305 #: application/views/search/search_result_ajax.php:320 -#: application/views/view_log/partial/log_ajax.php:149 -#: application/views/view_log/partial/log_ajax.php:187 -#: application/views/view_log/partial/log_ajax.php:242 -#: application/views/view_log/partial/log_ajax.php:268 -#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 -#: src/QSLManager/QSO.php:375 src/QSLManager/QSO.php:398 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +#: application/views/view_log/partial/log_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:270 +#: src/QSLManager/QSO.php:279 src/QSLManager/QSO.php:324 +#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:400 msgid "Invalid (Ignore)" msgstr "Geçersiz (Yok say)" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:335 msgid "QSL received" msgstr "" -#: application/views/logbookadvanced/index.php:315 -#: application/views/logbookadvanced/index.php:357 -#: application/views/logbookadvanced/index.php:379 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:428 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:346 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:359 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6857,268 +7517,264 @@ msgstr "" #: application/views/qslprint/qsolist.php:77 #: application/views/qslprint/qsolist.php:119 #: application/views/qslprint/qsolist.php:210 -#: application/views/qso/edit_ajax.php:408 -#: application/views/qso/edit_ajax.php:441 application/views/qso/index.php:568 +#: application/views/qso/edit_ajax.php:435 +#: application/views/qso/edit_ajax.php:468 application/views/qso/index.php:590 #: application/views/search/search_result_ajax.php:199 #: application/views/search/search_result_ajax.php:241 -#: application/views/view_log/partial/log_ajax.php:162 -#: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +#: src/QSLManager/QSO.php:296 src/QSLManager/QSO.php:339 msgid "Bureau" msgstr "Büro" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:360 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 #: application/views/qslprint/qsolist.php:80 #: application/views/qslprint/qsolist.php:122 #: application/views/qslprint/qsolist.php:211 -#: application/views/qso/edit_ajax.php:407 -#: application/views/qso/edit_ajax.php:440 application/views/qso/index.php:567 +#: application/views/qso/edit_ajax.php:434 +#: application/views/qso/edit_ajax.php:467 application/views/qso/index.php:589 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 -#: application/views/view_log/partial/log_ajax.php:165 -#: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +#: src/QSLManager/QSO.php:299 src/QSLManager/QSO.php:342 msgid "Direct" msgstr "Direk" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 #: application/views/qslprint/qsolist.php:86 #: application/views/qslprint/qsolist.php:128 #: application/views/qslprint/qsolist.php:212 -#: application/views/qso/edit_ajax.php:409 -#: application/views/qso/edit_ajax.php:442 application/views/qso/index.php:569 +#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:591 #: application/views/search/search_result_ajax.php:208 #: application/views/search/search_result_ajax.php:250 -#: application/views/view_log/partial/log_ajax.php:171 -#: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +#: src/QSLManager/QSO.php:305 src/QSLManager/QSO.php:348 msgid "Electronic" msgstr "Elektronik" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:362 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 -#: application/views/qso/edit_ajax.php:410 -#: application/views/qso/edit_ajax.php:443 application/views/qso/index.php:570 +#: application/views/qso/edit_ajax.php:437 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:592 #: application/views/search/search_result_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:206 +#: application/views/view_log/partial/log_ajax.php:208 msgid "Manager" msgstr "Yönetici" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:356 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:366 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:377 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:388 msgid "Clublog sent" msgstr "" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:399 msgid "Clublog received" msgstr "" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:410 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:436 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:448 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" -#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:451 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:425 -#: application/views/qso/edit_ajax.php:595 +#: application/views/logbookadvanced/index.php:452 +#: application/views/qso/edit_ajax.php:622 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:453 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:454 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:456 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:457 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:459 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:460 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:462 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:463 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:465 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:466 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:472 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:477 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:480 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:486 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:492 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:495 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:498 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:501 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:507 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:516 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:518 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:527 #: application/views/qso/index.php:272 -#: application/views/station_profile/edit.php:65 +#: application/views/station_profile/edit.php:92 msgid "Location" msgstr "Konum" -#: application/views/logbookadvanced/index.php:506 -msgid "Callsign: " -msgstr "" - -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:539 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:547 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:605 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:650 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -7146,41 +7802,15 @@ msgstr "" msgid "Column" msgstr "" -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/useroptions.php:152 msgctxt "Map Options" msgid "Layer" msgstr "" -#: application/views/logbookadvanced/useroptions.php:149 +#: application/views/logbookadvanced/useroptions.php:153 msgid "Default on" msgstr "" -#: application/views/logbookadvanced/useroptions.php:154 -#: application/views/stationsetup/exportmapoptions.php:23 -msgctxt "Map Options" -msgid "Path lines" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:158 -msgctxt "Map Options" -msgid "Gridsquares" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:162 -msgctxt "Map Options" -msgid "CQ Zones" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:166 -msgctxt "Map Options" -msgid "ITU Zones" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:170 -msgctxt "Map Options" -msgid "Night Shadow" -msgstr "" - #: application/views/lookup/index.php:8 msgid "US State" msgstr "" @@ -7284,59 +7914,63 @@ msgstr "Mevcut Sertifikalar" msgid "Upload Certificate" msgstr "Sertifika Yükle" -#: application/views/lotw_views/index.php:41 +#: application/views/lotw_views/index.php:37 msgid "QSO Start Date" msgstr "QSO Başlama Tarihi" -#: application/views/lotw_views/index.php:42 +#: application/views/lotw_views/index.php:38 msgid "QSO End Date" msgstr "QSO Sonu Tarihi" -#: application/views/lotw_views/index.php:43 +#: application/views/lotw_views/index.php:39 msgid "Date Created" msgstr "Oluşturma Tarihi" -#: application/views/lotw_views/index.php:44 +#: application/views/lotw_views/index.php:40 msgid "Date Expires" msgstr "Geçeriliğini Yitirme Tarihi" -#: application/views/lotw_views/index.php:46 -#: application/views/view_log/qso.php:404 +#: application/views/lotw_views/index.php:42 +#: application/views/view_log/qso.php:407 msgid "Last Upload" msgstr "Last upload" -#: application/views/lotw_views/index.php:91 +#: application/views/lotw_views/index.php:87 msgid "Expired" msgstr "Süresi doldu" -#: application/views/lotw_views/index.php:93 +#: application/views/lotw_views/index.php:89 msgid "Expiring" msgstr "" -#: application/views/lotw_views/index.php:105 +#: application/views/lotw_views/index.php:91 +msgid "Valid" +msgstr "Geçerli" + +#: application/views/lotw_views/index.php:101 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:108 +#: application/views/lotw_views/index.php:104 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:114 +#: application/views/lotw_views/index.php:110 msgid "Not Synced" msgstr "Senkronize Edilmedi" -#: application/views/lotw_views/index.php:129 +#: application/views/lotw_views/index.php:125 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:144 +#: application/views/lotw_views/index.php:140 msgid "Information" msgstr "Bilgi" -#: application/views/lotw_views/index.php:149 +#: application/views/lotw_views/index.php:145 msgid "Manual Sync" msgstr "Manuel Senkronizasyon" @@ -7551,6 +8185,14 @@ msgstr "" msgid "This enables the button to Wavelog's Github page in the public view" msgstr "" +#: application/views/options/appearance.php:107 +msgid "Public Login Button" +msgstr "" + +#: application/views/options/appearance.php:112 +msgid "This enables the button to login to Wavelog in the public view" +msgstr "" + #: application/views/options/dxcluster.php:38 msgid "Provider of DXClusterCache" msgstr "" @@ -7848,7 +8490,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:64 #: application/views/oqrs/showrequests.php:87 -#: application/views/user/main.php:48 application/views/user/profile.php:24 +#: application/views/user/index.php:48 application/views/user/profile.php:24 msgid "E-mail" msgstr "" @@ -7871,21 +8513,21 @@ msgstr "" #: application/views/search/search_result_ajax.php:127 #: application/views/user/edit.php:478 #: application/views/view_log/partial/log.php:22 -#: application/views/view_log/partial/log_ajax.php:86 -#: application/views/view_log/qso.php:503 -#: application/views/view_log/qso.php:507 -#: application/views/view_log/qso.php:511 -#: application/views/view_log/qso.php:515 -#: application/views/view_log/qso.php:521 -#: application/views/view_log/qso.php:528 -#: application/views/view_log/qso.php:535 -#: application/views/view_log/qso.php:542 -#: application/views/view_log/qso.php:549 -#: application/views/view_log/qso.php:556 -#: application/views/view_log/qso.php:563 -#: application/views/view_log/qso.php:570 -#: application/views/view_log/qso.php:577 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log_ajax.php:88 +#: application/views/view_log/qso.php:506 +#: application/views/view_log/qso.php:510 +#: application/views/view_log/qso.php:514 +#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:531 +#: application/views/view_log/qso.php:538 +#: application/views/view_log/qso.php:545 +#: application/views/view_log/qso.php:552 +#: application/views/view_log/qso.php:559 +#: application/views/view_log/qso.php:566 +#: application/views/view_log/qso.php:573 +#: application/views/view_log/qso.php:580 +#: application/views/view_log/qso.php:585 msgid "Station" msgstr "İstasyon" @@ -7893,10 +8535,10 @@ msgstr "İstasyon" #: application/views/qslprint/qslprint.php:28 #: application/views/qslprint/qsolist.php:14 #: application/views/qslprint/qsolist.php:83 -#: application/views/qso/index.php:576 +#: application/views/qso/index.php:598 #: application/views/search/search_result_ajax.php:205 -#: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:300 +#: application/views/view_log/partial/log_ajax.php:170 +#: src/QSLManager/QSO.php:302 msgid "Via" msgstr "üzerinden" @@ -8125,7 +8767,7 @@ msgid "Remove" msgstr "" #: application/views/qslprint/qslprint.php:33 -#: application/views/simplefle/index.php:133 +#: application/views/simplefle/index.php:139 msgid "QSO List" msgstr "" @@ -8171,35 +8813,20 @@ msgid "" "queue." msgstr "" -#: application/views/qso/components/winkeysettings.php:7 -#: application/views/qso/components/winkeysettings_results.php:7 -msgid "Winkey Macros" -msgstr "" - -#: application/views/qso/components/winkeysettings.php:12 -#: application/views/qso/components/winkeysettings.php:28 -#: application/views/qso/components/winkeysettings.php:44 -#: application/views/qso/components/winkeysettings.php:60 -#: application/views/qso/components/winkeysettings.php:76 -#: application/views/qso/components/winkeysettings_results.php:12 -#: application/views/qso/components/winkeysettings_results.php:28 -#: application/views/qso/components/winkeysettings_results.php:44 -#: application/views/qso/components/winkeysettings_results.php:60 -#: application/views/qso/components/winkeysettings_results.php:76 -#, php-format -msgid "Function %d - Name" -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:83 -#: application/views/qso/components/winkeysettings_results.php:19 -#: application/views/qso/components/winkeysettings_results.php:35 -#: application/views/qso/components/winkeysettings_results.php:51 -#: application/views/qso/components/winkeysettings_results.php:67 -#: application/views/qso/components/winkeysettings_results.php:83 +#, 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 #, php-format msgid "Function %d - Macro" msgstr "" @@ -8225,7 +8852,8 @@ msgid "RX Band" msgstr "" #: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:346 -#: application/views/view_log/qso.php:542 +#: application/views/reg1test/index.php:114 +#: application/views/view_log/qso.php:545 msgid "Transmit Power (W)" msgstr "Yayın Gücü (W)" @@ -8237,10 +8865,6 @@ msgstr "Gücü Watt olarak veriniz. Sadece rakamları giriniz." msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:177 -msgid "QTH" -msgstr "" - #: application/views/qso/edit_ajax.php:258 msgid "Sat Name" msgstr "" @@ -8249,69 +8873,85 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:356 application/views/qso/index.php:255 -#: application/views/qso/index.php:500 application/views/user/edit.php:599 -#: application/views/view_log/qso.php:332 -#: application/views/view_log/qso.php:582 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:545 +msgid "Antenna Azimuth (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:547 +msgid "Antenna azimuth in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:274 application/views/qso/index.php:551 +msgid "Antenna Elevation (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:276 application/views/qso/index.php:553 +msgid "Antenna elevation in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:383 application/views/qso/index.php:255 +#: application/views/qso/index.php:510 application/views/user/edit.php:599 +#: application/views/view_log/qso.php:335 +#: application/views/view_log/qso.php:585 msgid "Sig Info" msgstr "İmza bilgisi" -#: application/views/qso/edit_ajax.php:369 +#: application/views/qso/edit_ajax.php:396 msgid "Notes (for internal usage only)" msgstr "" -#: application/views/qso/edit_ajax.php:403 +#: application/views/qso/edit_ajax.php:430 msgid "Sent Method" msgstr "" -#: application/views/qso/edit_ajax.php:406 -#: application/views/qso/edit_ajax.php:439 application/views/qso/index.php:563 -#: application/views/qso/index.php:566 +#: application/views/qso/edit_ajax.php:433 +#: application/views/qso/edit_ajax.php:466 application/views/qso/index.php:585 +#: application/views/qso/index.php:588 msgid "Method" msgstr "Metod" -#: application/views/qso/edit_ajax.php:416 +#: application/views/qso/edit_ajax.php:443 msgid "Sent Via" msgstr "" -#: application/views/qso/edit_ajax.php:430 -#: application/views/qso/edit_ajax.php:471 -#: application/views/qso/edit_ajax.php:510 +#: application/views/qso/edit_ajax.php:457 +#: application/views/qso/edit_ajax.php:498 +#: application/views/qso/edit_ajax.php:537 msgid "Verified (Match)" msgstr "" -#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:463 msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:477 application/views/qso/index.php:583 +#: application/views/qso/edit_ajax.php:504 application/views/qso/index.php:605 msgid "This note content is exported to QSL services like eqsl.cc." msgstr "Bu not içeriği eqsl.cc gibi QSL servislere aktarılır" -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:586 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:608 msgid "Get the default message for eQSL, for this station." msgstr "" -#: application/views/qso/edit_ajax.php:530 +#: application/views/qso/edit_ajax.php:557 msgid "Change Station Profile" msgstr "" -#: application/views/qso/edit_ajax.php:576 +#: application/views/qso/edit_ajax.php:603 msgid "Exchange (R)" msgstr "" -#: application/views/qso/edit_ajax.php:581 +#: application/views/qso/edit_ajax.php:608 msgid "Exchange (S)" msgstr "" -#: application/views/qso/edit_ajax.php:593 +#: application/views/qso/edit_ajax.php:620 #: application/views/search/search_result_ajax.php:432 #: application/views/view_log/partial/log.php:156 -#: application/views/view_log/partial/log_ajax.php:346 +#: application/views/view_log/partial/log_ajax.php:348 msgid "Delete QSO" msgstr "QSO'yu sil" -#: application/views/qso/edit_ajax.php:596 +#: application/views/qso/edit_ajax.php:623 msgid "Save changes" msgstr "" @@ -8319,7 +8959,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:5 application/views/qso/index.php:694 +#: application/views/qso/index.php:5 application/views/qso/index.php:718 msgid "Previous Contacts" msgstr "Önceki Görüşmeler" @@ -8359,23 +8999,23 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:149 -#: application/views/station_profile/edit.php:191 -#: application/views/user/edit.php:583 application/views/view_log/qso.php:282 -#: application/views/view_log/qso.php:549 +#: application/views/qso/index.php:196 application/views/qso/index.php:449 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 +#: application/views/user/edit.php:583 application/views/view_log/qso.php:285 +#: application/views/view_log/qso.php:552 msgid "IOTA Reference" msgstr "IOTA Referansı" -#: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:165 -#: application/views/station_profile/edit.php:219 -#: application/views/user/edit.php:587 application/views/view_log/qso.php:289 -#: application/views/view_log/qso.php:556 +#: application/views/qso/index.php:212 application/views/qso/index.php:466 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 +#: application/views/user/edit.php:587 application/views/view_log/qso.php:292 +#: application/views/view_log/qso.php:559 msgid "SOTA Reference" msgstr "SOTA Referansı" -#: application/views/qso/index.php:322 application/views/view_log/qso.php:98 +#: application/views/qso/index.php:322 application/views/view_log/qso.php:100 msgid "Frequency (RX)" msgstr "Frekans (RX)" @@ -8383,66 +9023,86 @@ msgstr "Frekans (RX)" msgid "Band (RX)" msgstr "Bant (RX)" -#: application/views/qso/index.php:458 +#: application/views/qso/index.php:468 msgid "For example: GM/NS-001." msgstr "Örnek: GM/NS-001." -#: application/views/qso/index.php:471 +#: application/views/qso/index.php:481 msgid "For example: DLFF-0069." msgstr "Örnek: DLFF-0069." -#: application/views/qso/index.php:484 +#: application/views/qso/index.php:494 msgid "For example: PA-0150. Multiple values allowed." msgstr "Örnek: PA-0150. Multiple values allowed." -#: application/views/qso/index.php:496 +#: application/views/qso/index.php:506 msgid "For example: GMA" msgstr "Örnek: GMA" -#: application/views/qso/index.php:502 +#: application/views/qso/index.php:512 msgid "For example: DA/NW-357" msgstr "Örnek: DA/NW-357" -#: application/views/qso/index.php:510 +#: application/views/qso/index.php:520 msgid "For example: Q03" msgstr "Örnek: Q03" -#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +#: application/views/qso/index.php:529 application/views/view_log/qso.php:210 msgid "Satellite Name" msgstr "Uydu Adı" -#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +#: application/views/qso/index.php:537 application/views/view_log/qso.php:217 msgid "Satellite Mode" msgstr "Uydu Modu" -#: application/views/qso/index.php:538 +#: application/views/qso/index.php:560 msgid "" "Note content is used within Wavelog only and is not exported to other " "services." msgstr "" "Not içeriği yalnızca Wavelog içinde kullanılır ve diğer servislere aktarılmaz" -#: application/views/qso/index.php:604 +#: application/views/qso/index.php:626 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:645 +#: application/views/qso/index.php:667 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:647 +#: application/views/qso/index.php:669 msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:678 +msgid "Stop" +msgstr "" + +#: application/views/qso/index.php:679 +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:680 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:686 +msgid "CW Speed" +msgstr "" + +#: application/views/qso/index.php:691 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:701 msgid "Suggestions" msgstr "Öneriler" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:708 msgid "Profile Picture" msgstr "Profil Resmi" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:732 msgid "Max. 5 previous contacts are shown" msgstr "" @@ -8473,6 +9133,137 @@ msgstr "" msgid "Please wait..." msgstr "" +#: application/views/reg1test/index.php:6 +msgid "Select Band" +msgstr "" + +#: application/views/reg1test/index.php:8 +msgid "" +"Bands below 50Mhz are not valid for the EDI REG1TEST format and will produce " +"invalid files." +msgstr "" + +#: application/views/reg1test/index.php:18 +msgid "Export a contest to a REG1TEST EDI log" +msgstr "" + +#: application/views/reg1test/index.php:48 +msgid "Sent Exchange" +msgstr "" + +#: application/views/reg1test/index.php:50 +msgid "" +"The exchange which was sent during the contest. Can be any type of " +"information, e.g. Province, DOK, County, State, Power, Name. Max. length: 6 " +"characters." +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:66 +msgid "Callsign of responsible operator" +msgstr "" + +#: application/views/reg1test/index.php:72 +msgid "" +"List of all operators. Seperated with a semicolon ';'. The responsible " +"operator is not needed here." +msgstr "" + +#: application/views/reg1test/index.php:75 +msgid "Contest Address 1" +msgstr "" + +#: application/views/reg1test/index.php:77 +msgid "Address of the QTH used during the contest." +msgstr "" + +#: application/views/reg1test/index.php:80 +msgid "Contest Address 2" +msgstr "" + +#: application/views/reg1test/index.php:84 +msgid "Operator Address 1" +msgstr "" + +#: application/views/reg1test/index.php:86 +msgid "Address of the responsible operator." +msgstr "" + +#: application/views/reg1test/index.php:89 +msgid "Operator Address 2" +msgstr "" + +#: application/views/reg1test/index.php:93 +msgid "Operator Address Postalcode" +msgstr "" + +#: application/views/reg1test/index.php:97 +msgid "Operator Address City" +msgstr "" + +#: application/views/reg1test/index.php:101 +msgid "Operator Address Country" +msgstr "" + +#: application/views/reg1test/index.php:105 +msgid "Operator Phone Number" +msgstr "" + +#: application/views/reg1test/index.php:109 +msgid "Transmit Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:111 +msgid "Short description of the used equipment." +msgstr "" + +#: application/views/reg1test/index.php:116 +msgid "TX Power during the contest in Watt." +msgstr "" + +#: application/views/reg1test/index.php:119 +msgid "Receive Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:121 +msgid "If you used another gear for RX, then describe it here." +msgstr "" + +#: application/views/reg1test/index.php:124 +msgid "Antenna Description" +msgstr "" + +#: application/views/reg1test/index.php:126 +msgid "What kind of antenna was used." +msgstr "" + +#: application/views/reg1test/index.php:129 +msgid "Antenna Height Above Ground (m)" +msgstr "" + +#: application/views/reg1test/index.php:131 +msgid "Height of the antenna above the ground." +msgstr "" + +#: application/views/reg1test/index.php:134 +msgid "Band multiplicator" +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:141 +msgid "Any other remarks." +msgstr "" + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8562,10 +9353,71 @@ msgstr "" msgid "Satellite passes" msgstr "" -#: application/views/satellite/pass.php:548 +#: application/views/satellite/pass.php:8 +msgid "Min. Satellite Elevation" +msgstr "" + +#: application/views/satellite/pass.php:12 +msgid "Min. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:20 +msgid "Max. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:32 +msgid "Altitude (meters)" +msgstr "" + +#: application/views/satellite/pass.php:36 application/views/user/edit.php:179 +msgid "Timezone" +msgstr "Saat dilimi" + +#: application/views/satellite/pass.php:479 +msgid "Min. time" +msgstr "" + +#: application/views/satellite/pass.php:487 +msgid "Max. time" +msgstr "" + +#: application/views/satellite/pass.php:504 msgid "Load predictions" msgstr "" +#: application/views/satellite/passtable.php:6 +msgid "AOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:7 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "" + +#: application/views/satellite/passtable.php:8 +msgid "AOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:9 +msgid "AOS El" +msgstr "" + +#: application/views/satellite/passtable.php:10 +msgid "Max El" +msgstr "" + +#: application/views/satellite/passtable.php:11 +msgid "LOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:12 +msgid "LOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:13 +msgid "LOS El" +msgstr "" + #: application/views/sattimers/index.php:15 #, php-format msgid "" @@ -8586,10 +9438,6 @@ msgstr "" msgid "Max Elevation" msgstr "" -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "" - #: application/views/search/cqzones.php:5 #: application/views/search/lotw_unconfirmed.php:5 #: application/views/search/main.php:5 @@ -8696,50 +9544,50 @@ msgstr "" #: application/views/search/search_result_ajax.php:409 #: application/views/view_log/partial/log.php:140 -#: application/views/view_log/partial/log_ajax.php:323 +#: application/views/view_log/partial/log_ajax.php:325 msgid "Mark QSL Sent (Bureau)" msgstr "QSL'i Gönderildi Olarak İşaretle (Ofis)" #: application/views/search/search_result_ajax.php:410 #: application/views/view_log/partial/log.php:141 -#: application/views/view_log/partial/log_ajax.php:324 +#: application/views/view_log/partial/log_ajax.php:326 msgid "Mark QSL Sent (Direct)" msgstr "QSL'i Gönderildi Olarak İşaretle (Doğrudan)" #: application/views/search/search_result_ajax.php:417 #: application/views/view_log/partial/log.php:148 -#: application/views/view_log/partial/log_ajax.php:333 -#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log_ajax.php:335 +#: application/views/view_log/qso.php:655 msgid "Mark QSL Received (Bureau)" msgstr "QSL'i alındı Olarak İşaretle (Ofis)" #: application/views/search/search_result_ajax.php:418 #: application/views/view_log/partial/log.php:149 -#: application/views/view_log/partial/log_ajax.php:334 -#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log_ajax.php:336 +#: application/views/view_log/qso.php:657 msgid "Mark QSL Received (Direct)" msgstr "QSL'i alındı Olarak İşaretle (Doğrudan)" #: application/views/search/search_result_ajax.php:419 #: application/views/view_log/partial/log.php:150 -#: application/views/view_log/partial/log_ajax.php:325 +#: application/views/view_log/partial/log_ajax.php:327 msgid "Mark QSL Card Requested" msgstr "QSL'i gerektiği gibi işaretleyin" #: application/views/search/search_result_ajax.php:420 #: application/views/view_log/partial/log.php:151 -#: application/views/view_log/partial/log_ajax.php:326 -#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log_ajax.php:328 +#: application/views/view_log/qso.php:669 msgid "Mark QSL Card Not Required" msgstr "QSL'i gerekli değil olarak işaretleyin" #: application/views/search/search_result_ajax.php:426 -#: application/views/view_log/partial/log_ajax.php:340 +#: application/views/view_log/partial/log_ajax.php:342 msgid "Lookup on QRZ.com" msgstr "" #: application/views/search/search_result_ajax.php:428 -#: application/views/view_log/partial/log_ajax.php:342 +#: application/views/view_log/partial/log_ajax.php:344 msgid "Lookup on HamQTH" msgstr "" @@ -8774,7 +9622,7 @@ msgid "" msgstr "" #: application/views/simplefle/index.php:17 -#: application/views/simplefle/index.php:170 +#: application/views/simplefle/index.php:176 msgid "Syntax Help" msgstr "" @@ -8868,8 +9716,8 @@ msgstr "" #: application/views/simplefle/index.php:107 #, php-format msgid "" -"If you did operate from a new location, first create a new Station Location" +"If you did operate from a new location, first create a new %sStation " +"Location%s" msgstr "" #: application/views/simplefle/index.php:112 @@ -8884,24 +9732,24 @@ msgstr "" msgid "Enter the Data" msgstr "" -#: application/views/simplefle/index.php:148 +#: application/views/simplefle/index.php:154 msgid "Refs" msgstr "" -#: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +#: application/views/simplefle/index.php:166 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" msgstr "" -#: application/views/simplefle/index.php:167 +#: application/views/simplefle/index.php:173 msgid "Reload QSO List" msgstr "" -#: application/views/simplefle/index.php:168 +#: application/views/simplefle/index.php:174 msgid "Save in Wavelog" msgstr "" -#: application/views/simplefle/index.php:169 +#: application/views/simplefle/index.php:175 msgid "Clear Logging Session" msgstr "" @@ -8958,122 +9806,121 @@ msgstr "" #: application/views/simplefle/syntax_help.php:28 #, php-format -msgctxt "uses 'this article'" msgid "" -"A full summary of all commands and the necessary syntax can be found in %s " -"of our Wiki." +"A full summary of all commands and the necessary syntax can be found in " +"%sthis article%s of our Wiki." msgstr "" -#: application/views/station_profile/create.php:51 -#: application/views/station_profile/edit.php:40 +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:52 -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:59 -#: application/views/station_profile/edit.php:48 +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 msgid "Station callsign. For example: 4W7EST/P" msgstr "" -#: application/views/station_profile/create.php:63 -#: application/views/station_profile/edit.php:52 +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 msgid "Station Power (W)" msgstr "" -#: application/views/station_profile/create.php:65 -#: application/views/station_profile/edit.php:54 +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" -#: application/views/station_profile/create.php:68 -#: application/views/station_profile/edit.php:69 +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 msgid "Station DXCC" msgstr "" -#: application/views/station_profile/create.php:71 -#: application/views/station_profile/edit.php:72 +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 msgctxt "DXCC selection" msgid "None" msgstr "" -#: application/views/station_profile/create.php:78 -#: application/views/station_profile/edit.php:85 +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:83 -#: application/views/station_profile/edit.php:91 +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 msgid "Station City" msgstr "" -#: application/views/station_profile/create.php:85 -#: application/views/station_profile/edit.php:93 +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:94 -#: application/views/station_profile/edit.php:105 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 msgid "Station state. Applies to certain countries only." msgstr "" -#: application/views/station_profile/create.php:99 -#: application/views/station_profile/edit.php:110 +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 msgid "Station County" msgstr "" -#: application/views/station_profile/create.php:101 -#: application/views/station_profile/edit.php:112 +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/edit.php:138 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:138 -#: application/views/station_profile/edit.php:155 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 msgid "click here" msgstr "" -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/edit.php:155 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:135 -#: application/views/station_profile/edit.php:167 -#: application/views/station_profile/edit.php:170 +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 msgid "Station Gridsquare" msgstr "" -#: application/views/station_profile/create.php:140 -#: application/views/station_profile/edit.php:175 +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 msgid "Get Gridsquare" msgstr "" -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 #, php-format msgctxt "uses 'click here'" msgid "" @@ -9081,304 +9928,250 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:145 -#: application/views/station_profile/edit.php:180 +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" -#: application/views/station_profile/create.php:160 -#: application/views/station_profile/edit.php:205 +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 msgid "Station IOTA reference. For example: EU-005" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 #, php-format msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:183 -#: application/views/station_profile/edit.php:260 +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 msgid "Signature Name" msgstr "" -#: application/views/station_profile/create.php:185 -#: application/views/station_profile/edit.php:262 +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 msgid "Station Signature (e.g. GMA).." msgstr "" -#: application/views/station_profile/create.php:189 -#: application/views/station_profile/edit.php:266 +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 msgid "Signature Information" msgstr "" -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/edit.php:268 +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "" -#: application/views/station_profile/create.php:195 -#: application/views/station_profile/edit.php:281 +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:197 -#: application/views/station_profile/edit.php:283 +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "" -#: application/views/station_profile/create.php:201 -#: application/views/station_profile/edit.php:286 +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 msgid "Default QSLMSG" msgstr "" -#: application/views/station_profile/create.php:204 -#: application/views/station_profile/edit.php:289 +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "" -#: application/views/station_profile/create.php:207 -#: application/views/station_profile/edit.php:328 +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:212 -#: application/views/station_profile/edit.php:333 +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " "Clublog. If this is deactivated on it's own please check if the Call is " "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:215 -#: application/views/station_profile/edit.php:336 +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 msgid "ClubLog Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:224 -#: application/views/station_profile/edit.php:352 +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 msgid "HRDLog.net Username" msgstr "" -#: application/views/station_profile/create.php:226 -#: application/views/station_profile/edit.php:354 +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" -#: application/views/station_profile/create.php:229 -#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 msgid "HRDLog.net API Key" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:234 -#: application/views/station_profile/edit.php:362 +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 msgid "HRDLog.net Logbook Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:243 -#: application/views/station_profile/edit.php:297 +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 msgid "Subscription Required" msgstr "" -#: application/views/station_profile/create.php:248 +#: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/edit.php:310 +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 msgid "QRZ.com Logbook Upload" msgstr "" -#: application/views/station_profile/create.php:260 -#: application/views/station_profile/edit.php:313 +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:268 -#: application/views/station_profile/edit.php:378 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:273 -#: application/views/station_profile/edit.php:383 +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 msgid "QO-100 Dx Club Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:283 -#: application/views/station_profile/edit.php:401 +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 msgid "OQRS Enabled" msgstr "" -#: application/views/station_profile/create.php:290 -#: application/views/station_profile/edit.php:408 +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 msgid "OQRS Email alert" msgstr "" -#: application/views/station_profile/create.php:295 -#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 msgid "Make sure email is set up under admin and global options." msgstr "" -#: application/views/station_profile/create.php:298 -#: application/views/station_profile/edit.php:416 +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 msgid "OQRS Text" msgstr "" -#: application/views/station_profile/create.php:300 -#: application/views/station_profile/edit.php:418 +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 msgid "Some info you want to add regarding QSL'ing." msgstr "" -#: application/views/station_profile/edit.php:122 +#: application/views/station_profile/edit.php:149 msgid "Zones" msgstr "" -#: application/views/station_profile/edit.php:257 +#: application/views/station_profile/edit.php:284 msgid "Signature" msgstr "" -#: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:95 -msgid "" -"Station Locations define operating locations, such as your QTH, a friends " -"QTH, or a portable station." -msgstr "" - -#: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:96 -msgid "Similar to logbooks, a station profile keeps a set of QSOs together." -msgstr "" - -#: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:97 -msgid "" -"Only one station may be active at a time. In the table below this is shown " -"with the -Active Station- badge." -msgstr "" - -#: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:101 -msgid "Create a Station Location" -msgstr "" - -#: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:105 -msgid "" -"Attention: You need to set an active station location. Go to Callsign-" -">Station Location to select one." -msgstr "" - -#: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:111 -msgid "" -"Due to recent changes within Wavelog you need to reassign QSOs to your " -"station profiles." -msgstr "" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Maintenance" -msgstr "" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Please reassign them at " -msgstr "" - -#: application/views/station_profile/index.php:41 -#: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:122 -msgid "Profile Name" -msgstr "" - #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "" @@ -9426,6 +10219,11 @@ msgstr "" msgid "Link Location" msgstr "" +#: application/views/stationsetup/linkedlocations.php:31 +#: application/views/stationsetup/stationsetup.php:122 +msgid "Profile Name" +msgstr "" + #: application/views/stationsetup/linkedlocations.php:34 msgid "Unlink Station Location" msgstr "" @@ -9450,12 +10248,52 @@ msgstr "" msgid "Station Locations" msgstr "" +#: application/views/stationsetup/stationsetup.php:95 +msgid "" +"Station Locations define operating locations, such as your QTH, a friends " +"QTH, or a portable station." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:96 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:97 +msgid "" +"Only one station may be active at a time. In the table below this is shown " +"with the -Active Station- badge." +msgstr "" + #: application/views/stationsetup/stationsetup.php:98 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." msgstr "" +#: application/views/stationsetup/stationsetup.php:101 +msgid "Create a Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:105 +msgid "" +"Attention: You need to set an active station location. Go to Callsign-" +">Station Location to select one." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:111 +msgid "" +"Due to recent changes within Wavelog you need to reassign QSOs to your " +"station profiles." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Maintenance" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Please reassign them at " +msgstr "" + #: application/views/stationsetup/stationsetup.php:127 msgid "Linked" msgstr "" @@ -9672,9 +10510,10 @@ msgid "4. Step" msgstr "" #: application/views/themes/index.php:73 +#, php-format msgid "" "Click here on 'Add a Theme' and type in the necessary data. Type in the " -"filenames for the logos without the file extension '.png'" +"filenames for the logos %swithout%s the file extension '.png'" msgstr "" #: application/views/themes/index.php:83 @@ -9737,6 +10576,10 @@ msgstr "" msgid "Update DXCC Data" msgstr "" +#: application/views/update/index.php:30 +msgid "Status:" +msgstr "" + #: application/views/update/index.php:34 msgid "Apply DXCC Data to Logbook" msgstr "" @@ -9750,36 +10593,43 @@ msgid "" "\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." msgstr "" -#: application/views/update/index.php:40 +#: application/views/update/index.php:45 msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:54 application/views/update/index.php:95 msgid "Re-check all QSOs in logbook" msgstr "" -#: application/views/update/index.php:45 +#: application/views/update/index.php:59 msgid "Apply Continent Data to Logbook" msgstr "" -#: application/views/update/index.php:47 +#: application/views/update/index.php:61 msgid "" "This function can be used to update QSO continent information for all QSOs " "in Wavelog missing that information." msgstr "" -#: application/views/update/index.php:49 +#: application/views/update/index.php:68 msgid "Check QSOs missing continent data" msgstr "" -#: application/views/update/index.php:59 +#: application/views/update/index.php:80 msgid "Here you can update QSOs with missing distance information." msgstr "" -#: application/views/update/index.php:60 +#: application/views/update/index.php:86 msgid "Update distance data" msgstr "" +#: application/views/update/index.php:89 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" + #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "" @@ -9809,13 +10659,13 @@ msgid "General Information" msgstr "" #: application/views/user/edit.php:52 application/views/user/login.php:58 -#: application/views/user/login.php:67 application/views/user/login.php:68 +#: application/views/user/login.php:69 application/views/user/login.php:70 #: application/views/user/profile.php:14 msgid "Username" msgstr "Kullanıcı adı" #: application/views/user/edit.php:64 application/views/user/login.php:59 -#: application/views/user/login.php:71 application/views/user/login.php:72 +#: application/views/user/login.php:73 application/views/user/login.php:74 #: application/views/user/reset_password.php:21 #: application/views/user/reset_password.php:23 #: application/views/user/reset_password.php:30 @@ -9858,10 +10708,6 @@ msgstr "" msgid "Choose Wavelog language." msgstr "" -#: application/views/user/edit.php:179 -msgid "Timezone" -msgstr "Saat dilimi" - #: application/views/user/edit.php:187 msgid "Date Format" msgstr "" @@ -10195,6 +11041,122 @@ msgstr "" msgid "You can reset your password here." msgstr "" +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "" + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "" + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "" @@ -10209,96 +11171,17 @@ msgstr "" #: application/views/user/login.php:60 #, php-format -msgid "" -"More Information about Wavelog on Github." +msgid "More Information about Wavelog on %sGithub%s." msgstr "" -#: application/views/user/login.php:77 +#: application/views/user/login.php:79 msgid "Forgot your password?" msgstr "" -#: application/views/user/login.php:83 +#: application/views/user/login.php:85 msgid "Keep me logged in" msgstr "" -#: application/views/user/main.php:2 -msgid "Do you really want to send this user a password-reset link?" -msgstr "" - -#: application/views/user/main.php:6 -msgid "Please Wait ..." -msgstr "" - -#: application/views/user/main.php:9 -msgid "Password-reset e-mail sent to user:" -msgstr "" - -#: application/views/user/main.php:30 -msgid "User List" -msgstr "" - -#: application/views/user/main.php:33 -msgid "Wavelog needs at least one user configured in order to operate." -msgstr "" - -#: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" - -#: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "" - -#: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." -msgstr "" - -#: application/views/user/main.php:38 -msgid "Create user" -msgstr "" - -#: application/views/user/main.php:39 -msgid "Refresh List" -msgstr "" - -#: application/views/user/main.php:49 -msgid "Type" -msgstr "" - -#: application/views/user/main.php:50 -msgid "Last seen" -msgstr "" - -#: application/views/user/main.php:53 -msgid "Password Reset" -msgstr "" - -#: application/views/user/main.php:79 -msgid "Never" -msgstr "" - -#: application/views/user/main.php:83 -msgid "Locations" -msgstr "" - -#: application/views/user/main.php:85 -msgid "Logbooks" -msgstr "" - -#: application/views/user/main.php:87 -msgid "Last QSO:" -msgstr "" - -#: application/views/user/main.php:89 -msgid "No QSOs in Log" -msgstr "" - #: application/views/user/profile.php:19 msgid "Level" msgstr "" @@ -10348,118 +11231,118 @@ msgstr "QSO detayları" msgid "QSL Management" msgstr "QSL Yönetimi" -#: application/views/view_log/qso.php:128 +#: application/views/view_log/qso.php:131 msgid "Total Distance" msgstr "Topam mesafe" -#: application/views/view_log/qso.php:221 +#: application/views/view_log/qso.php:224 msgid "Antenna Azimuth" msgstr "" -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:231 msgid "Antenna Elevation" msgstr "" -#: application/views/view_log/qso.php:370 +#: application/views/view_log/qso.php:373 msgid "QSL Card has been sent via the bureau" msgstr "QSL kartı büro üzerinden gönderildi" -#: application/views/view_log/qso.php:372 +#: application/views/view_log/qso.php:375 msgid "QSL Card has been sent via direct" msgstr "QSL kartı direkt gönderildi" -#: application/views/view_log/qso.php:374 +#: application/views/view_log/qso.php:377 msgid "QSL Card has been sent electronically" msgstr "" -#: application/views/view_log/qso.php:376 +#: application/views/view_log/qso.php:379 msgid "QSL Card has been sent via manager" msgstr "" -#: application/views/view_log/qso.php:378 +#: application/views/view_log/qso.php:381 msgid "QSL Card has been sent" msgstr "" -#: application/views/view_log/qso.php:387 +#: application/views/view_log/qso.php:390 msgid "QSL Card has been received via the bureau" msgstr "QSL kartı büro üzerinden alındı" -#: application/views/view_log/qso.php:389 +#: application/views/view_log/qso.php:392 msgid "QSL Card has been received via direct" msgstr "QSL kartı direkt alındı" -#: application/views/view_log/qso.php:391 +#: application/views/view_log/qso.php:394 msgid "QSL Card has been received electronically" msgstr "" -#: application/views/view_log/qso.php:393 +#: application/views/view_log/qso.php:396 msgid "QSL Card has been received via manager" msgstr "" -#: application/views/view_log/qso.php:395 +#: application/views/view_log/qso.php:398 msgid "QSL Card has been received" msgstr "" -#: application/views/view_log/qso.php:404 +#: application/views/view_log/qso.php:407 msgid "This station uses LoTW." msgstr "" -#: application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:414 -#: application/views/view_log/qso.php:419 -#: application/views/view_log/qso.php:424 +#: application/views/view_log/qso.php:412 +#: application/views/view_log/qso.php:417 +#: application/views/view_log/qso.php:422 +#: application/views/view_log/qso.php:427 msgid "This QSO was confirmed on" msgstr "Bu QSO'nun onaylandığı tarih" -#: application/views/view_log/qso.php:435 +#: application/views/view_log/qso.php:438 msgid "More QSOs" msgstr "" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:506 msgid "Details" msgstr "" -#: application/views/view_log/qso.php:630 +#: application/views/view_log/qso.php:633 msgid "Uploaded QSL Card front image" msgstr "Yüklenen QSL kartının ön resmi" -#: application/views/view_log/qso.php:635 +#: application/views/view_log/qso.php:638 msgid "Upload QSL Card image" msgstr "QSL kardını yükle" -#: application/views/view_log/qso.php:640 +#: application/views/view_log/qso.php:643 msgid "Uploaded QSL Card back image" msgstr "Yüklenen QSL kartının arka resmi" -#: application/views/view_log/qso.php:656 +#: application/views/view_log/qso.php:659 msgid "Mark QSL Received (Electronic)" msgstr "QSL'i alındı Olarak İşaretle (Elektronik)" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:665 msgid "Mark QSL Card Requested (Bureau)" msgstr "QSL'i gerektiği gibi işaretleyin" -#: application/views/view_log/qso.php:664 +#: application/views/view_log/qso.php:667 msgid "Mark QSL Card Requested (Direct)" msgstr "QSL'i gerektiği gibi işaretleyin" -#: application/views/view_log/qso.php:679 +#: application/views/view_log/qso.php:682 msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:242 msgid "CSV" msgstr "" -#: application/views/visitor/layout/header.php:75 +#: application/views/visitor/layout/header.php:74 msgid "OQRS" msgstr "" -#: application/views/visitor/layout/header.php:83 +#: application/views/visitor/layout/header.php:82 msgid "Visit Wavelog on Github" msgstr "" -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Please enter a callsign!" msgstr "" @@ -10548,6 +11431,15 @@ msgstr "" msgid "Submit Request" msgstr "" +#~ msgid "Key Disabled" +#~ msgstr "Anahtar Devre Dışı" + +#~ msgid "No Key Found" +#~ msgstr "Anahtar Bulunamadı" + +#~ msgid "Key Invalid - either not found or disabled" +#~ msgstr "Anahtar Geçersiz - bulunamadı veya devre dışı bırakıldı" + #~ msgid "You are using" #~ msgstr "QSL kart varlıklarınızı depolamak için" diff --git a/application/locale/zh_CN/LC_MESSAGES/messages.mo b/application/locale/zh_CN/LC_MESSAGES/messages.mo index 4643e6c1c..ec7d20f32 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 7d4d2413a..9386870bb 100644 --- a/application/locale/zh_CN/LC_MESSAGES/messages.po +++ b/application/locale/zh_CN/LC_MESSAGES/messages.po @@ -4,23 +4,118 @@ # # Karuru , 2024. # BG6HJE <1753409828@qq.com>, 2024. +# imlonghao , 2024. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-09 07:24+0000\n" -"PO-Revision-Date: 2024-08-07 06:28+0000\n" -"Last-Translator: Karuru \n" -"Language-Team: Chinese (Simplified) \n" +"POT-Creation-Date: 2024-09-07 07:18+0000\n" +"PO-Revision-Date: 2024-09-07 07:18+0000\n" +"Last-Translator: imlonghao \n" +"Language-Team: Chinese (Simplified Han script) \n" "Language: zh_CN\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.6.2\n" +"X-Generator: Weblate 5.7.1\n" -#: application/controllers/Accumulated.php:21 -#: application/views/interface_assets/header.php:150 +#: application/controllers/Accumulated.php:12 +#: application/controllers/Activators.php:13 +#: application/controllers/Activatorsmap.php:13 +#: application/controllers/Adif.php:13 application/controllers/Awards.php:16 +#: application/controllers/Backup.php:13 application/controllers/Backup.php:26 +#: application/controllers/Backup.php:63 application/controllers/Band.php:15 +#: application/controllers/Bandmap.php:9 +#: application/controllers/Cabrillo.php:16 +#: application/controllers/Cabrillo.php:53 +#: application/controllers/Cabrillo.php:80 +#: application/controllers/Cabrillo.php:135 +#: application/controllers/Calltester.php:11 +#: application/controllers/Cfdexport.php:18 +#: application/controllers/Cfdexport.php:29 +#: application/controllers/Components.php:13 +#: application/controllers/Contestcalendar.php:15 +#: application/controllers/Contesting.php:14 +#: application/controllers/Cron.php:26 application/controllers/Cron.php:162 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: application/controllers/Distancerecords.php:11 +#: application/controllers/Distances.php:11 +#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29 +#: application/controllers/Dxatlas.php:51 +#: application/controllers/Dxatlas.php:108 +#: application/controllers/Dxcalendar.php:8 +#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23 +#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 +#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 +#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:353 +#: application/controllers/Eqsl.php:420 application/controllers/Eqsl.php:436 +#: application/controllers/Eqsl.php:497 application/controllers/Hamsat.php:13 +#: application/controllers/Kmlexport.php:18 +#: application/controllers/Kmlexport.php:33 +#: application/controllers/Labels.php:26 +#: application/controllers/Logbookadvanced.php:16 +#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 +#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 +#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 +#: application/controllers/Notes.php:10 application/controllers/Options.php:15 +#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 +#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 +#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 +#: application/controllers/Qso.php:9 application/controllers/Qso.php:19 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:600 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Reg1test.php:18 +#: application/controllers/Reg1test.php:63 +#: application/controllers/Reg1test.php:102 +#: application/controllers/Reg1test.php:130 +#: application/controllers/Reg1test.php:164 +#: application/controllers/Satellite.php:18 +#: application/controllers/Satellite.php:37 +#: application/controllers/Satellite.php:44 +#: application/controllers/Satellite.php:53 +#: application/controllers/Satellite.php:72 +#: application/controllers/Satellite.php:87 +#: application/controllers/Satellite.php:95 +#: application/controllers/Satellite.php:103 +#: application/controllers/Satellite.php:117 +#: application/controllers/Satellite.php:135 +#: application/controllers/Satellite.php:146 +#: application/controllers/Satellite.php:162 +#: application/controllers/Satellite.php:190 +#: application/controllers/Satellite.php:201 +#: application/controllers/Satellite.php:223 +#: application/controllers/Satellite.php:236 +#: application/controllers/Satellite.php:244 +#: application/controllers/Sattimers.php:9 +#: application/controllers/Search.php:13 +#: application/controllers/Simplefle.php:7 +#: application/controllers/Station.php:17 +#: application/controllers/Stationsetup.php:15 +#: application/controllers/Themes.php:17 +#: application/controllers/Timeline.php:10 +#: application/controllers/Timeplotter.php:11 +#: application/controllers/Update.php:24 application/controllers/Update.php:273 +#: application/controllers/Update.php:284 +#: application/controllers/Update.php:295 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 +#: application/controllers/User_options.php:9 +msgid "You're not allowed to do that!" +msgstr "不能这么做!" + +#: application/controllers/Accumulated.php:19 +#: application/views/interface_assets/header.php:152 msgid "Accumulated Statistics" msgstr "累积统计" @@ -30,24 +125,26 @@ msgid "Activated Gridsquare Map" msgstr "激活的网格" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:910 -#: application/controllers/Awards.php:942 +#: application/controllers/Awards.php:919 +#: application/controllers/Awards.php:951 #: application/controllers/Gridmap.php:31 -#: application/controllers/Visitor.php:374 -#: application/views/activators/index.php:101 +#: application/controllers/Visitor.php:385 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: application/views/visitor/layout/footer.php:22 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "网格" #: application/controllers/Activated_gridmap.php:32 #: application/controllers/Gridmap.php:32 -#: application/controllers/Visitor.php:375 +#: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "已确认的网格" #: application/controllers/Activated_gridmap.php:33 #: application/controllers/Gridmap.php:33 -#: application/controllers/Visitor.php:376 +#: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "未确认的网格" @@ -56,12 +153,13 @@ msgid "Total gridsquares activated" msgstr "总激活的网格" #: application/controllers/Activators.php:20 -#: application/views/activators/index.php:2 +#: application/views/activators/index.php:5 #: application/views/interface_assets/header.php:142 msgid "Gridsquare Activators" msgstr "网格激活者" #: application/controllers/Activatorsmap.php:17 +#: application/views/activators/index.php:2 msgid "Activators Map" msgstr "激活者地图" @@ -78,7 +176,7 @@ msgid "ADIF Export" msgstr "ADIF 导出" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:388 msgid "ADIF Import / Export" msgstr "ADIF 导入/导出" @@ -91,20 +189,25 @@ msgstr "ADIF 导入" msgid "Unsupported Filetype" msgstr "文件类型不支持" -#: application/controllers/Adif.php:245 +#: application/controllers/Adif.php:240 +#: application/views/adif/import_failed.php:12 +msgid "ADIF Import failed!" +msgstr "ADIF 导入失败!" + +#: application/controllers/Adif.php:254 msgid "Station Profile not valid for User" msgstr "用户台站信息无效" -#: application/controllers/Adif.php:252 +#: application/controllers/Adif.php:261 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "ADIF 已导入" -#: application/controllers/Adif.php:263 +#: application/controllers/Adif.php:272 msgid "DCL Import" msgstr "导入 DCL" -#: application/controllers/Adif.php:319 +#: application/controllers/Adif.php:328 msgid "DCL Data Imported" msgstr "DCL 数据已导入" @@ -134,25 +237,8 @@ msgstr "API Key %s 的说明信息已更新。" msgid "API Key %s has been deleted" msgstr "API Key %s 已删除" -#: application/controllers/Api.php:118 -msgid "Key Disabled" -msgstr "Key 已禁用" - -#: application/controllers/Api.php:118 -msgid "No Key Found" -msgstr "Key 不存在" - -#: application/controllers/Api.php:120 -msgid "Key Invalid - either not found or disabled" -msgstr "Key 无效(未找到或已禁用)" - -#: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 -msgid "Valid" -msgstr "有效" - #: application/controllers/Awards.php:22 -#: application/views/interface_assets/header.php:158 +#: application/views/interface_assets/header.php:160 #: application/views/qso/edit_ajax.php:35 msgid "Awards" msgstr "奖项" @@ -167,12 +253,13 @@ msgstr "奖项" #: application/controllers/Awards.php:652 #: application/controllers/Awards.php:714 #: application/controllers/Awards.php:776 -#: application/controllers/Awards.php:847 -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:930 -#: application/controllers/Awards.php:1125 -#: application/controllers/Awards.php:1615 -#: application/controllers/Awards.php:1755 +#: application/controllers/Awards.php:856 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:939 +#: application/controllers/Awards.php:1140 +#: application/controllers/Awards.php:1639 +#: application/controllers/Awards.php:1779 +#: application/controllers/Awards.php:1908 #, php-format msgid "Awards - %s" msgstr "奖项 - %s" @@ -180,13 +267,13 @@ msgstr "奖项 - %s" #: application/controllers/Awards.php:92 #: application/views/awards/dok/index.php:149 #: application/views/bands/index.php:47 -#: application/views/contesting/index.php:170 -#: application/views/interface_assets/header.php:194 -#: application/views/logbookadvanced/index.php:613 +#: application/views/contesting/index.php:53 +#: application/views/interface_assets/header.php:198 +#: application/views/logbookadvanced/index.php:641 #: application/views/logbookadvanced/useroptions.php:130 -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:264 -#: application/views/qso/index.php:508 application/views/user/edit.php:603 -#: application/views/view_log/qso.php:351 +#: application/views/qso/edit_ajax.php:388 application/views/qso/index.php:264 +#: application/views/qso/index.php:518 application/views/user/edit.php:603 +#: application/views/view_log/qso.php:354 msgid "DOK" msgstr "DOK" @@ -194,15 +281,15 @@ msgstr "DOK" #: application/views/bandmap/list.php:112 application/views/bands/index.php:48 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 -#: application/views/interface_assets/header.php:164 +#: application/views/interface_assets/header.php:166 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:145 -#: application/views/logbookadvanced/index.php:580 +#: application/views/logbookadvanced/index.php:156 +#: application/views/logbookadvanced/index.php:608 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 -#: application/views/lotw_views/index.php:40 +#: application/views/lotw_views/index.php:36 #: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 #: application/views/search/cqzones_result.php:15 #: application/views/search/result.php:27 @@ -217,12 +304,12 @@ msgid "Awards - WAJA" msgstr "奖项 - WAJA" #: application/controllers/Awards.php:327 application/views/bands/index.php:51 -#: application/views/interface_assets/header.php:210 +#: application/views/interface_assets/header.php:214 msgid "JCC" msgstr "JCC" #: application/controllers/Awards.php:375 application/views/bands/index.php:57 -#: application/views/interface_assets/header.php:170 +#: application/views/interface_assets/header.php:172 msgid "VUCC" msgstr "VUCC" @@ -231,15 +318,20 @@ msgid "Log View - VUCC" msgstr "日志视图 - VUCC" #: application/controllers/Awards.php:453 -#: application/controllers/Timeline.php:92 -#: application/controllers/Timeline.php:95 -#: application/controllers/Timeline.php:98 -#: application/controllers/Timeline.php:101 -#: application/controllers/Timeline.php:104 -#: application/controllers/Timeline.php:107 +#: application/controllers/Distancerecords.php:59 +#: application/controllers/Timeline.php:105 +#: application/controllers/Timeline.php:108 +#: application/controllers/Timeline.php:111 +#: application/controllers/Timeline.php:114 +#: application/controllers/Timeline.php:117 +#: application/controllers/Timeline.php:120 msgid "Log View" msgstr "日志视图" +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr " 并且波段为 " + #: application/controllers/Awards.php:457 msgid " and sat " msgstr " 并且卫星 " @@ -261,12 +353,12 @@ msgid " and " msgstr " 并且 " #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1289 #: application/views/awards/index.php:8 application/views/bands/index.php:55 #: application/views/dashboard/index.php:9 -#: application/views/interface_assets/header.php:178 -#: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:259 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -274,10 +366,10 @@ msgstr " 并且 " #: application/views/qslcard/searchresult.php:49 #: application/views/qslcard/searchresult.php:65 #: application/views/qslcard/searchresult.php:81 -#: application/views/qso/components/previous_contacts.php:83 -#: application/views/qso/edit_ajax.php:336 +#: application/views/qso/components/previous_contacts.php:82 +#: application/views/qso/edit_ajax.php:363 #: application/views/search/search_result_ajax.php:9 -#: application/views/station_profile/edit.php:216 +#: application/views/station_profile/edit.php:243 #: application/views/user/edit.php:234 application/views/user/edit.php:256 #: application/views/user/edit.php:278 application/views/user/edit.php:300 #: application/views/user/edit.php:323 @@ -287,18 +379,18 @@ msgid "SOTA" msgstr "SOTA" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1290 #: application/views/bands/index.php:60 #: application/views/dashboard/index.php:10 -#: application/views/interface_assets/header.php:172 -#: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:279 +#: application/views/interface_assets/header.php:176 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/index.php:290 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 -#: application/views/qso/components/previous_contacts.php:84 -#: application/views/qso/edit_ajax.php:341 +#: application/views/qso/components/previous_contacts.php:83 +#: application/views/qso/edit_ajax.php:368 #: application/views/search/search_result_ajax.php:10 -#: application/views/station_profile/edit.php:229 +#: application/views/station_profile/edit.php:256 #: application/views/user/edit.php:235 application/views/user/edit.php:257 #: application/views/user/edit.php:279 application/views/user/edit.php:301 #: application/views/user/edit.php:324 @@ -307,18 +399,18 @@ msgid "WWFF" msgstr "WWFF" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1291 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 -#: application/views/interface_assets/header.php:182 +#: application/views/interface_assets/header.php:186 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:274 +#: application/views/logbookadvanced/index.php:623 #: application/views/logbookadvanced/useroptions.php:106 -#: application/views/qso/components/previous_contacts.php:85 -#: application/views/qso/edit_ajax.php:346 +#: application/views/qso/components/previous_contacts.php:84 +#: application/views/qso/edit_ajax.php:373 #: application/views/search/search_result_ajax.php:11 -#: application/views/station_profile/edit.php:242 +#: application/views/station_profile/edit.php:269 #: application/views/user/edit.php:236 application/views/user/edit.php:258 #: application/views/user/edit.php:280 application/views/user/edit.php:302 #: application/views/user/edit.php:325 @@ -337,7 +429,7 @@ msgid "Worked All States (WAS)" msgstr "通联全部州奖(WAS)" #: application/controllers/Awards.php:714 application/views/bands/index.php:53 -#: application/views/interface_assets/header.php:188 +#: application/views/interface_assets/header.php:192 msgid "RAC" msgstr "RAC" @@ -345,74 +437,80 @@ msgstr "RAC" msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:847 +#: application/controllers/Awards.php:856 msgid "IOTA (Island On The Air)" msgstr "IOTA(空中岛屿)" -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:872 -#: application/views/interface_assets/header.php:230 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 +#: application/views/interface_assets/header.php:234 msgid "US Counties" msgstr "美国各县" -#: application/controllers/Awards.php:887 +#: application/controllers/Awards.php:896 msgid "Log View - Counties" msgstr "日志视图 - 县(美国)" -#: application/controllers/Awards.php:894 +#: application/controllers/Awards.php:903 msgid "Awards - " msgstr "奖项 - " -#: application/controllers/Awards.php:911 -#: application/controllers/Awards.php:943 +#: application/controllers/Awards.php:920 +#: application/controllers/Awards.php:952 msgid "Gridsquares worked" msgstr "已通联的网格" -#: application/controllers/Awards.php:912 -#: application/controllers/Awards.php:944 +#: application/controllers/Awards.php:921 +#: application/controllers/Awards.php:953 msgid "Gridsquares confirmed on LoTW" msgstr "在 LoTW 上确认的网格" -#: application/controllers/Awards.php:913 -#: application/controllers/Awards.php:945 +#: application/controllers/Awards.php:922 +#: application/controllers/Awards.php:954 msgid "Gridsquares confirmed by paper QSL" msgstr "通过纸质 QSL 确认的网格" -#: application/controllers/Awards.php:930 +#: application/controllers/Awards.php:939 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish 纪念奖(FFMA)" -#: application/controllers/Awards.php:1125 -#: application/views/interface_assets/header.php:168 +#: application/controllers/Awards.php:1140 +#: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1143 +#: application/controllers/Awards.php:1158 msgid "Awards - SIG - " msgstr "奖项 - SIG - " -#: application/controllers/Awards.php:1755 -#: application/views/awards/itu/index.php:18 +#: application/controllers/Awards.php:1779 +#: application/views/awards/itu/index.php:20 msgid "ITU Zones" msgstr "ITU 分区" +#: application/controllers/Awards.php:1908 +#: application/views/awards/wac/index.php:8 +#: application/views/interface_assets/header.php:174 +msgid "Worked All Continents (WAC)" +msgstr "通联世界大洲奖(WAC)" + #: application/controllers/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:284 msgid "Backup" msgstr "备份" -#: application/controllers/Backup.php:48 +#: application/controllers/Backup.php:50 msgid "ADIF - Backup" msgstr "ADIF - 备份" -#: application/controllers/Backup.php:80 +#: application/controllers/Backup.php:84 msgid "Notes - Backup" msgstr "笔记 - 备份" #: application/controllers/Band.php:25 application/views/bands/index.php:28 #: application/views/bands/index.php:32 -#: application/views/interface_assets/header.php:379 +#: application/views/interface_assets/header.php:383 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -428,8 +526,8 @@ msgstr "编辑波段" #: application/controllers/Bandmap.php:28 #: application/controllers/Bandmap.php:69 -#: application/controllers/Options.php:137 -#: application/controllers/Options.php:148 +#: application/controllers/Options.php:145 +#: application/controllers/Options.php:156 #: application/views/options/sidebar.php:10 msgid "DXCluster" msgstr "DXCluster" @@ -439,7 +537,7 @@ msgid "Export Cabrillo" msgstr "导出 Cabrillo" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:396 +#: application/views/interface_assets/header.php:402 msgid "CFD Export" msgstr "CFD 导出" @@ -456,7 +554,7 @@ msgid "No user has configured Clublog." msgstr "Clublog 未配置用户账户。" #: application/controllers/Contestcalendar.php:19 -#: application/views/interface_assets/header.php:247 +#: application/views/interface_assets/header.php:251 msgid "Contest Calendar" msgstr "竞赛日志" @@ -465,38 +563,66 @@ msgstr "竞赛日志" msgid "Contest Logging" msgstr "竞赛日志" -#: application/controllers/Contesting.php:112 -#: application/views/interface_assets/header.php:274 +#: application/controllers/Contesting.php:113 +#: application/views/interface_assets/header.php:278 msgid "Contests" msgstr "比赛" -#: application/controllers/Contesting.php:126 +#: application/controllers/Contesting.php:127 msgid "Update Contest" msgstr "更新竞赛" #: application/controllers/Continents.php:25 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:57 -#: application/views/interface_assets/header.php:154 +#: application/views/interface_assets/header.php:156 msgid "Continents" msgstr "大陆" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:284 +#: application/views/interface_assets/header.php:288 msgid "Cron Manager" msgstr "Cron 管理器" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:154 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "编辑 Cron" +#: application/controllers/Cron.php:274 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "正常" + +#: application/controllers/Cron.php:278 +#, php-format +msgid "" +"Last run occurred more than %s seconds ago.%sPlease check your master cron! " +"It should run every minute (* * * * *)." +msgstr "" +"上次执行是 %s 秒之前。 %s 请检查主 Cron 任务,应当设置为每分钟执行 (* * * * " +"*)。" + +#: application/controllers/Cron.php:281 +#, php-format +msgid "" +"Last run occurred more than %s minutes ago.%sSeems like your Mastercron " +"isn't running!%sIt should run every minute (* * * * *)." +msgstr "" +"上次执行是 %s 分钟之前。 %s 您的 Cron 任务似乎没有配置好,%s 它应当设置为每分" +"钟执行 (* * * * *)。" + +#: application/controllers/Cron.php:286 application/views/cron/index.php:29 +msgctxt "Master Cron" +msgid "Not running" +msgstr "未运行" + #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:392 +#: application/views/interface_assets/header.php:396 msgid "SOTA CSV Export" msgstr "SOTA CSV 导出" -#: application/controllers/Dashboard.php:108 -#: application/controllers/Visitor.php:132 +#: application/controllers/Dashboard.php:123 +#: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "仪表板" @@ -545,6 +671,12 @@ msgstr "" msgid "File Migration failed. Please check the Error Log." msgstr "文件迁移失败。请检查错误日志。" +#: application/controllers/Distancerecords.php:42 +#: application/controllers/Distancerecords.php:59 +#: application/views/interface_assets/header.php:146 +msgid "Satellite Distance Records" +msgstr "卫星距离记录" + #: application/controllers/Distances.php:17 #: application/views/distances/index.php:5 #: application/views/distances/index.php:8 @@ -552,27 +684,31 @@ msgstr "文件迁移失败。请检查错误日志。" msgid "Distances Worked" msgstr "距离" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 #: application/views/distances/index.php:15 msgid "QSOs with" msgstr "QSO 与" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 msgid "and band" msgstr "和波段" +#: application/controllers/Distances.php:83 +msgid "and propagation" +msgstr "和传播方式" + #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:394 msgid "DX Atlas Gridsquare Export" msgstr "DX Atlas Gridsquare 导出" #: application/controllers/Dxcalendar.php:10 -#: application/views/interface_assets/header.php:245 +#: application/views/interface_assets/header.php:249 msgid "DX Calendar" msgstr "DX 日志" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:325 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -590,19 +726,19 @@ msgstr "eQSL 导入信息" msgid "eQSL QSO Upload" msgstr "eQSL QSO 上传" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:424 msgid "eQSL Tools" msgstr "eQSL 工具" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid " / Errors: " msgstr " / 错误: " -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid "Successfully downloaded: " msgstr "下载成功: " -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:481 msgid "eQSL Card Image Download" msgstr "eQSL 卡片图像下载" @@ -612,7 +748,7 @@ msgid "Gridsquare Map" msgstr "网格地图" #: application/controllers/Gridmap.php:34 -#: application/controllers/Visitor.php:377 +#: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "通联网格总数" @@ -631,7 +767,7 @@ msgid "No QSOs found to upload." msgstr "无 QSO 可供上传。" #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:392 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "KML 导出" @@ -644,59 +780,59 @@ msgstr "QSL 卡片标签" msgid "Create Label Type" msgstr "创建标签类型" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:402 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:406 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "标签名称" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:403 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:407 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 #: application/views/labels/index.php:76 msgid "Paper Type" msgstr "纸张类型" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:404 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:408 #: application/views/labels/index.php:42 application/views/labels/index.php:77 msgid "Measurement" msgstr "测量单位" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:405 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:409 msgid "Top Margin" msgstr "顶边距" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:406 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:410 msgid "Left Margin" msgstr "左边距" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:407 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:411 msgid "QSLs Horizontally" msgstr "QSL 水平数量" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:408 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:412 msgid "QSLs Vertically" msgstr "QSL 垂直数量" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:409 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:413 msgid "Horizontal Space" msgstr "水平空白间隔" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:410 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:414 msgid "Vertical Space" msgstr "垂直空白间隔" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:411 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:415 msgid "Label width" msgstr "标签宽度" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:412 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:416 msgid "Label height" msgstr "标签高度" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:413 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:417 msgid "Size of Font" msgstr "字体大小" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:414 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:418 msgid "Number of QSOs on label" msgstr "标签上的 QSO 数量" @@ -705,22 +841,22 @@ msgid "Create Paper Type" msgstr "创建纸张类型" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:461 +#: application/controllers/Labels.php:465 msgid "Paper Name" msgstr "纸张名称" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:462 +#: application/controllers/Labels.php:466 msgid "Paper Width" msgstr "纸张宽度" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:463 +#: application/controllers/Labels.php:467 msgid "Paper Height" msgstr "纸张高度" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:471 +#: application/controllers/Labels.php:475 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -747,27 +883,27 @@ msgstr "出现了错误,标签未生成,请检查标签和字体大小。" msgid "0 QSOs found for print!" msgstr "无 QSO 可供打印!" -#: application/controllers/Labels.php:391 +#: application/controllers/Labels.php:395 msgid "Edit Label" msgstr "编辑标签" -#: application/controllers/Labels.php:420 +#: application/controllers/Labels.php:424 msgid "Label was saved." msgstr "标签已保存。" -#: application/controllers/Labels.php:428 +#: application/controllers/Labels.php:432 msgid "Label was deleted." msgstr "标签已删除。" -#: application/controllers/Labels.php:450 +#: application/controllers/Labels.php:454 msgid "Edit Paper" msgstr "编辑纸张" -#: application/controllers/Labels.php:475 +#: application/controllers/Labels.php:479 msgid "Paper was saved." msgstr "纸张已保存。" -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "Paper was deleted." msgstr "纸张已删除。" @@ -789,20 +925,20 @@ msgstr "日志簿" msgid "Logbook" msgstr "日志簿" -#: application/controllers/Logbook.php:653 -#: application/controllers/Logbook.php:668 +#: application/controllers/Logbook.php:657 +#: application/controllers/Logbook.php:672 #: application/views/activated_gridmap/index.php:58 #: application/views/awards/dok/index.php:55 #: application/views/awards/dxcc/index.php:61 -#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/helvetia/index.php:55 #: application/views/awards/jcc/index.php:52 -#: application/views/awards/rac/index.php:45 +#: application/views/awards/rac/index.php:47 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:72 -#: application/views/awards/waja/index.php:53 -#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:55 +#: application/views/awards/was/index.php:55 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:568 +#: application/views/logbookadvanced/index.php:596 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -815,20 +951,21 @@ msgstr "日志簿" msgid "QSL" msgstr "QSL" -#: application/controllers/Logbook.php:656 +#: application/controllers/Logbook.php:660 #: application/views/activated_gridmap/index.php:66 -#: application/views/awards/cq/index.php:58 +#: application/views/awards/cq/index.php:60 #: application/views/awards/dok/index.php:59 #: application/views/awards/dxcc/index.php:65 -#: application/views/awards/helvetia/index.php:57 -#: application/views/awards/itu/index.php:58 +#: application/views/awards/helvetia/index.php:59 +#: application/views/awards/itu/index.php:60 #: application/views/awards/jcc/index.php:56 -#: application/views/awards/rac/index.php:49 +#: application/views/awards/rac/index.php:51 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:80 -#: application/views/awards/waja/index.php:57 -#: application/views/awards/was/index.php:57 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -836,28 +973,29 @@ msgstr "QSL" #: application/views/qslprint/qsolist.php:21 #: application/views/qslprint/qsolist.php:167 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:384 +#: application/views/qso/edit_ajax.php:411 #: application/views/search/result_search.php:22 #: application/views/search/search_result_ajax.php:298 #: application/views/search/search_result_ajax.php:313 #: application/views/timeline/index.php:60 application/views/user/edit.php:563 -#: application/views/user/edit.php:659 application/views/view_log/qso.php:408 +#: application/views/user/edit.php:659 application/views/view_log/qso.php:411 msgid "LoTW" msgstr "LoTW" -#: application/controllers/Logbook.php:659 +#: application/controllers/Logbook.php:663 #: application/views/activated_gridmap/index.php:74 -#: application/views/awards/cq/index.php:62 +#: application/views/awards/cq/index.php:64 #: application/views/awards/dok/index.php:63 #: application/views/awards/dxcc/index.php:69 -#: application/views/awards/helvetia/index.php:61 -#: application/views/awards/itu/index.php:62 +#: application/views/awards/helvetia/index.php:63 +#: application/views/awards/itu/index.php:64 #: application/views/awards/jcc/index.php:60 -#: application/views/awards/rac/index.php:53 +#: application/views/awards/rac/index.php:55 #: application/views/awards/wab/index.php:88 -#: application/views/awards/waja/index.php:61 -#: application/views/awards/was/index.php:61 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:52 +#: application/views/awards/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:117 #: application/views/logbookadvanced/useroptions.php:70 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 @@ -865,63 +1003,67 @@ msgstr "LoTW" #: application/views/qslprint/qsolist.php:18 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:151 -#: application/views/qso/edit_ajax.php:381 +#: application/views/qso/edit_ajax.php:408 #: application/views/search/result_search.php:16 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:273 -#: application/views/station_profile/edit.php:278 +#: application/views/station_profile/edit.php:305 #: application/views/timeline/index.php:64 application/views/user/edit.php:564 #: application/views/user/edit.php:667 application/views/user/edit.php:731 msgid "eQSL" msgstr "eQSL" -#: application/controllers/Logbook.php:665 +#: application/controllers/Logbook.php:669 #: application/views/awards/dok/index.php:71 #: application/views/awards/dxcc/index.php:77 #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 -#: application/views/awards/waja/index.php:69 +#: application/views/awards/waja/index.php:71 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 -#: application/views/station_profile/edit.php:325 +#: application/views/station_profile/edit.php:352 +#: application/views/timeline/index.php:68 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 -#: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/partial/log_ajax.php:85 +#: application/views/view_log/qso.php:426 msgid "Clublog" msgstr "Clublog" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1284 #: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:39 #: application/views/adif/dcl_success.php:33 -#: application/views/awards/cq/index.php:86 +#: application/views/awards/cq/index.php:88 #: application/views/awards/dok/index.php:91 #: application/views/awards/dxcc/index.php:162 -#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/helvetia/index.php:87 #: application/views/awards/iota/index.php:105 -#: application/views/awards/itu/index.php:86 +#: application/views/awards/itu/index.php:88 #: application/views/awards/jcc/index.php:88 -#: application/views/awards/rac/index.php:77 +#: application/views/awards/rac/index.php:79 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:53 -#: application/views/awards/waja/index.php:89 -#: application/views/awards/was/index.php:85 +#: application/views/awards/wac/index.php:110 +#: application/views/awards/waja/index.php:91 +#: application/views/awards/was/index.php:87 #: application/views/components/hamsat/table.php:30 -#: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:203 +#: application/views/contesting/index.php:108 +#: application/views/contesting/index.php:250 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 +#: 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/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:170 -#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/index.php:181 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -938,14 +1080,14 @@ msgstr "Clublog" #: application/views/qslcard/searchresult.php:76 #: application/views/qslprint/qslprint.php:24 #: application/views/qslprint/qsolist.php:9 -#: application/views/qso/components/previous_contacts.php:78 +#: application/views/qso/components/previous_contacts.php:77 #: application/views/qso/edit_ajax.php:119 application/views/qso/index.php:136 #: application/views/satellite/index.php:24 #: application/views/search/cqzones_result.php:10 #: application/views/search/lotw_unconfirmed_result.php:8 #: application/views/search/result_search.php:7 #: application/views/search/search_result_ajax.php:4 -#: application/views/simplefle/index.php:144 +#: application/views/simplefle/index.php:150 #: application/views/statistics/custom.php:60 #: application/views/statistics/custom_result.php:62 #: application/views/statistics/custom_result.php:88 @@ -957,17 +1099,17 @@ msgstr "Clublog" #: application/views/user/edit.php:295 application/views/user/edit.php:318 #: application/views/view_log/partial/log.php:9 #: application/views/view_log/partial/log_ajax.php:4 -#: application/views/view_log/qso.php:104 application/views/visitor/index.php:6 +#: application/views/view_log/qso.php:107 application/views/visitor/index.php:6 #: application/views/widgets/qsos.php:29 msgid "Mode" msgstr "模式" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1285 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:111 -#: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:547 +#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:251 +#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -976,25 +1118,25 @@ msgstr "模式" #: application/views/qslcard/searchresult.php:77 #: application/views/qslprint/qslprint.php:26 #: application/views/qslprint/qsolist.php:11 -#: application/views/qso/components/previous_contacts.php:79 +#: application/views/qso/components/previous_contacts.php:78 #: application/views/qso/edit_ajax.php:142 application/views/qso/index.php:177 #: application/views/search/search_result_ajax.php:5 -#: application/views/simplefle/index.php:145 +#: application/views/simplefle/index.php:151 #: application/views/user/edit.php:230 application/views/user/edit.php:252 #: application/views/user/edit.php:274 application/views/user/edit.php:296 #: application/views/user/edit.php:319 #: application/views/view_log/partial/log.php:10 #: application/views/view_log/partial/log_ajax.php:5 -#: application/views/view_log/qso.php:109 application/views/visitor/index.php:9 +#: application/views/view_log/qso.php:112 application/views/visitor/index.php:9 msgid "RST (S)" msgstr "信号报告(发)" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1286 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:550 +#: application/views/contesting/index.php:189 +#: application/views/contesting/index.php:252 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -1003,51 +1145,50 @@ msgstr "信号报告(发)" #: application/views/qslcard/searchresult.php:78 #: application/views/qslprint/qslprint.php:27 #: application/views/qslprint/qsolist.php:12 -#: application/views/qso/components/previous_contacts.php:80 +#: application/views/qso/components/previous_contacts.php:79 #: application/views/qso/edit_ajax.php:147 application/views/qso/index.php:182 #: application/views/search/search_result_ajax.php:6 -#: application/views/simplefle/index.php:146 +#: application/views/simplefle/index.php:152 #: application/views/user/edit.php:231 application/views/user/edit.php:253 #: application/views/user/edit.php:275 application/views/user/edit.php:297 #: application/views/user/edit.php:320 #: application/views/view_log/partial/log.php:11 #: application/views/view_log/partial/log_ajax.php:6 -#: application/views/view_log/qso.php:114 +#: application/views/view_log/qso.php:117 #: application/views/visitor/index.php:12 msgid "RST (R)" msgstr "信号报告(收)" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1287 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 #: application/views/qslcard/searchresult.php:47 #: application/views/qslcard/searchresult.php:63 #: application/views/qslcard/searchresult.php:79 -#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/components/previous_contacts.php:80 #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 -#: application/views/station_profile/index.php:43 #: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 -#: application/views/timeline/index.php:118 application/views/user/edit.php:232 +#: application/views/timeline/index.php:151 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 #: application/views/user/edit.php:298 application/views/user/edit.php:321 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:235 -#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:238 +#: application/views/view_log/qso.php:531 #: application/views/visitor/index.php:15 msgid "Country" msgstr "DXCC 实体" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1288 #: application/views/awards/iota/index.php:169 #: application/views/bands/index.php:50 application/views/dashboard/index.php:8 -#: application/views/interface_assets/header.php:180 +#: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1056,11 +1197,11 @@ msgstr "DXCC 实体" #: application/views/qslcard/searchresult.php:48 #: application/views/qslcard/searchresult.php:64 #: application/views/qslcard/searchresult.php:80 -#: application/views/qso/components/previous_contacts.php:82 -#: application/views/qso/edit_ajax.php:318 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 -#: application/views/timeline/index.php:202 application/views/user/edit.php:233 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:235 application/views/user/edit.php:233 #: application/views/user/edit.php:255 application/views/user/edit.php:277 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/view_log/partial/log_ajax.php:8 @@ -1068,17 +1209,17 @@ msgstr "DXCC 实体" msgid "IOTA" msgstr "IOTA" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1292 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:20 -#: application/views/awards/rac/index.php:141 -#: application/views/awards/was/index.php:149 -#: application/views/contesting/index.php:173 +#: application/views/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 +#: application/views/contesting/index.php:56 #: application/views/dashboard/index.php:12 -#: application/views/logbookadvanced/edit.php:20 -#: application/views/logbookadvanced/edit.php:64 -#: application/views/logbookadvanced/index.php:162 -#: application/views/logbookadvanced/index.php:583 +#: application/views/logbookadvanced/edit.php:21 +#: application/views/logbookadvanced/edit.php:66 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:611 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1086,9 +1227,9 @@ msgstr "IOTA" #: application/views/qslcard/searchresult.php:50 #: application/views/qslcard/searchresult.php:66 #: application/views/qslcard/searchresult.php:82 -#: application/views/qso/components/previous_contacts.php:86 +#: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 -#: application/views/timeline/index.php:177 application/views/user/edit.php:237 +#: application/views/timeline/index.php:210 application/views/user/edit.php:237 #: application/views/user/edit.php:259 application/views/user/edit.php:281 #: application/views/user/edit.php:303 application/views/user/edit.php:326 #: application/views/view_log/partial/log_ajax.php:12 @@ -1096,20 +1237,21 @@ msgstr "IOTA" msgid "State" msgstr "州" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1293 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:17 -#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:13 +#: application/views/distancerecords/index.php:20 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:166 -#: application/views/logbookadvanced/index.php:556 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1118,38 +1260,39 @@ msgstr "州" #: application/views/qslcard/searchresult.php:51 #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 -#: application/views/qso/components/previous_contacts.php:87 +#: application/views/qso/components/previous_contacts.php:86 #: application/views/qso/edit_ajax.php:156 application/views/qso/index.php:279 +#: application/views/satellite/pass.php:28 #: application/views/search/cqzones_result.php:12 #: application/views/search/result.php:33 #: application/views/search/search_result_ajax.php:13 -#: application/views/simplefle/index.php:147 -#: application/views/station_profile/index.php:44 +#: application/views/simplefle/index.php:153 #: application/views/stationsetup/stationsetup.php:125 -#: application/views/timeline/index.php:257 application/views/user/edit.php:130 +#: application/views/timeline/index.php:290 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 #: application/views/user/edit.php:327 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:518 #: application/views/visitor/index.php:27 msgid "Gridsquare" msgstr "网格坐标" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1294 #: application/views/activated_gridmap/index.php:108 #: application/views/awards/ffma/index.php:36 #: application/views/awards/gridmaster/index.php:35 #: 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/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/index.php:12 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 #: application/views/qslcard/searchresult.php:52 #: application/views/qslcard/searchresult.php:68 #: application/views/qslcard/searchresult.php:84 -#: application/views/qso/components/previous_contacts.php:88 +#: application/views/qso/components/previous_contacts.php:87 #: application/views/search/search_result_ajax.php:14 #: application/views/user/edit.php:239 application/views/user/edit.php:261 #: application/views/user/edit.php:283 application/views/user/edit.php:305 @@ -1159,32 +1302,33 @@ msgstr "网格坐标" msgid "Distance" msgstr "距离" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1295 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:8 -#: application/views/activators/index.php:7 +#: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 -#: application/views/awards/cq/index.php:72 +#: application/views/awards/cq/index.php:74 #: application/views/awards/dok/index.php:77 #: application/views/awards/dxcc/index.php:117 -#: application/views/awards/helvetia/index.php:71 +#: application/views/awards/helvetia/index.php:73 #: application/views/awards/iota/index.php:91 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:74 #: application/views/awards/jcc/index.php:74 #: application/views/awards/pota/index.php:35 -#: application/views/awards/rac/index.php:63 +#: application/views/awards/rac/index.php:65 #: application/views/awards/sig/qso_list.php:13 #: application/views/awards/sota/index.php:26 #: application/views/awards/vucc/index.php:21 #: application/views/awards/wab/index.php:22 -#: application/views/awards/waja/index.php:75 -#: application/views/awards/was/index.php:71 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/waja/index.php:77 +#: application/views/awards/was/index.php:73 #: application/views/awards/wwff/index.php:35 #: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:45 -#: application/views/contesting/index.php:70 -#: application/views/contesting/index.php:202 +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:249 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:549 application/views/dxatlas/index.php:31 @@ -1192,8 +1336,8 @@ msgstr "距离" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1211,13 +1355,13 @@ msgstr "距离" #: application/views/qslmanagement/index.php:24 #: application/views/qslprint/qslprint.php:25 #: application/views/qslprint/qsolist.php:10 -#: application/views/qso/components/previous_contacts.php:89 +#: application/views/qso/components/previous_contacts.php:88 #: application/views/qso/edit_ajax.php:83 application/views/qso/index.php:151 #: application/views/search/cqzones_result.php:11 #: application/views/search/lotw_unconfirmed_result.php:9 #: application/views/search/result_search.php:10 #: application/views/search/search_result_ajax.php:15 -#: application/views/simplefle/index.php:143 +#: application/views/simplefle/index.php:149 #: application/views/stationsetup/exportmapoptions.php:31 #: application/views/statistics/custom.php:53 #: application/views/statistics/custom_result.php:55 @@ -1235,72 +1379,71 @@ msgstr "距离" msgid "Band" msgstr "频段" -#: application/controllers/Logbook.php:1285 +#: application/controllers/Logbook.php:1296 #: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 -#: application/views/contesting/index.php:87 +#: application/views/contesting/index.php:138 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 #: application/views/qslcard/searchresult.php:70 #: application/views/qslcard/searchresult.php:86 -#: application/views/qso/components/previous_contacts.php:90 +#: application/views/qso/components/previous_contacts.php:89 #: application/views/qso/edit_ajax.php:71 application/views/qso/index.php:169 #: application/views/search/search_result_ajax.php:16 #: application/views/user/edit.php:228 application/views/user/edit.php:250 #: application/views/user/edit.php:272 application/views/user/edit.php:294 #: application/views/user/edit.php:317 #: application/views/view_log/partial/log_ajax.php:16 -#: application/views/view_log/qso.php:93 application/views/visitor/index.php:36 +#: application/views/view_log/qso.php:94 application/views/visitor/index.php:36 msgid "Frequency" msgstr "频率" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1297 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:283 -#: application/views/logbookadvanced/index.php:598 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:626 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 #: application/views/qslcard/searchresult.php:87 -#: application/views/qso/components/previous_contacts.php:91 +#: application/views/qso/components/previous_contacts.php:90 #: application/views/search/search_result_ajax.php:17 #: application/views/simplefle/index.php:112 #: application/views/user/edit.php:240 application/views/user/edit.php:262 #: application/views/user/edit.php:284 application/views/user/edit.php:306 #: application/views/user/edit.php:329 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:538 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "操作员" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1318 #: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:669 +#: application/views/interface_assets/footer.php:675 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:154 +#: application/views/logbookadvanced/index.php:165 #: application/views/lookup/index.php:31 -#: application/views/lotw_views/index.php:56 +#: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 #: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 -#: application/views/station_profile/create.php:73 -#: application/views/station_profile/edit.php:78 -#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 #: application/views/stationsetup/stationsetup.php:150 -#: application/views/timeline/index.php:134 +#: application/views/timeline/index.php:167 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 -#: application/views/view_log/qso.php:236 -#: application/views/view_log/qso.php:529 +#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:532 msgid "Deleted DXCC" msgstr "删除 DXCC 实体" @@ -1314,7 +1457,7 @@ msgstr "快速查找" #: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83 #: application/controllers/Lotw.php:125 application/views/adif/import.php:27 -#: application/views/interface_assets/header.php:423 +#: application/views/interface_assets/header.php:429 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1322,28 +1465,57 @@ msgstr "快速查找" msgid "Logbook of the World" msgstr "Logbook of the World(LoTW)" -#: application/controllers/Lotw.php:610 +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "呼号证书已导入。" + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "呼号证书已更新。" + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "呼号证书已删除。" + +#: application/controllers/Lotw.php:413 +#, 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 "" +"文件 %s 中未找到呼号证书,如果文件名包含了 'key-only' 则此文件大概率是呼号证" +"书的申请文件,LoTW 的工作人员依此来发放正式的呼号证书。" + +#: application/controllers/Lotw.php:617 msgid "LoTW ADIF Information" msgstr "LoTW ADIF 信息" -#: application/controllers/Lotw.php:718 +#: application/controllers/Lotw.php:725 msgid "LoTW ADIF Import" msgstr "LoTW ADIF 导入" -#: application/controllers/Lotw.php:830 +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "未配置 LoTW 登录信息!" + +#: application/controllers/Lotw.php:837 msgid "LoTW .TQ8 Upload" msgstr "LoTW .TQ8 导入" -#: application/controllers/Lotw.php:927 application/controllers/Lotw.php:932 +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "LoTW 用户名/密码错误。" + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 msgid "LoTW .TQ8 Sent" msgstr "LoTW .TQ8 已发送" -#: application/controllers/Lotw.php:939 +#: application/controllers/Lotw.php:946 msgid "LoTW .TQ8 Not Sent" msgstr "LoTW .TQ8 未发送" #: application/controllers/Mode.php:25 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:276 #: application/views/mode/index.php:15 msgid "Modes" msgstr "模式" @@ -1352,28 +1524,28 @@ msgstr "模式" msgid "Edit Mode" msgstr "编辑模式" -#: application/controllers/Notes.php:19 +#: application/controllers/Notes.php:18 #: application/views/interface_assets/header.php:128 #: application/views/notes/add.php:9 application/views/notes/edit.php:10 #: application/views/notes/main.php:5 application/views/notes/main.php:8 #: application/views/notes/view.php:6 application/views/notes/view.php:9 #: application/views/qso/edit_ajax.php:36 -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:38 -#: application/views/qso/index.php:541 application/views/qso/index.php:586 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:590 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:38 +#: application/views/qso/index.php:563 application/views/qso/index.php:608 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:593 msgid "Notes" msgstr "笔记" -#: application/controllers/Notes.php:38 +#: application/controllers/Notes.php:37 msgid "Add Notes" msgstr "添加笔记" -#: application/controllers/Notes.php:58 +#: application/controllers/Notes.php:64 #: application/views/oqrs/showrequests.php:88 msgid "Note" msgstr "注解" -#: application/controllers/Notes.php:79 application/views/notes/edit.php:7 +#: application/controllers/Notes.php:92 application/views/notes/edit.php:7 #: application/views/notes/view.php:19 msgid "Edit Note" msgstr "编辑笔记" @@ -1381,16 +1553,16 @@ msgstr "编辑笔记" #: application/controllers/Options.php:31 #: application/controllers/Options.php:41 #: application/controllers/Options.php:56 -#: application/controllers/Options.php:136 -#: application/controllers/Options.php:147 -#: application/controllers/Options.php:184 -#: application/controllers/Options.php:195 -#: application/controllers/Options.php:228 -#: application/controllers/Options.php:239 -#: application/controllers/Options.php:309 -#: application/controllers/Options.php:319 -#: application/controllers/Options.php:387 -#: application/controllers/Options.php:397 +#: application/controllers/Options.php:144 +#: application/controllers/Options.php:155 +#: application/controllers/Options.php:192 +#: application/controllers/Options.php:203 +#: application/controllers/Options.php:236 +#: application/controllers/Options.php:247 +#: application/controllers/Options.php:317 +#: application/controllers/Options.php:327 +#: application/controllers/Options.php:395 +#: application/controllers/Options.php:405 msgid "Wavelog Options" msgstr "Wavelog 设置" @@ -1407,95 +1579,96 @@ msgstr "外观" #: application/controllers/Options.php:110 #: application/controllers/Options.php:118 #: application/controllers/Options.php:126 +#: application/controllers/Options.php:134 msgid "Options saved" msgstr "设置已保存" -#: application/controllers/Options.php:165 +#: application/controllers/Options.php:173 msgid "de continent changed to " msgstr "大洲已被更新为 " -#: application/controllers/Options.php:170 +#: application/controllers/Options.php:178 msgid "Maximum age of spots changed to " msgstr "报告的最长寿命为 " -#: application/controllers/Options.php:175 +#: application/controllers/Options.php:183 msgid "DXCluster Cache URL changed to " msgstr "DXCluster Cache 的网址已更换为: " -#: application/controllers/Options.php:185 -#: application/controllers/Options.php:196 +#: application/controllers/Options.php:193 +#: application/controllers/Options.php:204 msgid "Radio Settings" msgstr "电台设置" -#: application/controllers/Options.php:217 +#: application/controllers/Options.php:225 msgid "Radio Timeout Warning changed to " msgstr "无线电超时警告更改为 " -#: application/controllers/Options.php:229 -#: application/controllers/Options.php:240 +#: application/controllers/Options.php:237 +#: application/controllers/Options.php:248 #: application/views/options/sidebar.php:6 msgid "Email" msgstr "电子邮件" -#: application/controllers/Options.php:297 +#: application/controllers/Options.php:305 msgid "The settings were saved successfully." msgstr "设置已保存。" -#: application/controllers/Options.php:299 +#: application/controllers/Options.php:307 msgid "Something went wrong with saving the settings. Try again." msgstr "保存时出现问题,请重试。" -#: application/controllers/Options.php:310 -#: application/controllers/Options.php:320 +#: application/controllers/Options.php:318 +#: application/controllers/Options.php:328 #: application/views/options/sidebar.php:8 msgid "OQRS Options" msgstr "OQRS 设置" -#: application/controllers/Options.php:333 +#: application/controllers/Options.php:341 msgid "OQRS options have been saved." msgstr "OQRS 选项已保存。" -#: application/controllers/Options.php:373 -#: application/controllers/Options.php:378 +#: application/controllers/Options.php:381 +#: application/controllers/Options.php:386 msgid "Testmail failed. Something went wrong." msgstr "测试邮件发送失败,请检查设置。" -#: application/controllers/Options.php:375 +#: application/controllers/Options.php:383 msgid "Testmail sent. Email settings seem to be correct." msgstr "测试邮件已发送,电子邮件设置应该正常。" -#: application/controllers/Options.php:388 -#: application/controllers/Options.php:398 +#: application/controllers/Options.php:396 +#: application/controllers/Options.php:406 msgid "Version Info Settings" msgstr "版本设置" -#: application/controllers/Options.php:404 +#: application/controllers/Options.php:412 msgid "Version Info Header changed to" msgstr "版本信息的标题被更换为" -#: application/controllers/Options.php:408 +#: application/controllers/Options.php:416 msgid "Version Info Mode changed to" msgstr "版本信息模式切换为" -#: application/controllers/Options.php:413 +#: application/controllers/Options.php:421 msgid "Version Info Custom Text saved!" msgstr "版本信息自定义文字已保存!" -#: application/controllers/Options.php:424 +#: application/controllers/Options.php:432 msgid "Version Info will be shown to all users again" msgstr "版本信息将会重新向用户显示" -#: application/controllers/Options.php:432 +#: application/controllers/Options.php:440 msgid "Version Info will not be shown to any user" msgstr "版本信息不再会向用户显示" -#: application/controllers/Oqrs.php:22 application/controllers/Oqrs.php:61 -#: application/controllers/Oqrs.php:73 +#: application/controllers/Oqrs.php:46 application/controllers/Oqrs.php:85 +#: application/controllers/Oqrs.php:97 msgid "Log Search & OQRS" msgstr "查找日志 & OQRS" -#: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:413 +#: application/controllers/Oqrs.php:127 +#: application/views/interface_assets/header.php:419 msgid "OQRS Requests" msgstr "OQRS" @@ -1503,8 +1676,43 @@ msgstr "OQRS" msgid "QRB Calculator" msgstr "QRB 计算器" +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "纬度:%s,经度:%s" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "%s 和 %s 的距离是 %s 英里。" + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "%s 和 %s 的距离是 %s 海里。" + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "%s 和 %s 的距离是 %s 公里。" + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "方位角是 %s。" + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "负数纬度表示南纬,负数经度表示西经。" + #: application/controllers/Qrz.php:173 -#: application/views/interface_assets/header.php:426 +#: application/views/interface_assets/header.php:432 msgid "QRZ Logbook" msgstr "QRZ 日志簿" @@ -1516,8 +1724,8 @@ msgstr "QRZ QSL 导入" msgid "QRZ ADIF Information" msgstr "QRZ ADIF 信息" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:261 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:277 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1540,26 +1748,26 @@ msgid "Add QSO" msgstr "添加 QSO" #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Hardware Interfaces" msgstr "硬件接口" #: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 +#: application/views/contesting/index.php:143 #: application/views/qso/index.php:312 msgid "Radio" msgstr "电台" #: application/controllers/Radio.php:50 msgid "Timestamp" -msgstr "" +msgstr "时间戳" #: application/controllers/Radio.php:52 -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 +#: application/views/logbookadvanced/index.php:550 +#: application/views/lotw_views/index.php:43 #: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 +#: application/views/simplefle/index.php:177 #: application/views/stationsetup/exportmapoptions.php:5 #: application/views/statistics/custom.php:31 #: application/views/statistics/custom_result.php:33 @@ -1567,54 +1775,56 @@ msgid "Options" msgstr "设置" #: application/controllers/Radio.php:90 -#: application/views/contesting/index.php:96 +#: application/views/contesting/index.php:147 #: application/views/qso/index.php:316 msgid "last updated" -msgstr "" +msgstr "上次更新" #: application/controllers/Radio.php:97 application/controllers/Radio.php:100 msgid "Set as default radio" -msgstr "" +msgstr "设置为默认电台" #: application/controllers/Radio.php:102 msgid "Default (click to release)" -msgstr "" +msgstr "默认(点击释放)" #: application/controllers/Radio.php:105 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2323 -#: application/views/interface_assets/footer.php:2341 -#: application/views/interface_assets/footer.php:2362 -#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2337 +#: application/views/interface_assets/footer.php:2355 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 #: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:514 -#: application/views/lotw_views/index.php:118 +#: application/views/logbookadvanced/index.php:542 +#: application/views/lotw_views/index.php:114 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 #: application/views/qslcard/index.php:65 #: application/views/satellite/edit.php:40 #: application/views/satellite/index.php:26 #: application/views/search/stored_queries.php:22 -#: application/views/station_profile/index.php:55 -#: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 #: application/views/stationsetup/stationsetup.php:137 #: application/views/stationsetup/stationsetup.php:192 -#: application/views/themes/index.php:107 application/views/user/main.php:54 -#: application/views/view_log/qso.php:613 +#: application/views/themes/index.php:107 application/views/user/index.php:57 +#: application/views/view_log/qso.php:616 msgid "Delete" msgstr "删除" #: application/controllers/Radio.php:111 msgid "No CAT interfaced radios found." -msgstr "" +msgstr "无 CAT 控制电台。" -#: application/controllers/Satellite.php:37 +#: application/controllers/Reg1test.php:25 +msgid "Export EDI" +msgstr "导出 EDI" + +#: application/controllers/Satellite.php:39 msgid "Create Satellite" msgstr "创建卫星信息" -#: application/controllers/Satellite.php:60 +#: application/controllers/Satellite.php:66 msgid "Edit Satellite" msgstr "编辑卫星" @@ -1627,10 +1837,7 @@ msgstr "您尚未创建台站地址,请前往 %s 创建!" #: application/views/awards/counties/index.php:8 #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:19 -#: application/views/awards/was/index.php:21 -#: application/views/dashboard/index.php:64 -#: application/views/dashboard/index.php:73 -#: application/views/dashboard/index.php:82 +#: application/views/awards/was/index.php:23 #: application/views/simplefle/index.php:16 msgid "here" msgstr "这里" @@ -1642,9 +1849,10 @@ msgstr "卫星时钟" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:336 -#: application/views/interface_assets/header.php:343 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:340 +#: application/views/interface_assets/header.php:347 +#: application/views/logbookadvanced/index.php:538 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1658,8 +1866,8 @@ msgstr "卫星时钟" #: application/views/search/lotw_unconfirmed.php:37 #: application/views/search/main.php:4 application/views/search/main.php:12 #: application/views/search/main.php:33 -#: application/views/visitor/layout/header.php:99 -#: application/views/visitor/layout/header.php:100 +#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:98 msgid "Search" msgstr "搜索" @@ -1677,15 +1885,23 @@ msgid "" "date" msgstr "QSO 尚未在 LoTW 确认,但已在 QSO 日期后上传呼号" -#: application/controllers/Station.php:35 -#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/controllers/Station.php:36 +#: application/controllers/Stationsetup.php:226 +msgid "Create Station Location" +msgstr "创建台站地址" + +#: application/controllers/Station.php:51 +msgid "Edit Station Location: " +msgstr "修改台站地址: " + +#: application/controllers/Station.php:59 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 -#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/edit.php:19 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:427 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 @@ -1693,22 +1909,13 @@ msgstr "QSO 尚未在 LoTW 确认,但已在 QSO 日期后上传呼号" msgid "Station Location" msgstr "电台站地址" -#: application/controllers/Station.php:55 -#: application/controllers/Stationsetup.php:226 -msgid "Create Station Location" -msgstr "创建台站地址" - -#: application/controllers/Station.php:70 -msgid "Edit Station Location: " -msgstr "修改台站地址: " - -#: application/controllers/Station.php:92 +#: application/controllers/Station.php:73 msgid "Duplicate Station Location:" msgstr "台站地址重复:" #: application/controllers/Stationsetup.php:35 -#: application/views/interface_assets/header.php:377 -#: application/views/interface_assets/header.php:488 +#: application/views/interface_assets/header.php:381 +#: application/views/interface_assets/header.php:494 msgid "Station Setup" msgstr "设置台站" @@ -1726,7 +1933,7 @@ msgstr "不允许" #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 #: application/controllers/Stationsetup.php:436 -#: application/views/qso/index.php:608 +#: application/views/qso/index.php:630 msgid "Error" msgstr "错误" @@ -1758,9 +1965,10 @@ msgstr "错误,链接已正在使用!" #: application/views/options/appearance.php:83 #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 +#: application/views/options/appearance.php:110 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:259 -#: application/views/station_profile/edit.php:312 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 msgid "Disabled" @@ -1772,7 +1980,7 @@ msgid "Set as Active Logbook" msgstr "设置为正在使用的日志" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:486 +#: application/views/interface_assets/header.php:492 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1795,20 +2003,17 @@ msgid "Are you sure you want to delete the public slug?" msgstr "确定要删除此公开个性标识符?" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "" "Are you sure you want to make the following station the active station: " msgstr "确认将如下台站设为启用状态: " #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "设置启用" #: application/controllers/Stationsetup.php:351 -#: application/views/station_profile/index.php:71 #: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "启用" @@ -1817,54 +2022,45 @@ msgstr "启用" #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:28 -#: application/views/station_profile/index.php:76 #: application/views/stationsetup/stationsetup.php:161 -#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/user/index.php:90 application/views/user/index.php:92 msgid "QSO" msgstr "QSO" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 -#: application/views/cron/index.php:56 -#: application/views/interface_assets/footer.php:535 -#: application/views/interface_assets/footer.php:544 +#: application/views/cron/index.php:58 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 #: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:541 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 -#: application/views/station_profile/index.php:46 -#: application/views/station_profile/index.php:79 #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 -#: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/views/themes/index.php:104 application/views/user/index.php:52 msgid "Edit" msgstr "编辑" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:99 #: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "确认删除台站下的所有 QSO?" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:54 -#: application/views/station_profile/index.php:101 #: application/views/stationsetup/stationsetup.php:136 #: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "清空日志" #: application/controllers/Stationsetup.php:367 -#: application/views/station_profile/index.php:47 -#: application/views/station_profile/index.php:82 #: application/views/stationsetup/stationsetup.php:129 #: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "复制" #: application/controllers/Stationsetup.php:372 -#: application/views/station_profile/index.php:105 #: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "" @@ -1894,10 +2090,10 @@ msgstr "自定义统计" #: application/views/interface_assets/header.php:136 #: application/views/statistics/qsltable.php:5 msgid "QSL Statistics" -msgstr "QSL统计信息" +msgstr "QSL 统计信息" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:282 msgid "Themes" msgstr "主题" @@ -1909,14 +2105,14 @@ msgstr "创建个性化主题" msgid "Edit Theme" msgstr "编辑主题" -#: application/controllers/Timeline.php:17 -#: application/views/interface_assets/header.php:148 +#: application/controllers/Timeline.php:15 +#: application/views/interface_assets/header.php:150 #: application/views/timeline/index.php:2 msgid "Timeline" msgstr "时间线" #: application/controllers/Timeplotter.php:17 -#: application/views/interface_assets/header.php:152 +#: application/views/interface_assets/header.php:154 #: application/views/timeplotter/index.php:9 msgid "Timeplotter" msgstr "时间图" @@ -1957,58 +2153,54 @@ msgstr "DXCC 例外:" msgid "Dxcc Prefixes:" msgstr "DXCC 前缀:" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:268 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:272 msgid "User Accounts" msgstr "用户账户" -#: application/controllers/User.php:52 +#: application/controllers/User.php:76 msgid "Add User" msgstr "添加用户" -#: application/controllers/User.php:166 +#: application/controllers/User.php:190 msgid "Users" msgstr "用户" -#: application/controllers/User.php:240 application/controllers/User.php:673 +#: application/controllers/User.php:264 application/controllers/User.php:697 msgid "Edit User" msgstr "编辑用户" -#: application/controllers/User.php:665 application/controllers/User.php:668 -#: application/views/user/main.php:3 application/views/user/main.php:46 +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 msgid "User" msgstr "用户" -#: application/controllers/User.php:665 application/controllers/User.php:668 +#: application/controllers/User.php:689 application/controllers/User.php:692 msgid "edited" msgstr "已编辑" -#: application/controllers/User.php:722 +#: application/controllers/User.php:746 msgid "Profile" msgstr "个人资料" -#: application/controllers/User.php:779 +#: application/controllers/User.php:803 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "恭喜您,Wavelog 已成功安装,您可以登录并开始通联了。" -#: application/controllers/User.php:843 application/controllers/User.php:853 +#: application/controllers/User.php:867 application/controllers/User.php:877 msgid "Login failed. Try again." msgstr "登录失败,请重试。" -#: application/controllers/User.php:860 -#: application/views/interface_assets/header.php:356 -#: application/views/user/login.php:89 -#: application/views/visitor/layout/header.php:88 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:360 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "登录" -#: application/controllers/User.php:868 -msgid "User logged in" -msgstr "已登录用户" - -#: application/controllers/User.php:899 +#: application/controllers/User.php:922 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " @@ -2017,72 +2209,100 @@ msgstr "" "抱歉,本站正处于维护模式。如果本消息持续显示,请联系本站管理员。当前只允许管" "理员登入。" -#: application/controllers/User.php:902 +#: application/controllers/User.php:925 msgid "Incorrect username or password!" msgstr "用户名或密码错误!" -#: application/controllers/User.php:919 +#: application/controllers/User.php:942 #, php-format msgid "User %s logged out." msgstr "用户 '%s' 已登出。" -#: application/controllers/User.php:933 +#: application/controllers/User.php:956 msgid "Password Reset is disabled on the Demo!" msgstr "在测试实例上,密码重置已禁用!" -#: application/controllers/User.php:946 +#: application/controllers/User.php:969 msgid "Forgot Password" msgstr "忘记密码" -#: application/controllers/User.php:996 application/views/user/main.php:8 +#: application/controllers/User.php:1019 application/views/user/index.php:8 msgid "Email settings are incorrect." msgstr "邮件配置有误。" -#: application/controllers/User.php:1000 application/controllers/User.php:1005 +#: application/controllers/User.php:1023 application/controllers/User.php:1028 msgid "Password Reset Processed." msgstr "密码重置已处理。" -#: application/controllers/User.php:1107 +#: application/controllers/User.php:1129 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "重置密码" +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "无法进行此操作,请在 config.php 里设置encryption_key!" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "Hash 无效" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "用户 Hash 已过期,请重试。" + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "由于您未登录为原用户,故无法切换至另一个用户角色" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "会话出现问题,请重试。" + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "切换的用户不存在" + #: application/controllers/Visitor.php:50 -#: application/controllers/Visitor.php:79 -#: application/controllers/Visitor.php:142 -#: application/controllers/Visitor.php:169 -#: application/controllers/Visitor.php:199 -#: application/controllers/Visitor.php:478 +#: application/controllers/Visitor.php:81 +#: application/controllers/Visitor.php:148 +#: application/controllers/Visitor.php:175 +#: application/controllers/Visitor.php:210 +#: application/controllers/Visitor.php:472 #: application/controllers/Widgets.php:40 msgid "Unknown Public Page." msgstr "公开页面未知。" -#: application/controllers/Visitor.php:74 -#: application/controllers/Visitor.php:165 -#: application/controllers/Visitor.php:195 -#: application/controllers/Visitor.php:474 +#: application/controllers/Visitor.php:76 +#: application/controllers/Visitor.php:171 +#: application/controllers/Visitor.php:206 +#: application/controllers/Visitor.php:468 #: application/controllers/Widgets.php:36 msgid "Empty Logbook" msgstr "日志为空" -#: application/controllers/Visitor.php:205 +#: application/controllers/Visitor.php:216 msgid "Satellite Gridsquare Map" msgstr "卫星网格地图" -#: application/controllers/Visitor.php:411 +#: application/controllers/Visitor.php:405 #: application/views/stationsetup/stationsetup.php:35 msgid "Public Search" msgstr "公开搜索" -#: application/controllers/Visitor.php:444 +#: application/controllers/Visitor.php:438 msgid "Export Map" msgstr "导出地图" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:427 +#: application/views/interface_assets/header.php:433 msgid "QO-100 Dx Club Upload" msgstr "QO-100 Dx Club 上传" @@ -2094,6 +2314,84 @@ msgstr "公开页面有误,请确认公开标识符正确。" msgid "No stations found that are using Wavelog OQRS." msgstr "未找到启用 OQRS 的台站。" +#: application/libraries/Subdivisions.php:31 +msgctxt "Division Name (States in various countries)." +msgid "Province" +msgstr "省份" + +#: application/libraries/Subdivisions.php:39 +msgctxt "Division Name (States in various countries)." +msgid "Oblast" +msgstr "自治州" + +#: application/libraries/Subdivisions.php:41 +#: application/libraries/Subdivisions.php:47 +msgctxt "Division Name (States in various countries)." +msgid "Region" +msgstr "区" + +#: application/libraries/Subdivisions.php:45 +msgctxt "Division Name (States in various countries)." +msgid "Department" +msgstr "省" + +#: application/libraries/Subdivisions.php:49 +msgctxt "Division Name (States in various countries)." +msgid "Municipality" +msgstr "市" + +#: application/libraries/Subdivisions.php:51 +msgctxt "Division Name (States in various countries)." +msgid "Federal State" +msgstr "联邦州" + +#: application/libraries/Subdivisions.php:56 +#: application/libraries/Subdivisions.php:94 +msgctxt "Division Name (States in various countries)." +msgid "County" +msgstr "县" + +#: application/libraries/Subdivisions.php:60 +#: application/libraries/Subdivisions.php:85 +msgctxt "Division Name (States in various countries)." +msgid "District" +msgstr "区" + +#: application/libraries/Subdivisions.php:62 +msgctxt "Division Name (States in various countries)." +msgid "Canton" +msgstr "州" + +#: application/libraries/Subdivisions.php:64 +msgctxt "Division Name (States in various countries)." +msgid "US State" +msgstr "美国州" + +#: application/libraries/Subdivisions.php:67 +msgctxt "Division Name (States in various countries)." +msgid "Prefecture" +msgstr "县" + +#: application/libraries/Subdivisions.php:69 +msgctxt "Division Name (States in various countries)." +msgid "State" +msgstr "州" + +#: application/libraries/Subdivisions.php:78 +msgctxt "Division Name (States in various countries)." +msgid "US County" +msgstr "美国州" + +#: application/libraries/Subdivisions.php:90 +msgctxt "Division Name (States in various countries)." +msgid "DME" +msgstr "DME" + +#: application/libraries/Subdivisions.php:92 +msgctxt "Division Name (States in various countries)." +msgid "City / Ku / Gun" +msgstr "郡" + #: application/models/Eqslmethods_model.php:281 msgid "Your eQSL username and/or password is incorrect." msgstr "您的 eQSL 用户名或密码错误。" @@ -2130,31 +2428,31 @@ msgstr "HRDlog:无 QSO 可供上传,台站呼号为: " msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "HRDlog:无台站配置信息。" -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4255 msgid "QSO could not be matched" msgstr "QSO 无法匹配" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4261 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "已经通过 LoTW/Clublog/eQSL/竞赛 确认" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4266 msgid "confirmed by award manager" msgstr "已经通过奖项管理员确认" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4269 msgid "confirmed by cross-check of DCL data" msgstr "已经通过 DCL 数据交叉检查确认" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4272 msgid "confirmation pending" msgstr "等待确认" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4275 msgid "unconfirmed" msgstr "未确认" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4278 msgid "unknown" msgstr "未知" @@ -2183,7 +2481,7 @@ msgid "Accumulated number of WAJA worked" msgstr "累计通联的 WAJA 数量" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:222 +#: application/views/dashboard/index.php:238 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2196,7 +2494,7 @@ msgid "Yearly" msgstr "每年" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:243 #: application/views/visitor/index.php:251 msgid "Month" msgstr "月" @@ -2212,29 +2510,33 @@ msgstr "差异" #: application/views/accumulate/index.php:24 #: application/views/accumulate/index.php:34 +#: application/views/accumulate/index.php:83 #: application/views/activated_gridmap/index.php:10 #: application/views/activated_gridmap/index.php:22 #: application/views/activated_gridmap/index.php:32 #: application/views/activated_gridmap/index.php:41 -#: application/views/activators/index.php:10 -#: application/views/awards/cq/index.php:75 -#: application/views/awards/cq/index.php:89 +#: application/views/activators/index.php:13 +#: application/views/awards/cq/index.php:77 +#: application/views/awards/cq/index.php:91 #: application/views/awards/dok/index.php:94 #: application/views/awards/dxcc/index.php:134 #: application/views/awards/dxcc/index.php:150 #: application/views/awards/dxcc/index.php:165 -#: application/views/awards/helvetia/index.php:88 +#: application/views/awards/helvetia/index.php:90 #: application/views/awards/iota/index.php:108 -#: application/views/awards/itu/index.php:75 -#: application/views/awards/itu/index.php:89 +#: application/views/awards/itu/index.php:77 +#: application/views/awards/itu/index.php:91 #: application/views/awards/jcc/index.php:91 -#: application/views/awards/rac/index.php:80 +#: application/views/awards/rac/index.php:82 #: application/views/awards/wab/index.php:24 #: application/views/awards/wab/index.php:36 #: application/views/awards/wab/index.php:46 #: application/views/awards/wab/index.php:55 -#: application/views/awards/waja/index.php:92 -#: application/views/awards/was/index.php:88 +#: application/views/awards/wac/index.php:81 +#: application/views/awards/wac/index.php:97 +#: application/views/awards/wac/index.php:113 +#: application/views/awards/waja/index.php:94 +#: application/views/awards/was/index.php:90 #: application/views/bandmap/list.php:71 application/views/bandmap/list.php:78 #: application/views/bandmap/list.php:90 application/views/bands/index.php:117 #: application/views/cabrillo/index.php:65 @@ -2245,6 +2547,7 @@ msgstr "差异" #: application/views/csv/index.php:94 application/views/distances/index.php:21 #: application/views/distances/index.php:36 #: application/views/distances/index.php:46 +#: application/views/distances/index.php:56 #: application/views/dxatlas/index.php:21 #: application/views/dxatlas/index.php:33 #: application/views/dxatlas/index.php:44 @@ -2256,28 +2559,29 @@ msgstr "差异" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1435 -#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1448 +#: application/views/interface_assets/footer.php:1587 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:172 #: application/views/logbookadvanced/index.php:183 #: application/views/logbookadvanced/index.php:194 -#: application/views/logbookadvanced/index.php:203 -#: application/views/logbookadvanced/index.php:212 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:205 +#: application/views/logbookadvanced/index.php:214 +#: application/views/logbookadvanced/index.php:223 #: application/views/logbookadvanced/index.php:248 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:321 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:374 -#: application/views/logbookadvanced/index.php:385 -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:259 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:423 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2288,11 +2592,12 @@ msgstr "差异" #: application/views/stationsetup/exportmapoptions.php:33 #: application/views/timeline/index.php:10 #: application/views/timeline/index.php:22 +#: application/views/timeline/index.php:77 #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 #: application/views/user/edit.php:633 -#: application/views/visitor/layout/footer.php:169 +#: application/views/visitor/layout/footer.php:171 msgid "All" msgstr "所有" @@ -2330,29 +2635,254 @@ msgstr "Worked All Japan (WAJA)" msgid "Period" msgstr "周期" -#: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: application/views/accumulate/index.php:80 +#: application/views/distances/index.php:53 +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/timeline/index.php:74 +msgid "Propagation" +msgstr "传播方式" + +#: application/views/accumulate/index.php:84 +#: application/views/distances/index.php:57 +#: application/views/timeline/index.php:78 +msgid "All but SAT" +msgstr "全部(除卫星以外)" + +#: application/views/accumulate/index.php:85 +#: application/views/distances/index.php:58 +#: application/views/gridmap/index.php:42 +#: application/views/logbookadvanced/edit.php:142 +#: application/views/logbookadvanced/index.php:307 +#: application/views/timeline/index.php:79 +msgid "None/Empty" +msgstr "无/空" + +#: application/views/accumulate/index.php:86 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/logbookadvanced/index.php:225 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:414 +#: application/views/timeline/index.php:80 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "Aircraft Scatter" + +#: application/views/accumulate/index.php:87 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/logbookadvanced/index.php:226 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:415 +#: application/views/timeline/index.php:81 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "Aurora" + +#: application/views/accumulate/index.php:88 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/logbookadvanced/index.php:227 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:416 +#: application/views/timeline/index.php:82 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "Aurora-E" + +#: application/views/accumulate/index.php:89 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/logbookadvanced/index.php:228 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:417 +#: application/views/timeline/index.php:83 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "Back scatter" + +#: application/views/accumulate/index.php:90 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/logbookadvanced/index.php:229 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:418 +#: application/views/timeline/index.php:84 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "EchoLink" + +#: application/views/accumulate/index.php:91 +#: 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/logbookadvanced/index.php:230 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:419 +#: application/views/timeline/index.php:85 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "EME" + +#: application/views/accumulate/index.php:92 +#: 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/logbookadvanced/index.php:231 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:420 +#: application/views/timeline/index.php:86 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "Sporadic E" + +#: application/views/accumulate/index.php:93 +#: 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/logbookadvanced/index.php:232 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:421 +#: application/views/timeline/index.php:87 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "Field Aligned Irregularities" + +#: application/views/accumulate/index.php:94 +#: 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/logbookadvanced/index.php:233 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:422 +#: application/views/timeline/index.php:88 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "F2 Reflection" + +#: application/views/accumulate/index.php:95 +#: 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/logbookadvanced/index.php:234 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:423 +#: application/views/timeline/index.php:89 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "Internet-assisted" + +#: application/views/accumulate/index.php:96 +#: 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/logbookadvanced/index.php:235 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:424 +#: application/views/timeline/index.php:90 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "Ionoscatter" + +#: application/views/accumulate/index.php:97 +#: 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/logbookadvanced/index.php:236 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:425 +#: application/views/timeline/index.php:91 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "IRLP" + +#: application/views/accumulate/index.php:98 +#: 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/logbookadvanced/index.php:237 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:426 +#: application/views/timeline/index.php:92 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "Meteor scatter" + +#: application/views/accumulate/index.php:99 +#: 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/logbookadvanced/index.php:238 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:427 +#: application/views/timeline/index.php:93 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "Terrestrial or atmospheric repeater or transponder" + +#: application/views/accumulate/index.php:100 +#: 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/logbookadvanced/index.php:239 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:428 +#: application/views/timeline/index.php:94 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "Rain scatter" + +#: application/views/accumulate/index.php:101 +#: 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/logbookadvanced/index.php:240 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:429 +#: application/views/timeline/index.php:95 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "Satellite" + +#: application/views/accumulate/index.php:102 +#: 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/logbookadvanced/index.php:241 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:430 +#: application/views/timeline/index.php:96 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "Trans-equatorial" + +#: application/views/accumulate/index.php:103 +#: 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/logbookadvanced/index.php:242 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:431 +#: application/views/timeline/index.php:97 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "Tropospheric ducting" + +#: application/views/accumulate/index.php:112 +#: application/views/activators/index.php:53 +#: application/views/awards/cq/index.php:113 #: application/views/awards/dok/index.php:127 #: application/views/awards/dxcc/index.php:187 -#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/helvetia/index.php:112 #: application/views/awards/iota/index.php:130 -#: application/views/awards/itu/index.php:111 +#: application/views/awards/itu/index.php:113 #: application/views/awards/jcc/index.php:113 -#: application/views/awards/rac/index.php:102 -#: application/views/awards/waja/index.php:114 -#: application/views/awards/was/index.php:110 -#: application/views/distances/index.php:53 +#: application/views/awards/rac/index.php:104 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:79 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 #: application/views/stationsetup/exportmapoptions.php:6 -#: application/views/timeline/index.php:72 -#: application/views/timeline/index.php:137 -#: application/views/timeline/index.php:164 -#: application/views/timeline/index.php:189 -#: application/views/timeline/index.php:218 -#: application/views/timeline/index.php:243 -#: application/views/timeline/index.php:270 +#: application/views/timeline/index.php:105 +#: application/views/timeline/index.php:170 +#: application/views/timeline/index.php:197 +#: application/views/timeline/index.php:222 +#: application/views/timeline/index.php:251 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:303 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "显示" @@ -2360,23 +2890,27 @@ msgstr "显示" #: application/views/activated_gridmap/index.php:20 #: application/views/awards/dxcc/index.php:131 #: application/views/awards/wab/index.php:34 +#: application/views/awards/wac/index.php:78 #: 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/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/edit.php:17 +#: application/views/logbookadvanced/index.php:203 #: application/views/satellite/flightpath.php:34 +#: application/views/satellite/passtable.php:5 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" -msgstr "卫星(Satellite)" +msgstr "卫星" #: application/views/activated_gridmap/index.php:30 #: application/views/awards/dxcc/index.php:147 #: application/views/awards/wab/index.php:44 +#: application/views/awards/wac/index.php:94 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:212 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2391,16 +2925,17 @@ msgid "Confirmation" msgstr "确认" #: application/views/activated_gridmap/index.php:82 -#: application/views/awards/cq/index.php:66 +#: application/views/awards/cq/index.php:68 #: application/views/awards/dok/index.php:67 #: application/views/awards/dxcc/index.php:73 -#: application/views/awards/helvetia/index.php:65 -#: application/views/awards/itu/index.php:66 +#: application/views/awards/helvetia/index.php:67 +#: application/views/awards/itu/index.php:68 #: application/views/awards/jcc/index.php:64 -#: application/views/awards/rac/index.php:57 +#: application/views/awards/rac/index.php:59 #: application/views/awards/wab/index.php:96 -#: application/views/awards/waja/index.php:65 -#: application/views/awards/was/index.php:65 +#: application/views/awards/wac/index.php:56 +#: application/views/awards/waja/index.php:67 +#: application/views/awards/was/index.php:67 #: application/views/gridmap/index.php:125 application/views/user/edit.php:675 msgid "QRZ.com" msgstr "QRZ.com" @@ -2436,59 +2971,62 @@ msgstr "经度" #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:37 #: application/views/gridmap/index.php:156 -#: application/views/logbookadvanced/index.php:12 +#: application/views/logbookadvanced/index.php:13 msgid "Bearing" msgstr "方位角" -#: application/views/activators/index.php:23 +#: application/views/activators/index.php:26 msgctxt "Orbiter LEO or GEO" msgid "Both" msgstr "都" -#: application/views/activators/index.php:30 +#: application/views/activators/index.php:33 msgid "Minimum Count" msgstr "最低数量" -#: application/views/activators/index.php:77 +#: application/views/activators/index.php:76 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:46 -#: application/views/awards/cq/index.php:196 +#: application/views/awards/cq/index.php:198 #: application/views/awards/dok/index.php:196 #: application/views/awards/dxcc/index.php:280 -#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/helvetia/index.php:200 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:196 +#: application/views/awards/itu/index.php:198 #: application/views/awards/jcc/index.php:236 #: application/views/awards/pota/index.php:67 -#: application/views/awards/rac/index.php:190 +#: application/views/awards/rac/index.php:192 #: application/views/awards/sig/index.php:45 #: application/views/awards/sota/index.php:53 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:39 -#: application/views/awards/waja/index.php:200 -#: application/views/awards/was/index.php:198 +#: application/views/awards/wac/index.php:199 +#: application/views/awards/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 +#: application/views/distancerecords/index.php:50 #: application/views/public_search/empty.php:3 -#: application/views/qrz/export.php:64 application/views/timeline/index.php:102 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:135 msgid "Nothing found!" msgstr "未找到!" -#: application/views/activators/index.php:99 -#: application/views/adif/import.php:66 application/views/adif/import.php:172 -#: application/views/adif/import.php:217 +#: application/views/activators/index.php:98 +#: application/views/adif/import.php:66 application/views/adif/import.php:182 +#: application/views/adif/import.php:227 #: application/views/awards/pota/index.php:34 #: application/views/awards/sig/qso_list.php:11 #: application/views/awards/sota/index.php:25 #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:104 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:152 +#: application/views/contesting/index.php:156 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:168 +#: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 -#: application/views/lotw_views/index.php:39 +#: application/views/lotw_views/index.php:35 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 #: application/views/qslcard/index.php:28 @@ -2497,35 +3035,36 @@ msgstr "未找到!" #: application/views/qslprint/qslprint.php:21 #: application/views/qslprint/qsolist.php:6 #: application/views/qso/edit_ajax.php:62 application/views/qso/index.php:124 +#: application/views/reg1test/index.php:33 #: application/views/search/cqzones.php:32 #: application/views/search/cqzones_result.php:9 #: application/views/search/lotw_unconfirmed.php:33 #: application/views/search/lotw_unconfirmed_result.php:6 #: application/views/search/result.php:11 -#: application/views/simplefle/index.php:142 -#: application/views/station_profile/edit.php:36 +#: application/views/simplefle/index.php:148 +#: application/views/station_profile/edit.php:63 #: application/views/stationsetup/linkedlocations.php:17 -#: application/views/user/edit.php:123 application/views/user/main.php:4 -#: application/views/user/main.php:47 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:507 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 +#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:510 msgid "Callsign" msgstr "呼号" -#: application/views/activators/index.php:100 +#: application/views/activators/index.php:99 msgid "Count" msgstr "数量" -#: application/views/activators/index.php:102 -#: application/views/timeline/index.php:121 -#: application/views/timeline/index.php:153 -#: application/views/timeline/index.php:178 -#: application/views/timeline/index.php:205 -#: application/views/timeline/index.php:232 -#: application/views/timeline/index.php:258 +#: application/views/activators/index.php:101 +#: application/views/timeline/index.php:154 +#: application/views/timeline/index.php:186 +#: application/views/timeline/index.php:211 +#: application/views/timeline/index.php:238 +#: application/views/timeline/index.php:265 +#: application/views/timeline/index.php:291 msgid "Show QSO's" msgstr "显示 QSO" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "显示地图" @@ -2566,10 +3105,12 @@ msgstr "与 DCL 相比,日志中 DOK 的数据不同" #: application/views/awards/wwff/index.php:32 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:25 -#: application/views/contesting/index.php:42 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36 +#: application/views/contesting/index.php:93 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:163 +#: application/views/debug/index.php:545 +#: application/views/distancerecords/index.php:16 +#: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2582,22 +3123,22 @@ msgstr "与 DCL 相比,日志中 DOK 的数据不同" #: application/views/qslcard/searchresult.php:4 #: application/views/qslprint/qslprint.php:22 #: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:64 -#: application/views/qso/index.php:100 +#: application/views/qso/index.php:100 application/views/satellite/pass.php:473 #: application/views/search/cqzones_result.php:7 #: application/views/search/result_search.php:4 #: application/views/search/search_result_ajax.php:89 -#: application/views/simplefle/index.php:140 +#: application/views/simplefle/index.php:146 #: application/views/statistics/custom.php:38 #: application/views/statistics/custom_result.php:40 #: application/views/statistics/custom_result.php:85 -#: application/views/timeline/index.php:116 -#: application/views/timeline/index.php:151 -#: application/views/timeline/index.php:176 -#: application/views/timeline/index.php:201 -#: application/views/timeline/index.php:230 -#: application/views/timeline/index.php:255 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:184 +#: application/views/timeline/index.php:209 +#: application/views/timeline/index.php:234 +#: application/views/timeline/index.php:263 +#: application/views/timeline/index.php:288 #: application/views/view_log/partial/log.php:4 -#: application/views/view_log/partial/log_ajax.php:57 +#: application/views/view_log/partial/log_ajax.php:59 #: application/views/visitor/index.php:147 #: application/views/widgets/qsos.php:24 msgid "Date" @@ -2608,10 +3149,12 @@ msgstr "日期" #: application/views/awards/wwff/index.php:33 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:26 -#: application/views/contesting/index.php:47 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37 +#: application/views/contesting/index.php:98 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:166 +#: application/views/debug/index.php:546 +#: application/views/distancerecords/index.php:17 +#: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2622,12 +3165,12 @@ msgstr "日期" #: application/views/search/cqzones_result.php:8 #: application/views/search/result_search.php:5 #: application/views/search/search_result_ajax.php:91 -#: application/views/simplefle/index.php:141 +#: application/views/simplefle/index.php:147 #: application/views/statistics/custom_result.php:86 -#: application/views/timeline/index.php:256 +#: application/views/timeline/index.php:289 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 -#: application/views/view_log/partial/log_ajax.php:59 +#: application/views/view_log/partial/log_ajax.php:61 #: application/views/visitor/index.php:150 #: application/views/widgets/qsos.php:26 msgid "Time" @@ -2636,7 +3179,7 @@ msgstr "时间" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 -#: application/views/contesting/index.php:201 +#: application/views/contesting/index.php:248 #: application/views/debug/index.php:547 application/views/debug/index.php:582 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -2648,7 +3191,7 @@ msgstr "时间" #: application/views/search/search_result_ajax.php:93 #: application/views/statistics/custom_result.php:87 #: application/views/view_log/partial/log.php:8 -#: application/views/view_log/partial/log_ajax.php:61 +#: application/views/view_log/partial/log_ajax.php:63 #: application/views/visitor/index.php:152 #: application/views/widgets/qsos.php:28 msgid "Call" @@ -2666,14 +3209,14 @@ msgstr "DCL 中的 DOK" msgid "DCL QSL Status" msgstr "DCL QSL 状态" -#: application/views/adif/import.php:36 application/views/adif/import.php:242 +#: application/views/adif/import.php:36 application/views/adif/import.php:252 msgid "DARC DCL" msgstr "DARC DCL" #: application/views/adif/import.php:55 -#: application/views/dashboard/index.php:97 -#: application/views/dashboard/index.php:118 -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:112 +#: application/views/dashboard/index.php:133 +#: application/views/dashboard/index.php:139 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2683,29 +3226,29 @@ msgstr "重要" msgid "Log Files must have the file type *.adi" msgstr "日志文件的后缀必须是.adi" -#: application/views/adif/import.php:56 application/views/view_log/qso.php:622 +#: application/views/adif/import.php:56 application/views/view_log/qso.php:625 msgid "Maximum file upload size is " msgstr "最大上传文件大小是 " -#: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:175 +#: application/views/adif/import.php:56 application/views/adif/import.php:230 +#: application/views/adif/import.php:268 application/views/debug/index.php:175 #: application/views/debug/index.php:192 application/views/debug/index.php:537 #: application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:34 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 -#: application/views/station_profile/index.php:31 #: application/views/stationsetup/stationsetup.php:111 -#: application/views/view_log/qso.php:622 +#: application/views/view_log/qso.php:625 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" msgstr "注意" #: application/views/adif/import.php:60 application/views/adif/import.php:62 -#: application/views/adif/import.php:168 application/views/adif/import.php:215 +#: application/views/adif/import.php:178 application/views/adif/import.php:225 #: application/views/eqsl/import.php:36 application/views/hrdlog/export.php:69 -#: application/views/qrz/export.php:89 application/views/webadif/export.php:89 +#: application/views/qrz/export.php:89 application/views/reg1test/index.php:30 +#: application/views/webadif/export.php:89 msgid "Select Station Location" msgstr "选择台站位置" @@ -2732,71 +3275,76 @@ msgstr "标记导入的 QSO 为已上传至 LoTW" #: application/views/adif/import.php:95 application/views/adif/import.php:105 #: application/views/adif/import.php:115 application/views/adif/import.php:125 +#: application/views/adif/import.php:135 msgid "Select if ADIF being imported does not contain this information." msgstr "如果导入的 ADIF 文件不包含此信息,选择此项。" #: application/views/adif/import.php:103 +msgid "Mark imported QSOs as uploaded to eQSL Logbook" +msgstr "标记导入的 QSO 为已上传至 eQSL" + +#: application/views/adif/import.php:113 msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" msgstr "标记导入的 QSO 为已上传至 HRDLog Logbook" -#: application/views/adif/import.php:113 +#: application/views/adif/import.php:123 msgid "Mark imported QSOs as uploaded to QRZ Logbook" msgstr "标记导入的 QSO 为已上传至 QRZ Logbook" -#: application/views/adif/import.php:123 +#: application/views/adif/import.php:133 msgid "Mark imported QSOs as uploaded to Clublog Logbook" msgstr "标记导入的 QSO 为已上传至 Clublog Logbook" -#: application/views/adif/import.php:133 +#: application/views/adif/import.php:143 msgid "Use DXCC information from ADIF" msgstr "使用 ADIF 文件中的 DXCC 信息" -#: application/views/adif/import.php:135 +#: application/views/adif/import.php:145 msgid "" "If not selected, Wavelog will attempt to determine DXCC information " "automatically." msgstr "如果不选择,Wavelog 将会自动判断 QSO 的 DXCC。" -#: application/views/adif/import.php:143 +#: application/views/adif/import.php:153 msgid "Always use login-callsign as operator-name on import" msgstr "总是在导入时使用登录的呼号作为操作者名称" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:32 -#: application/views/interface_assets/footer.php:495 -#: application/views/interface_assets/footer.php:2119 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2133 msgid "DANGER" msgstr "警告" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 msgid "Ignore Stationcallsign on import" msgstr "导入时忽略台站的呼号" -#: application/views/adif/import.php:154 +#: application/views/adif/import.php:164 +#, php-format msgid "" -"If selected, Wavelog will try to import all QSO's of the ADIF, " +"If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " "regardless if they match to the chosen station-location." msgstr "" -"如果选择,Wavelog 会尝试导入 ADIF 文件中的 所有 QSO,而不判断是否与所" -"选台站位置匹配。" +"如果选中,Wavelog 会从 ADIF 中尝试导入 %s全部的%s QSO,忽略是否匹配台站地址。" -#: application/views/adif/import.php:158 application/views/adif/import.php:273 +#: application/views/adif/import.php:168 application/views/adif/import.php:283 #: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 #: application/views/webadif/export.php:55 msgid "Upload" msgstr "上传" -#: application/views/adif/import.php:165 +#: application/views/adif/import.php:175 msgid "Take your logbook file anywhere!" msgstr "在其他地方保管、上传日志!" -#: application/views/adif/import.php:166 +#: application/views/adif/import.php:176 msgid "" "Exporting ADIFs allows you to import contacts into third party applications " "like LoTW, Awards or just for keeping a backup." msgstr "导出 ADIF 方便您将日志导入到 LoTW 等第三方应用程序或备份日志。" -#: application/views/adif/import.php:176 application/views/adif/import.php:222 +#: application/views/adif/import.php:186 application/views/adif/import.php:232 #: application/views/cfd/index.php:15 application/views/csv/index.php:118 #: application/views/dxatlas/index.php:118 #: application/views/hrdlog/export.php:77 application/views/kml/index.php:103 @@ -2805,7 +3353,7 @@ msgstr "导出 ADIF 方便您将日志导入到 LoTW 等第三方应用程序或 msgid "From date" msgstr "起始日期" -#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/adif/import.php:189 application/views/adif/import.php:235 #: application/views/cfd/index.php:20 application/views/csv/index.php:123 #: application/views/dxatlas/index.php:123 #: application/views/hrdlog/export.php:82 application/views/kml/index.php:108 @@ -2814,40 +3362,40 @@ msgstr "起始日期" msgid "To date" msgstr "终止日期" -#: application/views/adif/import.php:187 +#: application/views/adif/import.php:197 msgid "Mark exported QSOs as uploaded to LoTW" msgstr "将导出的 QSO 标记为已上传到 LoTW" -#: application/views/adif/import.php:195 +#: application/views/adif/import.php:205 msgid "Export QSOs not uploaded to LoTW" msgstr "导出没有上传到 LoTW 的 QSO" -#: application/views/adif/import.php:200 +#: application/views/adif/import.php:210 msgid "Export QSO's" msgstr "导出 QSO" -#: application/views/adif/import.php:205 +#: application/views/adif/import.php:215 msgid "Export Satellite-Only QSOs" msgstr "只导出卫星 QSO" -#: application/views/adif/import.php:206 +#: application/views/adif/import.php:216 msgid "Export All Satellite QSOs" msgstr "导出所有卫星 QSO" -#: application/views/adif/import.php:208 +#: application/views/adif/import.php:218 msgid "Export All Satellite QSOs Confirmed on LoTW" msgstr "导出 LoTW 上确认的所有卫星 QSO" -#: application/views/adif/import.php:220 application/views/hrdlog/export.php:74 +#: application/views/adif/import.php:230 application/views/hrdlog/export.php:74 #: application/views/qrz/export.php:94 application/views/webadif/export.php:94 msgid "If a date range is not selected then all QSOs will be marked!" msgstr "如果未选择日期范围,则所有 QSO 都将被标记!" -#: application/views/adif/import.php:228 +#: application/views/adif/import.php:238 msgid "Mark QSOs as exported to LoTW" msgstr "将 QSO 标记为导出到 LoTW" -#: application/views/adif/import.php:242 +#: application/views/adif/import.php:252 #, php-format msgid "" "Go to %s and export your logbook with confirmed DOKs. To speed up the " @@ -2858,36 +3406,49 @@ msgstr "" "前往 %s 导出已确认的 DOK,可选择仅导出 DL QSO 以加快速度。您可在此处上传已下" "载的 ADIF 日志,系统将以此更新 DOK 信息。" -#: application/views/adif/import.php:249 +#: application/views/adif/import.php:259 msgid "Only import DOK data from QSOs confirmed on DCL." msgstr "仅导入在 DCL 上确认的 QSO 的 DOK 数据。" -#: application/views/adif/import.php:251 +#: application/views/adif/import.php:261 msgid "" "Uncheck if you also want to update DOK with data from unconfirmed QSOs in " "DCL." msgstr "如果您还想使用 DCL 中未经确认的 QSO 的数据更新 DOK,请取消选中。" -#: application/views/adif/import.php:258 +#: application/views/adif/import.php:268 msgid "Overwrites exisiting DOK in log by DCL (if different)." msgstr "根据已有 DCL 覆盖 DOK 数据(如不同)。" -#: application/views/adif/import.php:260 +#: application/views/adif/import.php:270 msgid "" "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " "log." msgstr "如果选中,Wavelog 将使用 DCL 日志中的 DOK 强制覆盖现有的 DOK 信息。" -#: application/views/adif/import.php:267 +#: application/views/adif/import.php:277 msgid "Ignore QSOs that cannot be matched." msgstr "忽略无法匹配的 QSO。" -#: application/views/adif/import.php:269 +#: application/views/adif/import.php:279 msgid "" "If unchecked, information about QSOs which could not be found in Wavelog " "will be displayed." msgstr "如未选择,Wavelog 中未找到的 QSO 会被显示。" +#: application/views/adif/import_failed.php:15 +msgid "The ADIF file could not be parsed correctly." +msgstr "ADIF 文件解析错误。" + +#: application/views/adif/import_failed.php:16 +msgid "" +"At least one of the ADIF fields could not be parsed and/or inserted into the " +"database. Please check the imported ADIF file. You can use an online ADIF " +"file checker. For example:" +msgstr "" +"有至少一个 ADIF 字段无法解析或插入至数据库,请检查 ADIF 文件。您可以使用在线" +"的 ADIF 检查工具,例如:" + #: application/views/adif/import_success.php:15 msgid "Yay, its imported!" msgstr "导入成功!" @@ -2940,24 +3501,22 @@ msgstr "如用于描述用途的名字。" #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 -#: application/views/interface_assets/footer.php:43 -#: application/views/interface_assets/footer.php:530 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 -#: application/views/options/appearance.php:107 +#: application/views/options/appearance.php:116 #: application/views/options/dxcluster.php:67 #: application/views/options/email.php:112 #: application/views/options/oqrs.php:63 #: application/views/options/radios.php:45 #: application/views/options/version_dialog.php:78 -#: application/views/qso/components/winkeysettings.php:90 -#: application/views/qso/components/winkeysettings_results.php:90 #: application/views/satellite/create.php:70 #: application/views/simplefle/index.php:22 msgid "Save" msgstr "保存" #: application/views/api/help.php:14 -#: application/views/interface_assets/header.php:431 +#: application/views/interface_assets/header.php:437 msgid "API Keys" msgstr "API 密钥" @@ -2985,7 +3544,7 @@ msgid "API URL" msgstr "API URL" #: application/views/api/help.php:19 application/views/api/help.php:38 -#: application/views/cron/index.php:21 application/views/debug/index.php:36 +#: application/views/cron/index.php:22 application/views/debug/index.php:36 msgid "Copy to clipboard" msgstr "复制到剪贴板" @@ -2994,14 +3553,15 @@ msgid "The API URL for this Wavelog instance is" msgstr "本站的 API URL 是" #: application/views/api/help.php:20 application/views/dxcalendar/index.php:15 -#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:477 -#: application/views/qso/index.php:538 application/views/qso/index.php:583 +#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:504 +#: application/views/qso/index.php:560 application/views/qso/index.php:605 #: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 #: application/views/sattimers/index.php:73 #: application/views/sattimers/index.php:75 +#: application/views/sattimers/index.php:77 #: application/views/search/filter.php:69 msgid "Info" msgstr "消息" @@ -3017,7 +3577,7 @@ msgid "API Key" msgstr "API Key" #: application/views/api/help.php:28 application/views/cron/edit.php:30 -#: application/views/cron/index.php:51 +#: application/views/cron/index.php:53 #: application/views/search/stored_queries.php:8 msgid "Description" msgstr "说明" @@ -3030,19 +3590,18 @@ msgstr "上次使用" msgid "Permissions" msgstr "权限" -#: application/views/api/help.php:31 application/views/cron/index.php:52 -#: application/views/lotw_views/index.php:45 +#: application/views/api/help.php:31 application/views/cron/index.php:54 +#: application/views/lotw_views/index.php:41 #: application/views/mode/index.php:31 #: application/views/oqrs/showrequests.php:91 #: application/views/sattimers/index.php:39 #: application/views/stationsetup/stationsetup.php:31 -#: application/views/timeline/index.php:119 -#: application/views/update/index.php:30 +#: application/views/timeline/index.php:152 msgid "Status" msgstr "状态" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:519 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "操作" @@ -3078,6 +3637,7 @@ msgstr "创建 只读 权限的 API Key" #: application/views/awards/counties/details.php:4 #: application/views/awards/details.php:1 #: application/views/awards/vucc/band.php:4 +#: application/views/distancerecords/details.php:1 #: application/views/timeline/details.php:2 msgid "Filtering on" msgstr "筛选打开" @@ -3088,8 +3648,8 @@ msgstr "县" #: application/views/awards/counties/index.php:6 #: application/views/awards/counties/index.php:13 -#: application/views/awards/cq/index.php:17 -#: application/views/awards/cq/index.php:24 +#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:26 #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:13 #: application/views/awards/dxcc/index.php:13 @@ -3098,12 +3658,12 @@ msgstr "县" #: application/views/awards/ffma/index.php:14 #: application/views/awards/gridmaster/index.php:6 #: application/views/awards/gridmaster/index.php:13 -#: application/views/awards/helvetia/index.php:17 -#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:26 #: application/views/awards/iota/index.php:15 #: application/views/awards/iota/index.php:22 -#: application/views/awards/itu/index.php:17 -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:26 #: application/views/awards/jcc/index.php:15 #: application/views/awards/jcc/index.php:22 #: application/views/awards/pota/index.php:6 @@ -3116,10 +3676,12 @@ msgstr "县" #: application/views/awards/vucc/index.php:13 #: application/views/awards/wab/index.php:11 #: application/views/awards/wab/index.php:18 -#: application/views/awards/waja/index.php:16 -#: application/views/awards/waja/index.php:23 -#: application/views/awards/was/index.php:17 -#: application/views/awards/was/index.php:24 +#: application/views/awards/wac/index.php:7 +#: application/views/awards/wac/index.php:14 +#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:25 +#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:26 #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:13 msgid "Award Info" @@ -3161,17 +3723,18 @@ msgid "Counties Confirmed" msgstr "已确认的县" #: application/views/awards/counties/index.php:39 -#: application/views/awards/cq/index.php:174 +#: application/views/awards/cq/index.php:176 #: application/views/awards/dok/index.php:174 #: application/views/awards/dxcc/index.php:257 -#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/helvetia/index.php:179 #: application/views/awards/iota/index.php:201 -#: application/views/awards/itu/index.php:174 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:185 -#: application/views/awards/rac/index.php:169 -#: application/views/awards/waja/index.php:177 -#: application/views/awards/was/index.php:177 -#: application/views/dashboard/index.php:217 +#: application/views/awards/rac/index.php:171 +#: application/views/awards/wac/index.php:177 +#: application/views/awards/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:233 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3187,11 +3750,34 @@ msgstr "已确认的县" msgid "Total" msgstr "总计" -#: application/views/awards/cq/index.php:18 +#: application/views/awards/cq/index.php:3 +#: application/views/awards/cq/index.php:150 application/views/csv/index.php:80 +#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/logbookadvanced/edit.php:6 +#: application/views/logbookadvanced/index.php:246 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:284 +#: application/views/qso/index.php:390 +#: application/views/search/cqzones_result.php:13 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:264 +#: application/views/timeplotter/index.php:44 +msgid "CQ Zone" +msgstr "CQ 分区" + +#: application/views/awards/cq/index.php:4 +#: application/views/awards/itu/index.php:4 +msgid "Hover over a zone" +msgstr "鼠标停留到一个分区" + +#: application/views/awards/cq/index.php:20 msgid "CQ Magazine WAZ Award" msgstr "CQ 杂志 WAZ 奖状" -#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:21 msgid "" "The CQ Magazine is located in the US and one of the most popular amateur " "radio magazines in the world. The magazine first appeared in January 1945 " @@ -3200,203 +3786,197 @@ msgstr "" "CQ 杂志来自美国,是世界上最受欢迎的业余无线电杂志之一。该杂志于 1945 年 1 月" "首次出版,重点关注业余无线电的奖项和实用方面。" -#: application/views/awards/cq/index.php:20 +#: application/views/awards/cq/index.php:22 msgid "" "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to " "all 40 CQ Zones along with the corresponding confirmation." msgstr "" "WAZ 奖代表“Worked All Zones”,需要与所有40个CQ分区进行QSO并提供相应的确认。" -#: application/views/awards/cq/index.php:21 +#: application/views/awards/cq/index.php:23 #, php-format msgctxt "uses 'CQ Magazine'" msgid "You can find all the information and rules on the Website of the %s." msgstr "您可在 %s 查看规则信息。" -#: application/views/awards/cq/index.php:23 +#: application/views/awards/cq/index.php:25 msgid "Awards - CQ Magazine WAZ" msgstr "CQ 杂志 WAZ 奖状" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 #: application/views/awards/wab/list.php:6 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:73 -#: application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:362 -#: application/views/interface_assets/footer.php:39 +#: application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:378 +#: application/views/interface_assets/footer.php:40 #: application/views/visitor/index.php:266 msgid "Confirmed" msgstr "已确认" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:256 +#: application/views/dashboard/index.php:372 #: application/views/visitor/index.php:262 msgid "Worked" msgstr "已通联" -#: application/views/awards/cq/index.php:36 +#: application/views/awards/cq/index.php:38 #: application/views/awards/dok/index.php:41 #: application/views/awards/dxcc/index.php:43 -#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:43 -#: application/views/awards/itu/index.php:36 +#: application/views/awards/itu/index.php:38 #: application/views/awards/jcc/index.php:34 -#: application/views/awards/rac/index.php:27 -#: application/views/awards/waja/index.php:35 -#: application/views/awards/was/index.php:35 +#: application/views/awards/rac/index.php:29 +#: application/views/awards/wac/index.php:26 +#: application/views/awards/waja/index.php:37 +#: application/views/awards/was/index.php:37 msgid "Show worked" msgstr "显示已通联" -#: application/views/awards/cq/index.php:40 +#: application/views/awards/cq/index.php:42 #: application/views/awards/dok/index.php:45 #: application/views/awards/dxcc/index.php:47 -#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:47 -#: application/views/awards/itu/index.php:40 +#: application/views/awards/itu/index.php:42 #: application/views/awards/jcc/index.php:38 -#: application/views/awards/rac/index.php:31 -#: application/views/awards/waja/index.php:39 -#: application/views/awards/was/index.php:39 +#: application/views/awards/rac/index.php:33 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/waja/index.php:41 +#: application/views/awards/was/index.php:41 msgid "Show confirmed" msgstr "显示已确认" -#: application/views/awards/cq/index.php:44 +#: application/views/awards/cq/index.php:46 #: application/views/awards/dxcc/index.php:51 -#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:51 -#: application/views/awards/itu/index.php:44 +#: application/views/awards/itu/index.php:46 #: application/views/awards/jcc/index.php:42 -#: application/views/awards/rac/index.php:35 -#: application/views/awards/waja/index.php:43 -#: application/views/awards/was/index.php:43 +#: application/views/awards/rac/index.php:37 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/waja/index.php:45 +#: application/views/awards/was/index.php:45 msgid "Show not worked" msgstr "显示未通联" -#: application/views/awards/cq/index.php:50 +#: application/views/awards/cq/index.php:52 #: application/views/awards/dok/index.php:51 #: application/views/awards/dxcc/index.php:57 -#: application/views/awards/helvetia/index.php:49 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/helvetia/index.php:51 +#: application/views/awards/itu/index.php:52 #: application/views/awards/jcc/index.php:48 -#: application/views/awards/rac/index.php:41 -#: application/views/awards/waja/index.php:49 -#: application/views/awards/was/index.php:49 +#: application/views/awards/rac/index.php:43 +#: application/views/awards/wac/index.php:40 +#: application/views/awards/waja/index.php:51 +#: application/views/awards/was/index.php:51 msgid "Show QSO with QSL Type" msgstr "显示 QSL 分类下的 QSO" -#: application/views/awards/cq/index.php:54 -#: application/views/awards/itu/index.php:54 -#: application/views/interface_assets/footer.php:2098 -#: application/views/qso/edit_ajax.php:378 +#: application/views/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/awards/wac/index.php:44 +#: application/views/interface_assets/footer.php:2112 +#: application/views/qso/edit_ajax.php:405 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "QSL 卡片" -#: application/views/awards/cq/index.php:110 +#: application/views/awards/cq/index.php:112 #: application/views/awards/dok/index.php:126 #: application/views/awards/dxcc/index.php:186 -#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/helvetia/index.php:111 #: application/views/awards/iota/index.php:129 -#: application/views/awards/itu/index.php:110 +#: application/views/awards/itu/index.php:112 #: application/views/awards/jcc/index.php:112 -#: application/views/awards/rac/index.php:101 -#: application/views/awards/waja/index.php:113 -#: application/views/awards/was/index.php:109 +#: application/views/awards/rac/index.php:103 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/waja/index.php:115 +#: application/views/awards/was/index.php:111 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:523 +#: application/views/logbookadvanced/index.php:551 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 msgid "Reset" msgstr "重置筛选条件" -#: application/views/awards/cq/index.php:113 +#: application/views/awards/cq/index.php:115 msgid "Show CQ Zone Map" msgstr "查看CQ分区地图" -#: application/views/awards/cq/index.php:122 +#: application/views/awards/cq/index.php:124 #: application/views/awards/dxcc/index.php:199 -#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/helvetia/index.php:124 #: application/views/awards/iota/index.php:142 -#: application/views/awards/itu/index.php:122 -#: application/views/awards/rac/index.php:114 -#: application/views/awards/waja/index.php:126 -#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:124 +#: application/views/awards/rac/index.php:116 +#: application/views/awards/waja/index.php:128 +#: application/views/awards/was/index.php:124 msgid "Table" msgstr "表格" -#: application/views/awards/cq/index.php:125 +#: application/views/awards/cq/index.php:127 #: application/views/awards/dok/index.php:128 #: application/views/awards/dxcc/index.php:202 -#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/helvetia/index.php:127 #: application/views/awards/iota/index.php:145 -#: application/views/awards/itu/index.php:125 +#: application/views/awards/itu/index.php:127 #: application/views/awards/jcc/index.php:129 -#: application/views/awards/rac/index.php:117 +#: application/views/awards/rac/index.php:119 #: application/views/awards/wab/index.php:108 -#: application/views/awards/waja/index.php:129 -#: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:516 +#: application/views/awards/waja/index.php:131 +#: application/views/awards/was/index.php:127 +#: application/views/logbookadvanced/index.php:544 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "地图" -#: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 -#: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:235 -#: application/views/logbookadvanced/index.php:586 -#: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:90 -#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 -#: application/views/qso/index.php:390 -#: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:106 -#: application/views/station_profile/edit.php:126 -#: application/views/timeline/index.php:231 -#: application/views/timeplotter/index.php:44 -msgid "CQ Zone" -msgstr "CQ 分区" - -#: application/views/awards/cq/index.php:165 +#: application/views/awards/cq/index.php:167 #: application/views/awards/dok/index.php:165 #: application/views/awards/dxcc/index.php:248 -#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/helvetia/index.php:170 #: application/views/awards/iota/index.php:192 -#: application/views/awards/itu/index.php:165 +#: application/views/awards/itu/index.php:167 #: application/views/awards/jcc/index.php:168 -#: application/views/awards/rac/index.php:160 -#: application/views/awards/waja/index.php:168 -#: application/views/awards/was/index.php:168 +#: application/views/awards/rac/index.php:162 +#: application/views/awards/wac/index.php:168 +#: application/views/awards/waja/index.php:170 +#: application/views/awards/was/index.php:170 msgid "Summary" msgstr "概览" -#: application/views/awards/cq/index.php:178 +#: application/views/awards/cq/index.php:180 #: application/views/awards/dok/index.php:178 #: application/views/awards/dxcc/index.php:262 -#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:206 -#: application/views/awards/itu/index.php:178 +#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:195 -#: application/views/awards/rac/index.php:173 -#: application/views/awards/waja/index.php:182 -#: application/views/awards/was/index.php:181 +#: application/views/awards/rac/index.php:175 +#: application/views/awards/wac/index.php:181 +#: application/views/awards/waja/index.php:184 +#: application/views/awards/was/index.php:183 msgid "Total worked" msgstr "共通联" -#: application/views/awards/cq/index.php:185 +#: application/views/awards/cq/index.php:187 #: application/views/awards/dok/index.php:185 #: application/views/awards/dxcc/index.php:269 -#: application/views/awards/helvetia/index.php:188 +#: application/views/awards/helvetia/index.php:190 #: application/views/awards/iota/index.php:213 -#: application/views/awards/itu/index.php:185 +#: application/views/awards/itu/index.php:187 #: application/views/awards/jcc/index.php:214 -#: application/views/awards/rac/index.php:180 -#: application/views/awards/waja/index.php:189 -#: application/views/awards/was/index.php:188 +#: application/views/awards/rac/index.php:182 +#: application/views/awards/wac/index.php:188 +#: application/views/awards/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "共确认" @@ -3451,23 +4031,24 @@ msgstr "DOK + SDOK" #: application/views/awards/dok/index.php:37 #: application/views/awards/dxcc/index.php:39 -#: application/views/awards/helvetia/index.php:31 +#: application/views/awards/helvetia/index.php:33 #: application/views/awards/iota/index.php:39 #: application/views/awards/jcc/index.php:30 -#: application/views/awards/rac/index.php:23 -#: application/views/awards/waja/index.php:31 -#: application/views/awards/was/index.php:31 +#: application/views/awards/rac/index.php:25 +#: application/views/awards/waja/index.php:33 +#: application/views/awards/was/index.php:33 msgid "Worked / Confirmed" msgstr "通联过 / 已确认" #: application/views/awards/dok/index.php:80 #: application/views/awards/dxcc/index.php:120 -#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/helvetia/index.php:76 #: application/views/awards/iota/index.php:94 #: application/views/awards/jcc/index.php:77 -#: application/views/awards/rac/index.php:66 -#: application/views/awards/waja/index.php:78 -#: application/views/awards/was/index.php:74 +#: application/views/awards/rac/index.php:68 +#: application/views/awards/wac/index.php:66 +#: application/views/awards/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "各个波段" @@ -3490,10 +4071,12 @@ msgstr "" "德索托(Clinton B. DeSoto),W1CBD,于1935年撰写的题为《%s》的文章。" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 msgid "ARRL website" msgstr "ARRL 网站" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 #, php-format msgid "You can find all information about the DXCC Award on the %s." msgstr "您可以在 %s 查看 DXCC 奖项介绍信息。" @@ -3519,63 +4102,77 @@ msgstr "包括已删除" #: application/views/awards/dxcc/index.php:87 #: application/views/awards/iota/index.php:61 #: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/logbookadvanced/edit.php:144 +#: application/views/logbookadvanced/index.php:309 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 -#: application/views/view_log/qso.php:250 +#: application/views/view_log/qso.php:253 msgid "Antarctica" msgstr "南极洲" #: application/views/awards/dxcc/index.php:91 #: application/views/awards/iota/index.php:65 #: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/logbookadvanced/edit.php:143 +#: application/views/logbookadvanced/index.php:308 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 -#: application/views/view_log/qso.php:247 +#: application/views/view_log/qso.php:250 msgid "Africa" msgstr "非洲" #: application/views/awards/dxcc/index.php:95 #: application/views/awards/iota/index.php:69 #: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/logbookadvanced/edit.php:146 +#: application/views/logbookadvanced/index.php:311 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 -#: application/views/view_log/qso.php:253 +#: application/views/view_log/qso.php:256 msgid "Asia" msgstr "亚洲" #: application/views/awards/dxcc/index.php:99 #: application/views/awards/iota/index.php:73 #: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/logbookadvanced/edit.php:147 +#: application/views/logbookadvanced/index.php:312 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 -#: application/views/view_log/qso.php:256 +#: application/views/view_log/qso.php:259 msgid "Europe" msgstr "欧洲" #: application/views/awards/dxcc/index.php:103 #: application/views/awards/iota/index.php:77 #: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/logbookadvanced/edit.php:145 +#: application/views/logbookadvanced/index.php:310 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 -#: application/views/view_log/qso.php:259 +#: application/views/view_log/qso.php:262 msgid "North America" msgstr "北美洲" #: application/views/awards/dxcc/index.php:107 #: application/views/awards/iota/index.php:81 #: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/logbookadvanced/edit.php:148 +#: application/views/logbookadvanced/index.php:313 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:265 +#: application/views/view_log/qso.php:268 msgid "South America" msgstr "南美洲" #: application/views/awards/dxcc/index.php:111 #: application/views/awards/iota/index.php:85 #: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/logbookadvanced/edit.php:149 +#: application/views/logbookadvanced/index.php:314 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 -#: application/views/view_log/qso.php:262 +#: application/views/view_log/qso.php:265 msgid "Oceania" msgstr "大洋洲" @@ -3589,13 +4186,13 @@ msgstr "DXCC名称" #: application/views/awards/dxcc/index.php:226 #: application/views/awards/iota/index.php:170 -#: application/views/timeline/index.php:117 -#: application/views/timeline/index.php:204 +#: application/views/timeline/index.php:150 +#: application/views/timeline/index.php:237 msgid "Prefix" msgstr "前缀" #: application/views/awards/ffma/index.php:8 -#: application/views/interface_assets/header.php:236 +#: application/views/interface_assets/header.php:240 msgid "Fred Fish Memorial Award" msgstr "弗雷德·菲什纪念奖" @@ -3659,11 +4256,20 @@ msgstr "网站" msgid "This map shows only QSOs worked on SAT." msgstr "该地图仅显示了 SAT 上有效的 QSO。" -#: application/views/awards/helvetia/index.php:18 +#: application/views/awards/helvetia/index.php:3 +msgctxt "Switzerland Canton" +msgid "Canton" +msgstr "州" + +#: application/views/awards/helvetia/index.php:4 +msgid "Hover over a canton" +msgstr "鼠标停留到一个州" + +#: application/views/awards/helvetia/index.php:20 msgid "HELVETIA 26 | SWITZERLAND AWARD" msgstr "HELVETIA 26 | SWITZERLAND AWARD" -#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:21 msgid "" "The USKA (Union of Swiss Shortwave Amateurs) sponsors two awards, the " "HELVETIA 26 (H26) Award and the SWITZERLAND Award, aimed at promoting " @@ -3673,7 +4279,7 @@ msgstr "" "USKA(瑞士短波业余爱好者联盟)设立两个奖项:HELVETIA 26(H26)奖和 " "SWITZERLAND 奖,旨在通过鼓励在多个波段上通联尽可能多的瑞士州。" -#: application/views/awards/helvetia/index.php:20 +#: application/views/awards/helvetia/index.php:22 msgid "" "These awards come in two versions: one for HF bands and the other for VHF " "(including SHF and UHF) bands. Valid connections for these awards date back " @@ -3682,26 +4288,26 @@ msgstr "" "这些奖项有两类:一个适用于 HF 频段,另一个适用于 VHF(包括 SHF 和 UHF)频段。" "这些奖项的有效连接可追溯到 1980 年 1 月 1 日" -#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/helvetia/index.php:23 #: application/views/awards/jcc/index.php:19 #: application/views/awards/sota/index.php:10 #: application/views/awards/wab/index.php:15 -#: application/views/awards/waja/index.php:20 +#: application/views/awards/waja/index.php:22 #: application/views/awards/wwff/index.php:10 #, php-format msgid "For more information, please visit: %s." msgstr "欲了解更多信息,您可以访问此链接:%s。" -#: application/views/awards/helvetia/index.php:112 +#: application/views/awards/helvetia/index.php:114 msgid "Show Helvetia Map" msgstr "显示 Helvetia 地图" -#: application/views/awards/helvetia/index.php:149 +#: application/views/awards/helvetia/index.php:151 msgid "Canton" msgstr "Canton" #: application/views/awards/index.php:9 application/views/bands/index.php:46 -#: application/views/interface_assets/header.php:162 +#: application/views/interface_assets/header.php:164 msgid "CQ" msgstr "CQ" @@ -3758,11 +4364,11 @@ msgstr "显示IOTA地图" #: application/views/awards/iota/index.php:171 #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 -#: application/views/contesting/index.php:153 -#: application/views/contesting/index.php:171 +#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:214 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:559 +#: application/views/logbookadvanced/index.php:587 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3772,12 +4378,12 @@ msgstr "显示IOTA地图" #: application/views/search/search_result_ajax.php:19 #: application/views/stationsetup/stationsetup.php:30 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:203 application/views/user/edit.php:241 +#: application/views/timeline/index.php:236 application/views/user/edit.php:241 #: application/views/user/edit.php:263 application/views/user/edit.php:285 #: application/views/user/edit.php:307 application/views/user/edit.php:330 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:191 -#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:194 +#: application/views/view_log/qso.php:514 msgid "Name" msgstr "名称" @@ -3785,7 +4391,19 @@ msgstr "名称" msgid "Deleted" msgstr "已删除" -#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:3 +#: application/views/awards/itu/index.php:150 +#: application/views/logbookadvanced/edit.php:10 +#: application/views/logbookadvanced/index.php:257 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:400 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 +msgid "ITU Zone" +msgstr "ITU 分区" + +#: application/views/awards/itu/index.php:21 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -3793,30 +4411,20 @@ msgid "" "(ITU)." msgstr "通联全球 75 个 ITU 分区中的 70 个可申请该奖。" -#: application/views/awards/itu/index.php:20 +#: application/views/awards/itu/index.php:22 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "您可在 %s 查看更多信息。" -#: application/views/awards/itu/index.php:23 +#: application/views/awards/itu/index.php:25 msgid "Awards - ITU Zones" msgstr "奖项 - ITU 分区" -#: application/views/awards/itu/index.php:113 +#: application/views/awards/itu/index.php:115 msgid "Show ITU Zone Map" msgstr "显示 ITU 分区地图" -#: application/views/awards/itu/index.php:148 -#: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:246 -#: application/views/logbookadvanced/index.php:589 -#: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:120 -#: application/views/station_profile/edit.php:143 -msgid "ITU Zone" -msgstr "ITU 分区" - #: application/views/awards/jcc/index.php:16 msgid "JCC - Japan Century Cities Award" msgstr "JCC - 日本世纪城市奖" @@ -3845,7 +4453,7 @@ msgstr "显示 JCC 地图" #: application/views/awards/jcc/index.php:116 #: application/views/cabrillo/index.php:180 application/views/cfd/index.php:25 #: application/views/csv/index.php:128 application/views/dxatlas/index.php:128 -#: application/views/kml/index.php:113 +#: application/views/kml/index.php:113 application/views/reg1test/index.php:145 msgid "Export" msgstr "导出" @@ -3856,18 +4464,19 @@ msgid "Results" msgstr "结果" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 +#: application/views/distancerecords/index.php:13 msgid "Number" msgstr "数量" #: application/views/awards/jcc/index.php:152 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:524 msgid "City" msgstr "城市" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:368 #: application/views/distances/index.php:23 msgid "SAT" msgstr "卫星" @@ -3904,15 +4513,24 @@ msgid "" msgstr "欲了解更多关于可用奖项和类别的信息,请访问%s。" #: application/views/awards/pota/index.php:31 -#: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:177 -#: application/views/station_profile/edit.php:245 -#: application/views/user/edit.php:595 application/views/view_log/qso.php:303 -#: application/views/view_log/qso.php:570 +#: application/views/qso/index.php:236 application/views/qso/index.php:492 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 +#: application/views/user/edit.php:595 application/views/view_log/qso.php:306 +#: application/views/view_log/qso.php:573 msgid "POTA Reference(s)" msgstr "POTA 编号" -#: application/views/awards/rac/index.php:104 +#: application/views/awards/rac/index.php:3 +msgctxt "Canada Province" +msgid "Province" +msgstr "省" + +#: application/views/awards/rac/index.php:4 +msgid "Hover over a province" +msgstr "鼠标停留到一个省" + +#: application/views/awards/rac/index.php:106 msgid "Show RAC Map" msgstr "显示RAC地图" @@ -3967,7 +4585,7 @@ msgstr "标识符" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:535 +#: application/views/logbookadvanced/index.php:563 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -4071,11 +4689,44 @@ msgstr "表格" msgid "WAB Square" msgstr "WAB分区" -#: application/views/awards/waja/index.php:17 +#: application/views/awards/wac/index.php:9 +msgid "" +"Sponsored by the International Amateur Radio Union (IARU), the Worked All " +"Continents award is issued for working and confirming all six continents. " +"These are North America, South America, Oceania, Asia, Europe and Africa." +msgstr "" +"由国际业余无线电联盟(IARU)赞助,“通联世界大洲奖”颁发给和所有六大洲通联并确" +"认了的人。这六大洲分别是北美洲、南美洲、大洋洲、亚洲、欧洲和非洲。" + +#: application/views/awards/wac/index.php:13 +msgid "Awards - Worked All Continents (WAC)" +msgstr "奖项 - 通联世界大洲奖(WAC)" + +#: application/views/awards/wac/index.php:151 +#: application/views/continents/index.php:62 +#: application/views/logbookadvanced/edit.php:25 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 +#: application/views/view_log/qso.php:245 +msgid "Continent" +msgstr "大陆" + +#: application/views/awards/waja/index.php:3 +msgctxt "Japan Prefecture" +msgid "Prefecture" +msgstr "县" + +#: application/views/awards/waja/index.php:4 +msgid "Hover over a prefecture" +msgstr "鼠标停留到一个县" + +#: application/views/awards/waja/index.php:19 msgid "WAJA - Worked All Japan prefectures Award" msgstr "WAJA - 通联全日本都道府县奖状" -#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:20 msgid "" "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " "radio operators to work all the prefectures in Japan." @@ -4083,7 +4734,7 @@ msgstr "" "WAJA,通联全日本都道府县奖状,鼓励许可的业余无线电操作者与所有日本都道府县的" "电台通联。" -#: application/views/awards/waja/index.php:19 +#: application/views/awards/waja/index.php:21 msgid "" "May be claimed for having contacted (heard) and received a QSL card from an " "amateur station located in each of the 47 prefectures of Japan. A list of " @@ -4093,20 +4744,29 @@ msgstr "" "也许可以通过展示出已经通联(或收听)过来自日本47个都道府县的电台发来的QSL卡" "片,并按照WAJA(HAJA)的顺序进行排列,都道府县的名称可以忽略。" -#: application/views/awards/waja/index.php:116 +#: application/views/awards/waja/index.php:118 msgid "Show WAJA Map" -msgstr "显示WAJA地图" +msgstr "显示 WAJA 地图" -#: application/views/awards/waja/index.php:152 -#: application/views/timeline/index.php:152 +#: application/views/awards/waja/index.php:154 +#: application/views/timeline/index.php:185 msgid "Prefecture" msgstr "县" -#: application/views/awards/was/index.php:18 +#: application/views/awards/was/index.php:3 +msgctxt "USA State" +msgid "State" +msgstr "州" + +#: application/views/awards/was/index.php:4 +msgid "Hover over a state" +msgstr "鼠标停留到一个州" + +#: application/views/awards/was/index.php:20 msgid "WAS Award" msgstr "WAS 奖状" -#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:21 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -4117,7 +4777,7 @@ msgstr "" "计的奖项 在ARRL成立101周年之际,他们重新设计了证书和项目,希望能够精简和完善" "奖励项目。" -#: application/views/awards/was/index.php:20 +#: application/views/awards/was/index.php:22 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -4129,13 +4789,13 @@ msgstr "" "联系的业余爱好者 美国及其属地的业余爱好者必须是 ARRL 的成员才能申请 WAS 来自" "美国境外的申请人不受此要求的约束。" -#: application/views/awards/was/index.php:21 +#: application/views/awards/was/index.php:23 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "ARRL WAS奖项的所有信息和规则可以在 %s 找到。" -#: application/views/awards/was/index.php:112 +#: application/views/awards/was/index.php:114 msgid "Show WAS Map" msgstr "显示WAS地图" @@ -4162,11 +4822,11 @@ msgstr "" "以申请全球和国内的丰富多彩的奖项。" #: application/views/awards/wwff/index.php:31 -#: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:171 -#: application/views/station_profile/edit.php:232 -#: application/views/user/edit.php:591 application/views/view_log/qso.php:296 -#: application/views/view_log/qso.php:563 +#: application/views/qso/index.php:224 application/views/qso/index.php:479 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 +#: application/views/user/edit.php:591 application/views/view_log/qso.php:299 +#: application/views/view_log/qso.php:566 msgid "WWFF Reference" msgstr "WWFF 编号" @@ -4223,8 +4883,8 @@ msgstr "波段列表" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 #: application/views/contesting/index.php:15 -#: application/views/contesting/index.php:94 -#: application/views/contesting/index.php:169 +#: application/views/contesting/index.php:52 +#: application/views/contesting/index.php:145 #: application/views/qso/index.php:314 msgid "None" msgstr "无" @@ -4305,25 +4965,25 @@ msgid "" msgstr "" "启用的波段将显示在 QSO“波段”下拉列表中,而停用的频段将被隐藏且无法选择。" -#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:351 -#: application/views/qso/index.php:248 application/views/qso/index.php:494 -#: application/views/user/edit.php:599 application/views/view_log/qso.php:325 -#: application/views/view_log/qso.php:577 +#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 +#: application/views/qso/index.php:248 application/views/qso/index.php:504 +#: application/views/user/edit.php:599 application/views/view_log/qso.php:328 +#: application/views/view_log/qso.php:580 msgid "Sig" msgstr "设备" -#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:312 -#: application/views/qso/index.php:433 +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:339 +#: application/views/qso/index.php:443 msgid "USA County" msgstr "县(美国)" #: application/views/bands/index.php:58 -#: application/views/interface_assets/header.php:208 +#: application/views/interface_assets/header.php:212 msgid "WAJA" msgstr "WAJA" #: application/views/bands/index.php:59 -#: application/views/interface_assets/header.php:232 +#: application/views/interface_assets/header.php:236 msgid "WAS" msgstr "WAS" @@ -4353,9 +5013,8 @@ msgstr "创建波段" #: application/views/bands/index.php:152 #: application/views/contesting/add.php:74 -#: application/views/interface_assets/footer.php:42 -#: application/views/qso/components/winkeysettings.php:91 -#: application/views/qso/components/winkeysettings_results.php:91 +#: application/views/contesting/index.php:83 +#: application/views/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4385,22 +5044,28 @@ msgstr "停用所有" #: application/views/cabrillo/index.php:2 #: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:59 +#: application/views/reg1test/index.php:2 +#: application/views/reg1test/index.php:36 msgid "Proceed" msgstr "继续" #: application/views/cabrillo/index.php:3 +#: application/views/reg1test/index.php:3 msgid "Select Year" msgstr "选择年份" #: application/views/cabrillo/index.php:4 +#: application/views/reg1test/index.php:4 msgid "Select Contest" msgstr "选择比赛" #: application/views/cabrillo/index.php:5 +#: application/views/reg1test/index.php:5 msgid "Select Date Range" msgstr "选择日期区间" #: application/views/cabrillo/index.php:6 +#: application/views/reg1test/index.php:7 msgid "No contests were found for this station location!" msgstr "没有找到该台站位置的竞赛!" @@ -4413,10 +5078,12 @@ msgid "Select Station Location:" msgstr "选择台站位置:" #: application/views/cabrillo/index.php:44 +#: application/views/reg1test/index.php:53 msgid "Club" msgstr "俱乐部" #: application/views/cabrillo/index.php:48 +#: application/views/reg1test/index.php:58 msgid "Category Operator" msgstr "操作员类型(Operator)" @@ -4457,10 +5124,12 @@ msgid "Category Overlay" msgstr "Overlay类型" #: application/views/cabrillo/index.php:150 +#: application/views/reg1test/index.php:70 msgid "Operators" msgstr "操作员" #: application/views/cabrillo/index.php:155 +#: application/views/reg1test/index.php:139 msgid "Soapbox" msgstr "Soapbox(附加信息)" @@ -4485,6 +5154,7 @@ msgid "Address Country" msgstr "国家" #: application/views/cabrillo/index.php:186 +#: application/views/reg1test/index.php:150 msgid "No contests were found in your log." msgstr "在日志中未发现任何竞赛。" @@ -4518,13 +5188,13 @@ msgid "No upcoming activations found. Please check back later." msgstr "未找到即将进行的激活。 请稍后再回来查看。" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:158 +#: application/views/contesting/index.php:219 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:629 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 -#: application/views/view_log/qso.php:199 +#: application/views/view_log/qso.php:202 msgid "Comment" msgstr "备注" @@ -4556,9 +5226,9 @@ msgid "No Contests" msgstr "没有比赛" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/edit.php:21 -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:635 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4586,10 +5256,11 @@ msgid "Show Details" msgstr "显示细节" #: application/views/contestcalendar/index.php:38 -#: application/views/dashboard/index.php:262 -#: application/views/dashboard/index.php:289 -#: application/views/dashboard/index.php:310 -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:278 +#: application/views/dashboard/index.php:305 +#: application/views/dashboard/index.php:326 +#: application/views/dashboard/index.php:347 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "今天" @@ -4623,7 +5294,7 @@ msgstr "ADIF 名称" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:466 +#: application/views/interface_assets/header.php:472 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:43 @@ -4678,15 +5349,15 @@ msgid "Name of Contest in ADIF-specification" msgstr "竞赛 在 ADIF 中的名称" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "创建" #: application/views/contesting/edit.php:31 -#: application/views/contesting/index.php:24 -#: application/views/qso/edit_ajax.php:548 -#: application/views/view_log/qso.php:275 +#: application/views/contesting/index.php:25 +#: application/views/qso/edit_ajax.php:575 +#: application/views/view_log/qso.php:278 msgid "Contest Name" msgstr "竞赛名称" @@ -4722,90 +5393,139 @@ msgstr "序列编号 + 交换信息" msgid "Serial + Gridsquare" msgstr "序列编号 + 网格座标" -#: application/views/contesting/index.php:34 +#: application/views/contesting/index.php:21 +msgid "Serial + Gridsquare + Exchange" +msgstr "序号 + 网格 + 交换信息" + +#: application/views/contesting/index.php:35 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:539 application/views/qso/index.php:352 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:352 msgid "Operator Callsign" msgstr "操作员呼号" -#: application/views/contesting/index.php:116 -#: application/views/contesting/index.php:208 -#: application/views/qso/edit_ajax.php:571 -msgid "Serial (S)" -msgstr "序列编号 (S)" +#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:45 +msgid "More Settings" +msgstr "更多设置" -#: application/views/contesting/index.php:121 -#: application/views/contesting/index.php:206 -msgid "Exch (S)" -msgstr "信号交换(发)" - -#: application/views/contesting/index.php:126 -msgid "Gridsquare (S)" -msgstr "网格座标 (S)" - -#: application/views/contesting/index.php:136 -#: application/views/contesting/index.php:209 -#: application/views/qso/edit_ajax.php:566 -msgid "Serial (R)" -msgstr "序列编号 (R)" - -#: application/views/contesting/index.php:141 -#: application/views/contesting/index.php:207 -msgid "Exch (R)" -msgstr "信号交换(收)" - -#: application/views/contesting/index.php:146 -msgid "Gridsquare (R)" -msgstr "网格座标 (R)" - -#: application/views/contesting/index.php:163 -msgid "Reset QSO" -msgstr "重置 QSO" - -#: application/views/contesting/index.php:164 -#: application/views/qso/index.php:607 -msgid "Save QSO" -msgstr "保存 QSO" - -#: application/views/contesting/index.php:166 +#: application/views/contesting/index.php:49 msgid "Copy received exchange to" msgstr "复制收到的信号交换到" -#: application/views/contesting/index.php:168 +#: application/views/contesting/index.php:51 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "只有与所选字段的规则相匹配的交换信息才会被复制!" -#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:55 msgid "Age" msgstr "年龄" -#: application/views/contesting/index.php:174 +#: application/views/contesting/index.php:57 msgid "RX Power (W)" msgstr "RX Power(W)" -#: application/views/contesting/index.php:175 +#: application/views/contesting/index.php:58 msgid "Locator" msgstr "定位地图" -#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:59 +#: application/views/qso/edit_ajax.php:177 +msgid "QTH" +msgstr "QTH" + +#: application/views/contesting/index.php:64 +msgid "Sequence of Exchanges" +msgstr "交换信息的顺序" + +#: application/views/contesting/index.php:67 +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 "" +"选择您输入交换信息的顺序。注意,只有在信息交换类型中的交换信息才会被显示。" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Exchange" +msgstr "交换内容" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Grid" +msgstr "网格" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Serial" +msgstr "序号" + +#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:255 +#: application/views/qso/edit_ajax.php:598 +msgid "Serial (S)" +msgstr "序列编号 (S)" + +#: application/views/contesting/index.php:177 +msgid "Gridsquare (S)" +msgstr "网格座标 (S)" + +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:253 +msgid "Exch (S)" +msgstr "信号交换(发)" + +#: application/views/contesting/index.php:196 +#: application/views/contesting/index.php:256 +#: application/views/qso/edit_ajax.php:593 +msgid "Serial (R)" +msgstr "序列编号 (R)" + +#: application/views/contesting/index.php:201 +msgid "Gridsquare (R)" +msgstr "网格座标 (R)" + +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:254 +msgid "Exch (R)" +msgstr "信号交换(收)" + +#: application/views/contesting/index.php:224 +msgid "Reset QSO" +msgstr "重置 QSO" + +#: application/views/contesting/index.php:225 +#: application/views/qso/index.php:629 +msgid "Save QSO" +msgstr "保存 QSO" + +#: application/views/contesting/index.php:234 msgid "Callsign Suggestions" msgstr "呼号建议" -#: application/views/contesting/index.php:194 +#: application/views/contesting/index.php:241 msgid "Contest Logbook" msgstr "竞赛日志簿" -#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:258 #: application/views/qso/edit_ajax.php:164 msgid "VUCC Gridsquare" msgstr "VUCC 网格" -#: application/views/continents/index.php:62 -#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 -#: application/views/view_log/qso.php:242 -msgid "Continent" -msgstr "大陆" - #: application/views/continents/index.php:63 #: application/views/statistics/index.php:19 #: application/views/statistics/index.php:113 @@ -4823,14 +5543,15 @@ msgstr "标识符" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:261 -#: application/views/station_profile/edit.php:314 +#: application/views/options/appearance.php:109 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 msgid "Enabled" msgstr "已启用" -#: application/views/cron/edit.php:36 application/views/cron/index.php:53 +#: application/views/cron/edit.php:36 application/views/cron/index.php:55 msgid "Intervall" msgstr "间隔" @@ -4880,6 +5601,7 @@ msgstr "输入自定义的 Cron 语句" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "取消" @@ -4893,79 +5615,84 @@ msgid "" "requiring CLI access." msgstr "Cron 管理器帮助管理员在浏览器内管理 Cron,摆脱 CLI 命令。" -#: application/views/cron/index.php:18 +#: application/views/cron/index.php:19 msgid "" "To execute cron jobs based on the data below, remove all old cron jobs and " "create a new one:" msgstr "请删除所有旧的 Cron 任务,使用如下的唯一 Cron 指令:" -#: application/views/cron/index.php:27 application/views/cron/index.php:31 -msgid "Status Master-Cron" -msgstr "主 Cron 状态" +#: application/views/cron/index.php:29 application/views/cron/index.php:33 +msgid "Status Master-Cron:" +msgstr "主 Cron 状态:" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgctxt "PHP Version" msgid "Min. Version is" msgstr "最低版本是" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgid "PHP Version not supported." msgstr "不支持PHP版本。" -#: application/views/cron/index.php:41 +#: application/views/cron/index.php:43 msgid "Cron List" msgstr "Cron 列表" -#: application/views/cron/index.php:50 +#: application/views/cron/index.php:52 #: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "ID" -#: application/views/cron/index.php:54 +#: application/views/cron/index.php:56 msgid "Last Run" msgstr "上次执行" -#: application/views/cron/index.php:55 +#: application/views/cron/index.php:57 msgid "Next Run" msgstr "下次执行" -#: application/views/cron/index.php:68 +#: application/views/cron/index.php:70 msgid "healthy" msgstr "健康的" -#: application/views/cron/index.php:70 +#: application/views/cron/index.php:72 msgid "failed" msgstr "失败的" -#: application/views/cron/index.php:75 +#: application/views/cron/index.php:74 +msgid "pending" +msgstr "等待中" + +#: application/views/cron/index.php:79 msgid "disabled" msgstr "禁用的" -#: application/views/cron/index.php:79 application/views/cron/index.php:81 -#: application/views/cron/index.php:83 application/views/debug/index.php:494 +#: application/views/cron/index.php:83 application/views/cron/index.php:85 +#: application/views/cron/index.php:87 application/views/debug/index.php:494 #: application/views/debug/index.php:500 application/views/debug/index.php:505 #: application/views/debug/index.php:510 application/views/debug/index.php:515 #: application/views/debug/index.php:520 application/views/debug/index.php:525 +#: application/views/user/index.php:138 msgid "never" msgstr "从不" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:102 msgid "Your Mastercron isn't running." msgstr "Cron 主任务未运行。" -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:103 msgid "" "Copy the cron above to a external cron service or into your server's cron to " "use this cron manager." msgstr "将上面的cron复制到外部cron服务或服务器的cron中,以使用此cron管理器。" -#: application/views/cron/index.php:100 +#: application/views/cron/index.php:104 msgid "" "On a basic linux server with shell access use this command to edit your " "crons:" msgstr "在具有shell访问权限的基本Linux服务器上,使用以下命令来编辑cron:" -#: application/views/cron/index.php:107 +#: application/views/cron/index.php:111 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -4983,154 +5710,10 @@ msgstr "只有具有 SOTA 信息的 QSO 才会被导出!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:411 msgid "Propagation Mode" msgstr "传播模式" -#: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:214 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 -msgctxt "Propagation Mode" -msgid "Aircraft Scatter" -msgstr "Aircraft Scatter" - -#: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:215 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 -msgctxt "Propagation Mode" -msgid "Aurora" -msgstr "Aurora" - -#: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:216 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 -msgctxt "Propagation Mode" -msgid "Aurora-E" -msgstr "Aurora-E" - -#: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:217 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 -msgctxt "Propagation Mode" -msgid "Back scatter" -msgstr "Back scatter" - -#: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:218 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 -msgctxt "Propagation Mode" -msgid "EchoLink" -msgstr "EchoLink" - -#: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:219 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 -msgctxt "Propagation Mode" -msgid "Earth-Moon-Earth" -msgstr "EME" - -#: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:220 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 -msgctxt "Propagation Mode" -msgid "Sporadic E" -msgstr "Sporadic E" - -#: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:221 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 -msgctxt "Propagation Mode" -msgid "Field Aligned Irregularities" -msgstr "Field Aligned Irregularities" - -#: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:222 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 -msgctxt "Propagation Mode" -msgid "F2 Reflection" -msgstr "F2 Reflection" - -#: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:223 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 -msgctxt "Propagation Mode" -msgid "Internet-assisted" -msgstr "Internet-assisted" - -#: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:224 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 -msgctxt "Propagation Mode" -msgid "Ionoscatter" -msgstr "Ionoscatter" - -#: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:225 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 -msgctxt "Propagation Mode" -msgid "IRLP" -msgstr "IRLP" - -#: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:226 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 -msgctxt "Propagation Mode" -msgid "Meteor scatter" -msgstr "Meteor scatter" - -#: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:227 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 -msgctxt "Propagation Mode" -msgid "Terrestrial or atmospheric repeater or transponder" -msgstr "Terrestrial or atmospheric repeater or transponder" - -#: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:228 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 -msgctxt "Propagation Mode" -msgid "Rain scatter" -msgstr "Rain scatter" - -#: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:229 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 -msgctxt "Propagation Mode" -msgid "Satellite" -msgstr "Satellite" - -#: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:230 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 -msgctxt "Propagation Mode" -msgid "Trans-equatorial" -msgstr "Trans-equatorial" - -#: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:231 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 -msgctxt "Propagation Mode" -msgid "Tropospheric ducting" -msgstr "Tropospheric ducting" - #: application/views/dashboard/index.php:5 msgid "RSTS" msgstr "RSTS" @@ -5139,84 +5722,98 @@ msgstr "RSTS" msgid "RSTR" msgstr "RSTR" -#: application/views/dashboard/index.php:56 +#: application/views/dashboard/index.php:58 msgid "" "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" msgstr "您需要升级您的 PHP 版本。 最低版本为 7.4。 你的版本是" -#: application/views/dashboard/index.php:63 +#: application/views/dashboard/index.php:65 #, php-format msgctxt "Dashboard Warning" -msgid "You need to update country files! Click %s to do it." -msgstr "您需要更新国家/地区文件!单击%s进行更新。" +msgid "You need to update country files! Click %shere%s to do it." +msgstr "您需要更新国家/地区文件!单击%s这里%s进行更新。" -#: application/views/dashboard/index.php:72 +#: application/views/dashboard/index.php:73 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station locations. Click %s to do it:" -msgstr "您没有台站位置。单击%s执行此操作:" +msgid "You have no station locations. Click %shere%s to do it." +msgstr "您没有台站位置。单击%s这里%s进行更新。" #: application/views/dashboard/index.php:81 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station logbook. Click %s to do it:" -msgstr "您没有日志本。单击%s执行此操作:" +msgid "You have no station logbook. Click %shere%s to do it." +msgstr "您没有日志本。单击%s这里%s进行更新。" -#: application/views/dashboard/index.php:91 +#: application/views/dashboard/index.php:89 +#, php-format +msgctxt "Dashboard Warning" +msgid "" +"Your active Station Location isn't linked to your Logbook. Click %shere%s to " +"do it." +msgstr "您当前活跃的电台位置并没有链接到你的日志本。单击 %s这里%s 进行设置。" + +#: application/views/dashboard/index.php:97 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station linked to your Logbook. Click %shere%s to do it." +msgstr "您的日志本没有绑定电台。单击 %s这里%s 进行设置。" + +#: application/views/dashboard/index.php:106 #, php-format msgid "You have had %d QSO today" msgid_plural "You have had %d QSOs today" -msgstr[0] "你今天有%d个QSO" +msgstr[0] "您今天有 %d 个QSO" -#: application/views/dashboard/index.php:97 +#: application/views/dashboard/index.php:112 msgid "You have made no QSOs today; time to turn on the radio!" msgstr "你今天还没进行 QSO,是时候打开你的电台开始通联了!" -#: application/views/dashboard/index.php:104 +#: application/views/dashboard/index.php:119 msgid "Attention: you need to set an active station location." msgstr "注意:你需要设置一个活动的电台站地址。" -#: application/views/dashboard/index.php:110 +#: application/views/dashboard/index.php:125 msgid "" "You have themes without defined theme mode. Please ask the admin to edit the " "themes." msgstr "您的主题没有定义主题模式。请向管理员请求编辑主题。" -#: application/views/dashboard/index.php:118 +#: application/views/dashboard/index.php:133 msgid "At least one of your LoTW certificates is expired!" msgstr "至少有一个 LoTW 证书已经过期!" -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:139 msgid "At least one of your LoTW certificates is about to expire!" msgstr "至少有一个 LoTW 证书即将过期!" -#: application/views/dashboard/index.php:213 +#: application/views/dashboard/index.php:229 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "QSO 分析" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:252 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "DXCC 实体分析" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:269 #: application/views/visitor/index.php:275 msgid "Needed" msgstr "待通联" -#: application/views/dashboard/index.php:266 -#: application/views/dashboard/index.php:293 -#: application/views/dashboard/index.php:314 -#: application/views/dashboard/index.php:335 +#: application/views/dashboard/index.php:282 +#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:330 +#: application/views/dashboard/index.php:351 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:167 -#: application/views/qso/edit_ajax.php:390 -#: application/views/qso/edit_ajax.php:451 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:550 +#: application/views/qso/edit_ajax.php:417 +#: application/views/qso/edit_ajax.php:478 +#: application/views/qso/edit_ajax.php:518 application/views/qso/index.php:572 #: application/views/search/result_search.php:8 #: application/views/search/search_result_ajax.php:180 #: application/views/search/search_result_ajax.php:260 @@ -5224,91 +5821,91 @@ msgstr "待通联" #: application/views/search/search_result_ajax.php:332 #: application/views/search/search_result_ajax.php:362 #: application/views/statistics/custom_result.php:89 -#: application/views/view_log/partial/log_ajax.php:140 -#: application/views/view_log/partial/log_ajax.php:217 -#: application/views/view_log/partial/log_ajax.php:237 -#: application/views/view_log/partial/log_ajax.php:287 -#: application/views/view_log/partial/log_ajax.php:295 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:289 +#: application/views/view_log/partial/log_ajax.php:297 #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 -#: src/QSLManager/QSO.php:371 src/QSLManager/QSO.php:423 -#: src/QSLManager/QSO.php:459 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:270 +#: src/QSLManager/QSO.php:373 src/QSLManager/QSO.php:425 +#: src/QSLManager/QSO.php:461 msgid "Sent" msgstr "已发送" -#: application/views/dashboard/index.php:272 -#: application/views/dashboard/index.php:299 -#: application/views/dashboard/index.php:320 -#: application/views/dashboard/index.php:341 +#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:315 +#: application/views/dashboard/index.php:336 +#: application/views/dashboard/index.php:357 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 #: application/views/qslprint/qsolist.php:151 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:423 -#: application/views/qso/edit_ajax.php:464 -#: application/views/qso/edit_ajax.php:503 +#: application/views/qso/edit_ajax.php:450 +#: application/views/qso/edit_ajax.php:491 +#: application/views/qso/edit_ajax.php:530 #: application/views/search/search_result_ajax.php:222 #: application/views/search/search_result_ajax.php:273 #: application/views/search/search_result_ajax.php:313 #: application/views/search/search_result_ajax.php:345 #: application/views/search/search_result_ajax.php:375 -#: application/views/view_log/partial/log_ajax.php:178 -#: application/views/view_log/partial/log_ajax.php:218 -#: application/views/view_log/partial/log_ajax.php:263 -#: application/views/view_log/partial/log_ajax.php:288 -#: application/views/view_log/partial/log_ajax.php:296 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:265 +#: application/views/view_log/partial/log_ajax.php:290 +#: application/views/view_log/partial/log_ajax.php:298 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 -#: src/QSLManager/QSO.php:394 src/QSLManager/QSO.php:436 -#: src/QSLManager/QSO.php:472 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:315 +#: src/QSLManager/QSO.php:396 src/QSLManager/QSO.php:438 +#: src/QSLManager/QSO.php:474 msgid "Received" msgstr "已收到" -#: application/views/dashboard/index.php:278 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:388 -#: application/views/logbookadvanced/index.php:399 +#: application/views/dashboard/index.php:294 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:415 +#: application/views/logbookadvanced/index.php:426 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 -#: application/views/qso/edit_ajax.php:395 -#: application/views/qso/edit_ajax.php:428 -#: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:469 +#: application/views/qso/edit_ajax.php:422 +#: application/views/qso/edit_ajax.php:455 +#: application/views/qso/edit_ajax.php:483 #: application/views/qso/edit_ajax.php:496 -#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:555 +#: application/views/qso/edit_ajax.php:523 +#: application/views/qso/edit_ajax.php:535 application/views/qso/index.php:577 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 -#: application/views/view_log/partial/log_ajax.php:146 -#: application/views/view_log/partial/log_ajax.php:184 -#: application/views/view_log/partial/log_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:273 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 -#: src/QSLManager/QSO.php:319 src/QSLManager/QSO.php:379 -#: src/QSLManager/QSO.php:402 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +#: application/views/view_log/partial/log_ajax.php:249 +#: application/views/view_log/partial/log_ajax.php:275 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:276 +#: src/QSLManager/QSO.php:321 src/QSLManager/QSO.php:381 +#: src/QSLManager/QSO.php:404 msgid "Requested" msgstr "已请求" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:304 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:351 +#: application/views/dashboard/index.php:367 msgid "VUCC-Grids" msgstr "VUCC 网格" #: application/views/dayswithqso/index.php:2 -#: application/views/interface_assets/header.php:146 +#: application/views/interface_assets/header.php:148 msgid "Days with QSOs" msgstr "天数" @@ -5337,7 +5934,7 @@ msgstr "开始时间" #: application/views/dayswithqso/index.php:58 #: application/views/dayswithqso/index.php:86 #: application/views/dayswithqso/index.php:108 -#: application/views/timeline/index.php:120 +#: application/views/timeline/index.php:153 msgid "End Date" msgstr "结束时间" @@ -5406,10 +6003,8 @@ msgstr "" #: application/views/debug/index.php:47 #, php-format -msgid "" -"Check this wiki article here for " -"more information." -msgstr "请查看 Wiki。" +msgid "Check this wiki article %shere%s for more information." +msgstr "请查看 %swiki%s 以获得帮助。" #: application/views/debug/index.php:48 #, php-format @@ -5555,7 +6150,7 @@ msgstr "已安装" msgid "Not Installed" msgstr "未安装" -#: application/views/debug/index.php:283 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:671 msgid "Settings" msgstr "设置" @@ -5612,7 +6207,7 @@ msgstr "DXCC 更新(ClubLog)" #: application/views/debug/index.php:506 application/views/debug/index.php:511 #: application/views/debug/index.php:516 application/views/debug/index.php:521 #: application/views/debug/index.php:526 -#: application/views/station_profile/edit.php:22 +#: application/views/station_profile/edit.php:49 msgid "Update" msgstr "更新" @@ -5653,9 +6248,8 @@ msgstr[0] "数据库中共有%d个没有台站信息(位置)的QSO" #: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:57 -#: application/views/station_profile/edit.php:46 -#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" @@ -5683,69 +6277,93 @@ msgid "Everything ok" msgstr "一切正常" #: application/views/debug/index.php:629 +msgid "Albanian" +msgstr "阿尔巴尼亚语" + +#: application/views/debug/index.php:630 +msgid "Bosnian" +msgstr "波斯尼亚语" + +#: application/views/debug/index.php:631 msgid "Bulgarian" msgstr "保加利亚语" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:632 msgid "Chinese (Simplified)" msgstr "简体中文" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:633 +msgid "Croatian" +msgstr "克罗地亚语" + +#: application/views/debug/index.php:634 msgid "Czech" msgstr "捷克语" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:635 msgid "Dutch" msgstr "荷兰语" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:636 msgid "English" msgstr "英语" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:637 msgid "Finnish" msgstr "芬兰语" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:638 msgid "French" msgstr "法语" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:639 msgid "German" msgstr "德语" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:640 msgid "Greek" msgstr "希腊语" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:641 msgid "Italian" msgstr "意大利语" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:642 +msgid "Montenegrin" +msgstr "黑山语" + +#: application/views/debug/index.php:643 msgid "Polish" msgstr "波兰语" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:644 msgid "Portuguese" msgstr "葡萄牙语" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:645 msgid "Russian" msgstr "俄语" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:646 +msgid "Serbian" +msgstr "塞尔维亚语" + +#: application/views/debug/index.php:647 msgid "Spanish" msgstr "西班牙语" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:648 msgid "Swedish" msgstr "瑞典语" -#: application/views/debug/index.php:644 +#: application/views/debug/index.php:649 msgid "Turkish" msgstr "土耳其语" +#: application/views/distancerecords/index.php:4 +msgid "This page lists distance records per satellite based on gridsquares." +msgstr "本页根据网格列出了每个卫星通联的距离记录。" + #: application/views/distances/index.php:7 #: application/views/interface_assets/footer.php:30 #: application/views/simplefle/index.php:68 @@ -5753,8 +6371,9 @@ msgid "QSO Data" msgstr "QSO 数据" #: application/views/distances/index.php:9 -msgid "contacts were plotted.
Your furthest contact was with" -msgstr "次通联
您最远的通联是与" +#, php-format +msgid "contacts were plotted.%s Your furthest contact was with" +msgstr "个通联已绘制。 %s 您最远的通联是和" #: application/views/distances/index.php:10 msgid "in gridsquare" @@ -5795,7 +6414,7 @@ msgid "Date to" msgstr "日期到" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:366 +#: application/views/view_log/qso.php:369 msgid "QSL Info" msgstr "QSL 信息" @@ -5821,7 +6440,7 @@ msgstr "上传QSO" #: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 #: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 #: application/views/eqsl/tools.php:15 -#: application/views/interface_assets/header.php:243 +#: application/views/interface_assets/header.php:247 msgid "Tools" msgstr "工具" @@ -5971,27 +6590,15 @@ msgid "QSL Date" msgstr "QSL 日期" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2324 -#: application/views/interface_assets/footer.php:2342 -#: application/views/interface_assets/footer.php:2363 -#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2338 +#: application/views/interface_assets/footer.php:2356 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 #: application/views/qslcard/index.php:66 -#: application/views/view_log/qso.php:614 +#: application/views/view_log/qso.php:617 msgid "View" msgstr "查看" -#: application/views/gridmap/index.php:38 -#: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:604 -#: application/views/logbookadvanced/useroptions.php:118 -msgid "Propagation" -msgstr "传播方式" - -#: application/views/gridmap/index.php:42 -msgid "None/Empty" -msgstr "无/空" - #: application/views/gridmap/index.php:43 msgid "All except SAT" msgstr "除卫星以外" @@ -6089,8 +6696,8 @@ msgstr "QSO 已标记为导出至 HRDLog Logbook。" #: application/views/interface_assets/footer.php:31 #: application/views/search/search_result_ajax.php:404 #: application/views/view_log/partial/log.php:135 -#: application/views/view_log/partial/log_ajax.php:318 -#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log_ajax.php:320 +#: application/views/view_log/qso.php:437 msgid "Edit QSO" msgstr "编辑 QSO" @@ -6098,109 +6705,117 @@ msgstr "编辑 QSO" msgid "Attention" msgstr "注意" -#: application/views/interface_assets/footer.php:36 -msgid "OK" -msgstr "确认" - -#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/footer.php:38 msgid "Warning! Are you sure you want delete QSO with " msgstr "警告!您确定要删除 QSO 和 " -#: application/views/interface_assets/footer.php:38 +#: application/views/interface_assets/footer.php:39 #: application/views/user/edit.php:493 msgid "Colors" msgstr "颜色" -#: application/views/interface_assets/footer.php:40 +#: application/views/interface_assets/footer.php:41 msgid "Worked not confirmed" msgstr "已通联未确认" -#: application/views/interface_assets/footer.php:41 +#: application/views/interface_assets/footer.php:42 msgid "Not worked" msgstr "未通联" -#: application/views/interface_assets/footer.php:44 -#: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/interface_assets/footer.php:46 +#: application/views/qso/index.php:623 +#: application/views/visitor/layout/footer.php:246 msgid "Clear" msgstr "清除" -#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:47 #: application/views/qso/edit_ajax.php:211 -#: application/views/qso/edit_ajax.php:512 +#: application/views/qso/edit_ajax.php:539 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "传播方式不被 LoTW 支持,LoTW 字段已禁用。" -#: application/views/interface_assets/footer.php:127 -#: application/views/interface_assets/header.php:434 +#: application/views/interface_assets/footer.php:48 +msgid "No states for this DXCC available" +msgstr "该 DXCC 无满足的州" + +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "计算 QRB 和 QTF" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "坐标错误,请检查。" + +#: application/views/interface_assets/footer.php:132 +#: application/views/interface_assets/header.php:440 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "版本信息" -#: application/views/interface_assets/footer.php:392 +#: application/views/interface_assets/footer.php:398 msgid "Description:" msgstr "说明:" -#: application/views/interface_assets/footer.php:395 +#: application/views/interface_assets/footer.php:401 msgid "Query description" msgstr "查询说明" -#: application/views/interface_assets/footer.php:411 +#: application/views/interface_assets/footer.php:417 msgid "Your query has been saved!" msgstr "查询已储存!" -#: application/views/interface_assets/footer.php:413 +#: application/views/interface_assets/footer.php:419 #: application/views/search/filter.php:46 msgid "Edit queries" msgstr "编辑查询" -#: application/views/interface_assets/footer.php:415 +#: application/views/interface_assets/footer.php:421 msgid "Stored queries:" msgstr "存储的查询:" -#: application/views/interface_assets/footer.php:420 +#: application/views/interface_assets/footer.php:426 #: application/views/search/filter.php:60 msgid "Run Query" msgstr "执行查询" -#: application/views/interface_assets/footer.php:432 -#: application/views/interface_assets/footer.php:561 -#: application/views/interface_assets/footer.php:625 +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 msgid "Stored Queries" msgstr "存储的查询" -#: application/views/interface_assets/footer.php:437 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 msgid "You need to make a query before you search!" msgstr "您需要创建查询来进行搜索!" -#: application/views/interface_assets/footer.php:458 -#: application/views/interface_assets/footer.php:589 +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 #: application/views/search/filter.php:79 msgid "Export to ADIF" msgstr "导出 ADIF" -#: application/views/interface_assets/footer.php:496 +#: application/views/interface_assets/footer.php:502 msgid "Warning! Are you sure you want delete this stored query?" msgstr "警告!确定要删除存储的查询?" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:516 msgid "The stored query has been deleted!" msgstr "存储的查询已删除!" -#: application/views/interface_assets/footer.php:519 +#: application/views/interface_assets/footer.php:525 msgid "The stored query could not be deleted. Please try again!" msgstr "无法删除存储的查询,请重试!" -#: application/views/interface_assets/footer.php:545 +#: application/views/interface_assets/footer.php:551 msgid "The query description has been updated!" msgstr "查询说明已更新!" -#: application/views/interface_assets/footer.php:549 +#: application/views/interface_assets/footer.php:555 msgid "Something went wrong with the save. Please try again!" msgstr "存储出错,请重试!" -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:678 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -6209,62 +6824,75 @@ msgstr "" "请稍等,您选择的 DXCC 已经失效,请确认最新的 DXCC 实体,如果您十分确认,请忽" "略该警告。" -#: application/views/interface_assets/footer.php:1156 -#, php-format -msgid "You're not logged it. Please login" -msgstr "未登录,请在 这里 登录" +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:533 +msgid "Callsign: " +msgstr "呼号: " -#: application/views/interface_assets/footer.php:1362 -#: application/views/interface_assets/footer.php:1366 -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1506 -#: application/views/interface_assets/footer.php:1510 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:731 +msgid "Count: " +msgstr "总数: " + +#: application/views/interface_assets/footer.php:732 +msgid "Grids: " +msgstr "网格: " + +#: application/views/interface_assets/footer.php:1167 +#, php-format +msgid "You're not logged in. Please %slogin%s" +msgstr "请前往 %s这里%s 登录" + +#: application/views/interface_assets/footer.php:1375 +#: application/views/interface_assets/footer.php:1379 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1523 +#: application/views/interface_assets/footer.php:1526 msgid "grid square" msgstr "网格" -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1526 msgid "Total count" msgstr "总数" -#: application/views/interface_assets/footer.php:2100 +#: application/views/interface_assets/footer.php:2114 msgid "QSL Card for " msgstr "QSL 卡片至 " -#: application/views/interface_assets/footer.php:2120 +#: application/views/interface_assets/footer.php:2134 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "警告!确定要删除这个 QSL 卡片吗?" -#: application/views/interface_assets/footer.php:2160 +#: application/views/interface_assets/footer.php:2174 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "电子 QSL 卡片" -#: application/views/interface_assets/footer.php:2162 +#: application/views/interface_assets/footer.php:2176 msgid "eQSL Card for " msgstr "eQSL 卡片至 " -#: application/views/interface_assets/footer.php:2335 -#: application/views/interface_assets/footer.php:2374 -#: application/views/view_log/qso.php:604 +#: application/views/interface_assets/footer.php:2349 +#: application/views/interface_assets/footer.php:2388 +#: application/views/view_log/qso.php:607 msgid "QSL image file" msgstr "QSL 图片文件" -#: application/views/interface_assets/footer.php:2354 +#: application/views/interface_assets/footer.php:2368 msgid "Front QSL Card:" msgstr "QSL 卡片正面:" -#: application/views/interface_assets/footer.php:2392 +#: application/views/interface_assets/footer.php:2406 msgid "Back QSL Card:" msgstr "QSL 卡片背面:" -#: application/views/interface_assets/footer.php:2403 -#: application/views/interface_assets/footer.php:2428 +#: application/views/interface_assets/footer.php:2417 +#: application/views/interface_assets/footer.php:2442 msgid "Add additional QSOs to a QSL Card" msgstr "向一张卡片添加额外的 QSO" -#: application/views/interface_assets/footer.php:2439 +#: application/views/interface_assets/footer.php:2453 msgid "Something went wrong. Please try again!" msgstr "出现了错误,请重试!" @@ -6320,91 +6948,91 @@ msgstr "分析" msgid "Activated Gridsquares" msgstr "激活的网格" -#: application/views/interface_assets/header.php:160 +#: application/views/interface_assets/header.php:162 msgid "International" msgstr "国际" -#: application/views/interface_assets/header.php:166 +#: application/views/interface_assets/header.php:168 msgid "ITU" msgstr "ITU" -#: application/views/interface_assets/header.php:186 +#: application/views/interface_assets/header.php:190 msgid "Canada" msgstr "加拿大" -#: application/views/interface_assets/header.php:192 +#: application/views/interface_assets/header.php:196 msgid "Germany" msgstr "德国" -#: application/views/interface_assets/header.php:196 +#: application/views/interface_assets/header.php:200 msgid "DL Gridmaster" msgstr "DL Gridmaster" -#: application/views/interface_assets/header.php:200 +#: application/views/interface_assets/header.php:204 msgid "Great Britain" msgstr "英国" -#: application/views/interface_assets/header.php:202 +#: application/views/interface_assets/header.php:206 msgid "WAB" msgstr "WAB" -#: application/views/interface_assets/header.php:206 +#: application/views/interface_assets/header.php:210 msgid "Japan" msgstr "日本" -#: application/views/interface_assets/header.php:212 +#: application/views/interface_assets/header.php:216 msgid "JA Gridmaster" msgstr "JA Gridmaster" -#: application/views/interface_assets/header.php:216 +#: application/views/interface_assets/header.php:220 msgid "Luxemburg" msgstr "卢森堡" -#: application/views/interface_assets/header.php:218 +#: application/views/interface_assets/header.php:222 msgid "LX Gridmaster" msgstr "LX Gridmaster" -#: application/views/interface_assets/header.php:222 +#: application/views/interface_assets/header.php:226 msgid "Switzerland" msgstr "瑞士" -#: application/views/interface_assets/header.php:228 +#: application/views/interface_assets/header.php:232 msgid "USA" msgstr "美国" -#: application/views/interface_assets/header.php:234 +#: application/views/interface_assets/header.php:238 msgid "US Gridmaster" msgstr "US Gridmaster" -#: application/views/interface_assets/header.php:251 +#: application/views/interface_assets/header.php:255 msgid "Bandmap" msgstr "波段地图" -#: application/views/interface_assets/header.php:253 +#: application/views/interface_assets/header.php:257 msgid "SAT Timers" msgstr "卫星过境时钟" -#: application/views/interface_assets/header.php:256 +#: application/views/interface_assets/header.php:260 msgid "Satellite Flightpath" -msgstr "" +msgstr "卫星轨迹" -#: application/views/interface_assets/header.php:258 +#: application/views/interface_assets/header.php:262 msgid "Satellite Pass" -msgstr "" +msgstr "卫星过境" -#: application/views/interface_assets/header.php:265 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:269 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "管理员" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:274 msgid "Global Options" msgstr "全局选项" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:280 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:11 +#: application/views/satellite/pass.php:495 #: application/views/statistics/custom.php:20 #: application/views/statistics/custom_result.php:21 #: application/views/statistics/index.php:39 @@ -6412,79 +7040,83 @@ msgstr "全局选项" msgid "Satellites" msgstr "卫星" -#: application/views/interface_assets/header.php:282 +#: application/views/interface_assets/header.php:286 msgid "Update Country Files" msgstr "更新国家文件" -#: application/views/interface_assets/header.php:286 +#: application/views/interface_assets/header.php:290 msgid "Debug Information" msgstr "调试信息" -#: application/views/interface_assets/header.php:333 +#: application/views/interface_assets/header.php:337 msgid "Add/Search Callsign" msgstr "添加/搜索 呼号" -#: application/views/interface_assets/header.php:335 +#: application/views/interface_assets/header.php:339 msgid "Log" msgstr "日志" -#: application/views/interface_assets/header.php:342 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:346 +#: application/views/logbookadvanced/index.php:474 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "查询呼号" -#: application/views/interface_assets/header.php:371 +#: application/views/interface_assets/header.php:375 #: application/views/user/edit.php:49 msgid "Account" msgstr "账户信息" -#: application/views/interface_assets/header.php:386 +#: application/views/interface_assets/header.php:390 msgid "Other Export Options" msgstr "其它导出选项" -#: application/views/interface_assets/header.php:394 +#: application/views/interface_assets/header.php:398 msgid "Cabrillo Export" msgstr "Cabrillo 导出" -#: application/views/interface_assets/header.php:418 +#: application/views/interface_assets/header.php:400 +msgid "EDI Export" +msgstr "EDI 导出" + +#: application/views/interface_assets/header.php:424 msgid "QSL Queue" msgstr "QSL 队列" -#: application/views/interface_assets/header.php:419 +#: application/views/interface_assets/header.php:425 msgid "Labels" msgstr "标签" -#: application/views/interface_assets/header.php:421 +#: application/views/interface_assets/header.php:427 msgid "Third-Party Services" msgstr "第三方服务" -#: application/views/interface_assets/header.php:424 +#: application/views/interface_assets/header.php:430 msgid "eQSL Import / Export" msgstr "eQSL 导入/导出" -#: application/views/interface_assets/header.php:425 +#: application/views/interface_assets/header.php:431 msgid "HRDLog Logbook" msgstr "HRDLog 日志簿" -#: application/views/interface_assets/header.php:435 +#: application/views/interface_assets/header.php:441 msgid "Help" msgstr "帮助" -#: application/views/interface_assets/header.php:436 +#: application/views/interface_assets/header.php:442 msgid "Forum" msgstr "论坛" -#: application/views/interface_assets/header.php:438 +#: application/views/interface_assets/header.php:444 msgid "Logout" msgstr "注销" -#: application/views/interface_assets/header.php:446 +#: application/views/interface_assets/header.php:452 msgid "Select a Location" msgstr "选择电台站位置" -#: application/views/interface_assets/header.php:525 +#: application/views/interface_assets/header.php:531 msgid "Extras" msgstr "额外" @@ -6755,86 +7387,122 @@ msgid "Start printing at?" msgstr "开始打印编号?" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:405 -#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "QSL Via" -#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/edit.php:23 msgid "LoTW Sent" msgstr "LoTW 已发送" -#: application/views/logbookadvanced/edit.php:23 +#: application/views/logbookadvanced/edit.php:24 msgid "LoTW Received" msgstr "LoTW 已收到" -#: application/views/logbookadvanced/edit.php:73 +#: application/views/logbookadvanced/edit.php:75 msgid "SAT Mode" msgstr "卫星模式" -#: application/views/logbookadvanced/edit.php:87 +#: application/views/logbookadvanced/edit.php:89 msgid "Band RX" msgstr "接收频段" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "网格" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "路径" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "CQ 分区" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "ITU 分区" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:174 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "夜晚阴影" + +#: application/views/logbookadvanced/index.php:144 msgid "From" msgstr "开始日期" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:148 msgid "To" msgstr "截止日期" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:152 +#: application/views/logbookadvanced/index.php:569 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "对方呼号(Dx)" -#: application/views/logbookadvanced/index.php:148 +#: application/views/logbookadvanced/index.php:159 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "- 无 - (如 /MM, /AM)" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:224 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "无/空" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:540 +msgid "Invalid" +msgstr "无效" + +#: application/views/logbookadvanced/index.php:324 msgid "QSL sent" msgstr "QSL 发送" -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:375 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:397 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:439 #: application/views/lookup/lotwuser.php:12 -#: application/views/qso/edit_ajax.php:394 -#: application/views/qso/edit_ajax.php:427 -#: application/views/qso/edit_ajax.php:455 -#: application/views/qso/edit_ajax.php:468 +#: application/views/qso/edit_ajax.php:421 +#: application/views/qso/edit_ajax.php:454 +#: application/views/qso/edit_ajax.php:482 #: application/views/qso/edit_ajax.php:495 -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 +#: application/views/qso/edit_ajax.php:522 +#: application/views/qso/edit_ajax.php:534 application/views/qso/index.php:576 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:209 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:236 -#: application/views/station_profile/create.php:275 -#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 #: application/views/station_profile/create.php:293 -#: application/views/station_profile/edit.php:330 -#: application/views/station_profile/edit.php:338 -#: application/views/station_profile/edit.php:364 -#: application/views/station_profile/edit.php:385 -#: application/views/station_profile/edit.php:403 -#: application/views/station_profile/edit.php:410 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 +#: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 #: application/views/user/edit.php:347 application/views/user/edit.php:358 #: application/views/user/edit.php:369 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:399 @@ -6844,35 +7512,35 @@ msgstr "QSL 发送" msgid "Yes" msgstr "是" -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 -#: application/views/logbookadvanced/index.php:376 -#: application/views/logbookadvanced/index.php:387 -#: application/views/logbookadvanced/index.php:398 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:440 #: application/views/lookup/lotwuser.php:14 -#: application/views/qso/edit_ajax.php:393 -#: application/views/qso/edit_ajax.php:426 -#: application/views/qso/edit_ajax.php:454 -#: application/views/qso/edit_ajax.php:467 +#: application/views/qso/edit_ajax.php:420 +#: application/views/qso/edit_ajax.php:453 +#: application/views/qso/edit_ajax.php:481 #: application/views/qso/edit_ajax.php:494 -#: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 +#: application/views/qso/edit_ajax.php:521 +#: application/views/qso/edit_ajax.php:533 application/views/qso/index.php:575 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:210 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:237 -#: application/views/station_profile/create.php:276 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/create.php:292 -#: application/views/station_profile/edit.php:331 -#: application/views/station_profile/edit.php:339 -#: application/views/station_profile/edit.php:365 -#: application/views/station_profile/edit.php:386 -#: application/views/station_profile/edit.php:404 -#: application/views/station_profile/edit.php:411 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 #: application/views/user/edit.php:348 application/views/user/edit.php:359 #: application/views/user/edit.php:370 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:400 @@ -6883,32 +7551,32 @@ msgstr "是" msgid "No" msgstr "否" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 -#: application/views/logbookadvanced/index.php:389 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:416 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 -#: application/views/qso/edit_ajax.php:396 -#: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:497 application/views/qso/index.php:556 +#: application/views/qso/edit_ajax.php:423 +#: application/views/qso/edit_ajax.php:484 +#: application/views/qso/edit_ajax.php:524 application/views/qso/index.php:578 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:225 -#: application/views/view_log/partial/log_ajax.php:143 -#: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +#: src/QSLManager/QSO.php:273 src/QSLManager/QSO.php:318 msgid "Queued" msgstr "已排队" -#: application/views/logbookadvanced/index.php:304 -#: application/views/logbookadvanced/index.php:314 -#: application/views/logbookadvanced/index.php:346 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:368 -#: application/views/logbookadvanced/index.php:378 -#: application/views/logbookadvanced/index.php:390 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:373 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:417 +#: application/views/logbookadvanced/index.php:427 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6916,42 +7584,42 @@ msgstr "已排队" #: application/views/qslprint/qsolist.php:109 #: application/views/qslprint/qsolist.php:174 #: application/views/qslprint/qsolist.php:189 -#: application/views/qso/edit_ajax.php:397 -#: application/views/qso/edit_ajax.php:429 -#: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:470 -#: application/views/qso/edit_ajax.php:498 -#: application/views/qso/edit_ajax.php:509 application/views/qso/index.php:557 +#: application/views/qso/edit_ajax.php:424 +#: application/views/qso/edit_ajax.php:456 +#: application/views/qso/edit_ajax.php:485 +#: application/views/qso/edit_ajax.php:497 +#: application/views/qso/edit_ajax.php:525 +#: application/views/qso/edit_ajax.php:536 application/views/qso/index.php:579 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/search/search_result_ajax.php:305 #: application/views/search/search_result_ajax.php:320 -#: application/views/view_log/partial/log_ajax.php:149 -#: application/views/view_log/partial/log_ajax.php:187 -#: application/views/view_log/partial/log_ajax.php:242 -#: application/views/view_log/partial/log_ajax.php:268 -#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 -#: src/QSLManager/QSO.php:375 src/QSLManager/QSO.php:398 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +#: application/views/view_log/partial/log_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:270 +#: src/QSLManager/QSO.php:279 src/QSLManager/QSO.php:324 +#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:400 msgid "Invalid (Ignore)" msgstr "无效(忽略)" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:335 msgid "QSL received" msgstr "QSL 接收" -#: application/views/logbookadvanced/index.php:315 -#: application/views/logbookadvanced/index.php:357 -#: application/views/logbookadvanced/index.php:379 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:428 msgid "Verified" msgstr "已验证" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:346 msgid "QSL send. method" msgstr "QSL 发送方式" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:359 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6960,268 +7628,264 @@ msgstr "QSL 发送方式" #: application/views/qslprint/qsolist.php:77 #: application/views/qslprint/qsolist.php:119 #: application/views/qslprint/qsolist.php:210 -#: application/views/qso/edit_ajax.php:408 -#: application/views/qso/edit_ajax.php:441 application/views/qso/index.php:568 +#: application/views/qso/edit_ajax.php:435 +#: application/views/qso/edit_ajax.php:468 application/views/qso/index.php:590 #: application/views/search/search_result_ajax.php:199 #: application/views/search/search_result_ajax.php:241 -#: application/views/view_log/partial/log_ajax.php:162 -#: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +#: src/QSLManager/QSO.php:296 src/QSLManager/QSO.php:339 msgid "Bureau" msgstr "卡片局" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:360 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 #: application/views/qslprint/qsolist.php:80 #: application/views/qslprint/qsolist.php:122 #: application/views/qslprint/qsolist.php:211 -#: application/views/qso/edit_ajax.php:407 -#: application/views/qso/edit_ajax.php:440 application/views/qso/index.php:567 +#: application/views/qso/edit_ajax.php:434 +#: application/views/qso/edit_ajax.php:467 application/views/qso/index.php:589 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 -#: application/views/view_log/partial/log_ajax.php:165 -#: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +#: src/QSLManager/QSO.php:299 src/QSLManager/QSO.php:342 msgid "Direct" msgstr "直邮" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 #: application/views/qslprint/qsolist.php:86 #: application/views/qslprint/qsolist.php:128 #: application/views/qslprint/qsolist.php:212 -#: application/views/qso/edit_ajax.php:409 -#: application/views/qso/edit_ajax.php:442 application/views/qso/index.php:569 +#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:591 #: application/views/search/search_result_ajax.php:208 #: application/views/search/search_result_ajax.php:250 -#: application/views/view_log/partial/log_ajax.php:171 -#: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +#: src/QSLManager/QSO.php:305 src/QSLManager/QSO.php:348 msgid "Electronic" msgstr "电子" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:362 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 -#: application/views/qso/edit_ajax.php:410 -#: application/views/qso/edit_ajax.php:443 application/views/qso/index.php:570 +#: application/views/qso/edit_ajax.php:437 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:592 #: application/views/search/search_result_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:206 +#: application/views/view_log/partial/log_ajax.php:208 msgid "Manager" msgstr "管理员" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:356 msgid "QSL recv. method" msgstr "QSL 接收方式" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:366 msgid "LoTW sent" msgstr "LoTW 发送" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:377 msgid "LoTW received" msgstr "LoTW 接收" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:388 msgid "Clublog sent" msgstr "Clublog 已发送" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:399 msgid "Clublog received" msgstr "Clublog 已收到" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:410 msgid "eQSL sent" msgstr "eQSL 发送" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "eQSL received" msgstr "eQSL 接收" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:436 msgid "QSL Images" msgstr "QSL 图片" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:448 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "警告!确定要删除选中的QSO吗?" -#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:451 msgid "With selected: " msgstr "用选中行进行: " -#: application/views/logbookadvanced/index.php:425 -#: application/views/qso/edit_ajax.php:595 +#: application/views/logbookadvanced/index.php:452 +#: application/views/qso/edit_ajax.php:622 msgid "Update from Callbook" msgstr "从历史日志补全信息" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:453 msgid "Queue Bureau" msgstr "卡片局队列" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:454 msgid "Queue Direct" msgstr "直邮卡片队列" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Queue Electronic" msgstr "电子卡片队列" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:456 msgid "Sent (Bureau)" msgstr "已发送(卡片局)" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:457 msgid "Sent (Direct)" msgstr "已发送(直邮)" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Sent (Electronic)" msgstr "已发送(电子)" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:459 msgid "Not Sent" msgstr "未发送" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:460 msgid "QSL Not Required" msgstr "未获取 QSL" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Not Received" msgstr "未收到" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:462 msgid "Received (Bureau)" msgstr "已接收(卡片局)" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:463 msgid "Received (Direct)" msgstr "已接收(直邮)" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Received (Electronic)" msgstr "已接收(电子)" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:465 msgid "Create ADIF" -msgstr "创建 ADIF" +msgstr "生成 ADIF" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:466 msgid "Print Label" msgstr "打印标签" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "QSL Slideshow" msgstr "QSL 展示窗" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:472 msgid "Quicksearch with selected: " msgstr "用选中行的条件进行快速搜索: " -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:477 msgid "Search DXCC" msgstr "搜索 DXCC" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:480 msgid "Search State" msgstr "搜索 州/省" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Search Gridsquare" msgstr "搜索 网格" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:486 msgid "Search CQ Zone" msgstr "搜索 CQ 分区" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 msgid "Search ITU Zone" msgstr "搜索 ITU 分区" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:492 msgid "Search Mode" msgstr "搜索 模式" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:495 msgid "Search Band" msgstr "搜索 频段" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:498 msgid "Search IOTA" msgstr "搜索 IOTA" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:501 msgid "Search SOTA" msgstr "搜索 SOTA" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 msgid "Search POTA" msgstr "搜索 POTA" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:507 msgid "Search WWFF" msgstr "搜索 WWFF" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Search Operator" msgstr "搜索操作符" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:516 msgid "Quickfilters" msgstr "快速过滤" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "QSL Filters" msgstr "过滤 QSL" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:518 #: application/views/mode/index.php:68 msgid "Filters" msgstr "过滤器" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "每页结果数" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:527 #: application/views/qso/index.php:272 -#: application/views/station_profile/edit.php:65 +#: application/views/station_profile/edit.php:92 msgid "Location" msgstr "位置" -#: application/views/logbookadvanced/index.php:506 -msgid "Callsign: " -msgstr "呼号: " - -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:539 msgid "Dupes" msgstr "重复的 QSO" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:547 msgid "Globe map" msgstr "全球地图" -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "本台呼号(De)" -#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:605 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "QSL 信息" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:650 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "电台网格" @@ -7249,41 +7913,15 @@ msgstr "包含通过" msgid "Column" msgstr "列" -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/useroptions.php:152 msgctxt "Map Options" msgid "Layer" msgstr "层" -#: application/views/logbookadvanced/useroptions.php:149 +#: application/views/logbookadvanced/useroptions.php:153 msgid "Default on" msgstr "默认开启" -#: application/views/logbookadvanced/useroptions.php:154 -#: application/views/stationsetup/exportmapoptions.php:23 -msgctxt "Map Options" -msgid "Path lines" -msgstr "路径" - -#: application/views/logbookadvanced/useroptions.php:158 -msgctxt "Map Options" -msgid "Gridsquares" -msgstr "网格" - -#: application/views/logbookadvanced/useroptions.php:162 -msgctxt "Map Options" -msgid "CQ Zones" -msgstr "CQ 分区" - -#: application/views/logbookadvanced/useroptions.php:166 -msgctxt "Map Options" -msgid "ITU Zones" -msgstr "ITU 分区" - -#: application/views/logbookadvanced/useroptions.php:170 -msgctxt "Map Options" -msgid "Night Shadow" -msgstr "夜晚阴影" - #: application/views/lookup/index.php:8 msgid "US State" msgstr "美国州" @@ -7385,58 +8023,62 @@ msgstr "可用证书" msgid "Upload Certificate" msgstr "上传证书" -#: application/views/lotw_views/index.php:41 +#: application/views/lotw_views/index.php:37 msgid "QSO Start Date" msgstr "QSO 起始日期" -#: application/views/lotw_views/index.php:42 +#: application/views/lotw_views/index.php:38 msgid "QSO End Date" msgstr "QSO 结束日期" -#: application/views/lotw_views/index.php:43 +#: application/views/lotw_views/index.php:39 msgid "Date Created" msgstr "创建日期" -#: application/views/lotw_views/index.php:44 +#: application/views/lotw_views/index.php:40 msgid "Date Expires" msgstr "过期日期" -#: application/views/lotw_views/index.php:46 -#: application/views/view_log/qso.php:404 +#: application/views/lotw_views/index.php:42 +#: application/views/view_log/qso.php:407 msgid "Last Upload" msgstr "最后一次上传是" -#: application/views/lotw_views/index.php:91 +#: application/views/lotw_views/index.php:87 msgid "Expired" msgstr "过期" -#: application/views/lotw_views/index.php:93 +#: application/views/lotw_views/index.php:89 msgid "Expiring" msgstr "即将到期" -#: application/views/lotw_views/index.php:105 +#: application/views/lotw_views/index.php:91 +msgid "Valid" +msgstr "有效" + +#: application/views/lotw_views/index.php:101 #, php-format msgid "Last success: %s" msgstr "上次成功:%s" -#: application/views/lotw_views/index.php:108 +#: application/views/lotw_views/index.php:104 #, php-format msgid "Last fail: %s" msgstr "上次失败:%s" -#: application/views/lotw_views/index.php:114 +#: application/views/lotw_views/index.php:110 msgid "Not Synced" msgstr "未同步" -#: application/views/lotw_views/index.php:129 +#: application/views/lotw_views/index.php:125 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "你需要上传 LoTW p12 证书以使用该功能。" -#: application/views/lotw_views/index.php:144 +#: application/views/lotw_views/index.php:140 msgid "Information" msgstr "信息" -#: application/views/lotw_views/index.php:149 +#: application/views/lotw_views/index.php:145 msgid "Manual Sync" msgstr "手动同步" @@ -7651,6 +8293,14 @@ msgstr "公开 Github 按钮" msgid "This enables the button to Wavelog's Github page in the public view" msgstr "此功能可使 Wavelog Github 地址显示在公开页面中" +#: application/views/options/appearance.php:107 +msgid "Public Login Button" +msgstr "公开登陆按钮" + +#: application/views/options/appearance.php:112 +msgid "This enables the button to login to Wavelog in the public view" +msgstr "此功能可使登陆按钮显示在公开页面中" + #: application/views/options/dxcluster.php:38 msgid "Provider of DXClusterCache" msgstr "DXClusterCache 的信息来源" @@ -7951,7 +8601,7 @@ msgstr "有额外的信息需要记录吗?" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:64 #: application/views/oqrs/showrequests.php:87 -#: application/views/user/main.php:48 application/views/user/profile.php:24 +#: application/views/user/index.php:48 application/views/user/profile.php:24 msgid "E-mail" msgstr "电子邮件" @@ -7974,21 +8624,21 @@ msgstr "发送“未记录日志”请求" #: application/views/search/search_result_ajax.php:127 #: application/views/user/edit.php:478 #: application/views/view_log/partial/log.php:22 -#: application/views/view_log/partial/log_ajax.php:86 -#: application/views/view_log/qso.php:503 -#: application/views/view_log/qso.php:507 -#: application/views/view_log/qso.php:511 -#: application/views/view_log/qso.php:515 -#: application/views/view_log/qso.php:521 -#: application/views/view_log/qso.php:528 -#: application/views/view_log/qso.php:535 -#: application/views/view_log/qso.php:542 -#: application/views/view_log/qso.php:549 -#: application/views/view_log/qso.php:556 -#: application/views/view_log/qso.php:563 -#: application/views/view_log/qso.php:570 -#: application/views/view_log/qso.php:577 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log_ajax.php:88 +#: application/views/view_log/qso.php:506 +#: application/views/view_log/qso.php:510 +#: application/views/view_log/qso.php:514 +#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:531 +#: application/views/view_log/qso.php:538 +#: application/views/view_log/qso.php:545 +#: application/views/view_log/qso.php:552 +#: application/views/view_log/qso.php:559 +#: application/views/view_log/qso.php:566 +#: application/views/view_log/qso.php:573 +#: application/views/view_log/qso.php:580 +#: application/views/view_log/qso.php:585 msgid "Station" msgstr "电台站" @@ -7996,10 +8646,10 @@ msgstr "电台站" #: application/views/qslprint/qslprint.php:28 #: application/views/qslprint/qsolist.php:14 #: application/views/qslprint/qsolist.php:83 -#: application/views/qso/index.php:576 +#: application/views/qso/index.php:598 #: application/views/search/search_result_ajax.php:205 -#: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:300 +#: application/views/view_log/partial/log_ajax.php:170 +#: src/QSLManager/QSO.php:302 msgid "Via" msgstr "通过" @@ -8230,7 +8880,7 @@ msgid "Remove" msgstr "删除" #: application/views/qslprint/qslprint.php:33 -#: application/views/simplefle/index.php:133 +#: application/views/simplefle/index.php:139 msgid "QSO List" msgstr "QSO 列表" @@ -8276,35 +8926,20 @@ msgid "" "queue." msgstr "没有找到附加的 QSL 信息,可能它们已经被添加到打印队列中。" -#: application/views/qso/components/winkeysettings.php:7 -#: application/views/qso/components/winkeysettings_results.php:7 -msgid "Winkey Macros" -msgstr "Winkey 宏" - -#: application/views/qso/components/winkeysettings.php:12 -#: application/views/qso/components/winkeysettings.php:28 -#: application/views/qso/components/winkeysettings.php:44 -#: application/views/qso/components/winkeysettings.php:60 -#: application/views/qso/components/winkeysettings.php:76 -#: application/views/qso/components/winkeysettings_results.php:12 -#: application/views/qso/components/winkeysettings_results.php:28 -#: application/views/qso/components/winkeysettings_results.php:44 -#: application/views/qso/components/winkeysettings_results.php:60 -#: application/views/qso/components/winkeysettings_results.php:76 -#, php-format -msgid "Function %d - Name" -msgstr "Function %d - Name" - +#: 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:83 -#: application/views/qso/components/winkeysettings_results.php:19 -#: application/views/qso/components/winkeysettings_results.php:35 -#: application/views/qso/components/winkeysettings_results.php:51 -#: application/views/qso/components/winkeysettings_results.php:67 -#: application/views/qso/components/winkeysettings_results.php:83 +#, 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 #, php-format msgid "Function %d - Macro" msgstr "Function %d - Macro" @@ -8330,7 +8965,8 @@ msgid "RX Band" msgstr "接收频段" #: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:346 -#: application/views/view_log/qso.php:542 +#: application/views/reg1test/index.php:114 +#: application/views/view_log/qso.php:545 msgid "Transmit Power (W)" msgstr "发射功率(W)" @@ -8342,10 +8978,6 @@ msgstr "以W为单位设置功率值。在输入中仅填写数值。" msgid "Used for VUCC MultiGrids" msgstr "被 VUCC 网格计算使用" -#: application/views/qso/edit_ajax.php:177 -msgid "QTH" -msgstr "QTH" - #: application/views/qso/edit_ajax.php:258 msgid "Sat Name" msgstr "卫星名称" @@ -8354,69 +8986,85 @@ msgstr "卫星名称" msgid "Sat Mode" msgstr "卫星模式" -#: application/views/qso/edit_ajax.php:356 application/views/qso/index.php:255 -#: application/views/qso/index.php:500 application/views/user/edit.php:599 -#: application/views/view_log/qso.php:332 -#: application/views/view_log/qso.php:582 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:545 +msgid "Antenna Azimuth (°)" +msgstr "天线方位角(°)" + +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:547 +msgid "Antenna azimuth in decimal degrees." +msgstr "天线方位角(以十进制度为单位)。" + +#: application/views/qso/edit_ajax.php:274 application/views/qso/index.php:551 +msgid "Antenna Elevation (°)" +msgstr "天线仰角(°)" + +#: application/views/qso/edit_ajax.php:276 application/views/qso/index.php:553 +msgid "Antenna elevation in decimal degrees." +msgstr "天线仰角(以十进制度为单位)。" + +#: application/views/qso/edit_ajax.php:383 application/views/qso/index.php:255 +#: application/views/qso/index.php:510 application/views/user/edit.php:599 +#: application/views/view_log/qso.php:335 +#: application/views/view_log/qso.php:585 msgid "Sig Info" msgstr "Sig 属性" -#: application/views/qso/edit_ajax.php:369 +#: application/views/qso/edit_ajax.php:396 msgid "Notes (for internal usage only)" msgstr "备注(仅限内部使用)" -#: application/views/qso/edit_ajax.php:403 +#: application/views/qso/edit_ajax.php:430 msgid "Sent Method" msgstr "选择方式" -#: application/views/qso/edit_ajax.php:406 -#: application/views/qso/edit_ajax.php:439 application/views/qso/index.php:563 -#: application/views/qso/index.php:566 +#: application/views/qso/edit_ajax.php:433 +#: application/views/qso/edit_ajax.php:466 application/views/qso/index.php:585 +#: application/views/qso/index.php:588 msgid "Method" msgstr "方法" -#: application/views/qso/edit_ajax.php:416 +#: application/views/qso/edit_ajax.php:443 msgid "Sent Via" msgstr "发送 Via" -#: application/views/qso/edit_ajax.php:430 -#: application/views/qso/edit_ajax.php:471 -#: application/views/qso/edit_ajax.php:510 +#: application/views/qso/edit_ajax.php:457 +#: application/views/qso/edit_ajax.php:498 +#: application/views/qso/edit_ajax.php:537 msgid "Verified (Match)" msgstr "已确认" -#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:463 msgid "Received Method" msgstr "接收方式" -#: application/views/qso/edit_ajax.php:477 application/views/qso/index.php:583 +#: application/views/qso/edit_ajax.php:504 application/views/qso/index.php:605 msgid "This note content is exported to QSL services like eqsl.cc." msgstr "此笔记内容被导出到QSL服务,如 eqsl.cc。" -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:586 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:608 msgid "Get the default message for eQSL, for this station." msgstr "获取该站的 eQSL 默认消息。" -#: application/views/qso/edit_ajax.php:530 +#: application/views/qso/edit_ajax.php:557 msgid "Change Station Profile" msgstr "修改台站信息" -#: application/views/qso/edit_ajax.php:576 +#: application/views/qso/edit_ajax.php:603 msgid "Exchange (R)" msgstr "交换报告(R)" -#: application/views/qso/edit_ajax.php:581 +#: application/views/qso/edit_ajax.php:608 msgid "Exchange (S)" msgstr "交换报告(S)" -#: application/views/qso/edit_ajax.php:593 +#: application/views/qso/edit_ajax.php:620 #: application/views/search/search_result_ajax.php:432 #: application/views/view_log/partial/log.php:156 -#: application/views/view_log/partial/log_ajax.php:346 +#: application/views/view_log/partial/log_ajax.php:348 msgid "Delete QSO" msgstr "删除 QSO" -#: application/views/qso/edit_ajax.php:596 +#: application/views/qso/edit_ajax.php:623 msgid "Save changes" msgstr "保存" @@ -8424,7 +9072,7 @@ msgstr "保存" msgid "TimeOff is less than TimeOn" msgstr "结束时间小于开始时间" -#: application/views/qso/index.php:5 application/views/qso/index.php:694 +#: application/views/qso/index.php:5 application/views/qso/index.php:718 msgid "Previous Contacts" msgstr "先前通联" @@ -8464,23 +9112,23 @@ msgstr "关闭时间" msgid "Search DXCluster for latest Spot" msgstr "在 DXCluster 搜索最新 Spot" -#: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:149 -#: application/views/station_profile/edit.php:191 -#: application/views/user/edit.php:583 application/views/view_log/qso.php:282 -#: application/views/view_log/qso.php:549 +#: application/views/qso/index.php:196 application/views/qso/index.php:449 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 +#: application/views/user/edit.php:583 application/views/view_log/qso.php:285 +#: application/views/view_log/qso.php:552 msgid "IOTA Reference" msgstr "IOTA 编号" -#: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:165 -#: application/views/station_profile/edit.php:219 -#: application/views/user/edit.php:587 application/views/view_log/qso.php:289 -#: application/views/view_log/qso.php:556 +#: application/views/qso/index.php:212 application/views/qso/index.php:466 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 +#: application/views/user/edit.php:587 application/views/view_log/qso.php:292 +#: application/views/view_log/qso.php:559 msgid "SOTA Reference" msgstr "SOTA 编号" -#: application/views/qso/index.php:322 application/views/view_log/qso.php:98 +#: application/views/qso/index.php:322 application/views/view_log/qso.php:100 msgid "Frequency (RX)" msgstr "频率(接收)" @@ -8488,65 +9136,85 @@ msgstr "频率(接收)" msgid "Band (RX)" msgstr "频段(接收)" -#: application/views/qso/index.php:458 +#: application/views/qso/index.php:468 msgid "For example: GM/NS-001." msgstr "例如: GM/NS-001." -#: application/views/qso/index.php:471 +#: application/views/qso/index.php:481 msgid "For example: DLFF-0069." msgstr "例如: DLFF-0069." -#: application/views/qso/index.php:484 +#: application/views/qso/index.php:494 msgid "For example: PA-0150. Multiple values allowed." msgstr "例如: PA-0150. 可使用多个值。" -#: application/views/qso/index.php:496 +#: application/views/qso/index.php:506 msgid "For example: GMA" msgstr "例如: GMA" -#: application/views/qso/index.php:502 +#: application/views/qso/index.php:512 msgid "For example: DA/NW-357" msgstr "例如: DA/NW-357" -#: application/views/qso/index.php:510 +#: application/views/qso/index.php:520 msgid "For example: Q03" msgstr "例如: Q03" -#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +#: application/views/qso/index.php:529 application/views/view_log/qso.php:210 msgid "Satellite Name" msgstr "卫星名称" -#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +#: application/views/qso/index.php:537 application/views/view_log/qso.php:217 msgid "Satellite Mode" msgstr "卫星模式" -#: application/views/qso/index.php:538 +#: application/views/qso/index.php:560 msgid "" "Note content is used within Wavelog only and is not exported to other " "services." msgstr "仅在 Wavelog 使用而不上传到其他的服务的笔记。" -#: application/views/qso/index.php:604 +#: application/views/qso/index.php:626 msgid "Reset to Default" msgstr "重置为默认" -#: application/views/qso/index.php:645 +#: application/views/qso/index.php:667 msgid "Winkey" msgstr "Winkey" -#: application/views/qso/index.php:647 +#: application/views/qso/index.php:669 msgid "Connect" msgstr "连接" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:678 +msgid "Stop" +msgstr "停止" + +#: application/views/qso/index.php:679 +msgid "Tune" +msgstr "调谐" + +#: application/views/qso/index.php:680 +msgid "Stop Tune" +msgstr "停止调谐" + +#: application/views/qso/index.php:686 +msgid "CW Speed" +msgstr "CW 速度" + +#: application/views/qso/index.php:691 +msgid "Send" +msgstr "发射" + +#: application/views/qso/index.php:701 msgid "Suggestions" msgstr "建议" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:708 msgid "Profile Picture" msgstr "操作员照片" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:732 msgid "Max. 5 previous contacts are shown" msgstr "最多五次先前通联将会被显示" @@ -8575,7 +9243,140 @@ msgstr "电台功能" #: application/views/radio/index.php:27 msgid "Please wait..." +msgstr "请稍等…" + +#: application/views/reg1test/index.php:6 +msgid "Select Band" +msgstr "选择波段" + +#: application/views/reg1test/index.php:8 +msgid "" +"Bands below 50Mhz are not valid for the EDI REG1TEST format and will produce " +"invalid files." +msgstr "低于 50Mhz 的频段对于 EDI REG1TEST 格式无效,并且会产生无效文件。" + +#: application/views/reg1test/index.php:18 +msgid "Export a contest to a REG1TEST EDI log" +msgstr "将竞赛导出为 REG1TEST EDI 日志" + +#: application/views/reg1test/index.php:48 +msgid "Sent Exchange" +msgstr "发送交换信息" + +#: application/views/reg1test/index.php:50 +msgid "" +"The exchange which was sent during the contest. Can be any type of " +"information, e.g. Province, DOK, County, State, Power, Name. Max. length: 6 " +"characters." msgstr "" +"比赛中用到的交换信息,根据比赛规则而定,可以是省份、DOK、州、姓名等信息,最" +"大 6 字符长。" + +#: 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 "描述操作员所属无线电俱乐部的呼号。例如,可用进行俱乐部积分累积。" + +#: application/views/reg1test/index.php:66 +msgid "Callsign of responsible operator" +msgstr "负责人呼号" + +#: application/views/reg1test/index.php:72 +msgid "" +"List of all operators. Seperated with a semicolon ';'. The responsible " +"operator is not needed here." +msgstr "操作员列表。以 ; 半角分号分割。负责人呼号不需要填写。" + +#: application/views/reg1test/index.php:75 +msgid "Contest Address 1" +msgstr "竞赛地址 1" + +#: application/views/reg1test/index.php:77 +msgid "Address of the QTH used during the contest." +msgstr "竞赛进行时的 QTH 地址。" + +#: application/views/reg1test/index.php:80 +msgid "Contest Address 2" +msgstr "竞赛地址 2" + +#: application/views/reg1test/index.php:84 +msgid "Operator Address 1" +msgstr "负责人地址 1" + +#: application/views/reg1test/index.php:86 +msgid "Address of the responsible operator." +msgstr "负责人的地址。" + +#: application/views/reg1test/index.php:89 +msgid "Operator Address 2" +msgstr "负责人地址 2" + +#: application/views/reg1test/index.php:93 +msgid "Operator Address Postalcode" +msgstr "负责人邮政编码" + +#: application/views/reg1test/index.php:97 +msgid "Operator Address City" +msgstr "负责人城市" + +#: application/views/reg1test/index.php:101 +msgid "Operator Address Country" +msgstr "负责人国家" + +#: application/views/reg1test/index.php:105 +msgid "Operator Phone Number" +msgstr "负责人手机号码" + +#: application/views/reg1test/index.php:109 +msgid "Transmit Equipment Description" +msgstr "发射设备描述" + +#: application/views/reg1test/index.php:111 +msgid "Short description of the used equipment." +msgstr "已使用设备的简要描述。" + +#: application/views/reg1test/index.php:116 +msgid "TX Power during the contest in Watt." +msgstr "比赛时使用的发射功率,单位瓦特。" + +#: application/views/reg1test/index.php:119 +msgid "Receive Equipment Description" +msgstr "接收设备描述" + +#: application/views/reg1test/index.php:121 +msgid "If you used another gear for RX, then describe it here." +msgstr "如果您使用了其他装备进行接收,请在此处进行描述。" + +#: application/views/reg1test/index.php:124 +msgid "Antenna Description" +msgstr "天线信息" + +#: application/views/reg1test/index.php:126 +msgid "What kind of antenna was used." +msgstr "使用天线的种类。" + +#: application/views/reg1test/index.php:129 +msgid "Antenna Height Above Ground (m)" +msgstr "天线距地面高度(米)" + +#: application/views/reg1test/index.php:131 +msgid "Height of the antenna above the ground." +msgstr "天线距地面的高度。" + +#: application/views/reg1test/index.php:134 +msgid "Band multiplicator" +msgstr "波段系数" + +#: 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 "波段系数。通常为 1。只在根据竞赛积分规则下更改。" + +#: application/views/reg1test/index.php:141 +msgid "Any other remarks." +msgstr "其他备注。" #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 @@ -8664,11 +9465,72 @@ msgstr "添加卫星" #: application/views/satellite/pass.php:2 msgid "Satellite passes" -msgstr "" +msgstr "卫星过境" -#: application/views/satellite/pass.php:548 +#: application/views/satellite/pass.php:8 +msgid "Min. Satellite Elevation" +msgstr "最低仰角" + +#: application/views/satellite/pass.php:12 +msgid "Min. Azimuth" +msgstr "最小方位角" + +#: application/views/satellite/pass.php:20 +msgid "Max. Azimuth" +msgstr "最大方位角" + +#: application/views/satellite/pass.php:32 +msgid "Altitude (meters)" +msgstr "高度(米)" + +#: application/views/satellite/pass.php:36 application/views/user/edit.php:179 +msgid "Timezone" +msgstr "时区" + +#: application/views/satellite/pass.php:479 +msgid "Min. time" +msgstr "最小时间" + +#: application/views/satellite/pass.php:487 +msgid "Max. time" +msgstr "最大时间" + +#: application/views/satellite/pass.php:504 msgid "Load predictions" -msgstr "" +msgstr "加载预测" + +#: application/views/satellite/passtable.php:6 +msgid "AOS Time" +msgstr "AOS 时间" + +#: application/views/satellite/passtable.php:7 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "持续时间" + +#: application/views/satellite/passtable.php:8 +msgid "AOS Az" +msgstr "AOS 方位" + +#: application/views/satellite/passtable.php:9 +msgid "AOS El" +msgstr "AOS 仰角" + +#: application/views/satellite/passtable.php:10 +msgid "Max El" +msgstr "最大仰角" + +#: application/views/satellite/passtable.php:11 +msgid "LOS Time" +msgstr "LOS 时间" + +#: application/views/satellite/passtable.php:12 +msgid "LOS Az" +msgstr "LOS 方位" + +#: application/views/satellite/passtable.php:13 +msgid "LOS El" +msgstr "LOS 仰角" #: application/views/sattimers/index.php:15 #, php-format @@ -8690,10 +9552,6 @@ msgstr "方位角" msgid "Max Elevation" msgstr "最大仰角" -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "持续时间" - #: application/views/search/cqzones.php:5 #: application/views/search/lotw_unconfirmed.php:5 #: application/views/search/main.php:5 @@ -8802,50 +9660,50 @@ msgstr "收" #: application/views/search/search_result_ajax.php:409 #: application/views/view_log/partial/log.php:140 -#: application/views/view_log/partial/log_ajax.php:323 +#: application/views/view_log/partial/log_ajax.php:325 msgid "Mark QSL Sent (Bureau)" msgstr "标记 已收到卡片(卡片局)" #: application/views/search/search_result_ajax.php:410 #: application/views/view_log/partial/log.php:141 -#: application/views/view_log/partial/log_ajax.php:324 +#: application/views/view_log/partial/log_ajax.php:326 msgid "Mark QSL Sent (Direct)" msgstr "标记 已收到卡片(直邮)" #: application/views/search/search_result_ajax.php:417 #: application/views/view_log/partial/log.php:148 -#: application/views/view_log/partial/log_ajax.php:333 -#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log_ajax.php:335 +#: application/views/view_log/qso.php:655 msgid "Mark QSL Received (Bureau)" msgstr "标记 已收到卡片(卡片局)" #: application/views/search/search_result_ajax.php:418 #: application/views/view_log/partial/log.php:149 -#: application/views/view_log/partial/log_ajax.php:334 -#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log_ajax.php:336 +#: application/views/view_log/qso.php:657 msgid "Mark QSL Received (Direct)" msgstr "标记 已收到卡片(直邮)" #: application/views/search/search_result_ajax.php:419 #: application/views/view_log/partial/log.php:150 -#: application/views/view_log/partial/log_ajax.php:325 +#: application/views/view_log/partial/log_ajax.php:327 msgid "Mark QSL Card Requested" msgstr "标记 已请求卡片" #: application/views/search/search_result_ajax.php:420 #: application/views/view_log/partial/log.php:151 -#: application/views/view_log/partial/log_ajax.php:326 -#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log_ajax.php:328 +#: application/views/view_log/qso.php:669 msgid "Mark QSL Card Not Required" msgstr "标记 不需要卡片" #: application/views/search/search_result_ajax.php:426 -#: application/views/view_log/partial/log_ajax.php:340 +#: application/views/view_log/partial/log_ajax.php:342 msgid "Lookup on QRZ.com" msgstr "在 QRZ.com 上查询" #: application/views/search/search_result_ajax.php:428 -#: application/views/view_log/partial/log_ajax.php:342 +#: application/views/view_log/partial/log_ajax.php:344 msgid "Lookup on HamQTH" msgstr "在 HamQTH 上查询" @@ -8887,7 +9745,7 @@ msgstr "" "语法和 FLE 工作原理的信息,请参阅 %s。" #: application/views/simplefle/index.php:17 -#: application/views/simplefle/index.php:170 +#: application/views/simplefle/index.php:176 msgid "Syntax Help" msgstr "FLE 语法帮助" @@ -8981,10 +9839,9 @@ msgstr "位置" #: application/views/simplefle/index.php:107 #, php-format msgid "" -"If you did operate from a new location, first create a new Station Location" -msgstr "" -"如果您确实在一个新地点进行通联,请在 这里 创建新台站地址" +"If you did operate from a new location, first create a new %sStation " +"Location%s" +msgstr "如果您确实在一个新地址通联,请在 %s台站地址%s 创建一个新的" #: application/views/simplefle/index.php:112 msgid "e.g. OK2CQR" @@ -8998,24 +9855,24 @@ msgstr "操作员的呼号,不带有前缀及后缀。" msgid "Enter the Data" msgstr "输入信息" -#: application/views/simplefle/index.php:148 +#: application/views/simplefle/index.php:154 msgid "Refs" msgstr "对方网格" -#: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" -msgstr "标识代码可以是 SOTA、IOTA、POTA 或 WWFF" +#: application/views/simplefle/index.php:166 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" +msgstr "标识符可为其中任意:%sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" -#: application/views/simplefle/index.php:167 +#: application/views/simplefle/index.php:173 msgid "Reload QSO List" msgstr "重新加载 QSO 列表" -#: application/views/simplefle/index.php:168 +#: application/views/simplefle/index.php:174 msgid "Save in Wavelog" msgstr "保存 QSO 列表" -#: application/views/simplefle/index.php:169 +#: application/views/simplefle/index.php:175 msgid "Clear Logging Session" msgstr "清除记录会话" @@ -9087,122 +9944,121 @@ msgstr "" #: application/views/simplefle/syntax_help.php:28 #, php-format -msgctxt "uses 'this article'" msgid "" -"A full summary of all commands and the necessary syntax can be found in %s " -"of our Wiki." -msgstr "全部的指令可在 %s Wiki 查看。" +"A full summary of all commands and the necessary syntax can be found in " +"%sthis article%s of our Wiki." +msgstr "所有可用的指令或语法可在 %sWiki%s 查看。" -#: application/views/station_profile/create.php:51 -#: application/views/station_profile/edit.php:40 +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 msgid "Location Name" msgstr "地址名称" -#: application/views/station_profile/create.php:52 -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "基地台 QTH" -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "台站的地址简写,例如 %s" -#: application/views/station_profile/create.php:59 -#: application/views/station_profile/edit.php:48 +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 msgid "Station callsign. For example: 4W7EST/P" msgstr "电台呼号,例如:4W7EST/P" -#: application/views/station_profile/create.php:63 -#: application/views/station_profile/edit.php:52 +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 msgid "Station Power (W)" msgstr "电台功率 (W)" -#: application/views/station_profile/create.php:65 -#: application/views/station_profile/edit.php:54 +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 msgid "Default station power in Watt. Overwritten by CAT." msgstr "默认电台功率 (W),如有 CAT 信息会覆盖此设置。" -#: application/views/station_profile/create.php:68 -#: application/views/station_profile/edit.php:69 +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 msgid "Station DXCC" msgstr "台站 DXCC" -#: application/views/station_profile/create.php:71 -#: application/views/station_profile/edit.php:72 +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 msgctxt "DXCC selection" msgid "None" msgstr "无" -#: application/views/station_profile/create.php:78 -#: application/views/station_profile/edit.php:85 +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 msgid "Station DXCC entity. For example: Bolivia" msgstr "台站的 DXCC 实体名称,如 China" -#: application/views/station_profile/create.php:83 -#: application/views/station_profile/edit.php:91 +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 msgid "Station City" msgstr "台站城市" -#: application/views/station_profile/create.php:85 -#: application/views/station_profile/edit.php:93 +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 msgid "Station city. For example: Oslo" msgstr "台站坐落城市,如 Beijing" -#: application/views/station_profile/create.php:94 -#: application/views/station_profile/edit.php:105 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 msgid "Station state. Applies to certain countries only." msgstr "台站州(特定国家可用)。" -#: application/views/station_profile/create.php:99 -#: application/views/station_profile/edit.php:110 +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 msgid "Station County" msgstr "台站县" -#: application/views/station_profile/create.php:101 -#: application/views/station_profile/edit.php:112 +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "台站的县 (仅用于 美国本土/阿拉斯加/夏威夷)。" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/edit.php:138 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "如果您不清楚自己的 CQ 分区,在这里查看 %s!" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:138 -#: application/views/station_profile/edit.php:155 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 msgid "click here" msgstr "点击此处" -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/edit.php:155 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "如果您不清楚自己的 ITU 分区,在这里查看 %s!" -#: application/views/station_profile/create.php:135 -#: application/views/station_profile/edit.php:167 -#: application/views/station_profile/edit.php:170 +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 msgid "Station Gridsquare" msgstr "台站网格地址" -#: application/views/station_profile/create.php:140 -#: application/views/station_profile/edit.php:175 +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 msgid "Get Gridsquare" msgstr "获取网格座标" -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 #, php-format msgctxt "uses 'click here'" msgid "" @@ -9210,59 +10066,59 @@ msgid "" "then %s!" msgstr "台站的网格,如 HM54AP,如果不知道自己的网格,在这里查询 %s!" -#: application/views/station_profile/create.php:145 -#: application/views/station_profile/edit.php:180 +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" "如果处在网格线上,请输入逗号分隔的多个网格,例如:IO77,IO78,IO87,IO88。" -#: application/views/station_profile/create.php:160 -#: application/views/station_profile/edit.php:205 +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 msgid "Station IOTA reference. For example: EU-005" msgstr "台站 IOTA 标识代码,例如 EU-005" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 msgid "IOTA World website" msgstr "IOTA World 网站" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 #, php-format msgid "You can look up IOTA references at the %s." msgstr "您可以在 %s 查看 IOTA 目录。" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 msgid "SOTA Maps website" msgstr "SOTA Maps 网站" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "台站的 SOTA 标识符,您可在这里 %s 查看 SOTA 标识符。" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 msgid "GMA Map website" msgstr "GMA Map 网站" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "台站的 WWFF 标识符,您可在这里 %s 查看 WWFF 标识符。" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 msgid "POTA Map website" msgstr "POTA Map 网站" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 #, php-format msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " @@ -9270,56 +10126,56 @@ msgid "" msgstr "" "台站的 POTA 标识符,可以使用多个值(逗号分隔),可在 %s 查看 POTA 目录。" -#: application/views/station_profile/create.php:183 -#: application/views/station_profile/edit.php:260 +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 msgid "Signature Name" msgstr "签名名称" -#: application/views/station_profile/create.php:185 -#: application/views/station_profile/edit.php:262 +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 msgid "Station Signature (e.g. GMA).." msgstr "台站签名 (例如 TU 73)。" -#: application/views/station_profile/create.php:189 -#: application/views/station_profile/edit.php:266 +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 msgid "Signature Information" msgstr "签名信息" -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/edit.php:268 +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "签名信息 (例如 DA/NW-357)." -#: application/views/station_profile/create.php:195 -#: application/views/station_profile/edit.php:281 +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "eQSL QTH Nickname" -#: application/views/station_profile/create.php:197 -#: application/views/station_profile/edit.php:283 +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "eQSL 中设置过的 QTH Nichname" -#: application/views/station_profile/create.php:201 -#: application/views/station_profile/edit.php:286 +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 msgid "Default QSLMSG" msgstr "默认 QSL 消息" -#: application/views/station_profile/create.php:204 -#: application/views/station_profile/edit.php:289 +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "定义一个发送给对方的 QSO 默认消息(适用于 eQSL 等)。" -#: application/views/station_profile/create.php:207 -#: application/views/station_profile/edit.php:328 +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 msgid "Ignore Clublog Upload" msgstr "忽略 Clublog 上传" -#: application/views/station_profile/create.php:212 -#: application/views/station_profile/edit.php:333 +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " "Clublog. If this is deactivated on it's own please check if the Call is " @@ -9328,192 +10184,136 @@ msgstr "" "如启用,台站下的 QSO 不会上传至 Clublog。如这个选项自动关闭了,请查看 " "Clublog 上的呼号是否配置正确" -#: application/views/station_profile/create.php:215 -#: application/views/station_profile/edit.php:336 +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 msgid "ClubLog Realtime Upload" msgstr "ClubLog 实时上传" -#: application/views/station_profile/create.php:224 -#: application/views/station_profile/edit.php:352 +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 msgid "HRDLog.net Username" msgstr "HRDLog.net 用户名" -#: application/views/station_profile/create.php:226 -#: application/views/station_profile/edit.php:354 +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "HRDlog.net 注册用户名,通常为呼号。" -#: application/views/station_profile/create.php:229 -#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 msgid "HRDLog.net API Key" msgstr "HRDLog.net API Key" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "为 %s 创建 API Code" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 msgid "HRDLog.net Userprofile page" msgstr "HRDLog.net 个人页面" -#: application/views/station_profile/create.php:234 -#: application/views/station_profile/edit.php:362 +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 msgid "HRDLog.net Logbook Realtime Upload" msgstr "HRDLog.net Logbook 实时上传" -#: application/views/station_profile/create.php:243 -#: application/views/station_profile/edit.php:297 +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 msgid "Subscription Required" msgstr "需要付费订阅" -#: application/views/station_profile/create.php:248 +#: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "QRZ.com Logbook API Key" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "Test API-Key" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "在 %s 这里查看 API Key" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 msgid "the QRZ.com Logbook settings page" msgstr "QRZ.com Logbook 设置页面" -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/edit.php:310 +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 msgid "QRZ.com Logbook Upload" msgstr "QRZ.com Logbook 上传" -#: application/views/station_profile/create.php:260 -#: application/views/station_profile/edit.php:313 +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 msgid "Realtime" msgstr "实时" -#: application/views/station_profile/create.php:268 -#: application/views/station_profile/edit.php:378 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "QO-100 Dx Club API Key" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "为 %s 创建 API Key" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 msgid "QO-100 Dx Club's profile page" msgstr "QO-100 Dx Club 个人页面" -#: application/views/station_profile/create.php:273 -#: application/views/station_profile/edit.php:383 +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 msgid "QO-100 Dx Club Realtime Upload" msgstr "QO-100 Dx Club 实时上传" -#: application/views/station_profile/create.php:283 -#: application/views/station_profile/edit.php:401 +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 msgid "OQRS Enabled" msgstr "OQRS 已启用" -#: application/views/station_profile/create.php:290 -#: application/views/station_profile/edit.php:408 +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 msgid "OQRS Email alert" msgstr "OQRS 邮件提醒" -#: application/views/station_profile/create.php:295 -#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 msgid "Make sure email is set up under admin and global options." msgstr "确认邮件功能在站点设置中已配置。" -#: application/views/station_profile/create.php:298 -#: application/views/station_profile/edit.php:416 +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 msgid "OQRS Text" msgstr "OQRS 文本" -#: application/views/station_profile/create.php:300 -#: application/views/station_profile/edit.php:418 +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 msgid "Some info you want to add regarding QSL'ing." msgstr "QSL 的额外信息。" -#: application/views/station_profile/edit.php:122 +#: application/views/station_profile/edit.php:149 msgid "Zones" msgstr "分区" -#: application/views/station_profile/edit.php:257 +#: application/views/station_profile/edit.php:284 msgid "Signature" msgstr "签名" -#: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:95 -msgid "" -"Station Locations define operating locations, such as your QTH, a friends " -"QTH, or a portable station." -msgstr "台站地址为电台使用地址,如您或朋友的 QTH,或移动台的地址。" - -#: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:96 -msgid "Similar to logbooks, a station profile keeps a set of QSOs together." -msgstr "和日志簿类似,一个台站地址会和其产生的 QSO 关联起来。" - -#: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:97 -msgid "" -"Only one station may be active at a time. In the table below this is shown " -"with the -Active Station- badge." -msgstr "同一时间只允许启用一个台站地址,详见如下表格中的 “启用” 标志。" - -#: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:101 -msgid "Create a Station Location" -msgstr "创建一个台站地址" - -#: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:105 -msgid "" -"Attention: You need to set an active station location. Go to Callsign-" -">Station Location to select one." -msgstr "" -"警告:应事先设置一个 “启用” 中的台站地址,请在右上角 “您的呼号” -> “台站地" -"址” 中选择一个。" - -#: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:111 -msgid "" -"Due to recent changes within Wavelog you need to reassign QSOs to your " -"station profiles." -msgstr "由于 Wavelog 设置更改,您需要重新在电台设置中重新分配 QSO。" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Maintenance" -msgstr "维护" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Please reassign them at " -msgstr "重新分配 " - -#: application/views/station_profile/index.php:41 -#: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:122 -msgid "Profile Name" -msgstr "名称" - #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "台站日志名称" @@ -9561,6 +10361,11 @@ msgstr "选择可用台站位置" msgid "Link Location" msgstr "链接的台站位置" +#: application/views/stationsetup/linkedlocations.php:31 +#: application/views/stationsetup/stationsetup.php:122 +msgid "Profile Name" +msgstr "名称" + #: application/views/stationsetup/linkedlocations.php:34 msgid "Unlink Station Location" msgstr "取消链接的台站位置" @@ -9587,12 +10392,54 @@ msgstr "外部链接" msgid "Station Locations" msgstr "台站地址" +#: application/views/stationsetup/stationsetup.php:95 +msgid "" +"Station Locations define operating locations, such as your QTH, a friends " +"QTH, or a portable station." +msgstr "台站地址为电台使用地址,如您或朋友的 QTH,或移动台的地址。" + +#: application/views/stationsetup/stationsetup.php:96 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "和日志簿类似,一个台站地址会和其产生的 QSO 关联起来。" + +#: application/views/stationsetup/stationsetup.php:97 +msgid "" +"Only one station may be active at a time. In the table below this is shown " +"with the -Active Station- badge." +msgstr "同一时间只允许启用一个台站地址,详见如下表格中的 “启用” 标志。" + #: application/views/stationsetup/stationsetup.php:98 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." msgstr "上方的已启用日志,会显示在关联的台站地址的 “已绑定” 栏中。" +#: application/views/stationsetup/stationsetup.php:101 +msgid "Create a Station Location" +msgstr "创建一个台站地址" + +#: application/views/stationsetup/stationsetup.php:105 +msgid "" +"Attention: You need to set an active station location. Go to Callsign-" +">Station Location to select one." +msgstr "" +"警告:应事先设置一个 “启用” 中的台站地址,请在右上角 “您的呼号” -> “台站地" +"址” 中选择一个。" + +#: application/views/stationsetup/stationsetup.php:111 +msgid "" +"Due to recent changes within Wavelog you need to reassign QSOs to your " +"station profiles." +msgstr "由于 Wavelog 设置更改,您需要重新在电台设置中重新分配 QSO。" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Maintenance" +msgstr "维护" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Please reassign them at " +msgstr "重新分配 " + #: application/views/stationsetup/stationsetup.php:127 msgid "Linked" msgstr "已绑定" @@ -9814,12 +10661,13 @@ msgid "4. Step" msgstr "4. 第四步" #: application/views/themes/index.php:73 +#, php-format msgid "" "Click here on 'Add a Theme' and type in the necessary data. Type in the " -"filenames for the logos without the file extension '.png'" +"filenames for the logos %swithout%s the file extension '.png'" msgstr "" -"在这里点击 '添加主题',输入必要的信息,填写 Logo 的文件名(不要带有 .png " -"后缀名)" +"在这里添加主题,Logo 文件请输入 png 文件的文件名部分( %s不带有%s 后缀 '." +"png')" #: application/views/themes/index.php:83 msgid "Foldername" @@ -9882,6 +10730,10 @@ msgstr "检查 DXCC 数据更新" msgid "Update DXCC Data" msgstr "更新 DXCC 数据" +#: application/views/update/index.php:30 +msgid "Status:" +msgstr "状态:" + #: application/views/update/index.php:34 msgid "Apply DXCC Data to Logbook" msgstr "向日志应用 DXCC 数据" @@ -9899,36 +10751,45 @@ msgstr "" "\t\t\t\t\t\t\t或重新检查所有 QSO 的 DXCC 是否有误(或对方地区所属 DXCC 有更" "新)。" -#: application/views/update/index.php:40 +#: application/views/update/index.php:45 msgid "Check QSOs missing DXCC data" msgstr "检查缺失 DXCC 数据的 QSO" -#: application/views/update/index.php:42 +#: application/views/update/index.php:54 application/views/update/index.php:95 msgid "Re-check all QSOs in logbook" msgstr "重新检查所有 QSO" -#: application/views/update/index.php:45 +#: application/views/update/index.php:59 msgid "Apply Continent Data to Logbook" msgstr "向日志应用大陆数据" -#: application/views/update/index.php:47 +#: application/views/update/index.php:61 msgid "" "This function can be used to update QSO continent information for all QSOs " "in Wavelog missing that information." msgstr "此功能可检查并更新缺失大陆信息的 QSO。" -#: application/views/update/index.php:49 +#: application/views/update/index.php:68 msgid "Check QSOs missing continent data" msgstr "检查缺失大陆信息的 QSO" -#: application/views/update/index.php:59 +#: application/views/update/index.php:80 msgid "Here you can update QSOs with missing distance information." msgstr "您可在此更新缺失距离信息的 QSO。" -#: application/views/update/index.php:60 +#: application/views/update/index.php:86 msgid "Update distance data" msgstr "更新距离数据" +#: application/views/update/index.php:89 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" +"使用如下按钮更新全部 QSO 的距离信息,如果 QSO 数量过多这将会花费一些时间,请" +"耐心等待。" + #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "删除用户账户" @@ -9958,13 +10819,13 @@ msgid "General Information" msgstr "基本信息" #: application/views/user/edit.php:52 application/views/user/login.php:58 -#: application/views/user/login.php:67 application/views/user/login.php:68 +#: application/views/user/login.php:69 application/views/user/login.php:70 #: application/views/user/profile.php:14 msgid "Username" msgstr "用户名" #: application/views/user/edit.php:64 application/views/user/login.php:59 -#: application/views/user/login.php:71 application/views/user/login.php:72 +#: application/views/user/login.php:73 application/views/user/login.php:74 #: application/views/user/reset_password.php:21 #: application/views/user/reset_password.php:23 #: application/views/user/reset_password.php:30 @@ -10007,10 +10868,6 @@ msgstr "Wavelog 语言" msgid "Choose Wavelog language." msgstr "选择 Wavelog 语言。" -#: application/views/user/edit.php:179 -msgid "Timezone" -msgstr "时区" - #: application/views/user/edit.php:187 msgid "Date Format" msgstr "日期格式" @@ -10084,7 +10941,7 @@ msgid "" "Show profile picture of QSO partner from qrz.com/hamqth.com profile in the " "log QSO section." msgstr "" -"在日志QSO部分中显示由 qrz.com 中 hamqth.com 配置文件所获得的对方个人资料图" +"在日志 QSO 部分中显示由 qrz.com 中 hamqth.com 配置文件所获得的对方个人资料图" "片。" #: application/views/user/edit.php:361 @@ -10350,6 +11207,127 @@ msgstr "忘记密码?" msgid "You can reset your password here." msgstr "在此处重置密码。" +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "确认发送重置密码链接?" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "请稍等…" + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "密码重置邮件已发送至:" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "用户列表" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "Wavelog 至少需要配置一个用户才能运行。" + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" +"用户可以被分配不同的角色,这些角色赋予他们不同的权限,例如向日志簿添加 QSO 和" +"访问 Wavelog API。" + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "页面右上方显示当前登录的用户。" + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" +"通过'重置密码'按钮,你可以向用户发送一封带有重置密码链接的邮件。您需要确保全" +"局设定中的邮件设置配置正确。" + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "创建用户" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "刷新列表" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "用户类型" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "上次出现" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "重置密码" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "切换至该用户" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "从不" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "地点" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "日志簿" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "上个 QSO:" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "日志为空" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "以该用户登录" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" +"您将要使用另一个用户身份登录,如果您想切换回管理员账号,请退出并重新登录。" + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "您要以此用户登录吗?" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "用户名:" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "姓名:" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "呼号:" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "E-Mail:" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "上次登录:" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "维护模式" @@ -10364,100 +11342,17 @@ msgstr "本 Demo 每日 UTC 02:00 重置。" #: application/views/user/login.php:60 #, php-format -msgid "" -"More Information about Wavelog on Github." -msgstr "更多信息可在 Github 查看。" +msgid "More Information about Wavelog on %sGithub%s." +msgstr "更多信息请访问 Wavelog 官方 %sGithub%s 地址。" -#: application/views/user/login.php:77 +#: application/views/user/login.php:79 msgid "Forgot your password?" msgstr "忘记密码?" -#: application/views/user/login.php:83 +#: application/views/user/login.php:85 msgid "Keep me logged in" msgstr "保持登录" -#: application/views/user/main.php:2 -msgid "Do you really want to send this user a password-reset link?" -msgstr "确认发送重置密码链接?" - -#: application/views/user/main.php:6 -msgid "Please Wait ..." -msgstr "请稍等…" - -#: application/views/user/main.php:9 -msgid "Password-reset e-mail sent to user:" -msgstr "密码重置邮件已发送至:" - -#: application/views/user/main.php:30 -msgid "User List" -msgstr "用户列表" - -#: application/views/user/main.php:33 -msgid "Wavelog needs at least one user configured in order to operate." -msgstr "Wavelog 至少需要配置一个用户才能运行。" - -#: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" -"用户可以被分配不同的角色,这些角色赋予他们不同的权限,例如向日志簿添加 QSO 和" -"访问 Wavelog API。" - -#: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "页面右上方显示当前登录的用户。" - -#: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." -msgstr "" -"通过'重置密码'按钮,你可以向用户发送一封带有重置密码链接的邮件。您需要确保全" -"局设定中的邮件设置配置正确。" - -#: application/views/user/main.php:38 -msgid "Create user" -msgstr "创建用户" - -#: application/views/user/main.php:39 -msgid "Refresh List" -msgstr "刷新列表" - -#: application/views/user/main.php:49 -msgid "Type" -msgstr "用户类型" - -#: application/views/user/main.php:50 -msgid "Last seen" -msgstr "上次出现" - -#: application/views/user/main.php:53 -msgid "Password Reset" -msgstr "重置密码" - -#: application/views/user/main.php:79 -msgid "Never" -msgstr "从不" - -#: application/views/user/main.php:83 -msgid "Locations" -msgstr "地点" - -#: application/views/user/main.php:85 -msgid "Logbooks" -msgstr "日志簿" - -#: application/views/user/main.php:87 -msgid "Last QSO:" -msgstr "上个 QSO:" - -#: application/views/user/main.php:89 -msgid "No QSOs in Log" -msgstr "日志为空" - #: application/views/user/profile.php:19 msgid "Level" msgstr "等级" @@ -10507,118 +11402,118 @@ msgstr "QSO 详情" msgid "QSL Management" msgstr "QSL 管理" -#: application/views/view_log/qso.php:128 +#: application/views/view_log/qso.php:131 msgid "Total Distance" msgstr "总计距离" -#: application/views/view_log/qso.php:221 +#: application/views/view_log/qso.php:224 msgid "Antenna Azimuth" msgstr "天线方位" -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:231 msgid "Antenna Elevation" msgstr "天线仰角" -#: application/views/view_log/qso.php:370 +#: application/views/view_log/qso.php:373 msgid "QSL Card has been sent via the bureau" msgstr "QSL 卡片已由卡片局发出" -#: application/views/view_log/qso.php:372 +#: application/views/view_log/qso.php:375 msgid "QSL Card has been sent via direct" msgstr "QSL 卡片已直邮发出" -#: application/views/view_log/qso.php:374 +#: application/views/view_log/qso.php:377 msgid "QSL Card has been sent electronically" msgstr "eQSL 卡片已经发送" -#: application/views/view_log/qso.php:376 +#: application/views/view_log/qso.php:379 msgid "QSL Card has been sent via manager" msgstr "QSL 卡片已经由卡片管理员发出" -#: application/views/view_log/qso.php:378 +#: application/views/view_log/qso.php:381 msgid "QSL Card has been sent" msgstr "QSL 卡片已经发出" -#: application/views/view_log/qso.php:387 +#: application/views/view_log/qso.php:390 msgid "QSL Card has been received via the bureau" msgstr "QSL 卡片已由卡片局收妥" -#: application/views/view_log/qso.php:389 +#: application/views/view_log/qso.php:392 msgid "QSL Card has been received via direct" msgstr "QSL 卡片已直邮收妥" -#: application/views/view_log/qso.php:391 +#: application/views/view_log/qso.php:394 msgid "QSL Card has been received electronically" msgstr "eQSL 卡片已经收妥" -#: application/views/view_log/qso.php:393 +#: application/views/view_log/qso.php:396 msgid "QSL Card has been received via manager" msgstr "QSL 卡片已经由卡片管理员收妥" -#: application/views/view_log/qso.php:395 +#: application/views/view_log/qso.php:398 msgid "QSL Card has been received" msgstr "QSL Card 已被接收" -#: application/views/view_log/qso.php:404 +#: application/views/view_log/qso.php:407 msgid "This station uses LoTW." msgstr "这个电台使用 LOTW。" -#: application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:414 -#: application/views/view_log/qso.php:419 -#: application/views/view_log/qso.php:424 +#: application/views/view_log/qso.php:412 +#: application/views/view_log/qso.php:417 +#: application/views/view_log/qso.php:422 +#: application/views/view_log/qso.php:427 msgid "This QSO was confirmed on" msgstr "该 QSO 确认于" -#: application/views/view_log/qso.php:435 +#: application/views/view_log/qso.php:438 msgid "More QSOs" msgstr "更多 QSO" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:506 msgid "Details" msgstr "详细" -#: application/views/view_log/qso.php:630 +#: application/views/view_log/qso.php:633 msgid "Uploaded QSL Card front image" msgstr "上传 QSL 卡片正面图像" -#: application/views/view_log/qso.php:635 +#: application/views/view_log/qso.php:638 msgid "Upload QSL Card image" msgstr "上传 QSL 卡片图像" -#: application/views/view_log/qso.php:640 +#: application/views/view_log/qso.php:643 msgid "Uploaded QSL Card back image" msgstr "上传 QSL 卡片背面图像" -#: application/views/view_log/qso.php:656 +#: application/views/view_log/qso.php:659 msgid "Mark QSL Received (Electronic)" msgstr "标记 已收到卡片(电子)" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:665 msgid "Mark QSL Card Requested (Bureau)" msgstr "标记 已请求卡片(卡片局)" -#: application/views/view_log/qso.php:664 +#: application/views/view_log/qso.php:667 msgid "Mark QSL Card Requested (Direct)" msgstr "标记 已请求卡片(直邮)" -#: application/views/view_log/qso.php:679 +#: application/views/view_log/qso.php:682 msgid "eQSL picture" msgstr "eQSL 图片" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:242 msgid "CSV" msgstr "CSV" -#: application/views/visitor/layout/header.php:75 +#: application/views/visitor/layout/header.php:74 msgid "OQRS" msgstr "OQRS" -#: application/views/visitor/layout/header.php:83 +#: application/views/visitor/layout/header.php:82 msgid "Visit Wavelog on Github" msgstr "访问 Wavelog GitHub 页面" -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Please enter a callsign!" msgstr "请输入呼号!" @@ -10709,6 +11604,101 @@ msgstr "您的呼号:" msgid "Submit Request" msgstr "提交请求" +#, php-format +#~ msgid "%s = Serial, %s = Gridsquare, %s = Exchange." +#~ msgstr "%s = 序号, %s = 网格,%s = 交换信息。" + +#~ msgid "Key Disabled" +#~ msgstr "Key 已禁用" + +#~ msgid "No Key Found" +#~ msgstr "Key 不存在" + +#~ msgid "Key Invalid - either not found or disabled" +#~ msgstr "Key 无效(未找到或已禁用)" + +#, php-format +#~ msgctxt "Dashboard Warning" +#~ msgid "You need to update country files! Click %s to do it." +#~ msgstr "您需要更新国家/地区文件!单击%s进行更新。" + +#, php-format +#~ msgctxt "Dashboard Warning" +#~ msgid "You have no station locations. Click %s to do it:" +#~ msgstr "您没有台站位置。单击%s执行此操作:" + +#, php-format +#~ msgctxt "Dashboard Warning" +#~ msgid "You have no station logbook. Click %s to do it:" +#~ msgstr "您没有日志本。单击%s执行此操作:" + +#~ msgid "Status Master-Cron" +#~ msgstr "主 Cron 状态" + +#~ msgid "Winkey Macros" +#~ msgstr "Winkey 宏" + +#~ msgid "User logged in" +#~ msgstr "已登录用户" + +#~ msgid "" +#~ "If selected, Wavelog will try to import all QSO's of the ADIF, " +#~ "regardless if they match to the chosen station-location." +#~ msgstr "" +#~ "如果选择,Wavelog 会尝试导入 ADIF 文件中的 所有 QSO,而不判断是否与" +#~ "所选台站位置匹配。" + +#, php-format +#~ msgid "" +#~ "Check this wiki article here for " +#~ "more information." +#~ msgstr "请查看 Wiki。" + +#~ msgid "contacts were plotted.
Your furthest contact was with" +#~ msgstr "次通联
您最远的通联是与" + +#, php-format +#~ msgid "You're not logged it. Please login" +#~ msgstr "未登录,请在 这里 登录" + +#, php-format +#~ msgid "" +#~ "If you did operate from a new location, first create a new Station Location" +#~ msgstr "" +#~ "如果您确实在一个新地点进行通联,请在 这里 创建新台站地址" + +#~ msgid "" +#~ "The Refs can be either SOTA, IOTA, POTA or WWFF" +#~ msgstr "标识代码可以是 SOTA、IOTA、POTA 或 WWFF" + +#, php-format +#~ msgid "" +#~ "A full summary of all commands and the necessary syntax can be found in " +#~ "this article of our Wiki." +#~ msgstr "" +#~ "完整的指令和语法介绍可在 Wiki 阅读。" + +#~ msgid "" +#~ "Click here on 'Add a Theme' and type in the necessary data. Type in the " +#~ "filenames for the logos without the file extension '.png'" +#~ msgstr "" +#~ "在这里点击 '添加主题',输入必要的信息,填写 Logo 的文件名(不要带有 ." +#~ "png 后缀名)" + +#, php-format +#~ msgid "" +#~ "More Information about Wavelog on Github." +#~ msgstr "更多信息可在 Github 查看。" + +#, php-format +#~ msgctxt "uses 'this article'" +#~ msgid "" +#~ "A full summary of all commands and the necessary syntax can be found in " +#~ "%s of our Wiki." +#~ msgstr "全部的指令可在 %s Wiki 查看。" + #, php-format #~ msgid "" #~ "The current migration is not the version it is supposed to be. Reload " diff --git a/application/migrations/196_cron_table.php b/application/migrations/196_cron_table.php index f8b1dfce3..6c15040fe 100644 --- a/application/migrations/196_cron_table.php +++ b/application/migrations/196_cron_table.php @@ -11,7 +11,7 @@ class Migration_cron_table extends CI_Migration { $this->dbforge->add_field(array( 'id' => array( 'type' => 'VARCHAR', - 'constraint' => '255', + 'constraint' => '191', 'null' => FALSE, ), 'enabled' => array( diff --git a/application/migrations/210_process_deprecated.php b/application/migrations/210_process_deprecated.php index d1e8c49ae..ae8926ed6 100644 --- a/application/migrations/210_process_deprecated.php +++ b/application/migrations/210_process_deprecated.php @@ -21,11 +21,11 @@ class Migration_process_deprecated extends CI_Migration } } catch (\Throwable $th) { - log_message("Error","Mig: Error at Mig 210 for txt files. Run manually a git reset."); + log_message("error","Mig: Error at Mig 210 for txt files. Run manually a git reset."); } } else { - log_message("Error","Mig: Error at Mig 210 for txt files. Function exec() not usable. Run manually a git reset."); + log_message("info","Mig 210: No .git found. Skipping processing of txt files."); } } diff --git a/application/migrations/215_add_contest_settings.php b/application/migrations/215_add_contest_settings.php new file mode 100644 index 000000000..c5c709c16 --- /dev/null +++ b/application/migrations/215_add_contest_settings.php @@ -0,0 +1,66 @@ + array( + 'type' => 'TEXT', + 'null' => TRUE, + ), + ); + + // Get the current data so we can add it back in + $data = array( + 'exchangetype' => $this->db->get('contest_session')->row()->exchangetype, + 'exchange_sequence' => 's-g-e', + 'copyexchangeto' => $this->db->get('contest_session')->row()->copytodok, + ); + + // Add the settings field to the contest_session table + if (!$this->db->field_exists('settings', 'contest_session')) { + $this->dbforge->add_column('contest_session', $fields); + + // We also can drop the now unused columns + $this->dbforge->drop_column('contest_session', 'exchangetype'); + $this->dbforge->drop_column('contest_session', 'copytodok'); + + // Update the settings field with the old data + $this->db->update('contest_session', array('settings' => json_encode($data))); + } + } + + public function down() + { + // Drop the settings field from the contest_session table + if ($this->db->field_exists('settings', 'contest_session')) { + $this->dbforge->drop_column('contest_session', 'settings'); + } + + $fields = array( + 'exchangetype' => array( + 'type' => 'VARCHAR', + 'constraint' => 20, + 'unsigned' => TRUE, + 'null' => TRUE, + 'after' => 'contestid', + ), + 'copytodok' => array( + 'type' => 'INT', + 'constraint' => 10, + 'unsigned' => TRUE, + 'null' => TRUE, + 'after' => 'serialsent', + ), + ); + + // Add the fields to the contest_session table + if (!$this->db->field_exists('exchangetype', 'contest_session')) { + $this->dbforge->add_column('contest_session', $fields); + } + + } +} diff --git a/application/migrations/216_tag_1_8_3.php b/application/migrations/216_tag_1_8_3.php new file mode 100644 index 000000000..e6a36302e --- /dev/null +++ b/application/migrations/216_tag_1_8_3.php @@ -0,0 +1,42 @@ +db->where('option_name', 'version'); + $this->db->update('options', array('option_value' => '1.8.3')); + + // Trigger Version Info Dialog + $this->db->where('option_type', 'version_dialog'); + $this->db->where('option_name', 'confirmed'); + $this->db->update('user_options', array('option_value' => 'false')); + + // Also set Version Dialog to "both" if only custom text is applied + $this->db->where('option_name', 'version_dialog'); + $this->db->where('option_value', 'custom_text'); + $this->db->update('options', array('option_value' => 'both')); + + $this->db->query("INSERT INTO satellite (name, exportname, orbit) SELECT distinct 'MESAT1','', 'LEO' FROM satellite WHERE NOT EXISTS (SELECT 1 FROM satellite WHERE name = 'MESAT1');"); + $this->db->query("INSERT INTO satellitemode (name, satelliteid, uplink_mode, uplink_freq, downlink_mode, downlink_freq) SELECT 'V/U', id, 'LSB', '145925000', 'USB', '435825000' FROM satellite WHERE name = 'MESAT1' and NOT EXISTS (SELECT 1 FROM satellitemode WHERE satelliteid = satellite.id) ;"); + $this->db->query("UPDATE cron SET description = 'Up- and Download QSOs to LoTW' WHERE id = 'lotw_lotw_upload';"); + + //Mark MESAT1 QSOs LoTW sent state as invalid/ignore until it is recognized by LoTW + $this->db->query("UPDATE ".$this->config->item('table_name')." SET COL_LOTW_QSL_SENT = 'I', COL_LOTW_QSLSDATE = null WHERE COL_SAT_NAME = 'MESAT1' OR COL_SAT_NAME = 'MESAT-1';"); + + } + + public function down() + { + $this->db->where('option_name', 'version'); + $this->db->update('options', array('option_value' => '1.8.2')); + } +} diff --git a/application/migrations/217_tag_1_8_4.php b/application/migrations/217_tag_1_8_4.php new file mode 100644 index 000000000..6a77c3281 --- /dev/null +++ b/application/migrations/217_tag_1_8_4.php @@ -0,0 +1,34 @@ +db->where('option_name', 'version'); + $this->db->update('options', array('option_value' => '1.8.4')); + + // Trigger Version Info Dialog + $this->db->where('option_type', 'version_dialog'); + $this->db->where('option_name', 'confirmed'); + $this->db->update('user_options', array('option_value' => 'false')); + + // Also set Version Dialog to "both" if only custom text is applied + $this->db->where('option_name', 'version_dialog'); + $this->db->where('option_value', 'custom_text'); + $this->db->update('options', array('option_value' => 'both')); + } + + public function down() + { + $this->db->where('option_name', 'version'); + $this->db->update('options', array('option_value' => '1.8.3')); + } +} diff --git a/application/migrations/218_tag_1_8_5.php b/application/migrations/218_tag_1_8_5.php new file mode 100644 index 000000000..5c42f2988 --- /dev/null +++ b/application/migrations/218_tag_1_8_5.php @@ -0,0 +1,34 @@ +db->where('option_name', 'version'); + $this->db->update('options', array('option_value' => '1.8.5')); + + // Trigger Version Info Dialog + $this->db->where('option_type', 'version_dialog'); + $this->db->where('option_name', 'confirmed'); + $this->db->update('user_options', array('option_value' => 'false')); + + // Also set Version Dialog to "both" if only custom text is applied + $this->db->where('option_name', 'version_dialog'); + $this->db->where('option_value', 'custom_text'); + $this->db->update('options', array('option_value' => 'both')); + } + + public function down() + { + $this->db->where('option_name', 'version'); + $this->db->update('options', array('option_value' => '1.8.4')); + } +} diff --git a/application/models/Accumulate_model.php b/application/models/Accumulate_model.php index 46a3102dd..139d6929f 100644 --- a/application/models/Accumulate_model.php +++ b/application/models/Accumulate_model.php @@ -3,8 +3,7 @@ if (!defined('BASEPATH')) exit('No direct script access allowed'); class Accumulate_model extends CI_Model { - function get_accumulated_data($band, $award, $mode, $period) - { + function get_accumulated_data($band, $award, $mode, $propmode, $period) { $this->load->model('logbooks_model'); $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); @@ -16,132 +15,153 @@ class Accumulate_model extends CI_Model switch ($award) { case 'dxcc': - $result = $this->get_accumulated_dxcc($band, $mode, $period, $location_list); + $result = $this->get_accumulated_dxcc($band, $mode, $propmode, $period, $location_list); break; case 'was': - $result = $this->get_accumulated_was($band, $mode, $period, $location_list); + $result = $this->get_accumulated_was($band, $mode, $propmode, $period, $location_list); break; case 'iota': - $result = $this->get_accumulated_iota($band, $mode, $period, $location_list); + $result = $this->get_accumulated_iota($band, $mode, $propmode, $period, $location_list); break; case 'waz': - $result = $this->get_accumulated_waz($band, $mode, $period, $location_list); + $result = $this->get_accumulated_waz($band, $mode, $propmode, $period, $location_list); break; case 'vucc': - $result = $this->get_accumulated_vucc($band, $mode, $period, $location_list); + $result = $this->get_accumulated_vucc($band, $mode, $propmode, $period, $location_list); break; case 'waja': - $result = $this->get_accumulated_waja($band, $mode, $period, $location_list); + $result = $this->get_accumulated_waja($band, $mode, $propmode, $period, $location_list); break; } return $result; } - function get_accumulated_dxcc($band, $mode, $period, $location_list) - { - if ($period == "year") { - $sql = "select year(thcv.col_time_on) year"; - } else if ($period == "month") { - $sql = "select date_format(col_time_on, '%Y-%m') year"; - } + function get_accumulated_dxcc($band, $mode, $propmode, $period, $location_list) { + $binding=[]; + if ($period == "year") { + $sql = "select year(thcv.col_time_on) year"; + } else if ($period == "month") { + $sql = "select date_format(col_time_on, '%Y-%m') year"; + } - $sql .= ", coalesce(y.tot, 0) tot - from " . $this->config->item('table_name') . " thcv - left outer join ( - select count(col_dxcc) as tot, year - from (select distinct "; + $sql .= ", coalesce(y.tot, 0) tot + from " . $this->config->item('table_name') . " thcv + left outer join ( + select count(col_dxcc) as tot, year + from (select distinct "; - if ($period == "year") { - $sql .= "year(col_time_on)"; - } else if ($period == "month") { - $sql .= "date_format(col_time_on, '%Y-%m')"; - } + if ($period == "year") { + $sql .= "year(col_time_on)"; + } else if ($period == "month") { + $sql .= "date_format(col_time_on, '%Y-%m')"; + } - $sql .= " year, col_dxcc - from " . $this->config->item('table_name') . - " where col_dxcc > 0 and station_id in (" . $location_list . ")"; + $sql .= " year, col_dxcc + from " . $this->config->item('table_name') . + " where col_dxcc > 0 and station_id in (" . $location_list . ")"; - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } + if ($band == 'SAT') { // Left for compatibility reasons + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $sql .= " and col_band = ?"; + $binding[] = $band; + } + if ( $propmode == 'NoSAT' ) { // All without SAT + $sql .= " and col_prop_mode !='SAT'"; + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $sql .= " and col_prop_mode = ?"; + $binding[] = $propmode; + } + } - if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; - } - $sql .= " order by year - ) x - where not exists (select 1 from " . $this->config->item('table_name') . " where"; + if ($mode != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $mode; + $binding[] = $mode; + } - if ($period == "year") { - $sql .= " year(col_time_on) < year";; - } else if ($period == "month") { - $sql .= " date_format(col_time_on, '%Y-%m') < year";; - } + $sql .= " order by year + ) x + where not exists (select 1 from " . $this->config->item('table_name') . " where"; - $sql .= " and col_dxcc = x.col_dxcc"; + if ($period == "year") { + $sql .= " year(col_time_on) < year";; + } else if ($period == "month") { + $sql .= " date_format(col_time_on, '%Y-%m') < year";; + } - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } + $sql .= " and col_dxcc = x.col_dxcc"; - if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; - } + if ($band != 'All') { + if ($band == 'SAT') { + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { + $sql .= " and col_prop_mode !='SAT'"; + $sql .= " and col_band = ?"; + $binding[] = $band; + } + } - $sql .= " and station_id in (" . $location_list . ")) - group by year - order by year"; + if ($mode != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $mode; + $binding[] = $mode; + } - if ($period == "year") { - $sql .= " ) y on year(thcv.col_time_on) = y.year"; - } else if ($period == "month") { - $sql .= " ) y on date_format(col_time_on, '%Y-%m') = y.year"; - } + $sql .= " and station_id in (" . $location_list . ")) + group by year + order by year"; - $sql .= " where thcv.col_dxcc > 0"; + if ($period == "year") { + $sql .= " ) y on year(thcv.col_time_on) = y.year"; + } else if ($period == "month") { + $sql .= " ) y on date_format(col_time_on, '%Y-%m') = y.year"; + } - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } + $sql .= " where thcv.col_dxcc > 0"; - if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; - } + if ($band != 'All') { + if ($band == 'SAT') { + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { + $sql .= " and col_prop_mode !='SAT'"; + $sql .= " and col_band = ?"; + $binding[] = $band; + } + } - $sql .= " and station_id in (" . $location_list . ")"; + if ($mode != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $mode; + $binding[] = $mode; + } - if ($period == "year") { - $sql .= " group by year(thcv.col_time_on), y.tot - order by year(thcv.col_time_on)"; - } else if ($period == "month") { - $sql .= " group by date_format(col_time_on, '%Y-%m'), y.tot - order by date_format(col_time_on, '%Y-%m')"; - } + $sql .= " and station_id in (" . $location_list . ")"; - $query = $this->db->query($sql); + if ($period == "year") { + $sql .= " group by year(thcv.col_time_on), y.tot + order by year(thcv.col_time_on)"; + } else if ($period == "month") { + $sql .= " group by date_format(col_time_on, '%Y-%m'), y.tot + order by date_format(col_time_on, '%Y-%m')"; + } - return $this->count_and_add_accumulated_total($query->result()); + $query = $this->db->query($sql,$binding); + + return $this->count_and_add_accumulated_total($query->result()); } - function count_and_add_accumulated_total($array) - { + function count_and_add_accumulated_total($array) { $counter = 0; for ($i = 0; $i < count($array); $i++) { $array[$i]->total = $array[$i]->tot + $counter; @@ -150,7 +170,8 @@ class Accumulate_model extends CI_Model return $array; } - function get_accumulated_waja($band, $mode, $period, $location_list) { + function get_accumulated_waja($band, $mode, $propmode, $period, $location_list) { + $binding=[]; if ($period == "year") { $sql = "select year(thcv.col_time_on) year"; } else if ($period == "month") { @@ -173,17 +194,30 @@ class Accumulate_model extends CI_Model from " . $this->config->item('table_name') . " where station_id in (" . $location_list . ")"; - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { + if ($band == 'SAT') { // Left for compatibility reasons + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $sql .= " and col_band = ?"; + $binding[] = $band; + } + if ( $propmode == 'NoSAT' ) { // All without SAT $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $sql .= " and col_prop_mode = ?"; + $binding[] = $propmode; } } if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $mode; + $binding[] = $mode; } $sql .= " and COL_DXCC in ('339') and trim(coalesce(col_state,'')) != ''"; @@ -200,17 +234,30 @@ class Accumulate_model extends CI_Model $sql .= " and col_state = x.col_state"; - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { + if ($band == 'SAT') { // Left for compatibility reasons + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $sql .= " and col_band = ?"; + $binding[] = $band; + } + if ( $propmode == 'NoSAT' ) { // All without SAT $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $sql .= " and col_prop_mode = ?"; + $binding[] = $propmode; } } - + if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $mode; + $binding[] = $mode; } $sql .= " and COL_DXCC in ('339')"; @@ -227,17 +274,30 @@ class Accumulate_model extends CI_Model $sql .= " where station_id in (" . $location_list . ")"; - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { + if ($band == 'SAT') { // Left for compatibility reasons + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $sql .= " and col_band = ?"; + $binding[] = $band; + } + if ( $propmode == 'NoSAT' ) { // All without SAT $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $sql .= " and col_prop_mode = ?"; + $binding[] = $propmode; } } if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $mode; + $binding[] = $mode; } if ($period == "year") { @@ -248,505 +308,691 @@ class Accumulate_model extends CI_Model order by date_format(col_time_on, '%Y-%m')"; } - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); return $this->count_and_add_accumulated_total($query->result()); } - function get_accumulated_was($band, $mode, $period, $location_list) - { - if ($period == "year") { - $sql = "select year(thcv.col_time_on) year"; - } else if ($period == "month") { - $sql = "select date_format(col_time_on, '%Y-%m') year"; - } + function get_accumulated_was($band, $mode, $propmode, $period, $location_list) { + $binding=[]; + if ($period == "year") { + $sql = "select year(thcv.col_time_on) year"; + } else if ($period == "month") { + $sql = "select date_format(col_time_on, '%Y-%m') year"; + } - $sql .= ", coalesce(y.tot, 0) tot - from " . $this->config->item('table_name') . " thcv - left outer join ( - select count(col_state) as tot, year - from (select distinct "; + $sql .= ", coalesce(y.tot, 0) tot + from " . $this->config->item('table_name') . " thcv + left outer join ( + select count(col_state) as tot, year + from (select distinct "; - if ($period == "year") { - $sql .= "year(col_time_on)"; - } else if ($period == "month") { - $sql .= "date_format(col_time_on, '%Y-%m')"; - } + if ($period == "year") { + $sql .= "year(col_time_on)"; + } else if ($period == "month") { + $sql .= "date_format(col_time_on, '%Y-%m')"; + } - $sql .= " year, col_state - from " . $this->config->item('table_name') . - " where station_id in (" . $location_list . ")"; + $sql .= " year, col_state + from " . $this->config->item('table_name') . + " where station_id in (" . $location_list . ")"; - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } - if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; - } + if ($band == 'SAT') { // Left for compatibility reasons + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $sql .= " and col_band = ?"; + $binding[] = $band; + } + if ( $propmode == 'NoSAT' ) { // All without SAT + $sql .= " and col_prop_mode !='SAT'"; + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $sql .= " and col_prop_mode = ?"; + $binding[] = $propmode; + } + } - $sql .= " and COL_DXCC in ('291', '6', '110')"; - $sql .= " and COL_STATE in ('AK','AL','AR','AZ','CA','CO','CT','DE','FL','GA','HI','IA','ID','IL','IN','KS','KY','LA','MA','MD','ME','MI','MN','MO','MS','MT','NC','ND','NE','NH','NJ','NM','NV','NY','OH','OK','OR','PA','RI','SC','SD','TN','TX','UT','VA','VT','WA','WI','WV','WY')"; + if ($mode != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $mode; + $binding[] = $mode; + } - $sql .= " order by year - ) x - where not exists (select 1 from " . $this->config->item('table_name') . " where"; + $sql .= " and COL_DXCC in ('291', '6', '110')"; + $sql .= " and COL_STATE in ('AK','AL','AR','AZ','CA','CO','CT','DE','FL','GA','HI','IA','ID','IL','IN','KS','KY','LA','MA','MD','ME','MI','MN','MO','MS','MT','NC','ND','NE','NH','NJ','NM','NV','NY','OH','OK','OR','PA','RI','SC','SD','TN','TX','UT','VA','VT','WA','WI','WV','WY')"; - if ($period == "year") { - $sql .= " year(col_time_on) < year";; - } else if ($period == "month") { - $sql .= " date_format(col_time_on, '%Y-%m') < year";; - } + $sql .= " order by year + ) x + where not exists (select 1 from " . $this->config->item('table_name') . " where"; - $sql .= " and col_state = x.col_state"; + if ($period == "year") { + $sql .= " year(col_time_on) < year";; + } else if ($period == "month") { + $sql .= " date_format(col_time_on, '%Y-%m') < year";; + } - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } + $sql .= " and col_state = x.col_state"; - if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; - } + if ($band == 'SAT') { // Left for compatibility reasons + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $sql .= " and col_band = ?"; + $binding[] = $band; + } + if ( $propmode == 'NoSAT' ) { // All without SAT + $sql .= " and col_prop_mode !='SAT'"; + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $sql .= " and col_prop_mode = ?"; + $binding[] = $propmode; + } + } - $sql .= " and COL_DXCC in ('291', '6', '110')"; - $sql .= " and COL_STATE in ('AK','AL','AR','AZ','CA','CO','CT','DE','FL','GA','HI','IA','ID','IL','IN','KS','KY','LA','MA','MD','ME','MI','MN','MO','MS','MT','NC','ND','NE','NH','NJ','NM','NV','NY','OH','OK','OR','PA','RI','SC','SD','TN','TX','UT','VA','VT','WA','WI','WV','WY')"; + if ($mode != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $mode; + $binding[] = $mode; + } - $sql .= " and station_id in (" . $location_list . ")) - group by year - order by year"; + $sql .= " and COL_DXCC in ('291', '6', '110')"; + $sql .= " and COL_STATE in ('AK','AL','AR','AZ','CA','CO','CT','DE','FL','GA','HI','IA','ID','IL','IN','KS','KY','LA','MA','MD','ME','MI','MN','MO','MS','MT','NC','ND','NE','NH','NJ','NM','NV','NY','OH','OK','OR','PA','RI','SC','SD','TN','TX','UT','VA','VT','WA','WI','WV','WY')"; - if ($period == "year") { - $sql .= " ) y on year(thcv.col_time_on) = y.year"; - } else if ($period == "month") { - $sql .= " ) y on date_format(col_time_on, '%Y-%m') = y.year"; - } + $sql .= " and station_id in (" . $location_list . ")) + group by year + order by year"; - $sql .= " where station_id in (" . $location_list . ")"; + if ($period == "year") { + $sql .= " ) y on year(thcv.col_time_on) = y.year"; + } else if ($period == "month") { + $sql .= " ) y on date_format(col_time_on, '%Y-%m') = y.year"; + } - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } + $sql .= " where station_id in (" . $location_list . ")"; - if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; - } + if ($band == 'SAT') { // Left for compatibility reasons + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $sql .= " and col_band = ?"; + $binding[] = $band; + } + if ( $propmode == 'NoSAT' ) { // All without SAT + $sql .= " and col_prop_mode !='SAT'"; + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $sql .= " and col_prop_mode = ?"; + $binding[] = $propmode; + } + } - if ($period == "year") { - $sql .= " group by year(thcv.col_time_on), y.tot - order by year(thcv.col_time_on)"; - } else if ($period == "month") { - $sql .= " group by date_format(col_time_on, '%Y-%m'), y.tot - order by date_format(col_time_on, '%Y-%m')"; - } + if ($mode != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $mode; + $binding[] = $mode; + } - $query = $this->db->query($sql); + if ($period == "year") { + $sql .= " group by year(thcv.col_time_on), y.tot + order by year(thcv.col_time_on)"; + } else if ($period == "month") { + $sql .= " group by date_format(col_time_on, '%Y-%m'), y.tot + order by date_format(col_time_on, '%Y-%m')"; + } - return $this->count_and_add_accumulated_total($query->result()); + $query = $this->db->query($sql, $binding); + + return $this->count_and_add_accumulated_total($query->result()); } - function get_accumulated_iota($band, $mode, $period, $location_list) - { - if ($period == "year") { - $sql = "select year(thcv.col_time_on) year"; - } else if ($period == "month") { - $sql = "select date_format(col_time_on, '%Y-%m') year"; - } + function get_accumulated_iota($band, $mode, $propmode, $period, $location_list) { + $binding = []; + if ($period == "year") { + $sql = "select year(thcv.col_time_on) year"; + } else if ($period == "month") { + $sql = "select date_format(col_time_on, '%Y-%m') year"; + } - $sql .= ", coalesce(y.tot, 0) tot - from " . $this->config->item('table_name') . " thcv - left outer join ( - select count(col_iota) as tot, year - from (select distinct "; + $sql .= ", coalesce(y.tot, 0) tot + from " . $this->config->item('table_name') . " thcv + left outer join ( + select count(col_iota) as tot, year + from (select distinct "; - if ($period == "year") { - $sql .= "year(col_time_on)"; - } else if ($period == "month") { - $sql .= "date_format(col_time_on, '%Y-%m')"; - } + if ($period == "year") { + $sql .= "year(col_time_on)"; + } else if ($period == "month") { + $sql .= "date_format(col_time_on, '%Y-%m')"; + } - $sql .= " year, col_iota - from " . $this->config->item('table_name') . - " where station_id in (" . $location_list . ")"; + $sql .= " year, col_iota + from " . $this->config->item('table_name') . + " where station_id in (" . $location_list . ")"; - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } + if ($band == 'SAT') { // Left for compatibility reasons + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $sql .= " and col_band = ?"; + $binding[] = $band; + } + if ( $propmode == 'NoSAT' ) { // All without SAT + $sql .= " and col_prop_mode !='SAT'"; + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $sql .= " and col_prop_mode = ?"; + $binding[] = $propmode; + } + } - if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; - } + if ($mode != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $mode; + $binding[] = $mode; + } - $sql .= " order by year - ) x - where not exists (select 1 from " . $this->config->item('table_name') . " where"; + $sql .= " order by year + ) x + where not exists (select 1 from " . $this->config->item('table_name') . " where"; - if ($period == "year") { - $sql .= " year(col_time_on) < year";; - } else if ($period == "month") { - $sql .= " date_format(col_time_on, '%Y-%m') < year";; - } + if ($period == "year") { + $sql .= " year(col_time_on) < year";; + } else if ($period == "month") { + $sql .= " date_format(col_time_on, '%Y-%m') < year";; + } - $sql .= " and col_iota = x.col_iota"; + $sql .= " and col_iota = x.col_iota"; - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } + if ($band == 'SAT') { // Left for compatibility reasons + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $sql .= " and col_band = ?"; + $binding[] = $band; + } + if ( $propmode == 'NoSAT' ) { // All without SAT + $sql .= " and col_prop_mode !='SAT'"; + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $sql .= " and col_prop_mode = ?"; + $binding[] = $propmode; + } + } - if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; - } + if ($mode != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $mode; + $binding[] = $mode; + } - $sql .= " and station_id in (" . $location_list . ")) - group by year - order by year"; + $sql .= " and station_id in (" . $location_list . ")) + group by year + order by year"; - if ($period == "year") { - $sql .= " ) y on year(thcv.col_time_on) = y.year"; - } else if ($period == "month") { - $sql .= " ) y on date_format(col_time_on, '%Y-%m') = y.year"; - } + if ($period == "year") { + $sql .= " ) y on year(thcv.col_time_on) = y.year"; + } else if ($period == "month") { + $sql .= " ) y on date_format(col_time_on, '%Y-%m') = y.year"; + } - $sql .= " where station_id in (" . $location_list . ")"; + $sql .= " where station_id in (" . $location_list . ")"; - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } + if ($band == 'SAT') { // Left for compatibility reasons + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $sql .= " and col_band = ?"; + $binding[] = $band; + } + if ( $propmode == 'NoSAT' ) { // All without SAT + $sql .= " and col_prop_mode !='SAT'"; + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $sql .= " and col_prop_mode = ?"; + $binding[] = $propmode; + } + } - if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; - } + if ($mode != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $mode; + $binding[] = $mode; + } - if ($period == "year") { - $sql .= " group by year(thcv.col_time_on), y.tot - order by year(thcv.col_time_on)"; - } else if ($period == "month") { - $sql .= " group by date_format(col_time_on, '%Y-%m'), y.tot - order by date_format(col_time_on, '%Y-%m')"; - } + if ($period == "year") { + $sql .= " group by year(thcv.col_time_on), y.tot + order by year(thcv.col_time_on)"; + } else if ($period == "month") { + $sql .= " group by date_format(col_time_on, '%Y-%m'), y.tot + order by date_format(col_time_on, '%Y-%m')"; + } - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); - return $this->count_and_add_accumulated_total($query->result()); + return $this->count_and_add_accumulated_total($query->result()); } - function get_accumulated_waz($band, $mode, $period, $location_list) - { - if ($period == "year") { - $sql = "select year(thcv.col_time_on) year"; - } else if ($period == "month") { - $sql = "select date_format(col_time_on, '%Y-%m') year"; - } + function get_accumulated_waz($band, $mode, $propmode, $period, $location_list) { + $binding=[]; + if ($period == "year") { + $sql = "select year(thcv.col_time_on) year"; + } else if ($period == "month") { + $sql = "select date_format(col_time_on, '%Y-%m') year"; + } - $sql .= ", coalesce(y.tot, 0) tot - from " . $this->config->item('table_name') . " thcv - left outer join ( - select count(col_cqz) as tot, year - from (select distinct "; + $sql .= ", coalesce(y.tot, 0) tot + from " . $this->config->item('table_name') . " thcv + left outer join ( + select count(col_cqz) as tot, year + from (select distinct "; - if ($period == "year") { - $sql .= "year(col_time_on)"; - } else if ($period == "month") { - $sql .= "date_format(col_time_on, '%Y-%m')"; - } + if ($period == "year") { + $sql .= "year(col_time_on)"; + } else if ($period == "month") { + $sql .= "date_format(col_time_on, '%Y-%m')"; + } - $sql .= " year, col_cqz - from " . $this->config->item('table_name') . - " where station_id in (" . $location_list . ")"; + $sql .= " year, col_cqz + from " . $this->config->item('table_name') . + " where station_id in (" . $location_list . ")"; - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } + if ($band == 'SAT') { // Left for compatibility reasons + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $sql .= " and col_band = ?"; + $binding[] = $band; + } + if ( $propmode == 'NoSAT' ) { // All without SAT + $sql .= " and col_prop_mode !='SAT'"; + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $sql .= " and col_prop_mode = ?"; + $binding[] = $propmode; + } + } - if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; - } + if ($mode != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $mode; + $binding[] = $mode; + } - $sql .= " order by year - ) x - where not exists (select 1 from " . $this->config->item('table_name') . " where"; + $sql .= " order by year + ) x + where not exists (select 1 from " . $this->config->item('table_name') . " where"; - if ($period == "year") { - $sql .= " year(col_time_on) < year";; - } else if ($period == "month") { - $sql .= " date_format(col_time_on, '%Y-%m') < year";; - } + if ($period == "year") { + $sql .= " year(col_time_on) < year";; + } else if ($period == "month") { + $sql .= " date_format(col_time_on, '%Y-%m') < year";; + } - $sql .= " and col_cqz = x.col_cqz"; + $sql .= " and col_cqz = x.col_cqz"; - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } + if ($band == 'SAT') { // Left for compatibility reasons + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $sql .= " and col_band = ?"; + $binding[] = $band; + } + if ( $propmode == 'NoSAT' ) { // All without SAT + $sql .= " and col_prop_mode !='SAT'"; + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $sql .= " and col_prop_mode = ?"; + $binding[] = $propmode; + } + } - if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; - } + if ($mode != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $mode; + $binding[] = $mode; + } - $sql .= " and station_id in (" . $location_list . ")) - group by year - order by year"; + $sql .= " and station_id in (" . $location_list . ")) + group by year + order by year"; - if ($period == "year") { - $sql .= " ) y on year(thcv.col_time_on) = y.year"; - } else if ($period == "month") { - $sql .= " ) y on date_format(col_time_on, '%Y-%m') = y.year"; - } + if ($period == "year") { + $sql .= " ) y on year(thcv.col_time_on) = y.year"; + } else if ($period == "month") { + $sql .= " ) y on date_format(col_time_on, '%Y-%m') = y.year"; + } - $sql .= " where station_id in (" . $location_list . ")"; + $sql .= " where station_id in (" . $location_list . ")"; - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } + if ($band == 'SAT') { // Left for compatibility reasons + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $sql .= " and col_band = ?"; + $binding[] = $band; + } + if ( $propmode == 'NoSAT' ) { // All without SAT + $sql .= " and col_prop_mode !='SAT'"; + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $sql .= " and col_prop_mode = ?"; + $binding[] = $propmode; + } + } - if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; - } + if ($mode != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $mode; + $binding[] = $mode; + } - if ($period == "year") { - $sql .= " group by year(thcv.col_time_on), y.tot - order by year(thcv.col_time_on)"; - } else if ($period == "month") { - $sql .= " group by date_format(col_time_on, '%Y-%m'), y.tot - order by date_format(col_time_on, '%Y-%m')"; - } + if ($period == "year") { + $sql .= " group by year(thcv.col_time_on), y.tot + order by year(thcv.col_time_on)"; + } else if ($period == "month") { + $sql .= " group by date_format(col_time_on, '%Y-%m'), y.tot + order by date_format(col_time_on, '%Y-%m')"; + } - $query = $this->db->query($sql); + $query = $this->db->query($sql,$binding); - return $this->count_and_add_accumulated_total($query->result()); + return $this->count_and_add_accumulated_total($query->result()); } - function get_accumulated_vucc($band, $mode, $period, $location_list) { + function get_accumulated_vucc($band, $mode, $propmode, $period, $location_list) { $dbversion = $this->db->version(); $dbversion = explode('.', $dbversion); $sql = ""; if ($dbversion[0] >= "8") { - $sql = $this->fastquery($band, $mode, $period, $location_list); - $query = $this->db->query($sql); + $query = $this->fastquery($band, $mode, $propmode, $period, $location_list); return $query->result(); } else { - $sql = $this->slowquery($band, $mode, $period, $location_list); - $query = $this->db->query($sql); + $query = $this->slowquery($band, $mode, $propmode, $period, $location_list); return $this->count_and_add_accumulated_total($query->result()); } } - function fastquery($band, $mode, $period, $location_list) { - $sql = "WITH firstseen AS ( - SELECT substr(col_gridsquare,1,4) as grid, "; + function fastquery($band, $mode, $propmode, $period, $location_list) { + $binding=[]; + $sql = "WITH firstseen AS ( + SELECT substr(col_gridsquare,1,4) as grid, "; - if ($period == "year") { - $sql .= "MIN(year(col_time_on)) year"; - } else if ($period == "month") { - $sql .= "MIN(date_format(col_time_on, '%Y-%m')) year"; - } + if ($period == "year") { + $sql .= "MIN(year(col_time_on)) year"; + } else if ($period == "month") { + $sql .= "MIN(date_format(col_time_on, '%Y-%m')) year"; + } - $sql .= " from " . $this->config->item('table_name') . " thcv - where coalesce(col_gridsquare, '') <> '' - and station_id in (" . $location_list . ")"; + $sql .= " from " . $this->config->item('table_name') . " thcv + where coalesce(col_gridsquare, '') <> '' + and station_id in (" . $location_list . ")"; - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } - if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; - } + if ($band == 'SAT') { // Left for compatibility reasons + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $sql .= " and col_band = ?"; + $binding[] = $band; + } + if ( $propmode == 'NoSAT' ) { // All without SAT + $sql .= " and col_prop_mode !='SAT'"; + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $sql .= " and col_prop_mode = ?"; + $binding[] = $propmode; + } + } - $sql .= " GROUP BY 1 - union all - select substr(grid, 1,4) as grid, year - from ( - select TRIM(SUBSTRING_INDEX(SUBSTRING_INDEX(COL_VUCC_GRIDS, ',', x.x), ',',-1)) as grid, "; - if ($period == "year") { - $sql .= "MIN(year(col_time_on)) year"; - } else if ($period == "month") { - $sql .= "MIN(date_format(col_time_on, '%Y-%m')) year"; - } + if ($mode != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $mode; + $binding[] = $mode; + } - $sql .= " from " . $this->config->item('table_name') . " thcv - cross join ( - select 1 as x - union all - select 2 - union all - select 3 - union all - select 4) x - where - x.x <= length(COL_VUCC_GRIDS)-length(replace(COL_VUCC_GRIDS, ',', ''))+ 1 - and coalesce(COL_VUCC_GRIDS, '') <> '' - and station_id in (" . $location_list . ")"; + $sql .= " GROUP BY 1 + union all + select substr(grid, 1,4) as grid, year + from ( + select TRIM(SUBSTRING_INDEX(SUBSTRING_INDEX(COL_VUCC_GRIDS, ',', x.x), ',',-1)) as grid, "; + if ($period == "year") { + $sql .= "MIN(year(col_time_on)) year"; + } else if ($period == "month") { + $sql .= "MIN(date_format(col_time_on, '%Y-%m')) year"; + } - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } + $sql .= " from " . $this->config->item('table_name') . " thcv + cross join ( + select 1 as x + union all + select 2 + union all + select 3 + union all + select 4) x + where + x.x <= length(COL_VUCC_GRIDS)-length(replace(COL_VUCC_GRIDS, ',', ''))+ 1 + and coalesce(COL_VUCC_GRIDS, '') <> '' + and station_id in (" . $location_list . ")"; - if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; - } + if ($band == 'SAT') { // Left for compatibility reasons + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $sql .= " and col_band = ?"; + $binding[] = $band; + } + if ( $propmode == 'NoSAT' ) { // All without SAT + $sql .= " and col_prop_mode !='SAT'"; + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $sql .= " and col_prop_mode = ?"; + $binding[] = $propmode; + } + } - $sql .= " GROUP BY 1) as z + if ($mode != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $mode; + $binding[] = $mode; + } + + $sql .= " GROUP BY 1) as z ) , z as ( SELECT grid, row_number() OVER (partition by grid ORDER BY grid asc, year asc) as rn, year FROM firstseen ) select DISTINCT COUNT(grid) OVER (ORDER BY year) as total, year from z where rn = 1 - "; +"; - return $sql; - } + $query = $this->db->query($sql, $binding); + return $query; + } - function slowquery($band, $mode, $period, $location_list) { - $sql = ""; - if ($period == "year") { - $sql = "select year(thcv.col_time_on) year"; - } else if ($period == "month") { - $sql = "select date_format(col_time_on, '%Y-%m') year"; - } + function slowquery($band, $mode, $propmode, $period, $location_list) { + $binding=[]; + $sql = ""; + if ($period == "year") { + $sql = "select year(thcv.col_time_on) year"; + } else if ($period == "month") { + $sql = "select date_format(col_time_on, '%Y-%m') year"; + } - $sql .= ", coalesce(y.tot, 0) tot - from " . $this->config->item('table_name') . " thcv - left outer join ( - select count(substr(col_gridsquare,1,4)) as tot, year - from (select distinct "; + $sql .= ", coalesce(y.tot, 0) tot + from " . $this->config->item('table_name') . " thcv + left outer join ( + select count(substr(col_gridsquare,1,4)) as tot, year + from (select distinct "; - if ($period == "year") { - $sql .= "year(col_time_on)"; - } else if ($period == "month") { - $sql .= "date_format(col_time_on, '%Y-%m')"; - } + if ($period == "year") { + $sql .= "year(col_time_on)"; + } else if ($period == "month") { + $sql .= "date_format(col_time_on, '%Y-%m')"; + } - $sql .= " year, substr(col_gridsquare,1,4) as col_gridsquare - from " . $this->config->item('table_name') . - " where station_id in (" . $location_list . ")"; + $sql .= " year, substr(col_gridsquare,1,4) as col_gridsquare + from " . $this->config->item('table_name') . + " where station_id in (" . $location_list . ")"; - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } + if ($band == 'SAT') { // Left for compatibility reasons + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $sql .= " and col_band = ?"; + $binding[] = $band; + } + if ( $propmode == 'NoSAT' ) { // All without SAT + $sql .= " and col_prop_mode !='SAT'"; + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $sql .= " and col_prop_mode = ?"; + $binding[] = $propmode; + } + } - if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; - } + if ($mode != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[]=$mode; + $binding[]=$mode; + } - $sql .= " order by year - ) x - where not exists (select 1 from " . $this->config->item('table_name') . " where"; + $sql .= " order by year + ) x + where not exists (select 1 from " . $this->config->item('table_name') . " where"; - if ($period == "year") { - $sql .= " year(col_time_on) < year";; - } else if ($period == "month") { - $sql .= " date_format(col_time_on, '%Y-%m') < year";; - } + if ($period == "year") { + $sql .= " year(col_time_on) < year";; + } else if ($period == "month") { + $sql .= " date_format(col_time_on, '%Y-%m') < year";; + } - $sql .= " and substr(col_gridsquare,1,4) = substr(x.col_gridsquare,1,4)"; + $sql .= " and substr(col_gridsquare,1,4) = substr(x.col_gridsquare,1,4)"; - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } + if ($band == 'SAT') { // Left for compatibility reasons + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $sql .= " and col_band = ?"; + $binding[] = $band; + } + if ( $propmode == 'NoSAT' ) { // All without SAT + $sql .= " and col_prop_mode !='SAT'"; + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $sql .= " and col_prop_mode = ?"; + $binding[] = $propmode; + } + } - if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; - } + if ($mode != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[]=$mode; + $binding[]=$mode; + } - $sql .= " and station_id in (" . $location_list . ")) - group by year - order by year"; + $sql .= " and station_id in (" . $location_list . ")) + group by year + order by year"; - if ($period == "year") { - $sql .= " ) y on year(thcv.col_time_on) = y.year"; - } else if ($period == "month") { - $sql .= " ) y on date_format(col_time_on, '%Y-%m') = y.year"; - } + if ($period == "year") { + $sql .= " ) y on year(thcv.col_time_on) = y.year"; + } else if ($period == "month") { + $sql .= " ) y on date_format(col_time_on, '%Y-%m') = y.year"; + } - $sql .= " where station_id in (" . $location_list . ")"; + $sql .= " where station_id in (" . $location_list . ")"; - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } + if ($band == 'SAT') { // Left for compatibility reasons + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $sql .= " and col_band = ?"; + $binding[] = $band; + } + if ( $propmode == 'NoSAT' ) { // All without SAT + $sql .= " and col_prop_mode !='SAT'"; + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $sql .= " and col_prop_mode = ?"; + $binding[] = $propmode; + } + } - if ($mode != 'All') { - $sql .= " and (col_mode ='" . $mode . "' or col_submode ='" . $mode . "')"; - } + if ($mode != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[]=$mode; + $binding[]=$mode; + } - if ($period == "year") { - $sql .= " group by year(thcv.col_time_on), y.tot - order by year(thcv.col_time_on)"; - } else if ($period == "month") { - $sql .= " group by date_format(col_time_on, '%Y-%m'), y.tot - order by date_format(col_time_on, '%Y-%m')"; - } + if ($period == "year") { + $sql .= " group by year(thcv.col_time_on), y.tot + order by year(thcv.col_time_on)"; + } else if ($period == "month") { + $sql .= " group by date_format(col_time_on, '%Y-%m'), y.tot + order by date_format(col_time_on, '%Y-%m')"; + } - return $sql; - } + $query = $this->db->query($sql, $binding); + return $query; + } } diff --git a/application/models/Activators_model.php b/application/models/Activators_model.php index b863021d4..df1958c0d 100644 --- a/application/models/Activators_model.php +++ b/application/models/Activators_model.php @@ -3,100 +3,117 @@ if (!defined('BASEPATH')) exit('No direct script access allowed'); class Activators_model extends CI_Model { - function get_activators($band, $mincount, $leogeo) - { - $this->load->model('logbooks_model'); - $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - if ($mincount == '' || $mincount == 0 || !is_numeric($mincount)) { - $mincount = 2; - } + function get_activators($band, $mincount, $leogeo) { + $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; - } + if ($mincount == '' || $mincount == 0 || !is_numeric($mincount)) { + $mincount = 2; + } - $location_list = "'" . implode("','", $logbooks_locations_array) . "'"; + if (!$logbooks_locations_array) { + return null; + } - $sql = "SELECT COL_CALL as `call`, - COUNT(DISTINCT(SUBSTR(COL_GRIDSQUARE,1,4))) AS `count`, - GROUP_CONCAT(DISTINCT SUBSTR(`COL_GRIDSQUARE`,1,4) ORDER BY `COL_GRIDSQUARE` SEPARATOR ', ') AS `grids` - FROM " . $this->config->item('table_name') . " WHERE station_id in (" . $location_list . ")"; - - if ($band != 'All') { - if ($band == 'SAT') { - switch ($leogeo) { - case 'both': - $sql .= " and col_prop_mode ='" . $band . "'"; - break; - case 'leo': - $sql .= " and col_prop_mode = '" . $band . "'"; - $sql .= " and col_sat_name != 'QO-100'"; - break; - case 'geo': - $sql .= " and col_prop_mode = '" . $band . "'"; - $sql .= " and col_sat_name = 'QO-100'"; - break; - default: - $sql .= " and col_prop_mode ='" . $band . "'"; - break; - } - } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and COL_BAND ='" . $band . "'"; - } - } - $sql .= " AND `COL_GRIDSQUARE` != '' GROUP BY `COL_CALL` HAVING `count` >= " . $mincount . " ORDER BY `count` DESC;"; + $location_list = "'" . implode("','", $logbooks_locations_array) . "'"; + $binding = array(); - $query = $this->db->query($sql); + $sql = "select + `call`, + COUNT(distinct(grid)) as `count`, + GROUP_CONCAT(distinct grid order by `grid` separator ', ') as `grids` + from ( + select + distinct COL_CALL as `call`, + SUBSTR(COL_GRIDSQUARE, 1, 4) grid + from + " . $this->config->item('table_name') . " + where + station_id in (" . $location_list . ") + and `COL_GRIDSQUARE` != ''"; - return $query->result(); - } + if ($band != 'All') { + $binding[] = $band; + if ($band == 'SAT') { + switch ($leogeo) { + case 'both': + $sql .= " and col_prop_mode = ?"; + break; + case 'leo': + $sql .= " and col_prop_mode = ?"; + $sql .= " and col_sat_name != 'QO-100'"; + break; + case 'geo': + $sql .= " and col_prop_mode = ?"; + $sql .= " and col_sat_name = 'QO-100'"; + break; + default: + $sql .= " and col_prop_mode = ?"; + break; + } + } else { + $sql .= " and col_prop_mode != 'SAT'"; + $sql .= " and COL_BAND = ?"; + } + } - function get_activators_vucc($band, $leogeo) - { - $this->load->model('logbooks_model'); - $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + $sql .= " union + select distinct COL_CALL as `call`, substr(grid, 1,4) as grid + from ( + select TRIM(SUBSTRING_INDEX(SUBSTRING_INDEX(COL_VUCC_GRIDS, ',', x.x), ',',-1)) as grid, col_call from " . $this->config->item('table_name') . " + cross join ( + select 1 as x + union all + select 2 + union all + select 3 + union all + select 4) x + where x.x <= length(COL_VUCC_GRIDS)-length(replace(COL_VUCC_GRIDS, ',', ''))+ 1 + and coalesce(COL_VUCC_GRIDS, '') <> '' + and station_id in (" . $location_list . ")"; - if (!$logbooks_locations_array) { - return null; - } + if ($band != 'All') { + $binding[] = $band; + if ($band == 'SAT') { + switch ($leogeo) { + case 'both': + $sql .= " and col_prop_mode = ?"; + break; + case 'leo': + $sql .= " and col_prop_mode = ?"; + $sql .= " and col_sat_name != 'QO-100'"; + break; + case 'geo': + $sql .= " and col_prop_mode = ?"; + $sql .= " and col_sat_name = 'QO-100'"; + break; + default: + $sql .= " and col_prop_mode = ?"; + break; + } + } else { + $sql .= " and col_prop_mode != 'SAT'"; + $sql .= " and COL_BAND = ?"; + } + } - $location_list = "'" . implode("','", $logbooks_locations_array) . "'"; + $sql .= " GROUP BY 1, COL_CALL + ) as z + ) as x + group by `call` + having `count` >= ? + order by `count` desc"; - $sql = "SELECT DISTINCT COL_CALL AS `call`, - GROUP_CONCAT(COL_VUCC_GRIDS) AS `vucc_grids` FROM " . $this->config->item('table_name') . - " WHERE station_id in (" . $location_list . ")"; + $binding[] = $mincount; - if ($band != 'All') { - if ($band == 'SAT') { - switch ($leogeo) { - case 'both': - $sql .= " and col_prop_mode ='" . $band . "'"; - break; - case 'leo': - $sql .= " and col_prop_mode = '" . $band . "'"; - $sql .= " and col_sat_name != 'QO-100'"; - break; - case 'geo': - $sql .= " and col_prop_mode = '" . $band . "'"; - $sql .= " and col_sat_name = 'QO-100'"; - break; - default: - $sql .= " and col_prop_mode ='" . $band . "'"; - break; - } - } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and COL_BAND ='" . $band . "'"; - } - } - $sql .= " AND COL_VUCC_GRIDS != '' GROUP BY COL_CALL;"; + $query = $this->db->query($sql, $binding); - $query = $this->db->query($sql); + return $query->result(); + + } - return $query->result(); - } function get_max_activated_grids() { $this->load->model('logbooks_model'); @@ -109,11 +126,37 @@ class Activators_model extends CI_Model $location_list = "'" . implode("','", $logbooks_locations_array) . "'"; // Get max no of activated grids of single operator - $data = $this->db->query( - "SELECT COUNT(DISTINCT(SUBSTR(COL_GRIDSQUARE,1,4))) AS `count` from " . $this->config->item('table_name') . - " WHERE station_id in (" . $location_list . ") AND - `COL_GRIDSQUARE` != '' GROUP BY `COL_CALL` ORDER BY `count` DESC LIMIT 1" - ); + $sql = " + select count(distinct(grid)) as `count` from ( + select distinct(SUBSTR(COL_GRIDSQUARE, 1, 4)) as grid, col_call + from " . $this->config->item('table_name') . " + where station_id in (" . $location_list . ") + and `COL_GRIDSQUARE` != '' + union + select distinct substr(grid, 1,4) as grid, COL_CALL + from ( + select TRIM(SUBSTRING_INDEX(SUBSTRING_INDEX(COL_VUCC_GRIDS, ',', x.x), ',',-1)) as grid, col_call from " . $this->config->item('table_name') . " + cross join ( + select 1 as x + union all + select 2 + union all + select 3 + union all + select 4) x + where x.x <= length(COL_VUCC_GRIDS)-length(replace(COL_VUCC_GRIDS, ',', ''))+ 1 + and coalesce(COL_VUCC_GRIDS, '') <> '' + and station_id in (" . $location_list . ") + GROUP BY 1, COL_CALL + ) as z + ) as x + group by col_call + order by `count` desc + limit 1 + "; + + + $data = $this->db->query($sql); foreach ($data->result() as $row) { $max = $row->count; } diff --git a/application/models/Cat.php b/application/models/Cat.php index f992533f4..276f18fba 100644 --- a/application/models/Cat.php +++ b/application/models/Cat.php @@ -26,10 +26,10 @@ 'sat_name' => $result['sat_name'] ?? NULL, 'timestamp' => $timestamp, ); - if ( (isset($result['frequency'])) && ($result['frequency'] != "NULL") && ($result['frequency'] != '') ) { + if ( (isset($result['frequency'])) && ($result['frequency'] != "NULL") && ($result['frequency'] != '') && (is_numeric($result['frequency']))) { $data['frequency'] = $result['frequency']; } else { - if ( (isset($result['uplink_freq'])) && ($result['uplink_freq'] != "NULL") && ($result['uplink_freq'] != '') ) { + if ( (isset($result['uplink_freq'])) && ($result['uplink_freq'] != "NULL") && ($result['uplink_freq'] != '') && (is_numeric($result['uplink_freq'])) ) { $data['frequency'] = $result['uplink_freq']; } else { unset($data['frequency']); // Do not update Frequency since it wasn't provided @@ -44,9 +44,9 @@ $data['mode'] = NULL; } } - if (isset($result['frequency_rx'])) { + if ( (isset($result['frequency_rx'])) && (is_numeric($result['frequency_rx'])) ) { $data['frequency_rx'] = $result['frequency_rx']; - } else if (isset($result['downlink_freq']) && $result['downlink_freq'] != "NULL") { + } else if (isset($result['downlink_freq']) && ($result['downlink_freq'] != "NULL") && (is_numeric($result['downlink_freq']))) { $data['frequency_rx'] = $result['downlink_freq']; } else { $data['frequency_rx'] = NULL; diff --git a/application/models/Contesting_model.php b/application/models/Contesting_model.php index 60358bcb7..00b9cd850 100644 --- a/application/models/Contesting_model.php +++ b/application/models/Contesting_model.php @@ -8,7 +8,7 @@ class Contesting_model extends CI_Model { $this->load->model('Stations'); $station_id = $this->Stations->find_active(); - $qsoarray = explode(',', $qso); + $qsoarray = explode(',', $this->security->xss_clean($qso)); $contestid = $qsoarray[2]; $date = DateTime::createFromFormat('d-m-Y H:i:s', $qsoarray[0]); @@ -22,7 +22,7 @@ class Contesting_model extends CI_Model { $this->config->item('table_name') . " WHERE station_id = ? AND COL_TIME_ON >= ? AND COL_CONTEST_ID = ? ORDER BY COL_PRIMARY_KEY ASC"; - $data = $this->db->query($sql,array($station_id, $date, $contestid)); + $data = $this->db->query($sql, array($station_id, $date, $contestid)); return $data->result(); } @@ -30,9 +30,11 @@ class Contesting_model extends CI_Model { $this->load->model('Stations'); $station_id = $this->Stations->find_active(); - $sql = "SELECT * from contest_session where station_id = " . $station_id; + $binding = []; + $sql = "SELECT * from contest_session where station_id = ?"; + $binding[] = $station_id; - $data = $this->db->query($sql); + $data = $this->db->query($sql, $binding); return $data->row(); } @@ -42,9 +44,11 @@ class Contesting_model extends CI_Model { $this->load->model('Stations'); $station_id = $this->Stations->find_active(); - $sql = "delete from contest_session where station_id = " . $station_id; + $binding = []; + $sql = "delete from contest_session where station_id = ?"; + $binding[] = $station_id; - $this->db->query($sql); + $this->db->query($sql, $binding); return; } @@ -54,25 +58,36 @@ class Contesting_model extends CI_Model { $qso = ""; - if ($this->input->post('callsign') ?? '' != '') { - $qso = xss_clean($this->input->post('start_date', true)) . ' ' . xss_clean($this->input->post('start_time', true)) . ',' . xss_clean($this->input->post('callsign', true)) . ',' . xss_clean($this->input->post('contestname', true)); + if ($this->input->post('callsign', true) ?? '' != '') { + $qso = $this->input->post('start_date', true) . ' ' . $this->input->post('start_time', true) . ',' . $this->input->post('callsign', true) . ',' . $this->input->post('contestname', true); } else { - $qso = xss_clean($this->input->post('start_date', true)) . ' ' . xss_clean($this->input->post('start_time', true)) . ',,' . xss_clean($this->input->post('contestname', true)); + $qso = $this->input->post('start_date', true) . ' ' . $this->input->post('start_time', true) . ',,' . $this->input->post('contestname', true); } - $data = array( - 'contestid' => xss_clean($this->input->post('contestname', true)), - 'exchangetype' => xss_clean($this->input->post('exchangetype', true)), - 'exchangesent' => xss_clean($this->input->post('exch_sent', true)), - 'serialsent' => xss_clean($this->input->post('exch_serial_s', true)), - 'copytodok' => $this->input->post('copyexchangeto', true) == "" ? 0 : xss_clean($this->input->post('copyexchangeto', true)), - 'qso' => $qso, - 'station_id' => $station_id, + $settings = array( + 'exchangetype' => $this->input->post('exchangetype', true), + 'exchangesequence' => $this->input->post('exchangesequence_select', true), + 'copyexchangeto' => $this->input->post('copyexchangeto', true) == "" ? 0 : $this->input->post('copyexchangeto', true), + 'radio' => $this->input->post('radio', true), + 'freq_display' => $this->input->post('freq_display', true), + 'mode' => $this->input->post('mode', true), + 'band' => $this->input->post('band', true), ); - $sql = "SELECT * from contest_session where station_id = " . $station_id; + $data = array( + 'contestid' => $this->input->post('contestname', true), + 'exchangesent' => $this->input->post('exch_sent', true), + 'serialsent' => $this->input->post('exch_serial_s', true), + 'qso' => $qso, + 'station_id' => $station_id, + 'settings' => json_encode($settings), + ); - $querydata = $this->db->query($sql); + $binding = []; + $sql = "SELECT * from contest_session where station_id = ?"; + $binding[] = $station_id; + + $querydata = $this->db->query($sql, $binding); if ($querydata->num_rows() == 0) { $this->db->insert('contest_session', $data); @@ -102,7 +117,7 @@ class Contesting_model extends CI_Model { $data = $this->db->query($sql); - return($data->result_array()); + return ($data->result_array()); } function getAllContests() { @@ -111,7 +126,7 @@ class Contesting_model extends CI_Model { $data = $this->db->query($sql); - return($data->result_array()); + return ($data->result_array()); } function delete($id) { @@ -154,8 +169,8 @@ class Contesting_model extends CI_Model { function add() { $data = array( - 'name' => xss_clean($this->input->post('name', true)), - 'adifname' => xss_clean($this->input->post('adifname', true)), + 'name' => $this->input->post('name', true), + 'adifname' => $this->input->post('adifname', true), ); $this->db->insert('contest', $data); @@ -165,21 +180,26 @@ class Contesting_model extends CI_Model { // Clean ID $clean_id = $this->security->xss_clean($id); - $sql = "SELECT id, name, adifname, active FROM contest where id =" . $clean_id; + $binding = []; + $sql = "SELECT id, name, adifname, active FROM contest where id = ?"; + $binding[] = $clean_id; - $data = $this->db->query($sql); + $data = $this->db->query($sql, $binding); return ($data->row()); } function edit($id) { + // Clean ID + $clean_id = $this->security->xss_clean($id); + $data = array( - 'name' => xss_clean($this->input->post('name', true)), - 'adifname' => xss_clean($this->input->post('adifname', true)), - 'active' => xss_clean($this->input->post('active', true)), + 'name' => $this->input->post('name', true), + 'adifname' => $this->input->post('adifname', true), + 'active' => $this->input->post('active', true), ); - $this->db->where('id', $id); + $this->db->where('id', $clean_id); $this->db->update('contest', $data); } @@ -226,7 +246,7 @@ class Contesting_model extends CI_Model { $this->db->where("COL_MODE", xss_clean($mode)); $this->db->or_where("COL_SUBMODE", xss_clean($mode)); $this->db->group_end(); - $this->db->order_by($this->config->item('table_name').".COL_TIME_ON", "DESC"); + $this->db->order_by($this->config->item('table_name') . ".COL_TIME_ON", "DESC"); $query = $this->db->get($this->config->item('table_name')); return $query; @@ -234,28 +254,33 @@ class Contesting_model extends CI_Model { return; } - function export_custom($from, $to, $contest_id, $station_id) { - $this->db->select(''.$this->config->item('table_name').'.*, station_profile.*'); + function export_custom($from, $to, $contest_id, $station_id, $band = null) { + $this->db->select('' . $this->config->item('table_name') . '.*, station_profile.*'); $this->db->from($this->config->item('table_name')); - $this->db->where($this->config->item('table_name').'.station_id', $station_id); + $this->db->where($this->config->item('table_name') . '.station_id', $station_id); // If date is set, we format the date and add it to the where-statement if ($from != 0) { - $from = DateTime::createFromFormat('Y-m-d', $from); + $from = DateTime::createFromFormat('Y-m-d', $this->security->xss_clean($from)); $from = $from->format('Y-m-d'); - $this->db->where("date(".$this->config->item('table_name').".COL_TIME_ON) >= '".$from."'"); + $this->db->where("date(" . $this->config->item('table_name') . ".COL_TIME_ON) >= '" . $from . "'"); } if ($to != 0) { - $to = DateTime::createFromFormat('Y-m-d', $to); + $to = DateTime::createFromFormat('Y-m-d', $this->security->xss_clean($to)); $to = $to->format('Y-m-d'); - $this->db->where("date(".$this->config->item('table_name').".COL_TIME_ON) <= '".$to."'"); + $this->db->where("date(" . $this->config->item('table_name') . ".COL_TIME_ON) <= '" . $to . "'"); } - $this->db->where($this->config->item('table_name').'.COL_CONTEST_ID', $contest_id); + // If band is set, we only load contacts for that band + if ($band != null) { + $this->db->where($this->config->item('table_name') . '.COL_BAND', $band); + } - $this->db->order_by($this->config->item('table_name').".COL_TIME_ON", "ASC"); + $this->db->where($this->config->item('table_name') . '.COL_CONTEST_ID', $this->security->xss_clean($contest_id)); - $this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id'); + $this->db->order_by($this->config->item('table_name') . ".COL_TIME_ON", "ASC"); + + $this->db->join('station_profile', 'station_profile.station_id = ' . $this->config->item('table_name') . '.station_id'); return $this->db->get(); } @@ -264,56 +289,105 @@ class Contesting_model extends CI_Model { $this->load->model('Stations'); $station_id = $this->Stations->find_active(); + $binding = []; $sql = "select col_contest_id, min(date(col_time_on)) mindate, max(date(col_time_on)) maxdate, year(col_time_on) year, month(col_time_on) month from " . $this->config->item('table_name') . " where coalesce(COL_CONTEST_ID, '') <> '' - and station_id =" . $station_id; + and station_id = ?"; + + $binding[] = $station_id; $sql .= " group by COL_CONTEST_ID , year(col_time_on), month(col_time_on) order by year(col_time_on) desc"; - $data = $this->db->query($sql); + $data = $this->db->query($sql, $binding); return ($data->result()); } function get_logged_years($station_id) { + $station_id = $this->security->xss_clean($station_id); + + $binding = []; $sql = "select distinct year(col_time_on) year from " . $this->config->item('table_name') . " where coalesce(COL_CONTEST_ID, '') <> '' - and station_id =" . $station_id; + and station_id = ?"; + + $binding[] = $station_id; $sql .= " order by year(col_time_on) desc"; - $data = $this->db->query($sql); + $data = $this->db->query($sql, $binding); return $data->result(); } function get_logged_contests($station_id, $year) { + + $station_id = $this->security->xss_clean($station_id); + $year = $this->security->xss_clean($year); + + $binding = []; $sql = "select distinct col_contest_id, coalesce(contest.name, col_contest_id) contestname from " . $this->config->item('table_name') . " thcv left outer join contest on thcv.col_contest_id = contest.adifname where coalesce(COL_CONTEST_ID, '') <> '' - and station_id =" . $station_id . - " and year(col_time_on) ='" . $year . "'"; + and station_id = ?" . + " and year(col_time_on) = ?"; + + $binding[] = $station_id; + $binding[] = $year; $sql .= " order by COL_CONTEST_ID asc"; - $data = $this->db->query($sql); + $data = $this->db->query($sql, $binding); return $data->result(); } function get_contest_dates($station_id, $year, $contestid) { + + $station_id = $this->security->xss_clean($station_id); + $year = $this->security->xss_clean($year); + $contestid = $this->security->xss_clean($contestid); + + $binding = []; $sql = "select distinct (date(col_time_on)) date from " . $this->config->item('table_name') . " where coalesce(COL_CONTEST_ID, '') <> '' - and station_id =" . $station_id . - " and year(col_time_on) ='" . $year . "' and col_contest_id ='" . $contestid . "'"; + and station_id = ?" . + " and year(col_time_on) = ? and col_contest_id = ?"; - $data = $this->db->query($sql); + $binding[] = $station_id; + $binding[] = $year; + $binding[] = $contestid; + + $data = $this->db->query($sql, $binding); return $data->result(); } + + function get_contest_bands($station_id, $contestid, $from, $to) { + + //get distinct bands for the selected timeframe + $binding = []; + $sql = "select distinct COL_BAND band + from " . $this->config->item('table_name') . " + where date(" . $this->config->item('table_name') . ".COL_TIME_ON) >= ? + and date(" . $this->config->item('table_name') . ".COL_TIME_ON) <= ? + and station_id = ? and COL_CONTEST_ID = ?"; + + //add data to bindings + $binding[] = $from; + $binding[] = $to; + $binding[] = $station_id; + $binding[] = $contestid; + + //get database result + $data = $this->db->query($sql, $binding); + + //return data + return $data->result(); + } } diff --git a/application/models/Cq.php b/application/models/Cq.php index 617128259..9ebd60944 100644 --- a/application/models/Cq.php +++ b/application/models/Cq.php @@ -6,202 +6,220 @@ class CQ extends CI_Model{ $this->load->library('Genfunctions'); } - function get_cq_array($bands, $postdata, $location_list) { - $cqZ = array(); // Used for keeping track of which states that are not worked + function get_cq_array($bands, $postdata, $location_list) { + $cqZ = array(); // Used for keeping track of which states that are not worked - for ($i = 1; $i <= 40; $i++) { - $cqZ[$i]['count'] = 0; // Inits each cq zone's count - } - - $qsl = $this->genfunctions->gen_qsl_from_postdata($postdata); - - foreach ($bands as $band) { - for ($i = 1; $i <= 40; $i++) { - $bandCq[$i][$band] = '-'; // Sets all to dash to indicate no result - } - - if ($postdata['worked'] != NULL) { - $cqBand = $this->getCQWorked($location_list, $band, $postdata); - foreach ($cqBand as $line) { - $bandCq[$line->col_cqz][$band] = ''; - $cqZ[$line->col_cqz]['count']++; - } - } - if ($postdata['confirmed'] != NULL) { - $cqBand = $this->getCQConfirmed($location_list, $band, $postdata); - foreach ($cqBand as $line) { - $bandCq[$line->col_cqz][$band] = ''; - $cqZ[$line->col_cqz]['count']++; - } - } - } - - // We want to remove the worked zones in the list, since we do not want to display them - if ($postdata['worked'] == NULL) { - $cqBand = $this->getCQWorked($location_list, $postdata['band'], $postdata); - foreach ($cqBand as $line) { - unset($bandCq[$line->col_cqz]); - } - } - - // We want to remove the confirmed zones in the list, since we do not want to display them - if ($postdata['confirmed'] == NULL) { - $cqBand = $this->getCQConfirmed($location_list, $postdata['band'], $postdata); - foreach ($cqBand as $line) { - unset($bandCq[$line->col_cqz]); - } - } - - if ($postdata['notworked'] == NULL) { - for ($i = 1; $i <= 40; $i++) { - if ($cqZ[$i]['count'] == 0) { - unset($bandCq[$i]); - }; - } - } - - if (isset($bandCq)) { - return $bandCq; - } else { - return 0; - } - } - - /* - * Function returns all worked, but not confirmed states - * $postdata contains data from the form, in this case Lotw or QSL are used - */ - function getCQWorked($location_list, $band, $postdata) { - $sql = "SELECT distinct col_cqz FROM " . $this->config->item('table_name') . " thcv - where station_id in (" . $location_list . ") and col_cqz <= 40 and col_cqz <> ''"; - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + for ($i = 1; $i <= 40; $i++) { + $cqZ[$i]['count'] = 0; // Inits each cq zone's count } - $sql .= $this->genfunctions->addBandToQuery($band); + $qsl = $this->genfunctions->gen_qsl_from_postdata($postdata); - $sql .= " and not exists (select 1 from " . $this->config->item('table_name') . - " where station_id in (" . $location_list . - ") and col_cqz = thcv.col_cqz and col_cqz <> '' "; + foreach ($bands as $band) { + for ($i = 1; $i <= 40; $i++) { + $bandCq[$i][$band] = '-'; // Sets all to dash to indicate no result + } - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + if ($postdata['worked'] != NULL) { + $cqBand = $this->getCQWorked($location_list, $band, $postdata); + foreach ($cqBand as $line) { + $bandCq[$line->col_cqz][$band] = ''; + $cqZ[$line->col_cqz]['count']++; + } + } + if ($postdata['confirmed'] != NULL) { + $cqBand = $this->getCQConfirmed($location_list, $band, $postdata); + foreach ($cqBand as $line) { + $bandCq[$line->col_cqz][$band] = ''; + $cqZ[$line->col_cqz]['count']++; + } + } } - $sql .= $this->genfunctions->addBandToQuery($band); - - $sql .= $this->genfunctions->addQslToQuery($postdata); - - $sql .= ")"; - - $query = $this->db->query($sql); - - return $query->result(); - } - - /* - * Function returns all confirmed states on given band and on LoTW or QSL - * $postdata contains data from the form, in this case Lotw or QSL are used - */ - function getCQConfirmed($location_list, $band, $postdata) { - $sql = "SELECT distinct col_cqz FROM " . $this->config->item('table_name') . " thcv - where station_id in (" . $location_list . ") and col_cqz <= 40 and col_cqz <> ''"; - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + // We want to remove the worked zones in the list, since we do not want to display them + if ($postdata['worked'] == NULL) { + $cqBand = $this->getCQWorked($location_list, $postdata['band'], $postdata); + foreach ($cqBand as $line) { + unset($bandCq[$line->col_cqz]); + } } - $sql .= $this->genfunctions->addBandToQuery($band); + // We want to remove the confirmed zones in the list, since we do not want to display them + if ($postdata['confirmed'] == NULL) { + $cqBand = $this->getCQConfirmed($location_list, $postdata['band'], $postdata); + foreach ($cqBand as $line) { + unset($bandCq[$line->col_cqz]); + } + } - $sql .= $this->genfunctions->addQslToQuery($postdata); + if ($postdata['notworked'] == NULL) { + for ($i = 1; $i <= 40; $i++) { + if ($cqZ[$i]['count'] == 0) { + unset($bandCq[$i]); + }; + } + } - $query = $this->db->query($sql); + if (isset($bandCq)) { + return $bandCq; + } else { + return 0; + } + } - return $query->result(); - } + /* + * Function returns all worked, but not confirmed states + * $postdata contains data from the form, in this case Lotw or QSL are used + */ + function getCQWorked($location_list, $band, $postdata) { + $bindings=[]; + $sql = "SELECT distinct col_cqz FROM " . $this->config->item('table_name') . " thcv + where station_id in (" . $location_list . ") and col_cqz <= 40 and col_cqz <> ''"; + + if ($postdata['mode'] != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; + } + + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); + + $sql .= " and not exists (select 1 from " . $this->config->item('table_name') . + " where station_id in (" . $location_list . + ") and col_cqz = thcv.col_cqz and col_cqz <> '' "; + + if ($postdata['mode'] != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; + } + + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); + + $sql .= $this->genfunctions->addQslToQuery($postdata); + + $sql .= ")"; + + $query = $this->db->query($sql,$bindings); + + return $query->result(); + } + + /* + * Function returns all confirmed states on given band and on LoTW or QSL + * $postdata contains data from the form, in this case Lotw or QSL are used + */ + function getCQConfirmed($location_list, $band, $postdata) { + $bindings=[]; + $sql = "SELECT distinct col_cqz FROM " . $this->config->item('table_name') . " thcv + where station_id in (" . $location_list . ") and col_cqz <= 40 and col_cqz <> ''"; + + if ($postdata['mode'] != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; + } + + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); + + $sql .= $this->genfunctions->addQslToQuery($postdata); + + $query = $this->db->query($sql,$bindings); + + return $query->result(); + } - /* - * Function gets worked and confirmed summary on each band on the active stationprofile - */ - function get_cq_summary($bands, $postdata, $location_list) { - foreach ($bands as $band) { - $worked = $this->getSummaryByBand($band, $postdata, $location_list); - $confirmed = $this->getSummaryByBandConfirmed($band, $postdata, $location_list); - $cqSummary['worked'][$band] = $worked[0]->count; - $cqSummary['confirmed'][$band] = $confirmed[0]->count; - } + /* + * Function gets worked and confirmed summary on each band on the active stationprofile + */ + function get_cq_summary($bands, $postdata, $location_list) { + foreach ($bands as $band) { + $worked = $this->getSummaryByBand($band, $postdata, $location_list); + $confirmed = $this->getSummaryByBandConfirmed($band, $postdata, $location_list); + $cqSummary['worked'][$band] = $worked[0]->count; + $cqSummary['confirmed'][$band] = $confirmed[0]->count; + } - $workedTotal = $this->getSummaryByBand($postdata['band'], $postdata, $location_list); - $confirmedTotal = $this->getSummaryByBandConfirmed($postdata['band'], $postdata, $location_list); + $workedTotal = $this->getSummaryByBand($postdata['band'], $postdata, $location_list); + $confirmedTotal = $this->getSummaryByBandConfirmed($postdata['band'], $postdata, $location_list); - $cqSummary['worked']['Total'] = $workedTotal[0]->count; - $cqSummary['confirmed']['Total'] = $confirmedTotal[0]->count; + $cqSummary['worked']['Total'] = $workedTotal[0]->count; + $cqSummary['confirmed']['Total'] = $confirmedTotal[0]->count; - return $cqSummary; - } + return $cqSummary; + } - function getSummaryByBand($band, $postdata, $location_list) { - $sql = "SELECT count(distinct thcv.col_cqz) as count FROM " . $this->config->item('table_name') . " thcv"; + function getSummaryByBand($band, $postdata, $location_list) { + $bindings=[]; + $sql = "SELECT count(distinct thcv.col_cqz) as count FROM " . $this->config->item('table_name') . " thcv"; - $sql .= " where station_id in (" . $location_list . ') and col_cqz <= 40 and col_cqz > 0'; + $sql .= " where station_id in (" . $location_list . ') and col_cqz <= 40 and col_cqz > 0'; - if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode ='" . $band . "'"; - } else if ($band == 'All') { - $this->load->model('bands'); + if ($band == 'SAT') { + $sql .= " and thcv.col_prop_mode = ?"; + $bindings[]=$band; + } else if ($band == 'All') { + $this->load->model('bands'); $bandslots = $this->bands->get_worked_bands('cq'); $bandslots_list = "'".implode("','",$bandslots)."'"; $sql .= " and thcv.col_band in (" . $bandslots_list . ")" . - " and thcv.col_prop_mode !='SAT'"; - } else { - $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band ='" . $band . "'"; - } - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + " and thcv.col_prop_mode !='SAT'"; + } else { + $sql .= " and thcv.col_prop_mode !='SAT'"; + $sql .= " and thcv.col_band = ?"; + $bindings[]=$band; } - $query = $this->db->query($sql); + if ($postdata['mode'] != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; + } - return $query->result(); - } + $query = $this->db->query($sql,$bindings); - function getSummaryByBandConfirmed($band, $postdata, $location_list){ - $sql = "SELECT count(distinct thcv.col_cqz) as count FROM " . $this->config->item('table_name') . " thcv"; + return $query->result(); + } - $sql .= " where station_id in (" . $location_list . ') and col_cqz <= 40 and col_cqz > 0'; + function getSummaryByBandConfirmed($band, $postdata, $location_list){ + $bindings=[]; + $sql = "SELECT count(distinct thcv.col_cqz) as count FROM " . $this->config->item('table_name') . " thcv"; - if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode ='" . $band . "'"; - } else if ($band == 'All') { - $this->load->model('bands'); + $sql .= " where station_id in (" . $location_list . ') and col_cqz <= 40 and col_cqz > 0'; + + if ($band == 'SAT') { + $sql .= " and thcv.col_prop_mode = ?"; + $bindings[]=$band; + } else if ($band == 'All') { + $this->load->model('bands'); $bandslots = $this->bands->get_worked_bands('cq'); $bandslots_list = "'".implode("','",$bandslots)."'"; $sql .= " and thcv.col_band in (" . $bandslots_list . ")" . - " and thcv.col_prop_mode !='SAT'"; - } else { - $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band ='" . $band . "'"; - } - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + " and thcv.col_prop_mode !='SAT'"; + } else { + $sql .= " and thcv.col_prop_mode !='SAT'"; + $sql .= " and thcv.col_band = ?"; + $bindings[]=$band; } - $sql .= $this->genfunctions->addQslToQuery($postdata); + if ($postdata['mode'] != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; + } - $query = $this->db->query($sql); + $sql .= $this->genfunctions->addQslToQuery($postdata); - return $query->result(); - } + $query = $this->db->query($sql,$bindings); + + return $query->result(); + } } diff --git a/application/models/Dayswithqso_model.php b/application/models/Dayswithqso_model.php index 1f6b6aa67..cd5850086 100644 --- a/application/models/Dayswithqso_model.php +++ b/application/models/Dayswithqso_model.php @@ -38,7 +38,7 @@ class Dayswithqso_model extends CI_Model $dateprev = date_create(date('Y-m-d')); foreach($dates as $date) { // Loop through the result set - $datecurr = date_create($date->date); + $datecurr = date_create($date->date?? '1970-01-01 00:00:00'); $diff = $dateprev->diff($datecurr)->format("%a"); // Getting date difference between current date and previous date in array if ($diff == 0) { @@ -53,7 +53,7 @@ class Dayswithqso_model extends CI_Model } else { break; } - $dateprev = date_create($date->date); + $dateprev = date_create($date->date ?? '1970-01-01 00:00:00'); } if (isset($streaks) && is_array($streaks)) { @@ -78,7 +78,7 @@ class Dayswithqso_model extends CI_Model $dateprev = date_create(date('Y-m-d')); foreach($dates as $date) { // Loop through the result set - $datecurr = date_create($date->date); + $datecurr = date_create($date->date ?? '1970-01-01 00:00:00'); $diff = $dateprev->diff($datecurr)->format("%a"); // Getting date difference between current date and previous date in array if ($diff == 1 && $firstrun == true) { @@ -116,7 +116,7 @@ class Dayswithqso_model extends CI_Model if ($dates) { foreach($dates as $date) { // Loop through the result set - $datecurr = date_create($date->date); + $datecurr = date_create($date->date ?? '1970-01-01 00:00:00'); if ($dateprev == date_create('1900-01-01')) { // If first run $dateprev = $datecurr; } diff --git a/application/models/Distancerecords_model.php b/application/models/Distancerecords_model.php new file mode 100644 index 000000000..4947450a4 --- /dev/null +++ b/application/models/Distancerecords_model.php @@ -0,0 +1,96 @@ +db->version(); + $dbversion = explode('.', $dbversion); + if ($dbversion[0] >= "8") { + return $this->fastquery(); + } else { + return $this->slowquery(); + } + } + + function fastquery() { + ini_set('memory_limit', '-1'); + $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; + } + $sql = 'SELECT t1.sat, t1.distance, t2.COL_TIME_ON AS time, t2.COL_CALL AS callsign, t2.COL_GRIDSQUARE AS grid, t2.COL_MODE AS mode, t2.COL_PRIMARY_KEY AS primarykey + FROM ( + SELECT MAX(col_distance) AS distance, COL_SAT_NAME AS sat + FROM '.$this->config->item('table_name').' + WHERE station_id IN ('.implode(', ', $logbooks_locations_array).') + AND COALESCE(COL_SAT_NAME, "") <> "" + GROUP BY col_sat_name + ) t1 + LEFT JOIN ( + SELECT *, ROW_NUMBER() OVER (PARTITION BY COL_SAT_NAME, COL_DISTANCE ORDER BY COL_TIME_ON asc) AS rn + FROM '.$this->config->item('table_name').' + WHERE station_id IN ('.implode(', ', $logbooks_locations_array).') + ) t2 + ON t1.sat = t2.COL_SAT_NAME + AND t1.distance = t2.COL_DISTANCE + WHERE t2.rn = 1 + ORDER BY t1.distance DESC;'; + + $query = $this->db->query($sql); + return $query->result(); + } + + function slowquery() { + ini_set('memory_limit', '-1'); + $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; + } + // First get max distance per sat + $sql = 'SELECT MAX(col_distance) AS distance, COL_SAT_NAME AS sat + FROM '.$this->config->item('table_name').' + WHERE station_id IN ('.implode(', ', $logbooks_locations_array).') + AND COALESCE(COL_SAT_NAME, "") <> "" + GROUP BY col_sat_name + ORDER BY distance DESC;'; + $query = $this->db->query($sql); + + $result = array(); + + // With that query for oldest QSO per sat and distance + foreach ($query->result() as $row) { + $bindings=[]; + $subsql = 'SELECT COL_SAT_NAME AS sat, COL_TIME_ON as time, COL_CALL as callsign, COL_GRIDSQUARE as grid, COL_MODE AS mode, COL_PRIMARY_KEY as primarykey + FROM '.$this->config->item('table_name').' + WHERE station_id IN ('.implode(', ', $logbooks_locations_array).') + AND COL_SAT_NAME = ? + AND COL_DISTANCE = ? + ORDER BY COL_TIME_ON ASC LIMIT 1;'; + $bindings[]=$row->sat; + $bindings[]=$row->distance; + $subquery = $this->db->query($subsql, $bindings); + $subrow = $subquery->row(); + array_push($result, (object) ["sat" => $row->sat, "distance" => $row->distance, "time" => $subrow->time, "primarykey" => $subrow->primarykey, "callsign" => $subrow->callsign, "mode" => $subrow->mode, "grid" => $subrow->grid]); + } + return($result); + } + + public function sat_distances($sat){ + $this->load->model('logbooks_model'); + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + $this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id'); + $this->db->where('COL_SAT_NAME', $sat); + $this->db->where_in($this->config->item('table_name').'.station_id', $logbooks_locations_array); + $this->db->order_by("COL_DISTANCE", "desc"); + $this->db->limit(500); + + return $this->db->get($this->config->item('table_name')); + } + +} + +?> diff --git a/application/models/Distances_model.php b/application/models/Distances_model.php index 80def17c5..68e920987 100644 --- a/application/models/Distances_model.php +++ b/application/models/Distances_model.php @@ -5,9 +5,11 @@ class Distances_model extends CI_Model { function get_distances($postdata, $measurement_base) { - $CI =& get_instance(); - $CI->load->model('logbooks_model'); - $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + + $clean_postdata = $this->security->xss_clean($postdata); + + $this->load->model('logbooks_model'); + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); if (!$logbooks_locations_array) { header('Content-Type: application/json'); @@ -28,20 +30,33 @@ class Distances_model extends CI_Model $this->db->join('satellite', 'satellite.name = '.$this->config->item('table_name').'.COL_SAT_NAME', 'left outer'); $this->db->where('LENGTH(col_gridsquare) >', 0); - if ($postdata['band'] != 'All') { - if ($postdata['band'] == 'sat') { - $this->db->where('col_prop_mode', $postdata['band']); - if ($postdata['sat'] != 'All') { - $this->db->where('col_sat_name', $postdata['sat']); + if ($clean_postdata['band'] != 'All') { + if ($clean_postdata['band'] == 'sat') { + $this->db->where('col_prop_mode', $clean_postdata['band']); + if ($clean_postdata['sat'] != 'All') { + $this->db->where('col_sat_name', $clean_postdata['sat']); } } else { - $this->db->where('col_band', $postdata['band']); + $this->db->where('col_band', $clean_postdata['band']); } } - if ($postdata['orbit'] != 'All') { - $this->db->where('satellite.orbit', $postdata['orbit']); + if ($clean_postdata['orbit'] != 'All') { + $this->db->where('satellite.orbit', $clean_postdata['orbit']); + } + + if ( $clean_postdata['propagation'] == 'NoSAT' ) { // All without SAT + $this->db->where('col_prop_mode !=', 'SAT'); + } elseif ($clean_postdata['propagation'] == 'None') { // Empty Propmode + $this->db->group_start(); + $this->db->where('trim(col_prop_mode)', ''); + $this->db->or_where('col_prop_mode is null'); + $this->db->group_end(); + } elseif ($clean_postdata['propagation'] == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $this->db->where('col_prop_mode', $clean_postdata['propagation']); } $this->db->where('station_id', $station_id); @@ -229,11 +244,10 @@ class Distances_model extends CI_Model /* * Used to fetch QSOs from the logbook in the awards */ - public function qso_details($distance, $band, $sat){ + public function qso_details($distance, $band, $sat, $propagation){ $distarray = $this->getdistparams($distance); - $CI =& get_instance(); - $CI->load->model('logbooks_model'); - $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + $this->load->model('logbooks_model'); + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); $this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id'); $this->db->join('dxcc_entities', 'dxcc_entities.adif = '.$this->config->item('table_name').'.COL_DXCC', 'left outer'); @@ -255,6 +269,19 @@ class Distances_model extends CI_Model } } } + + if ($propagation == 'NoSAT' ) { // All without SAT + $this->db->where('col_prop_mode !=', 'SAT'); + } elseif ($propagation == 'None') { // Empty Propmode + $this->db->group_start(); + $this->db->where('trim(col_prop_mode)', ''); + $this->db->or_where('col_prop_mode is null'); + $this->db->group_end(); + } elseif ($propagation == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $this->db->where('col_prop_mode', $propagation); + } $this->db->order_by("COL_TIME_ON", "desc"); return $this->db->get($this->config->item('table_name')); diff --git a/application/models/Dok.php b/application/models/Dok.php index 7355dabd6..d9d4c967f 100644 --- a/application/models/Dok.php +++ b/application/models/Dok.php @@ -17,7 +17,7 @@ class DOK extends CI_Model { $doks[$dok->COL_DARC_DOK]['count'] = 0; } - $qsl = $this->genfunctions->gen_qsl_from_postdata($postdata); + $qsl = $this->genfunctions->gen_qsl_from_postdata($postdata); foreach ($bands as $band) { foreach ($list as $dok) { @@ -81,37 +81,43 @@ class DOK extends CI_Model { } function getDokWorked($location_list, $band, $postdata) { + $bindings=[]; $sql = "SELECT DISTINCT COL_DARC_DOK FROM " . $this->config->item('table_name') . " thcv WHERE station_id IN (" . $location_list . ") AND COL_DARC_DOK <> '' AND COL_DARC_DOK <> 'NM'"; if ($postdata['mode'] != 'All') { - $sql .= " AND (COL_MODE = '" . $postdata['mode'] . "' OR COL_SUBMODE = '" . $postdata['mode'] . "')"; + $sql .= " AND (COL_MODE = ? OR COL_SUBMODE = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= $this->addDokTypeToQuery($postdata['doks']); - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); $sql .= " AND NOT EXISTS (SELECT 1 from " . $this->config->item('table_name') . " WHERE station_id in (" . $location_list . ") AND COL_DARC_DOK = thcv.COL_DARC_DOK AND COL_DARC_DOK <> '' AND COL_DARC_DOK <> 'NM' "; $sql .= $this->addDokTypeToQuery($postdata['doks']); - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); $sql .= $this->genfunctions->addQslToQuery($postdata); $sql .= ")"; - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } function getDokConfirmed($location_list, $band, $postdata) { + $bindings=[]; $sql = "SELECT DISTINCT COL_DARC_DOK FROM " . $this->config->item('table_name') . " thcv WHERE station_id IN (" . $location_list . ") AND COL_DARC_DOK <> '' AND COL_DARC_DOK <> '' AND COL_DARC_DOK <> 'NM'"; if ($postdata['mode'] != 'All') { - $sql .= " AND (COL_MODE = '" . $postdata['mode'] . "' or COL_SUBMODE = '" . $postdata['mode'] . "')"; + $sql .= " AND (COL_MODE = ? OR COL_SUBMODE = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= $this->addDokTypeToQuery($postdata['doks']); - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); $sql .= $this->genfunctions->addQslToQuery($postdata); - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } @@ -145,10 +151,12 @@ class DOK extends CI_Model { } function getSummaryByBand($band, $postdata, $location_list) { + $bindings=[]; $sql = "SELECT count(distinct thcv.COL_DARC_DOK) AS count FROM " . $this->config->item('table_name') . " thcv"; $sql .= " WHERE station_id IN (" . $location_list . ') AND COL_DARC_DOK != "" AND COL_DARC_DOK <> "NM"'; if ($band == 'SAT') { - $sql .= " AND thcv.COL_PROP_MODE ='" . $band . "'"; + $sql .= " AND thcv.COL_PROP_MODE = ?"; + $bindings[]=$band; } else if ($band == 'All') { $this->load->model('bands'); $bandslots = $this->bands->get_worked_bands('dok'); @@ -156,22 +164,25 @@ class DOK extends CI_Model { $sql .= " AND thcv.COL_BAND in (" . $bandslots_list . ")"; } else { $sql .= " AND thcv.COL_PROP_MODE !='SAT'"; - $sql .= " AND thcv.COL_BAND ='" . $band . "'"; + $sql .= " AND thcv.COL_BAND = ?"; + $bindings[]=$band; } if ($postdata['doks'] == 'dok') { $sql .= " AND COL_DARC_DOK REGEXP '^[A-Z][0-9]{2}$'"; } else if ($postdata['doks'] == 'sdok') { $sql .= " AND COL_DARC_DOK NOT REGEXP '^[A-Z][0-9]{2}$'"; } - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } function getSummaryByBandConfirmed($band, $postdata, $location_list){ + $bindings=[]; $sql = "SELECT count(distinct thcv.COL_DARC_DOK) AS count FROM " . $this->config->item('table_name') . " thcv"; $sql .= " WHERE station_id IN (" . $location_list . ') AND COL_DARC_DOK != "" AND COL_DARC_DOK <> "NM"'; if ($band == 'SAT') { - $sql .= " AND thcv.COL_PROP_MODE ='" . $band . "'"; + $sql .= " AND thcv.COL_PROP_MODE = ?"; + $bindings[]=$band; } else if ($band == 'All') { $this->load->model('bands'); $bandslots = $this->bands->get_worked_bands('dok'); @@ -179,7 +190,8 @@ class DOK extends CI_Model { $sql .= " AND thcv.COL_BAND in (" . $bandslots_list . ")"; } else { $sql .= " AND thcv.COL_PROP_MODE !='SAT'"; - $sql .= " AND thcv.COL_BAND ='" . $band . "'"; + $sql .= " AND thcv.COL_BAND = ?"; + $bindings[]=$band; } if ($postdata['doks'] == 'dok') { $sql .= " AND COL_DARC_DOK REGEXP '^[A-Z][0-9]{2}$'"; @@ -187,7 +199,7 @@ class DOK extends CI_Model { $sql .= " AND COL_DARC_DOK NOT REGEXP '^[A-Z][0-9]{2}$'"; } $sql .= $this->genfunctions->addQslToQuery($postdata); - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } diff --git a/application/models/Dxcc.php b/application/models/Dxcc.php index 3a6f53383..5ecdb2738 100644 --- a/application/models/Dxcc.php +++ b/application/models/Dxcc.php @@ -3,7 +3,9 @@ class DXCC extends CI_Model { function __construct() { - $this->load->library('Genfunctions'); + if(!$this->load->is_loaded('Genfunctions')) { + $this->load->library('Genfunctions'); + } } /** @@ -14,9 +16,9 @@ class DXCC extends CI_Model { $exceptions = $this->db->query(' SELECT * FROM `dxcc_exceptions` - WHERE `prefix` = \''.$callsign.'\' + WHERE `prefix` = ? LIMIT 1 - '); + ',array($callsign)); if ($exceptions->num_rows() > 0) { return $exceptions; @@ -24,10 +26,10 @@ class DXCC extends CI_Model { $query = $this->db->query(' SELECT * FROM dxcc_entities - WHERE prefix = SUBSTRING( \''.$callsign.'\', 1, LENGTH( prefix ) ) + WHERE prefix = SUBSTRING(?, 1, LENGTH( prefix ) ) ORDER BY LENGTH( prefix ) DESC LIMIT 1 - '); + ',array($callsign)); return $query; } @@ -65,7 +67,7 @@ class DXCC extends CI_Model { $location_list = "'".implode("','",$logbooks_locations_array)."'"; - $qsl = $this->genfunctions->gen_qsl_from_postdata($postdata); + $qsl = $this->genfunctions->gen_qsl_from_postdata($postdata); foreach ($bands as $band) { // Looping through bands and entities to generate the array needed for display foreach ($dxccArray as $dxcc) { @@ -121,6 +123,7 @@ class DXCC extends CI_Model { } function getDxccBandConfirmed($location_list, $band, $postdata) { + $bindings=[]; $sql = "select adif as dxcc, name from dxcc_entities join ( select col_dxcc from ".$this->config->item('table_name')." thcv @@ -128,18 +131,21 @@ class DXCC extends CI_Model { where station_id in (" . $location_list . ") and col_dxcc > 0"; - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); if ($band == 'SAT') { if ($postdata['sat'] != 'All') { - $sql .= " and col_sat_name ='" . $postdata['sat'] . "'"; + $sql .= " and col_sat_name = ?"; + $bindings[]=$postdata['sat']; } } if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } - $sql .= $this->addOrbitToQuery($postdata); + $sql .= $this->addOrbitToQuery($postdata,$bindings); $sql .= $this->genfunctions->addQslToQuery($postdata); @@ -152,28 +158,32 @@ class DXCC extends CI_Model { $sql .= $this->addContinentsToQuery($postdata); - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } function getDxccBandWorked($location_list, $band, $postdata) { + $bindings=[]; $sql = "select adif as dxcc, name from dxcc_entities join ( select col_dxcc from ".$this->config->item('table_name')." thcv LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name where station_id in (" . $location_list . ") and col_dxcc > 0"; - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); if ($band == 'SAT') { if ($postdata['sat'] != 'All') { - $sql .= " and col_sat_name ='" . $postdata['sat'] . "'"; + $sql .= " and col_sat_name = ?"; + $bindings[]=$postdata['sat']; } } if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } - $sql .= $this->addOrbitToQuery($postdata); + $sql .= $this->addOrbitToQuery($postdata,$bindings); $sql .= " group by col_dxcc ) x on dxcc_entities.adif = x.col_dxcc";; @@ -182,14 +192,14 @@ class DXCC extends CI_Model { } $sql .= $this->addContinentsToQuery($postdata); - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } function fetchDxcc($postdata) { - $CI =& get_instance(); - $CI->load->model('logbooks_model'); - $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + $bindings=[]; + $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; @@ -207,21 +217,26 @@ class DXCC extends CI_Model { if ($postdata['band'] != 'All') { if ($postdata['band'] == 'SAT') { - $sql .= " and col_prop_mode ='" . $postdata['band'] . "'"; + $sql .= " and col_prop_mode = ?"; + $bindings[]=$postdata['band']; if ($postdata['sat'] != 'All') { - $sql .= " and col_sat_name ='" . $postdata['sat'] . "'"; + $sql .= " and col_sat_name = ?"; + $bindings[]=$postdata['sat']; } } else { $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $postdata['band'] . "'"; + $sql .= " and col_band = ?"; + $bindings[]=$postdata['band']; } } if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } - $sql .= $this->addOrbitToQuery($postdata); + $sql .= $this->addOrbitToQuery($postdata, $bindings); $sql .= ' group by col_dxcc) x on dxcc_entities.adif = x.col_dxcc'; } @@ -235,12 +250,13 @@ class DXCC extends CI_Model { $sql .= $this->addContinentsToQuery($postdata); $sql .= ' order by prefix'; - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } function getDxccWorked($location_list, $postdata) { + $bindings=[]; $sql = "SELECT adif as dxcc FROM dxcc_entities join ( select col_dxcc @@ -248,30 +264,36 @@ class DXCC extends CI_Model { LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name where station_id in (" . $location_list . ") and col_dxcc > 0"; - $sql .= $this->genfunctions->addBandToQuery($postdata['band']); + $sql .= $this->genfunctions->addBandToQuery($postdata['band'],$bindings); if ($postdata['band'] == 'SAT') { if ($postdata['sat'] != 'All') { - $sql .= " and col_sat_name ='" . $postdata['sat'] . "'"; + $sql .= " and col_sat_name = ?"; + $bindings[]=$postdata['sat']; } } - $sql .= $this->addOrbitToQuery($postdata); + $sql .= $this->addOrbitToQuery($postdata,$bindings); if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= " and not exists (select 1 from ".$this->config->item('table_name')." where station_id in (". $location_list .") and col_dxcc = thcv.col_dxcc and col_dxcc > 0"; - $sql .= $this->genfunctions->addBandToQuery($postdata['band']); + $sql .= $this->genfunctions->addBandToQuery($postdata['band'],$bindings); if ($postdata['band'] == 'SAT') { if ($postdata['sat'] != 'All') { - $sql .= " and col_sat_name ='" . $postdata['sat'] . "'"; + $sql .= " and col_sat_name = ?"; + $bindings[]=$postdata['sat']; } } - $sql .= $this->addOrbitToQuery($postdata); + $sql .= $this->addOrbitToQuery($postdata,$bindings); if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= $this->genfunctions->addQslToQuery($postdata); @@ -286,11 +308,12 @@ class DXCC extends CI_Model { $sql .= $this->addContinentsToQuery($postdata); - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } function getDxccConfirmed($location_list, $postdata) { + $bindings=[]; $sql = "SELECT adif as dxcc FROM dxcc_entities join ( select col_dxcc @@ -299,18 +322,21 @@ class DXCC extends CI_Model { where station_id in (". $location_list . ") and col_dxcc > 0"; - $sql .= $this->genfunctions->addBandToQuery($postdata['band']); + $sql .= $this->genfunctions->addBandToQuery($postdata['band'],$bindings); if ($postdata['band'] == 'SAT') { if ($postdata['sat'] != 'All') { - $sql .= " and col_sat_name ='" . $postdata['sat'] . "'"; + $sql .= " and col_sat_name = ?"; + $bindings[]=$postdata['sat']; } } if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } - $sql .= $this->addOrbitToQuery($postdata); + $sql .= $this->addOrbitToQuery($postdata,$bindings); $sql .= $this->genfunctions->addQslToQuery($postdata); @@ -325,7 +351,7 @@ class DXCC extends CI_Model { $sql .= $this->addContinentsToQuery($postdata); - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } @@ -394,6 +420,7 @@ class DXCC extends CI_Model { } function getSummaryByBand($band, $postdata, $location_list) { + $bindings=[]; $sql = "SELECT count(distinct thcv.col_dxcc) as count FROM " . $this->config->item('table_name') . " thcv"; $sql .= " LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name"; $sql .= " join dxcc_entities d on thcv.col_dxcc = d.adif"; @@ -403,7 +430,8 @@ class DXCC extends CI_Model { if ($band == 'SAT') { $sql .= " and thcv.col_prop_mode ='" . $band . "'"; if ($band != 'All' && $postdata['sat'] != 'All') { - $sql .= " and col_sat_name ='" . $postdata['sat'] . "'"; + $sql .= " and col_sat_name = ?"; + $bindings[]=$postdata['sat']; } } else if ($band == 'All') { $this->load->model('bands'); @@ -416,11 +444,14 @@ class DXCC extends CI_Model { " and thcv.col_prop_mode !='SAT'"; } else { $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band ='" . $band . "'"; + $sql .= " and thcv.col_band = ?"; + $bindings[]=$band; } if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } if ($postdata['includedeleted'] == NULL) { @@ -429,24 +460,26 @@ class DXCC extends CI_Model { $sql .= $this->addContinentsToQuery($postdata); - $sql .= $this->addOrbitToQuery($postdata); + $sql .= $this->addOrbitToQuery($postdata,$bindings); - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } // Adds orbit type to query - function addOrbitToQuery($postdata) { + function addOrbitToQuery($postdata,&$binding) { $sql = ''; if ($postdata['orbit'] != 'All') { - $sql .= ' AND satellite.orbit = \''.$postdata['orbit'].'\''; + $sql .= ' AND satellite.orbit = ?'; + $binding[]=$postdata['orbit']; } return $sql; } function getSummaryByBandConfirmed($band, $postdata, $location_list) { + $bindings=[]; $sql = "SELECT count(distinct thcv.col_dxcc) as count FROM " . $this->config->item('table_name') . " thcv"; $sql .= " LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name"; $sql .= " join dxcc_entities d on thcv.col_dxcc = d.adif"; @@ -454,9 +487,11 @@ class DXCC extends CI_Model { $sql .= " where station_id in (" . $location_list . ")"; if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode ='" . $band . "'"; + $sql .= " and thcv.col_prop_mode = ?"; + $bindings[]=$band; if ($postdata['sat'] != 'All') { - $sql .= " and col_sat_name ='" . $postdata['sat'] . "'"; + $sql .= " and col_sat_name = ?"; + $bindings[]=$postdata['sat']; } } else if ($band == 'All') { $this->load->model('bands'); @@ -469,16 +504,19 @@ class DXCC extends CI_Model { " and thcv.col_prop_mode !='SAT'"; } else { $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band ='" . $band . "'"; + $sql .= " and thcv.col_band = ?"; + $bindings[]=$band; } if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= $this->genfunctions->addQslToQuery($postdata); - $sql .= $this->addOrbitToQuery($postdata); + $sql .= $this->addOrbitToQuery($postdata,$bindings); if ($postdata['includedeleted'] == NULL) { @@ -487,19 +525,20 @@ class DXCC extends CI_Model { $sql .= $this->addContinentsToQuery($postdata); - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } function lookup_country($country) { + $bindings=[]; $query = $this->db->query(' SELECT * FROM dxcc_entities - WHERE name = "'.$country.'" + WHERE name = ? ORDER BY LENGTH( prefix ) DESC LIMIT 1 - '); + ',array($country)); return $query->row(); } diff --git a/application/models/Ffma_model.php b/application/models/Ffma_model.php index b78f7b9f5..7b4566b70 100644 --- a/application/models/Ffma_model.php +++ b/application/models/Ffma_model.php @@ -3,195 +3,141 @@ class Ffma_model extends CI_Model { private $us_grids = ['EN29', 'CN78', 'CN88', 'CN98', 'DN08', 'DN18', 'DN28', 'DN38', 'DN48', 'DN58', 'DN68', 'DN78', 'DN88', 'DN98', - 'EN08', 'EN18', 'EN28', 'EN38', 'EN48', 'EN58', 'CN77', 'CN87', 'CN97', 'DN07', 'DN17', 'DN27', 'DN37', 'DN47', 'DN57', 'DN67', - 'DN77', 'DN87', 'DN97', 'EN07', 'EN17', 'EN27', 'EN37', 'EN47', 'EN57', 'EN67', 'FN57', 'FN67', 'CN76', 'CN86', 'CN96', 'DN06', - 'DN16', 'DN26', 'DN36', 'DN46', 'DN56', 'DN66', 'DN76', 'DN86', 'DN96', 'EN06', 'EN16', 'EN26', 'EN36', 'EN46', 'EN56', 'EN66', - 'EN76', 'EN86', 'FN46', 'FN56', 'FN66', 'CN75', 'CN85', 'CN95', 'DN05', 'DN15', 'DN25', 'DN35', 'DN45', 'DN55', 'DN65', 'DN75', - 'DN85', 'DN95', 'EN05', 'EN15', 'EN25', 'EN35', 'EN45', 'EN55', 'EN65', 'EN75', 'EN85', 'FN25', 'FN35', 'FN45', 'FN55', 'FN65', - 'CN74', 'CN84', 'CN94', 'DN04', 'DN14', 'DN24', 'DN34', 'DN44', 'DN54', 'DN64', 'DN74', 'DN84', 'DN94', 'EN04', 'EN14', 'EN24', - 'EN34', 'EN44', 'EN54', 'EN64', 'EN74', 'EN84', 'FN14', 'FN24', 'FN34', 'FN44', 'FN54', 'FN64', 'CN73', 'CN83', 'CN93', 'DN03', - 'DN13', 'DN23', 'DN33', 'DN43', 'DN53', 'DN63', 'DN73', 'DN83', 'DN93', 'EN03', 'EN13', 'EN23', 'EN33', 'EN43', 'EN53', 'EN63', - 'EN73', 'EN83', 'FN03', 'FN13', 'FN23', 'FN33', 'FN43', 'FN53', 'CN72', 'CN82', 'CN92', 'DN02', 'DN12', 'DN22', 'DN32', 'DN42', - 'DN52', 'DN62', 'DN72', 'DN82', 'DN92', 'EN02', 'EN12', 'EN22', 'EN32', 'EN42', 'EN52', 'EN62', 'EN72', 'EN82', 'EN92', 'FN02', - 'FN12', 'FN22', 'FN32', 'FN42', 'CN71', 'CN81', 'CN91', 'DN01', 'DN11', 'DN21', 'DN31', 'DN41', 'DN51', 'DN61', 'DN71', 'DN81', - 'DN91', 'EN01', 'EN11', 'EN21', 'EN31', 'EN41', 'EN51', 'EN61', 'EN71', 'EN81', 'EN91', 'FN01', 'FN11', 'FN21', 'FN31', 'FN41', - 'FN51', 'CN70', 'CN80', 'CN90', 'DN00', 'DN10', 'DN20', 'DN30', 'DN40', 'DN50', 'DN60', 'DN70', 'DN80', 'DN90', 'EN00', 'EN10', - 'EN20', 'EN30', 'EN40', 'EN50', 'EN60', 'EN70', 'EN80', 'EN90', 'FN00', 'FN10', 'FN20', 'FN30', 'CM79', 'CM89', 'CM99', 'DM09', - 'DM19', 'DM29', 'DM39', 'DM49', 'DM59', 'DM69', 'DM79', 'DM89', 'DM99', 'EM09', 'EM19', 'EM29', 'EM39', 'EM49', 'EM59', 'EM69', - 'EM79', 'EM89', 'EM99', 'FM09', 'FM19', 'FM29', 'CM88', 'CM98', 'DM08', 'DM18', 'DM28', 'DM38', 'DM48', 'DM58', 'DM68', 'DM78', - 'DM88', 'DM98', 'EM08', 'EM18', 'EM28', 'EM38', 'EM48', 'EM58', 'EM68', 'EM78', 'EM88', 'EM98', 'FM08', 'FM18', 'FM28', 'CM87', - 'CM97', 'DM07', 'DM17', 'DM27', 'DM37', 'DM47', 'DM57', 'DM67', 'DM77', 'DM87', 'DM97', 'EM07', 'EM17', 'EM27', 'EM37', 'EM47', - 'EM57', 'EM67', 'EM77', 'EM87', 'EM97', 'FM07', 'FM17', 'FM27', 'CM86', 'CM96', 'DM06', 'DM16', 'DM26', 'DM36', 'DM46', 'DM56', - 'DM66', 'DM76', 'DM86', 'DM96', 'EM06', 'EM16', 'EM26', 'EM36', 'EM46', 'EM56', 'EM66', 'EM76', 'EM86', 'EM96', 'FM06', 'FM16', - 'FM26', 'CM95', 'DM05', 'DM15', 'DM25', 'DM35', 'DM45', 'DM55', 'DM65', 'DM75', 'DM85', 'DM95', 'EM05', 'EM15', 'EM25', 'EM35', - 'EM45', 'EM55', 'EM65', 'EM75', 'EM85', 'EM95', 'FM05', 'FM15', 'FM25', 'CM94', 'DM04', 'DM14', 'DM24', 'DM34', 'DM44', 'DM54', - 'DM64', 'DM74', 'DM84', 'DM94', 'EM04', 'EM14', 'EM24', 'EM34', 'EM44', 'EM54', 'EM64', 'EM74', 'EM84', 'EM94', 'FM04', 'FM14', - 'CM93', 'DM03', 'DM13', 'DM23', 'DM33', 'DM43', 'DM53', 'DM63', 'DM73', 'DM83', 'DM93', 'EM03', 'EM13', 'EM23', 'EM33', 'EM43', - 'EM53', 'EM63', 'EM73', 'EM83', 'EM93', 'FM03', 'FM13', 'DM02', 'DM12', 'DM22', 'DM32', 'DM42', 'DM52', 'DM62', 'DM72', 'DM82', - 'DM92', 'EM02', 'EM12', 'EM22', 'EM32', 'EM42', 'EM52', 'EM62', 'EM72', 'EM82', 'EM92', 'FM02', 'DM31', 'DM41', 'DM51', 'DM61', - 'DM71', 'DM81', 'DM91', 'EM01', 'EM11', 'EM21', 'EM31', 'EM41', 'EM51', 'EM61', 'EM71', 'EM81', 'EM91', 'DM70', 'DM80', 'DM90', - 'EM00', 'EM10', 'EM20', 'EM30', 'EM40', 'EM50', 'EM60', 'EM70', 'EM80', 'EM90', 'DL79', 'DL89', 'DL99', 'EL09', 'EL19', 'EL29', - 'EL39', 'EL49', 'EL59', 'EL79', 'EL89', 'EL99', 'DL88', 'DL98', 'EL08', 'EL18', 'EL28', 'EL58', 'EL88', 'EL98', 'EL07', 'EL17', - 'EL87', 'EL97', 'EL06', 'EL16', 'EL86', 'EL96', 'EL15', 'EL95', 'EL84', 'EL94' + 'EN08', 'EN18', 'EN28', 'EN38', 'EN48', 'EN58', 'CN77', 'CN87', 'CN97', 'DN07', 'DN17', 'DN27', 'DN37', 'DN47', 'DN57', 'DN67', + 'DN77', 'DN87', 'DN97', 'EN07', 'EN17', 'EN27', 'EN37', 'EN47', 'EN57', 'EN67', 'FN57', 'FN67', 'CN76', 'CN86', 'CN96', 'DN06', + 'DN16', 'DN26', 'DN36', 'DN46', 'DN56', 'DN66', 'DN76', 'DN86', 'DN96', 'EN06', 'EN16', 'EN26', 'EN36', 'EN46', 'EN56', 'EN66', + 'EN76', 'EN86', 'FN46', 'FN56', 'FN66', 'CN75', 'CN85', 'CN95', 'DN05', 'DN15', 'DN25', 'DN35', 'DN45', 'DN55', 'DN65', 'DN75', + 'DN85', 'DN95', 'EN05', 'EN15', 'EN25', 'EN35', 'EN45', 'EN55', 'EN65', 'EN75', 'EN85', 'FN25', 'FN35', 'FN45', 'FN55', 'FN65', + 'CN74', 'CN84', 'CN94', 'DN04', 'DN14', 'DN24', 'DN34', 'DN44', 'DN54', 'DN64', 'DN74', 'DN84', 'DN94', 'EN04', 'EN14', 'EN24', + 'EN34', 'EN44', 'EN54', 'EN64', 'EN74', 'EN84', 'FN14', 'FN24', 'FN34', 'FN44', 'FN54', 'FN64', 'CN73', 'CN83', 'CN93', 'DN03', + 'DN13', 'DN23', 'DN33', 'DN43', 'DN53', 'DN63', 'DN73', 'DN83', 'DN93', 'EN03', 'EN13', 'EN23', 'EN33', 'EN43', 'EN53', 'EN63', + 'EN73', 'EN83', 'FN03', 'FN13', 'FN23', 'FN33', 'FN43', 'FN53', 'CN72', 'CN82', 'CN92', 'DN02', 'DN12', 'DN22', 'DN32', 'DN42', + 'DN52', 'DN62', 'DN72', 'DN82', 'DN92', 'EN02', 'EN12', 'EN22', 'EN32', 'EN42', 'EN52', 'EN62', 'EN72', 'EN82', 'EN92', 'FN02', + 'FN12', 'FN22', 'FN32', 'FN42', 'CN71', 'CN81', 'CN91', 'DN01', 'DN11', 'DN21', 'DN31', 'DN41', 'DN51', 'DN61', 'DN71', 'DN81', + 'DN91', 'EN01', 'EN11', 'EN21', 'EN31', 'EN41', 'EN51', 'EN61', 'EN71', 'EN81', 'EN91', 'FN01', 'FN11', 'FN21', 'FN31', 'FN41', + 'FN51', 'CN70', 'CN80', 'CN90', 'DN00', 'DN10', 'DN20', 'DN30', 'DN40', 'DN50', 'DN60', 'DN70', 'DN80', 'DN90', 'EN00', 'EN10', + 'EN20', 'EN30', 'EN40', 'EN50', 'EN60', 'EN70', 'EN80', 'EN90', 'FN00', 'FN10', 'FN20', 'FN30', 'CM79', 'CM89', 'CM99', 'DM09', + 'DM19', 'DM29', 'DM39', 'DM49', 'DM59', 'DM69', 'DM79', 'DM89', 'DM99', 'EM09', 'EM19', 'EM29', 'EM39', 'EM49', 'EM59', 'EM69', + 'EM79', 'EM89', 'EM99', 'FM09', 'FM19', 'FM29', 'CM88', 'CM98', 'DM08', 'DM18', 'DM28', 'DM38', 'DM48', 'DM58', 'DM68', 'DM78', + 'DM88', 'DM98', 'EM08', 'EM18', 'EM28', 'EM38', 'EM48', 'EM58', 'EM68', 'EM78', 'EM88', 'EM98', 'FM08', 'FM18', 'FM28', 'CM87', + 'CM97', 'DM07', 'DM17', 'DM27', 'DM37', 'DM47', 'DM57', 'DM67', 'DM77', 'DM87', 'DM97', 'EM07', 'EM17', 'EM27', 'EM37', 'EM47', + 'EM57', 'EM67', 'EM77', 'EM87', 'EM97', 'FM07', 'FM17', 'FM27', 'CM86', 'CM96', 'DM06', 'DM16', 'DM26', 'DM36', 'DM46', 'DM56', + 'DM66', 'DM76', 'DM86', 'DM96', 'EM06', 'EM16', 'EM26', 'EM36', 'EM46', 'EM56', 'EM66', 'EM76', 'EM86', 'EM96', 'FM06', 'FM16', + 'FM26', 'CM95', 'DM05', 'DM15', 'DM25', 'DM35', 'DM45', 'DM55', 'DM65', 'DM75', 'DM85', 'DM95', 'EM05', 'EM15', 'EM25', 'EM35', + 'EM45', 'EM55', 'EM65', 'EM75', 'EM85', 'EM95', 'FM05', 'FM15', 'FM25', 'CM94', 'DM04', 'DM14', 'DM24', 'DM34', 'DM44', 'DM54', + 'DM64', 'DM74', 'DM84', 'DM94', 'EM04', 'EM14', 'EM24', 'EM34', 'EM44', 'EM54', 'EM64', 'EM74', 'EM84', 'EM94', 'FM04', 'FM14', + 'CM93', 'DM03', 'DM13', 'DM23', 'DM33', 'DM43', 'DM53', 'DM63', 'DM73', 'DM83', 'DM93', 'EM03', 'EM13', 'EM23', 'EM33', 'EM43', + 'EM53', 'EM63', 'EM73', 'EM83', 'EM93', 'FM03', 'FM13', 'DM02', 'DM12', 'DM22', 'DM32', 'DM42', 'DM52', 'DM62', 'DM72', 'DM82', + 'DM92', 'EM02', 'EM12', 'EM22', 'EM32', 'EM42', 'EM52', 'EM62', 'EM72', 'EM82', 'EM92', 'FM02', 'DM31', 'DM41', 'DM51', 'DM61', + 'DM71', 'DM81', 'DM91', 'EM01', 'EM11', 'EM21', 'EM31', 'EM41', 'EM51', 'EM61', 'EM71', 'EM81', 'EM91', 'DM70', 'DM80', 'DM90', + 'EM00', 'EM10', 'EM20', 'EM30', 'EM40', 'EM50', 'EM60', 'EM70', 'EM80', 'EM90', 'DL79', 'DL89', 'DL99', 'EL09', 'EL19', 'EL29', + 'EL39', 'EL49', 'EL59', 'EL79', 'EL89', 'EL99', 'DL88', 'DL98', 'EL08', 'EL18', 'EL28', 'EL58', 'EL88', 'EL98', 'EL07', 'EL17', + 'EL87', 'EL97', 'EL06', 'EL16', 'EL86', 'EL96', 'EL15', 'EL95', 'EL84', 'EL94' ]; - function get_lotw() { - $CI =& get_instance(); - $CI->load->model('logbooks_model'); - $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - - if (!$logbooks_locations_array) { - return null; - } - $location_list = "'".implode("','",$logbooks_locations_array)."'"; - + function get_lotw($location_list) { $sql = 'SELECT distinct substring(COL_GRIDSQUARE,1,4) as GRID_SQUARES FROM ' - .$this->config->item('table_name') - .' WHERE station_id in ('.$location_list.')' - ." and COL_LOTW_QSL_RCVD = 'Y'" - ." and COL_BAND = '6M'" - .' AND substring(COL_GRIDSQUARE,1,4) in (\''.implode('\',\'', $this->us_grids).'\')'; + .$this->config->item('table_name') + .' WHERE station_id in ('.$location_list.')' + ." and COL_LOTW_QSL_RCVD = 'Y'" + ." and COL_BAND = '6M'" + .' AND substring(COL_GRIDSQUARE,1,4) in (\''.implode('\',\'', $this->us_grids).'\')'; return $this->db->query($sql); } - function get_paper() { - $CI =& get_instance(); - $CI->load->model('logbooks_model'); - $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - - if (!$logbooks_locations_array) { - return null; - } - $location_list = "'".implode("','",$logbooks_locations_array)."'"; - + function get_paper($location_list) { $sql = 'SELECT distinct substring(COL_GRIDSQUARE,1,4) as GRID_SQUARES FROM ' - .$this->config->item('table_name') - .' WHERE station_id in ('.$location_list.')' - ." and COL_QSL_RCVD = 'Y'" - ." and COL_BAND = '6M'" - .' AND substring(COL_GRIDSQUARE,1,4) in (\''.implode('\',\'', $this->us_grids).'\')'; + .$this->config->item('table_name') + .' WHERE station_id in ('.$location_list.')' + ." and COL_QSL_RCVD = 'Y'" + ." and COL_BAND = '6M'" + .' AND substring(COL_GRIDSQUARE,1,4) in (\''.implode('\',\'', $this->us_grids).'\')'; return $this->db->query($sql); } - function get_worked() { - $CI =& get_instance(); - $CI->load->model('logbooks_model'); - $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - - if (!$logbooks_locations_array) { - return null; - } - $location_list = "'".implode("','",$logbooks_locations_array)."'"; - + function get_worked($location_list) { $sql = 'SELECT distinct substring(COL_GRIDSQUARE,1,4) as GRID_SQUARES FROM ' - .$this->config->item('table_name') - .' WHERE station_id in ('.$location_list.')' - ." and COL_BAND = '6M'" - .' AND substring(COL_GRIDSQUARE,1,4) in (\''.implode('\',\'', $this->us_grids).'\')'; + .$this->config->item('table_name') + .' WHERE station_id in ('.$location_list.')' + ." and COL_BAND = '6M'" + .' AND substring(COL_GRIDSQUARE,1,4) in (\''.implode('\',\'', $this->us_grids).'\')'; return $this->db->query($sql); } - function get_vucc_lotw() { - $CI =& get_instance(); - $CI->load->model('logbooks_model'); - $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - - if (!$logbooks_locations_array) { - return null; - } - $location_list = "'".implode("','",$logbooks_locations_array)."'"; - + function get_vucc_lotw($location_list) { $sql = 'SELECT distinct COL_VUCC_GRIDS as VUCC_GRIDS FROM ' - .$this->config->item('table_name') - .' WHERE station_id in ('.$location_list.')' - ." and COL_LOTW_QSL_RCVD = 'Y'" - ." and COL_VUCC_GRIDS != ''" - ." and COL_VUCC_GRIDS IS NOT NULL" - ." and COL_BAND = '6M'"; + .$this->config->item('table_name') + .' WHERE station_id in ('.$location_list.')' + ." and COL_LOTW_QSL_RCVD = 'Y'" + ." and COL_VUCC_GRIDS != ''" + ." and COL_VUCC_GRIDS IS NOT NULL" + ." and COL_BAND = '6M'"; $query = $this->db->query($sql); $vucc_grids = []; foreach ($query->result() as $row) { - $grids = explode(',', $row->VUCC_GRIDS); - foreach ($grids as $grid) { - if (in_array(substr($grid, 0, 4), $this->us_grids)) { - if (!in_array(substr($grid, 0, 4), $vucc_grids)) { - $vucc_grids[] = substr($grid, 0, 4); - } - } - } + $grids = explode(',', $row->VUCC_GRIDS); + foreach ($grids as $grid) { + if (in_array(substr($grid, 0, 4), $this->us_grids)) { + if (!in_array(substr($grid, 0, 4), $vucc_grids)) { + $vucc_grids[] = substr($grid, 0, 4); + } + } + } } return $vucc_grids; } - function get_vucc_paper() { - $CI =& get_instance(); - $CI->load->model('logbooks_model'); - $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - - if (!$logbooks_locations_array) { - return null; - } - $location_list = "'".implode("','",$logbooks_locations_array)."'"; - + function get_vucc_paper($location_list) { $sql = 'SELECT distinct COL_VUCC_GRIDS as VUCC_GRIDS FROM ' - .$this->config->item('table_name') - .' WHERE station_id in ('.$location_list.')' - ." and COL_QSL_RCVD = 'Y'" - ." and COL_VUCC_GRIDS != ''" - ." and COL_VUCC_GRIDS IS NOT NULL" - ." and COL_BAND = '6M'"; + .$this->config->item('table_name') + .' WHERE station_id in ('.$location_list.')' + ." and COL_QSL_RCVD = 'Y'" + ." and COL_VUCC_GRIDS != ''" + ." and COL_VUCC_GRIDS IS NOT NULL" + ." and COL_BAND = '6M'"; $query = $this->db->query($sql); $vucc_grids = []; foreach ($query->result() as $row) { - $grids = explode(',', $row->VUCC_GRIDS); - foreach ($grids as $grid) { - if (in_array(substr($grid, 0, 4), $this->us_grids)) { - if (!in_array(substr($grid, 0, 4), $vucc_grids)) { - $vucc_grids[] = substr($grid, 0, 4); - } - } - } + $grids = explode(',', $row->VUCC_GRIDS); + foreach ($grids as $grid) { + if (in_array(substr($grid, 0, 4), $this->us_grids)) { + if (!in_array(substr($grid, 0, 4), $vucc_grids)) { + $vucc_grids[] = substr($grid, 0, 4); + } + } + } } return $vucc_grids; } - function get_vucc_worked() { - $CI =& get_instance(); - $CI->load->model('logbooks_model'); - $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - - if (!$logbooks_locations_array) { - return null; - } - $location_list = "'".implode("','",$logbooks_locations_array)."'"; - + function get_vucc_worked($location_list) { $sql = 'SELECT distinct COL_VUCC_GRIDS as VUCC_GRIDS FROM ' - .$this->config->item('table_name') - .' WHERE station_id in ('.$location_list.')' - ." and COL_VUCC_GRIDS != ''" - ." and COL_VUCC_GRIDS IS NOT NULL" - ." and COL_BAND = '6M'"; + .$this->config->item('table_name') + .' WHERE station_id in ('.$location_list.')' + ." and COL_VUCC_GRIDS != ''" + ." and COL_VUCC_GRIDS IS NOT NULL" + ." and COL_BAND = '6M'"; $query = $this->db->query($sql); $vucc_grids = []; foreach ($query->result() as $row) { - $grids = explode(',', $row->VUCC_GRIDS); - foreach ($grids as $grid) { - if (in_array(substr($grid, 0, 4), $this->us_grids)) { - if (!in_array(substr($grid, 0, 4), $vucc_grids)) { - $vucc_grids[] = substr($grid, 0, 4); - } - } - } + $grids = explode(',', $row->VUCC_GRIDS); + foreach ($grids as $grid) { + if (in_array(substr($grid, 0, 4), $this->us_grids)) { + if (!in_array(substr($grid, 0, 4), $vucc_grids)) { + $vucc_grids[] = substr($grid, 0, 4); + } + } + } } return $vucc_grids; } function get_grid_count() { - return count($this->us_grids); + return count($this->us_grids); } function get_grids() { - return $this->us_grids; + return $this->us_grids; } } diff --git a/application/models/Gridmaster_model.php b/application/models/Gridmaster_model.php index b8f1c5522..4ee634566 100644 --- a/application/models/Gridmaster_model.php +++ b/application/models/Gridmaster_model.php @@ -62,16 +62,7 @@ class Gridmaster_model extends CI_Model { private $lx_lon = 6; private $lx_zoom = 8; - function get_lotw($dxcc) { - $CI =& get_instance(); - $CI->load->model('logbooks_model'); - $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - - if (!$logbooks_locations_array) { - return null; - } - $location_list = "'".implode("','",$logbooks_locations_array)."'"; - + function get_lotw($dxcc, $location_list) { $sql = 'SELECT distinct substring(COL_GRIDSQUARE,1,4) as GRID_SQUARES FROM ' .$this->config->item('table_name') .' WHERE station_id in ('.$location_list.')' @@ -81,16 +72,7 @@ class Gridmaster_model extends CI_Model { return $this->db->query($sql); } - function get_paper($dxcc) { - $CI =& get_instance(); - $CI->load->model('logbooks_model'); - $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - - if (!$logbooks_locations_array) { - return null; - } - $location_list = "'".implode("','",$logbooks_locations_array)."'"; - + function get_paper($dxcc, $location_list) { $sql = 'SELECT distinct substring(COL_GRIDSQUARE,1,4) as GRID_SQUARES FROM ' .$this->config->item('table_name') .' WHERE station_id in ('.$location_list.')' @@ -100,16 +82,7 @@ class Gridmaster_model extends CI_Model { return $this->db->query($sql); } - function get_worked($dxcc) { - $CI =& get_instance(); - $CI->load->model('logbooks_model'); - $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - - if (!$logbooks_locations_array) { - return null; - } - $location_list = "'".implode("','",$logbooks_locations_array)."'"; - + function get_worked($dxcc, $location_list) { $sql = 'SELECT distinct substring(COL_GRIDSQUARE,1,4) as GRID_SQUARES FROM ' .$this->config->item('table_name') .' WHERE station_id in ('.$location_list.')' @@ -118,16 +91,7 @@ class Gridmaster_model extends CI_Model { return $this->db->query($sql); } - function get_vucc_lotw($dxcc) { - $CI =& get_instance(); - $CI->load->model('logbooks_model'); - $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - - if (!$logbooks_locations_array) { - return null; - } - $location_list = "'".implode("','",$logbooks_locations_array)."'"; - + function get_vucc_lotw($dxcc, $location_list) { $sql = 'SELECT distinct COL_VUCC_GRIDS as VUCC_GRIDS FROM ' .$this->config->item('table_name') .' WHERE station_id in ('.$location_list.')' @@ -150,16 +114,7 @@ class Gridmaster_model extends CI_Model { return $vucc_grids; } - function get_vucc_paper($dxcc) { - $CI =& get_instance(); - $CI->load->model('logbooks_model'); - $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - - if (!$logbooks_locations_array) { - return null; - } - $location_list = "'".implode("','",$logbooks_locations_array)."'"; - + function get_vucc_paper($dxcc, $location_list) { $sql = 'SELECT distinct COL_VUCC_GRIDS as VUCC_GRIDS FROM ' .$this->config->item('table_name') .' WHERE station_id in ('.$location_list.')' @@ -182,16 +137,7 @@ class Gridmaster_model extends CI_Model { return $vucc_grids; } - function get_vucc_worked($dxcc) { - $CI =& get_instance(); - $CI->load->model('logbooks_model'); - $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - - if (!$logbooks_locations_array) { - return null; - } - $location_list = "'".implode("','",$logbooks_locations_array)."'"; - + function get_vucc_worked($dxcc, $location_list) { $sql = 'SELECT distinct COL_VUCC_GRIDS as VUCC_GRIDS FROM ' .$this->config->item('table_name') .' WHERE station_id in ('.$location_list.')' diff --git a/application/models/Helvetia_model.php b/application/models/Helvetia_model.php index af5c51722..bef351eb4 100644 --- a/application/models/Helvetia_model.php +++ b/application/models/Helvetia_model.php @@ -9,9 +9,8 @@ class helvetia_model extends CI_Model { public $stateString = 'AG,AI,AR,BE,BL,BS,FR,GE,GL,GR,JU,LU,NE,NW,OW,SG,SH,SO,SZ,TG,TI,UR,VD,VS,ZG,ZH'; function get_helvetia_array($bands, $postdata) { - $CI =& get_instance(); - $CI->load->model('logbooks_model'); - $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + $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; @@ -86,11 +85,9 @@ class helvetia_model extends CI_Model { /* * Function gets worked and confirmed summary on each band on the active stationprofile */ - function get_helvetia_summary($bands, $postdata) - { - $CI =& get_instance(); - $CI->load->model('logbooks_model'); - $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + function get_helvetia_summary($bands, $postdata) { + $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; @@ -114,14 +111,15 @@ class helvetia_model extends CI_Model { return $helvetiaSummary; } - function getSummaryByBand($band, $postdata, $location_list) - { + function getSummaryByBand($band, $postdata, $location_list) { + $binding=[]; + $sql = "SELECT count(distinct thcv.col_state) as count FROM " . $this->config->item('table_name') . " thcv"; $sql .= " where station_id in (" . $location_list . ")"; if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode ='" . $band . "'"; + $sql .= " and thcv.col_prop_mode = 'SAT'"; } else if ($band == 'All') { $this->load->model('bands'); @@ -133,28 +131,31 @@ class helvetia_model extends CI_Model { " and thcv.col_prop_mode !='SAT'"; } else { $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band ='" . $band . "'"; + $sql .= " and thcv.col_band = ?"; + $binding[] = $band; } if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $postdata['mode']; + $binding[] = $postdata['mode']; } $sql .= $this->addStateToQuery(); - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); return $query->result(); } - function getSummaryByBandConfirmed($band, $postdata, $location_list) - { + function getSummaryByBandConfirmed($band, $postdata, $location_list) { + $binding=[]; $sql = "SELECT count(distinct thcv.col_state) as count FROM " . $this->config->item('table_name') . " thcv"; $sql .= " where station_id in (" . $location_list . ")"; if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode ='" . $band . "'"; + $sql .= " and thcv.col_prop_mode ='SAT'"; } else if ($band == 'All') { $this->load->model('bands'); @@ -166,18 +167,21 @@ class helvetia_model extends CI_Model { " and thcv.col_prop_mode !='SAT'"; } else { $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band ='" . $band . "'"; + $sql .= " and thcv.col_band = ?"; + $binding[] = $band; } if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $postdata['mode']; + $binding[] = $postdata['mode']; } $sql .= $this->genfunctions->addQslToQuery($postdata); $sql .= $this->addStateToQuery(); - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); return $query->result(); } @@ -187,26 +191,31 @@ class helvetia_model extends CI_Model { * $postdata contains data from the form, in this case Lotw or QSL are used */ function gethelvetiaWorked($location_list, $band, $postdata) { + $binding=[]; $sql = "SELECT distinct col_state FROM " . $this->config->item('table_name') . " thcv where station_id in (" . $location_list . ")"; if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $postdata['mode']; + $binding[] = $postdata['mode']; } $sql .= $this->addStateToQuery(); - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$binding); $sql .= " and not exists (select 1 from ". $this->config->item('table_name') . " where station_id in (". $location_list . ")" . " and col_state = thcv.col_state"; if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $postdata['mode']; + $binding[] = $postdata['mode']; } - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$binding); $sql .= $this->genfunctions->addQslToQuery($postdata); @@ -214,7 +223,7 @@ class helvetia_model extends CI_Model { $sql .= ")"; - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); return $query->result(); } @@ -224,20 +233,23 @@ class helvetia_model extends CI_Model { * $postdata contains data from the form, in this case Lotw or QSL are used */ function gethelvetiaConfirmed($location_list, $band, $postdata) { + $binding=[]; $sql = "SELECT distinct col_state FROM " . $this->config->item('table_name') . " thcv where station_id in (" . $location_list . ")"; if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $postdata['mode']; + $binding[] = $postdata['mode']; } $sql .= $this->addStateToQuery(); - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$binding); $sql .= $this->genfunctions->addQslToQuery($postdata); - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); return $query->result(); } diff --git a/application/models/Iota.php b/application/models/Iota.php index a4f5213a0..3dda7f972 100644 --- a/application/models/Iota.php +++ b/application/models/Iota.php @@ -5,15 +5,7 @@ class IOTA extends CI_Model { $this->load->library('Genfunctions'); } - function get_iota_array($iotaArray, $bands, $postdata) { - $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)."'"; + function get_iota_array($iotaArray, $bands, $postdata, $location_list) { foreach ($bands as $band) { // Looping through bands and iota to generate the array needed for display foreach ($iotaArray as $iota) { $iotaMatrix[$iota->tag]['prefix'] = $iota->prefix; @@ -68,15 +60,19 @@ class IOTA extends CI_Model { } function getIotaBandConfirmed($location_list, $band, $postdata) { + $binding = []; + $sql = "SELECT distinct UPPER(col_iota) as tag FROM " . $this->config->item('table_name') . " thcv join iota on thcv.col_iota = iota.tag where station_id in (" . $location_list . ") and thcv.col_iota is not null"; if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $postdata['mode']; + $binding[] = $postdata['mode']; } - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$binding); if ($postdata['includedeleted'] == NULL) { $sql .= " and coalesce(iota.status, '') <> 'D'"; @@ -85,22 +81,26 @@ class IOTA extends CI_Model { $sql .= $this->genfunctions->addQslToQuery($postdata); $sql .= $this->addContinentsToQuery($postdata); - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); return $query->result(); } function getIotaBandWorked($location_list, $band, $postdata) { + $binding = []; + $sql = 'SELECT distinct UPPER(col_iota) as tag FROM ' . $this->config->item('table_name'). ' thcv join iota on thcv.col_iota = iota.tag where station_id in (' . $location_list . ') and thcv.col_iota is not null'; if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $postdata['mode']; + $binding[] = $postdata['mode']; } - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$binding); if ($postdata['includedeleted'] == NULL) { $sql .= " and coalesce(iota.status, '') <> 'D'"; @@ -108,20 +108,13 @@ class IOTA extends CI_Model { $sql .= $this->addContinentsToQuery($postdata); - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); return $query->result(); } - function fetchIota($postdata) { - $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)."'"; + function fetchIota($postdata, $location_list) { + $binding = []; $sql = "select tag, name, prefix, dxccid, status, lat1, lat2, lon1, lon2 from iota where 1=1"; @@ -135,61 +128,75 @@ class IOTA extends CI_Model { $sql .= " and exists (select 1 from " . $this->config->item('table_name') . " where station_id in (". $location_list . ") and col_iota = iota.tag"; if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $postdata['mode']; + $binding[] = $postdata['mode']; } if ($postdata['band'] != 'All') { if ($postdata['band'] == 'SAT') { - $sql .= " and col_prop_mode ='" . $postdata['band'] . "'"; + $sql .= " and col_prop_mode = ?"; + $binding[] = $postdata['band']; } else { $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $postdata['band'] . "'"; + $sql .= " and col_band = ?"; + $binding[] = $postdata['band']; } } $sql .= ")"; } $sql .= ' order by tag'; - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); return $query->result(); } function getIotaWorked($location_list, $postdata) { + $binding = []; + $sql = "SELECT distinct UPPER(col_iota) as tag FROM " . $this->config->item('table_name') . " thcv join iota on thcv.col_iota = iota.tag where station_id in (" . $location_list . ") and thcv.col_iota is not null and not exists (select 1 from ". $this->config->item('table_name') . " where station_id = ". $location_list . " and col_iota = thcv.col_iota)"; if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $postdata['mode']; + $binding[] = $postdata['mode']; } - $sql .= $this->genfunctions->addBandToQuery($postdata['band']); + $sql .= $this->genfunctions->addBandToQuery($postdata['band'],$binding); if ($postdata['includedeleted'] == NULL) { $sql .= " and coalesce(iota.status, '') <> 'D'"; } if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $postdata['mode']; + $binding[] = $postdata['mode']; } $sql .= $this->addContinentsToQuery($postdata); - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); return $query->result(); } function getIotaConfirmed($location_list, $postdata) { + $binding = []; + $sql = "SELECT distinct UPPER(col_iota) as tag FROM " . $this->config->item('table_name') . " thcv join iota on thcv.col_iota = iota.tag where station_id in (" . $location_list . ") and thcv.col_iota is not null"; $sql .= $this->genfunctions->addQslToQuery($postdata); if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $postdata['mode']; + $binding[] = $postdata['mode']; } if ($postdata['includedeleted'] == NULL) { @@ -198,10 +205,10 @@ class IOTA extends CI_Model { $sql .= $this->addContinentsToQuery($postdata); - $sql .= $this->genfunctions->addBandToQuery($postdata['band']); + $sql .= $this->genfunctions->addBandToQuery($postdata['band'],$binding); $sql .= $this->genfunctions->addQslToQuery($postdata); - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); return $query->result(); } @@ -242,16 +249,7 @@ class IOTA extends CI_Model { /* * Function gets worked and confirmed summary on each band on the active stationprofile */ - function get_iota_summary($bands, $postdata) { - $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)."'"; - + function get_iota_summary($bands, $postdata, $location_list) { foreach ($bands as $band) { $worked = $this->getSummaryByBand($band, $postdata, $location_list); $confirmed = $this->getSummaryByBandConfirmed($band, $postdata, $location_list); @@ -269,11 +267,14 @@ class IOTA extends CI_Model { } function getSummaryByBand($band, $postdata, $location_list) { + $binding = []; + $sql = "SELECT count(distinct UPPER(thcv.col_iota)) as count FROM " . $this->config->item('table_name') . " thcv"; $sql .= ' join iota on thcv.col_iota = iota.tag'; $sql .= " where station_id in (" . $location_list . ")"; if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode ='" . $band . "'"; + $sql .= " and thcv.col_prop_mode = ?"; + $binding[] = $band; } else if ($band == 'All') { $this->load->model('bands'); $bandslots = $this->bands->get_worked_bands('iota'); @@ -282,25 +283,31 @@ class IOTA extends CI_Model { $sql .= " and thcv.col_prop_mode !='SAT'"; } else { $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band ='" . $band . "'"; + $sql .= " and thcv.col_band = ?"; + $binding[] = $band; } if ($postdata['includedeleted'] == NULL) { $sql .= " and coalesce(iota.status, '') <> 'D'"; } if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $postdata['mode']; + $binding[] = $postdata['mode']; } $sql .= $this->addContinentsToQuery($postdata); - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); return $query->result(); } function getSummaryByBandConfirmed($band, $postdata, $location_list) { + $binding = []; + $sql = "SELECT count(distinct thcv.col_iota) as count FROM " . $this->config->item('table_name') . " thcv"; $sql .= ' join iota on thcv.col_iota = iota.tag'; $sql .= " where station_id in (" . $location_list . ")"; if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode ='" . $band . "'"; + $sql .= " and thcv.col_prop_mode = ?"; + $binding[] = $band; } else if ($band == 'All') { $this->load->model('bands'); $bandslots = $this->bands->get_worked_bands('iota'); @@ -309,18 +316,20 @@ class IOTA extends CI_Model { $sql .= " and thcv.col_prop_mode !='SAT'"; } else { $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band ='" . $band . "'"; + $sql .= " and thcv.col_band = ?"; + $binding[] = $band; } if ($postdata['includedeleted'] == NULL) { $sql .= " and coalesce(iota.status, '') <> 'D'"; } if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $binding[] = $postdata['mode']; + $binding[] = $postdata['mode']; } $sql .= $this->addContinentsToQuery($postdata); $sql .= $this->genfunctions->addQslToQuery($postdata); - // log_message("Error",$sql); - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); return $query->result(); } diff --git a/application/models/Itu.php b/application/models/Itu.php index ef8b59ef8..09c05016a 100644 --- a/application/models/Itu.php +++ b/application/models/Itu.php @@ -6,202 +6,220 @@ class Itu extends CI_Model{ $this->load->library('Genfunctions'); } - function get_itu_array($bands, $postdata, $location_list) { - $ituZ = array(); // Used for keeping track of which states that are not worked + function get_itu_array($bands, $postdata, $location_list) { + $ituZ = array(); // Used for keeping track of which states that are not worked - for ($i = 1; $i <= 90; $i++) { - $ituZ[$i]['count'] = 0; // Inits each itu zone's count - } - - $qsl = $this->genfunctions->gen_qsl_from_postdata($postdata); - - foreach ($bands as $band) { - for ($i = 1; $i <= 90; $i++) { - $banditu[$i][$band] = '-'; // Sets all to dash to indicate no result - } - - if ($postdata['worked'] != NULL) { - $ituBand = $this->getituWorked($location_list, $band, $postdata); - foreach ($ituBand as $line) { - $banditu[$line->col_ituz][$band] = ''; - $ituZ[$line->col_ituz]['count']++; - } - } - if ($postdata['confirmed'] != NULL) { - $ituBand = $this->getituConfirmed($location_list, $band, $postdata); - foreach ($ituBand as $line) { - $banditu[$line->col_ituz][$band] = ''; - $ituZ[$line->col_ituz]['count']++; - } - } - } - - // We want to remove the worked zones in the list, since we do not want to display them - if ($postdata['worked'] == NULL) { - $ituBand = $this->getituWorked($location_list, $postdata['band'], $postdata); - foreach ($ituBand as $line) { - unset($banditu[$line->col_ituz]); - } - } - - // We want to remove the confirmed zones in the list, since we do not want to display them - if ($postdata['confirmed'] == NULL) { - $ituBand = $this->getituConfirmed($location_list, $postdata['band'], $postdata); - foreach ($ituBand as $line) { - unset($banditu[$line->col_ituz]); - } - } - - if ($postdata['notworked'] == NULL) { - for ($i = 1; $i <= 90; $i++) { - if ($ituZ[$i]['count'] == 0) { - unset($banditu[$i]); - }; - } - } - - if (isset($banditu)) { - return $banditu; - } else { - return 0; - } - } - - /* - * Function returns all worked, but not confirmed states - * $postdata contains data from the form, in this case Lotw or QSL are used - */ - function getituWorked($location_list, $band, $postdata) { - $sql = "SELECT distinct col_ituz FROM " . $this->config->item('table_name') . " thcv - where station_id in (" . $location_list . ") and col_ituz <= 90 and col_ituz <> ''"; - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + for ($i = 1; $i <= 90; $i++) { + $ituZ[$i]['count'] = 0; // Inits each itu zone's count } - $sql .= $this->genfunctions->addBandToQuery($band); + $qsl = $this->genfunctions->gen_qsl_from_postdata($postdata); - $sql .= " and not exists (select 1 from " . $this->config->item('table_name') . - " where station_id in (" . $location_list . - ") and col_ituz = thcv.col_ituz and col_ituz <> '' "; + foreach ($bands as $band) { + for ($i = 1; $i <= 90; $i++) { + $banditu[$i][$band] = '-'; // Sets all to dash to indicate no result + } - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + if ($postdata['worked'] != NULL) { + $ituBand = $this->getituWorked($location_list, $band, $postdata); + foreach ($ituBand as $line) { + $banditu[$line->col_ituz][$band] = ''; + $ituZ[$line->col_ituz]['count']++; + } + } + if ($postdata['confirmed'] != NULL) { + $ituBand = $this->getituConfirmed($location_list, $band, $postdata); + foreach ($ituBand as $line) { + $banditu[$line->col_ituz][$band] = ''; + $ituZ[$line->col_ituz]['count']++; + } + } } - $sql .= $this->genfunctions->addBandToQuery($band); - - $sql .= $this->genfunctions->addQslToQuery($postdata); - - $sql .= ")"; - - $query = $this->db->query($sql); - - return $query->result(); - } - - /* - * Function returns all confirmed states on given band and on LoTW or QSL - * $postdata contains data from the form, in this case Lotw or QSL are used - */ - function getituConfirmed($location_list, $band, $postdata) { - $sql = "SELECT distinct col_ituz FROM " . $this->config->item('table_name') . " thcv - where station_id in (" . $location_list . ") and col_ituz <= 90 and col_ituz <> ''"; - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + // We want to remove the worked zones in the list, since we do not want to display them + if ($postdata['worked'] == NULL) { + $ituBand = $this->getituWorked($location_list, $postdata['band'], $postdata); + foreach ($ituBand as $line) { + unset($banditu[$line->col_ituz]); + } } - $sql .= $this->genfunctions->addBandToQuery($band); + // We want to remove the confirmed zones in the list, since we do not want to display them + if ($postdata['confirmed'] == NULL) { + $ituBand = $this->getituConfirmed($location_list, $postdata['band'], $postdata); + foreach ($ituBand as $line) { + unset($banditu[$line->col_ituz]); + } + } - $sql .= $this->genfunctions->addQslToQuery($postdata); + if ($postdata['notworked'] == NULL) { + for ($i = 1; $i <= 90; $i++) { + if ($ituZ[$i]['count'] == 0) { + unset($banditu[$i]); + }; + } + } - $query = $this->db->query($sql); + if (isset($banditu)) { + return $banditu; + } else { + return 0; + } + } - return $query->result(); - } + /* + * Function returns all worked, but not confirmed states + * $postdata contains data from the form, in this case Lotw or QSL are used + */ + function getituWorked($location_list, $band, $postdata) { + $bindings=[]; + $sql = "SELECT distinct col_ituz FROM " . $this->config->item('table_name') . " thcv + where station_id in (" . $location_list . ") and col_ituz <= 90 and col_ituz <> ''"; + + if ($postdata['mode'] != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; + } + + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); + + $sql .= " and not exists (select 1 from " . $this->config->item('table_name') . + " where station_id in (" . $location_list . + ") and col_ituz = thcv.col_ituz and col_ituz <> '' "; + + if ($postdata['mode'] != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; + } + + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); + + $sql .= $this->genfunctions->addQslToQuery($postdata); + + $sql .= ")"; + + $query = $this->db->query($sql,$bindings); + + return $query->result(); + } + + /* + * Function returns all confirmed states on given band and on LoTW or QSL + * $postdata contains data from the form, in this case Lotw or QSL are used + */ + function getituConfirmed($location_list, $band, $postdata) { + $bindings=[]; + $sql = "SELECT distinct col_ituz FROM " . $this->config->item('table_name') . " thcv + where station_id in (" . $location_list . ") and col_ituz <= 90 and col_ituz <> ''"; + + if ($postdata['mode'] != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; + } + + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); + + $sql .= $this->genfunctions->addQslToQuery($postdata); + + $query = $this->db->query($sql,$bindings); + + return $query->result(); + } - /* - * Function gets worked and confirmed summary on each band on the active stationprofile - */ - function get_itu_summary($bands, $postdata, $location_list) { - foreach ($bands as $band) { - $worked = $this->getSummaryByBand($band, $postdata, $location_list); - $confirmed = $this->getSummaryByBandConfirmed($band, $postdata, $location_list); - $ituSummary['worked'][$band] = $worked[0]->count; - $ituSummary['confirmed'][$band] = $confirmed[0]->count; - } + /* + * Function gets worked and confirmed summary on each band on the active stationprofile + */ + function get_itu_summary($bands, $postdata, $location_list) { + foreach ($bands as $band) { + $worked = $this->getSummaryByBand($band, $postdata, $location_list); + $confirmed = $this->getSummaryByBandConfirmed($band, $postdata, $location_list); + $ituSummary['worked'][$band] = $worked[0]->count; + $ituSummary['confirmed'][$band] = $confirmed[0]->count; + } - $workedTotal = $this->getSummaryByBand($postdata['band'], $postdata, $location_list); - $confirmedTotal = $this->getSummaryByBandConfirmed($postdata['band'], $postdata, $location_list); + $workedTotal = $this->getSummaryByBand($postdata['band'], $postdata, $location_list); + $confirmedTotal = $this->getSummaryByBandConfirmed($postdata['band'], $postdata, $location_list); - $ituSummary['worked']['Total'] = $workedTotal[0]->count; - $ituSummary['confirmed']['Total'] = $confirmedTotal[0]->count; + $ituSummary['worked']['Total'] = $workedTotal[0]->count; + $ituSummary['confirmed']['Total'] = $confirmedTotal[0]->count; - return $ituSummary; - } + return $ituSummary; + } - function getSummaryByBand($band, $postdata, $location_list) { - $sql = "SELECT count(distinct thcv.col_ituz) as count FROM " . $this->config->item('table_name') . " thcv"; + function getSummaryByBand($band, $postdata, $location_list) { + $bindings=[]; + $sql = "SELECT count(distinct thcv.col_ituz) as count FROM " . $this->config->item('table_name') . " thcv"; - $sql .= " where station_id in (" . $location_list . ') and col_ituz <= 90 and col_ituz > 0'; + $sql .= " where station_id in (" . $location_list . ') and col_ituz <= 90 and col_ituz > 0'; - if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode ='" . $band . "'"; - } else if ($band == 'All') { - $this->load->model('bands'); + if ($band == 'SAT') { + $sql .= " and thcv.col_prop_mode = ?"; + $bindings[]=$band; + } else if ($band == 'All') { + $this->load->model('bands'); $bandslots = $this->bands->get_worked_bands('cq'); $bandslots_list = "'".implode("','",$bandslots)."'"; $sql .= " and thcv.col_band in (" . $bandslots_list . ")" . - " and thcv.col_prop_mode !='SAT'"; - } else { - $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band ='" . $band . "'"; - } - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + " and thcv.col_prop_mode !='SAT'"; + } else { + $sql .= " and thcv.col_prop_mode !='SAT'"; + $sql .= " and thcv.col_band = ?"; + $bindings[]=$band; } - $query = $this->db->query($sql); + if ($postdata['mode'] != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; + } - return $query->result(); - } + $query = $this->db->query($sql,$bindings); - function getSummaryByBandConfirmed($band, $postdata, $location_list){ - $sql = "SELECT count(distinct thcv.col_ituz) as count FROM " . $this->config->item('table_name') . " thcv"; + return $query->result(); + } - $sql .= " where station_id in (" . $location_list . ') and col_ituz <= 90 and col_ituz > 0'; + function getSummaryByBandConfirmed($band, $postdata, $location_list){ + $bindings=[]; + $sql = "SELECT count(distinct thcv.col_ituz) as count FROM " . $this->config->item('table_name') . " thcv"; - if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode ='" . $band . "'"; - } else if ($band == 'All') { - $this->load->model('bands'); + $sql .= " where station_id in (" . $location_list . ') and col_ituz <= 90 and col_ituz > 0'; + + if ($band == 'SAT') { + $sql .= " and thcv.col_prop_mode = ?"; + $bindings[]=$band; + } else if ($band == 'All') { + $this->load->model('bands'); $bandslots = $this->bands->get_worked_bands('cq'); $bandslots_list = "'".implode("','",$bandslots)."'"; $sql .= " and thcv.col_band in (" . $bandslots_list . ")" . - " and thcv.col_prop_mode !='SAT'"; - } else { - $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band ='" . $band . "'"; - } - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + " and thcv.col_prop_mode !='SAT'"; + } else { + $sql .= " and thcv.col_prop_mode !='SAT'"; + $sql .= " and thcv.col_band = ?"; + $bindings[]=$band; } - $sql .= $this->genfunctions->addQslToQuery($postdata); + if ($postdata['mode'] != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; + } - $query = $this->db->query($sql); + $sql .= $this->genfunctions->addQslToQuery($postdata); - return $query->result(); - } + $query = $this->db->query($sql, $bindings); + + return $query->result(); + } } diff --git a/application/models/Jcc_model.php b/application/models/Jcc_model.php index 788a5fe90..9df83499b 100644 --- a/application/models/Jcc_model.php +++ b/application/models/Jcc_model.php @@ -2,7 +2,7 @@ class Jcc_model extends CI_Model { - + private $location_list=null; function __construct() { $this->load->library('Genfunctions'); @@ -937,7 +937,7 @@ class Jcc_model extends CI_Model { $cities[$city]['count'] = 0; // Inits each city's count } - $qsl = $this->genfunctions->gen_qsl_from_postdata($postdata); + $qsl = $this->genfunctions->gen_qsl_from_postdata($postdata); foreach ($bands as $band) { @@ -997,15 +997,18 @@ class Jcc_model extends CI_Model { } function getJccBandConfirmed($location_list, $band, $postdata) { + $bindings=[]; $sql = "select adif as waja, name from dxcc_entities join ( select col_dxcc from ".$this->config->item('table_name')." thcv where station_id in (" . $location_list . ") and col_dxcc > 0"; - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= $this->genfunctions->addQslToQuery($postdata); @@ -1016,22 +1019,25 @@ class Jcc_model extends CI_Model { $sql .= " and dxcc_entities.end is null"; } - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } function getJccBandWorked($location_list, $band, $postdata) { + $bindings=[]; $sql = "select adif as waja, name from dxcc_entities join ( select col_dxcc from ".$this->config->item('table_name')." thcv where station_id in (" . $location_list . ") and col_dxcc > 0"; - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= " group by col_dxcc @@ -1041,7 +1047,7 @@ class Jcc_model extends CI_Model { $sql .= " and dxcc_entities.end is null"; } - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } @@ -1051,29 +1057,34 @@ class Jcc_model extends CI_Model { * $postdata contains data from the form, in this case Lotw or QSL are used */ function getJccWorked($location_list, $band, $postdata) { + $bindings=[]; $sql = "SELECT distinct col_cnty FROM " . $this->config->item('table_name') . " thcv where station_id in (" . $location_list . ")"; if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= $this->addStateToQuery(); - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); $sql .= " and not exists (select 1 from ". $this->config->item('table_name') . " where station_id in (". $location_list . ")" . " and col_cnty = thcv.col_cnty"; if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); $sql .= $this->genfunctions->addQslToQuery($postdata); $sql .= $this->addStateToQuery(); $sql .= ")"; - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } @@ -1083,25 +1094,28 @@ class Jcc_model extends CI_Model { * $postdata contains data from the form, in this case Lotw or QSL are used */ function getJccConfirmed($location_list, $band, $postdata) { + $bindings=[]; $sql = "SELECT distinct col_cnty FROM " . $this->config->item('table_name') . " thcv where station_id in (" . $location_list . ")"; if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= $this->addStateToQuery(); - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); $sql .= $this->genfunctions->addQslToQuery($postdata); - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } - + /* * Function gets worked and confirmed summary on each band on the active stationprofile */ @@ -1122,21 +1136,23 @@ class Jcc_model extends CI_Model { $jccSummary['confirmed']['Total'] = $confirmedTotal[0]->count; if (in_array('SAT', $bands)) { - $worked = $this->getSummaryByBand('SAT', $postdata, $this->location_list); - $confirmed = $this->getSummaryByBandConfirmed('SAT', $postdata, $this->location_list); - $jccSummary['worked']['SAT'] = $worked[0]->count; - $jccSummary['confirmed']['SAT'] = $confirmed[0]->count; + $worked = $this->getSummaryByBand('SAT', $postdata, $this->location_list); + $confirmed = $this->getSummaryByBandConfirmed('SAT', $postdata, $this->location_list); + $jccSummary['worked']['SAT'] = $worked[0]->count; + $jccSummary['confirmed']['SAT'] = $confirmed[0]->count; } return $jccSummary; } function getSummaryByBand($band, $postdata, $location_list) { + $bindings=[]; $sql = "SELECT count(distinct thcv.col_cnty) as count FROM " . $this->config->item('table_name') . " thcv"; $sql .= " where station_id in (" . $location_list . ")"; if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode ='" . $band . "'"; + $sql .= " and thcv.col_prop_mode = ?"; + $bindings[]=$band; } else if ($band == 'All') { $this->load->model('bands'); $bandslots = $this->bands->get_worked_bands('was'); @@ -1146,26 +1162,31 @@ class Jcc_model extends CI_Model { " and thcv.col_prop_mode !='SAT'"; } else { $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band ='" . $band . "'"; + $sql .= " and thcv.col_band = ?"; + $bindings[]=$band; } if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= $this->addStateToQuery(); - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } function getSummaryByBandConfirmed($band, $postdata, $location_list) { + $bindings=[]; $sql = "SELECT count(distinct thcv.col_cnty) as count FROM " . $this->config->item('table_name') . " thcv"; $sql .= " where station_id in (" . $location_list . ")"; if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode ='" . $band . "'"; + $sql .= " and thcv.col_prop_mode = ?"; + $bindings[]=$band; } else if ($band == 'All') { $this->load->model('bands'); $bandslots = $this->bands->get_worked_bands('was'); @@ -1175,16 +1196,19 @@ class Jcc_model extends CI_Model { " and thcv.col_prop_mode !='SAT'"; } else { $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band ='" . $band . "'"; + $sql .= " and thcv.col_band = ?"; + $bindings[]=$band; } if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= $this->genfunctions->addQslToQuery($postdata); $sql .= $this->addStateToQuery(); - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } @@ -1198,19 +1222,22 @@ class Jcc_model extends CI_Model { } function exportJcc($postdata) { + $bindings=[]; $sql = "SELECT distinct col_cnty FROM " . $this->config->item('table_name') . " thcv where station_id in (" . $this->location_list . ")"; if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= $this->addStateToQuery(); - $sql .= $this->genfunctions->addBandToQuery($postdata['band']); + $sql .= $this->genfunctions->addBandToQuery($postdata['band'],$bindings); $sql .= $this->genfunctions->addQslToQuery($postdata); $sql .= ' ORDER BY COL_CNTY ASC'; - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); $jccs = array(); foreach($query->result() as $line) { @@ -1226,44 +1253,54 @@ class Jcc_model extends CI_Model { } function getFirstQso($location_list, $jcc, $postdata) { + $bindings=[]; $sql = 'SELECT COL_CNTY, COL_CALL, COL_TIME_ON, COL_BAND, COL_MODE, COL_PROP_MODE FROM '.$this->config->item('table_name').' t1 WHERE station_id in ('.$location_list.')'; if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= $this->addStateToQuery(); - $sql .= $this->genfunctions->addBandToQuery($postdata['band']); + $sql .= $this->genfunctions->addBandToQuery($postdata['band'],$bindings); $sql .= $this->genfunctions->addQslToQuery($postdata); - $sql .= ' AND COL_CNTY = \''.$jcc.'\''; + $sql .= ' AND COL_CNTY = ?'; + $bindings[]=$jcc; $sql .= ' ORDER BY COL_TIME_ON ASC LIMIT 1'; - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } function fetch_jcc_wkd($postdata) { + $bindings=[]; $sql = 'SELECT DISTINCT `COL_CNTY` FROM '.$this->config->item('table_name').' WHERE 1 and station_id in ('.$this->location_list.')'; $sql .= $this->addStateToQuery(); - $sql .= $this->genfunctions->addBandToQuery($postdata['band']); + $sql .= $this->genfunctions->addBandToQuery($postdata['band'],$bindings); if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= ' ORDER BY COL_CNTY ASC'; - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } function fetch_jcc_cnfm($postdata) { + $bindings=[]; $sql = 'SELECT DISTINCT `COL_CNTY` FROM '.$this->config->item('table_name').' WHERE 1 and station_id in ('.$this->location_list.')'; $sql .= $this->addStateToQuery(); - $sql .= $this->genfunctions->addBandToQuery($postdata['band']); + $sql .= $this->genfunctions->addBandToQuery($postdata['band'],$bindings); if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= $this->genfunctions->addQslToQuery($postdata); $sql .= ' ORDER BY COL_CNTY ASC'; - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index d64701ae1..a62c2689b 100644 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -45,41 +45,47 @@ class Logbook_model extends CI_Model { if($this->input->post('exchangetype')) { switch ($this->input->post('exchangetype')) { case 'Exchange': - $srx_string = $this->input->post('exch_rcvd') == '' ? null : $this->input->post('exch_rcvd'); - $stx_string = $this->input->post('exch_sent') == '' ? null : $this->input->post('exch_sent'); - $srx = null; - $stx = null; - break; + $srx_string = $this->input->post('exch_rcvd') == '' ? null : $this->input->post('exch_rcvd'); + $stx_string = $this->input->post('exch_sent') == '' ? null : $this->input->post('exch_sent'); + $srx = null; + $stx = null; + break; case 'Gridsquare': - $srx_string = null; - $stx_string = null; - $srx = null; - $stx = null; - break; + $srx_string = null; + $stx_string = null; + $srx = null; + $stx = null; + break; case 'Serial': - $srx = $this->input->post('exch_serial_r') == '' ? null : $this->input->post('exch_serial_r'); - $stx = $this->input->post('exch_serial_s') == '' ? null : $this->input->post('exch_serial_s'); - $srx_string = null; - $stx_string = null; - break; + $srx = $this->input->post('exch_serial_r') == '' ? null : $this->input->post('exch_serial_r'); + $stx = $this->input->post('exch_serial_s') == '' ? null : $this->input->post('exch_serial_s'); + $srx_string = null; + $stx_string = null; + break; case 'Serialexchange': - $srx_string = $this->input->post('exch_rcvd') == '' ? null : $this->input->post('exch_rcvd'); - $stx_string = $this->input->post('exch_sent') == '' ? null : $this->input->post('exch_sent'); - $srx = $this->input->post('exch_serial_r') == '' ? null : $this->input->post('exch_serial_r'); - $stx = $this->input->post('exch_serial_s') == '' ? null : $this->input->post('exch_serial_s'); - break; + $srx_string = $this->input->post('exch_rcvd') == '' ? null : $this->input->post('exch_rcvd'); + $stx_string = $this->input->post('exch_sent') == '' ? null : $this->input->post('exch_sent'); + $srx = $this->input->post('exch_serial_r') == '' ? null : $this->input->post('exch_serial_r'); + $stx = $this->input->post('exch_serial_s') == '' ? null : $this->input->post('exch_serial_s'); + break; case 'Serialgridsquare': - $srx = $this->input->post('exch_serial_r') == '' ? null : $this->input->post('exch_serial_r'); - $stx = $this->input->post('exch_serial_s') == '' ? null : $this->input->post('exch_serial_s'); - $srx_string = null; - $stx_string = null; - break; - case 'None': - $srx_string = null; - $stx_string = null; - $srx = null; - $stx = null; - break; + $srx = $this->input->post('exch_serial_r') == '' ? null : $this->input->post('exch_serial_r'); + $stx = $this->input->post('exch_serial_s') == '' ? null : $this->input->post('exch_serial_s'); + $srx_string = null; + $stx_string = null; + break; + case 'SerialGridExchange': + $srx_string = $this->input->post('exch_rcvd') == '' ? null : $this->input->post('exch_rcvd'); + $stx_string = $this->input->post('exch_sent') == '' ? null : $this->input->post('exch_sent'); + $srx = $this->input->post('exch_serial_r') == '' ? null : $this->input->post('exch_serial_r'); + $stx = $this->input->post('exch_serial_s') == '' ? null : $this->input->post('exch_serial_s'); + break; + case 'None': + $srx_string = null; + $stx_string = null; + $srx = null; + $stx = null; + break; } if ($srx_string !== null) $srx_string = trim(xss_clean($srx_string)); @@ -170,8 +176,21 @@ class Logbook_model extends CI_Model { $clean_county_input = null; } + if (is_numeric($this->input->post('ant_az'))) { + $ant_az = trim(xss_clean($this->input->post('ant_az'))); + } else { + $ant_az = null; + } + + if (is_numeric($this->input->post('ant_el'))) { + $ant_el = trim(xss_clean($this->input->post('ant_el'))); + } else { + $ant_el = null; + } + $darc_dok = trim(xss_clean($this->input->post('darc_dok'))); $qso_locator = strtoupper(trim(xss_clean($this->input->post('locator')) ?? '')); + $qso_qth = trim(xss_clean($this->input->post('qth'))); $qso_name = trim(xss_clean($this->input->post('name'))); $qso_age = null; $qso_state = $this->input->post('input_state_edit') == null ? '' : trim(xss_clean($this->input->post('input_state_edit'))); @@ -180,27 +199,34 @@ class Logbook_model extends CI_Model { if ($this->input->post('copyexchangeto')) { switch($this->input->post('copyexchangeto')) { case 'dok': - $darc_dok = $srx_string; + $darc_dok = strtoupper($srx_string); break; case 'locator': // Matching 4-10 character-locator if ( preg_match('/^[A-R]{2}[0-9]{2}([A-X]{2}([0-9]{2}([A-X]{2})?)?)?$/',$srx_string) ) { - $qso_locator = $srx_string; + $qso_locator = strtoupper($srx_string); } break; + case 'qth': + $qso_qth = ucfirst($srx_string); + break; case 'name': - $qso_name = $srx_string; + $qso_name = ucfirst($srx_string); break; case 'age': - $qso_age = intval($srx_string); + if (is_numeric($srx_string)) { // ADIF spec say this has to be a number https://adif.org/314/ADIF_314.htm#QSO_Field_AGE + $qso_age = intval($srx_string); + } break; case 'state': if ( preg_match('/^[A-Za-z]*$/', $srx_string) && $srx_string != "DX" ) { - $qso_state = $srx_string; + $qso_state = strtoupper($srx_string); } break; case 'power': - $qso_rx_power = intval($srx_string); + if (is_numeric($srx_string)) { // ADIF spec say this has to be a number https://adif.org/314/ADIF_314.htm#QSO_Field_RX_PWR + $qso_rx_power = intval($srx_string); + } break; // Example for more sophisticated exchanges and their split into the db: //case 'name/power': @@ -265,13 +291,13 @@ class Logbook_model extends CI_Model { '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_QTH' => $this->input->post('qth'), + 'COL_QTH' => $qso_qth, 'COL_PROP_MODE' => $prop_mode, 'COL_IOTA' => $this->input->post('iota_ref') == null ? '' : trim($this->input->post('iota_ref')), 'COL_DISTANCE' => $this->input->post('distance'), 'COL_FREQ_RX' => $this->parse_frequency($this->input->post('freq_display_rx')), - 'COL_ANT_AZ' => null, - 'COL_ANT_EL' => null, + 'COL_ANT_AZ' => $ant_az, + 'COL_ANT_EL' => $ant_el, 'COL_A_INDEX' => null, 'COL_AGE' => $qso_age, 'COL_TEN_TEN' => null, @@ -291,6 +317,7 @@ class Logbook_model extends CI_Model { 'COL_LON' => null, 'COL_DXCC' => $dxcc_id, 'COL_CQZ' => $cqz, + 'COL_ITUZ' => $this->input->post('ituz', true) ?? null, 'COL_STATE' => $qso_state, 'COL_CNTY' => $clean_county_input, 'COL_SOTA_REF' => $this->input->post('sota_ref') == null ? '' : trim($this->input->post('sota_ref')), @@ -404,245 +431,230 @@ class Logbook_model extends CI_Model { return($row); } } + /* * Used to fetch QSOs from the logbook in the awards */ - public function qso_details($searchphrase, $band, $mode, $type, $qsl, $sat = null, $orbit = null, $searchmode = null, $propagation = null){ - $this->load->model('logbooks_model'); - $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + public function qso_details($searchphrase, $band, $mode, $type, $qsl, $sat = null, $orbit = null, $searchmode = null, $propagation = null){ + $this->load->model('logbooks_model'); + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - $this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id'); - $this->db->join('dxcc_entities', 'dxcc_entities.adif = '.$this->config->item('table_name').'.COL_DXCC', 'left outer'); - $this->db->join('lotw_users', 'lotw_users.callsign = '.$this->config->item('table_name').'.col_call', 'left outer'); - if ($band == 'SAT' && ($type == 'VUCC' || $type == 'DXCC' || $type == 'DXCC2')) { - $this->db->join('satellite', 'satellite.name = '.$this->config->item('table_name').'.col_sat_name', 'left outer'); - } - switch ($type) { - case 'CALL': - $this->db->where('COL_CALL', $searchphrase); - break; - case 'DXCC': - $this->db->where('COL_COUNTRY', $searchphrase); - if ($band == 'SAT' && $type == 'DXCC') { - if ($sat != 'All' && $sat != null) { - $this->db->where("COL_SAT_NAME = '$sat'"); - } - if ($orbit != 'All' && $orbit != null) { - $this->db->where("satellite.orbit = '$orbit'"); - } - } - break; - case 'DXCC2': - $this->db->where('COL_DXCC', $searchphrase); - if ($band == 'SAT' && $type == 'DXCC2') { - if ($sat != 'All' && $sat != null) { - $this->db->where("COL_SAT_NAME = '$sat'"); - } - if ($orbit != 'All' && $orbit != null) { - $this->db->where("satellite.orbit = '$orbit'"); - } - } - break; - case 'IOTA': - $this->db->where('COL_IOTA', $searchphrase); - break; - case 'VUCC': - if ($searchmode == 'activated') { - $this->db->where("station_gridsquare like '%" . $searchphrase . "%'"); - if ($band == 'SAT' && $type == 'VUCC') { - if ($sat != 'All' && $sat != null) { - $this->db->where("COL_SAT_NAME = '$sat'"); - } - if ($orbit != 'All' && $orbit != null) { - $this->db->where("satellite.orbit = '$orbit'"); - } - } - } else { - $this->db->where("(COL_GRIDSQUARE like '" . $searchphrase . "%' OR COL_VUCC_GRIDS like '%" . $searchphrase ."%')"); - if ($band == 'SAT' && $type == 'VUCC') { - if ($sat != 'All' && $sat != null) { - $this->db->where("COL_SAT_NAME = '$sat'"); - } - if ($orbit != 'All' && $orbit != null) { - $this->db->where("satellite.orbit = '$orbit'"); - } - } - if (($propagation ?? '') == 'None') { - $this->db->group_start(); - $this->db->where("COL_PROP_MODE = ''"); - $this->db->or_where("COL_PROP_MODE is null"); - $this->db->group_end(); - } elseif ($propagation == 'NoSAT') { - $this->db->where("COL_PROP_MODE != 'SAT'"); - } elseif ($propagation != '' && $propagation != null) { - $this->db->where("COL_PROP_MODE = '$propagation'"); - } - } - break; - case 'CQZone': - $this->db->where('COL_CQZ', $searchphrase); - break; - case 'ITU': - $this->db->where('COL_ITUZ', $searchphrase); - break; - case 'WAS': - $this->db->where('COL_STATE', $searchphrase); - $this->db->where_in('COL_DXCC', ['291', '6', '110']); - break; - case 'RAC': - $this->db->where('COL_STATE', $searchphrase); - $this->db->where_in('COL_DXCC', ['1']); - break; - case 'helvetia': - $this->db->where('COL_STATE', $searchphrase); - $this->db->where_in('COL_DXCC', ['287']); - break; - case 'JCC': - $this->db->where('COL_CNTY', $searchphrase); - $this->db->where('COL_DXCC', '339'); - break; - case 'SOTA': - $this->db->where('COL_SOTA_REF', $searchphrase); - break; - case 'WWFF': - $this->db->where('COL_WWFF_REF', $searchphrase); - break; - case 'POTA': - $this->db->where('COL_POTA_REF', $searchphrase); - break; - case 'DOK': - $this->db->where('COL_DARC_DOK', $searchphrase); - break; - case 'WAB': - $this->db->where('COL_SIG', 'WAB'); - $this->db->where('COL_SIG_INFO', $searchphrase); - break; - case 'WAJA': - $state = str_pad($searchphrase, 2, '0', STR_PAD_LEFT); - $this->db->where('COL_STATE', $state); - $this->db->where('COL_DXCC', '339'); - break; - case 'QSLRDATE': - $this->db->where('date(COL_QSLRDATE)=date(SYSDATE())'); - break; - case 'QSLSDATE': - $this->db->where('date(COL_QSLSDATE)=date(SYSDATE())'); - break; - case 'EQSLRDATE': - $this->db->where('date(COL_EQSL_QSLRDATE)=date(SYSDATE())'); - break; - case 'EQSLSDATE': - $this->db->where('date(COL_EQSL_QSLSDATE)=date(SYSDATE())'); - break; - case 'LOTWRDATE': - $this->db->where('date(COL_LOTW_QSLRDATE)=date(SYSDATE())'); - break; - case 'LOTWSDATE': - $this->db->where('date(COL_LOTW_QSLSDATE)=date(SYSDATE())'); - break; - case 'QRZRDATE': - $this->db->where('date(COL_QRZCOM_QSO_DOWNLOAD_DATE)=date(SYSDATE())'); - break; - case 'QRZSDATE': - $this->db->where('date(COL_QRZCOM_QSO_UPLOAD_DATE)=date(SYSDATE())'); - break; - } + $this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id'); + $this->db->join('dxcc_entities', 'dxcc_entities.adif = '.$this->config->item('table_name').'.COL_DXCC', 'left outer'); + $this->db->join('lotw_users', 'lotw_users.callsign = '.$this->config->item('table_name').'.col_call', 'left outer'); + if ($band == 'SAT' && ($type == 'VUCC' || $type == 'DXCC' || $type == 'DXCC2')) { + $this->db->join('satellite', 'satellite.name = '.$this->config->item('table_name').'.col_sat_name', 'left outer'); + } + switch ($type) { + case 'CALL': + $this->db->where('COL_CALL', $searchphrase); + break; + case 'DXCC': + $this->db->where('COL_COUNTRY', $searchphrase); + if ($band == 'SAT' && $type == 'DXCC') { + if ($sat != 'All' && $sat != null) { + $this->db->where("COL_SAT_NAME" , $sat); + } + if ($orbit != 'All' && $orbit != null) { + $this->db->where("satellite.orbit", $orbit); + } + } + break; + case 'DXCC2': + $this->db->where('COL_DXCC', $searchphrase); + if ($band == 'SAT' && $type == 'DXCC2') { + if ($sat != 'All' && $sat != null) { + $this->db->where("COL_SAT_NAME", $sat); + } + if ($orbit != 'All' && $orbit != null) { + $this->db->where("satellite.orbit", $orbit); + } + } + break; + case 'IOTA': + $this->db->where('COL_IOTA', $searchphrase); + break; + case 'VUCC': + if ($searchmode == 'activated') { + $this->db->like("station_gridsquare", $searchphrase); + if ($band == 'SAT' && $type == 'VUCC') { + if ($sat != 'All' && $sat != null) { + $this->db->where("COL_SAT_NAME", $sat); + } + if ($orbit != 'All' && $orbit != null) { + $this->db->where("satellite.orbit", $orbit); + } + } + } else { + $this->db->group_start(); + $this->db->like("COL_GRIDSQUARE", $searchphrase); + $this->db->or_like("COL_VUCC_GRIDS", $searchphrase); + $this->db->group_end(); + if ($band == 'SAT' && $type == 'VUCC') { + if ($sat != 'All' && $sat != null) { + $this->db->where("COL_SAT_NAME",$sat); + } + if ($orbit != 'All' && $orbit != null) { + $this->db->where("satellite.orbit", $orbit); + } + } + if (($propagation ?? '') == 'None') { + $this->db->group_start(); + $this->db->where("COL_PROP_MODE = ''"); + $this->db->or_where("COL_PROP_MODE is null"); + $this->db->group_end(); + } elseif ($propagation == 'NoSAT') { + $this->db->where("COL_PROP_MODE != 'SAT'"); + } elseif ($propagation != '' && $propagation != null) { + $this->db->where("COL_PROP_MODE", $propagation); + } + } + break; + case 'CQZone': + $this->db->where('COL_CQZ', $searchphrase); + break; + case 'ITU': + $this->db->where('COL_ITUZ', $searchphrase); + break; + case 'WAS': + $this->db->where('COL_STATE', $searchphrase); + $this->db->where_in('COL_DXCC', ['291', '6', '110']); + break; + case 'RAC': + $this->db->where('COL_STATE', $searchphrase); + $this->db->where_in('COL_DXCC', ['1']); + break; + case 'helvetia': + $this->db->where('COL_STATE', $searchphrase); + $this->db->where_in('COL_DXCC', ['287']); + break; + case 'JCC': + $this->db->where('COL_CNTY', $searchphrase); + $this->db->where('COL_DXCC', '339'); + break; + case 'SOTA': + $this->db->where('COL_SOTA_REF', $searchphrase); + break; + case 'WWFF': + $this->db->where('COL_WWFF_REF', $searchphrase); + break; + case 'POTA': + $this->db->where('COL_POTA_REF', $searchphrase); + break; + case 'DOK': + $this->db->where('COL_DARC_DOK', $searchphrase); + break; + case 'WAB': + $this->db->where('COL_SIG', 'WAB'); + $this->db->where('COL_SIG_INFO', $searchphrase); + break; + case 'WAC': + $this->db->where('COL_CONT', $searchphrase); + break; + case 'WAJA': + $state = str_pad($searchphrase, 2, '0', STR_PAD_LEFT); + $this->db->where('COL_STATE', $state); + $this->db->where('COL_DXCC', '339'); + break; + case 'QSLRDATE': + $this->db->where('date(COL_QSLRDATE)=date(SYSDATE())'); + break; + case 'QSLSDATE': + $this->db->where('date(COL_QSLSDATE)=date(SYSDATE())'); + break; + case 'EQSLRDATE': + $this->db->where('date(COL_EQSL_QSLRDATE)=date(SYSDATE())'); + break; + case 'EQSLSDATE': + $this->db->where('date(COL_EQSL_QSLSDATE)=date(SYSDATE())'); + break; + case 'LOTWRDATE': + $this->db->where('date(COL_LOTW_QSLRDATE)=date(SYSDATE())'); + break; + case 'LOTWSDATE': + $this->db->where('date(COL_LOTW_QSLSDATE)=date(SYSDATE())'); + break; + case 'QRZRDATE': + $this->db->where('date(COL_QRZCOM_QSO_DOWNLOAD_DATE)=date(SYSDATE())'); + break; + case 'QRZSDATE': + $this->db->where('date(COL_QRZCOM_QSO_UPLOAD_DATE)=date(SYSDATE())'); + break; + } - $this->db->where_in($this->config->item('table_name').'.station_id', $logbooks_locations_array); + $this->db->where_in($this->config->item('table_name').'.station_id', $logbooks_locations_array); - if (strtolower($band) != 'all') { - if($band != "SAT") { - $this->db->where('COL_PROP_MODE !=', 'SAT'); - $this->db->where('COL_BAND', $band); - } else { - $this->db->where('COL_PROP_MODE', "SAT"); - } - } + if (strtolower($band) != 'all') { + if($band != "SAT") { + $this->db->where('COL_PROP_MODE !=', 'SAT'); + $this->db->where('COL_BAND', $band); + } else { + $this->db->where('COL_PROP_MODE', "SAT"); + } + } - if (!empty($qsl)) { - $qslfilter = array(); - if (strpos($qsl, "Q") !== false) { - $qslfilter[] = 'COL_QSL_RCVD = "Y"'; - } - if (strpos($qsl, "L") !== false) { - $qslfilter[] = 'COL_LOTW_QSL_RCVD = "Y"'; - } - if (strpos($qsl, "E") !== false) { - $qslfilter[] = 'COL_EQSL_QSL_RCVD = "Y"'; - } - if (strpos($qsl, "Z") !== false) { - $qslfilter[] = 'COL_QRZCOM_QSO_DOWNLOAD_STATUS = "Y"'; - } - if (strpos($qsl, "C") !== false) { - $qslfilter[] = 'COL_CLUBLOG_QSO_DOWNLOAD_STATUS = "Y"'; - } - $sql = "(".implode(' OR ', $qslfilter).")"; - $this->db->where($sql); - } + if (!empty($qsl)) { + $qslfilter = array(); + if (strpos($qsl, "Q") !== false) { + $qslfilter[] = 'COL_QSL_RCVD = "Y"'; + } + if (strpos($qsl, "L") !== false) { + $qslfilter[] = 'COL_LOTW_QSL_RCVD = "Y"'; + } + if (strpos($qsl, "E") !== false) { + $qslfilter[] = 'COL_EQSL_QSL_RCVD = "Y"'; + } + if (strpos($qsl, "Z") !== false) { + $qslfilter[] = 'COL_QRZCOM_QSO_DOWNLOAD_STATUS = "Y"'; + } + if (strpos($qsl, "C") !== false) { + $qslfilter[] = 'COL_CLUBLOG_QSO_DOWNLOAD_STATUS = "Y"'; + } + $sql = "(".implode(' OR ', $qslfilter).")"; // harmless, because value is checked b4 + $this->db->where($sql); + } - if (strtolower($mode) != 'all' && $mode != '') { - $this->db->where("(COL_MODE='" . $mode . "' OR COL_SUBMODE='" . $mode ."')"); - } - $this->db->order_by("COL_TIME_ON", "desc"); + if (strtolower($mode) != 'all' && $mode != '') { + $this->db->group_start(); + $this->db->where("COL_MODE", $mode); + $this->db->or_where("COL_SUBMODE", $mode); + $this->db->group_end(); + } + $this->db->order_by("COL_TIME_ON", "desc"); - $this->db->limit(500); + $this->db->limit(500); - return $this->db->get($this->config->item('table_name')); - } + return $this->db->get($this->config->item('table_name')); + } - public function activated_grids_qso_details($searchphrase, $band, $mode){ - $this->load->model('logbooks_model'); - $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - $sql = 'SELECT COL_FREQ, COL_SOTA_REF, COL_OPERATOR, COL_IOTA, COL_VUCC_GRIDS, COL_STATE, COL_GRIDSQUARE, COL_PRIMARY_KEY, COL_CALL, COL_TIME_ON, COL_BAND, COL_SAT_NAME, COL_MODE, COL_SUBMODE, COL_RST_SENT, '; - $sql .= 'COL_RST_RCVD, COL_STX, COL_SRX, COL_STX_STRING, COL_SRX_STRING, COL_COUNTRY, COL_QSL_SENT, COL_QSL_SENT_VIA, '; - $sql .= 'COL_QSLSDATE, COL_QSL_RCVD, COL_QSL_RCVD_VIA, COL_QSLRDATE, COL_EQSL_QSL_SENT, COL_EQSL_QSLSDATE, COL_EQSL_QSLRDATE, '; - $sql .= 'COL_EQSL_QSL_RCVD, COL_LOTW_QSL_SENT, COL_LOTW_QSLSDATE, COL_LOTW_QSL_RCVD, COL_LOTW_QSLRDATE, COL_CONTEST_ID, station_gridsquare, dxcc_entities.name as name, dxcc_entities.end as end, callsign, lastupload '; - $sql .= 'FROM '.$this->config->item('table_name').' JOIN `station_profile` ON station_profile.station_id = '.$this->config->item('table_name').'.station_id '; - $sql .= 'LEFT OUTER JOIN `dxcc_entities` ON dxcc_entities.adif = '.$this->config->item('table_name').'.COL_DXCC '; - $sql .= 'LEFT OUTER JOIN `lotw_users` ON lotw_users.callsign = '.$this->config->item('table_name').'.COL_CALL '; - $sql .= 'WHERE '.$this->config->item('table_name').'.station_id IN (SELECT station_id from station_profile '; - $sql .= 'WHERE station_gridsquare LIKE "%'.$searchphrase.'%") '; - - if ($band != 'All') { - if($band != "SAT") { - $sql .= 'AND COL_PROP_MODE != "SAT" AND '; - $sql .= 'COL_BAND = "'.$band.'" '; - } else { - $sql .= 'AND COL_PROP_MODE = "SAT"'; - } - } - - if ($mode != 'All') { - $sql .= ' AND COL_MODE = "'.$mode.'" OR COL_SUBMODE="'.$mode.'"'; - } - $sql .= ' ORDER BY COL_TIME_ON DESC LIMIT 500'; - - return $this->db->query($sql); - } - - public function vucc_qso_details($gridsquare, $band) { + public function vucc_qso_details($gridsquare, $band) { $this->load->model('logbooks_model'); $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); $location_list = "'".implode("','",$logbooks_locations_array)."'"; - $sql = "select * from " . $this->config->item('table_name') . - " where station_id in (" . $location_list . ")" . - " and (col_gridsquare like '" . $gridsquare. "%' - or col_vucc_grids like '%" . $gridsquare. "%')"; + $binding=[]; + $sql = "select * from " . $this->config->item('table_name') . + " where station_id in (" . $location_list . ")" . + " and (col_gridsquare like concat(?,'%') + or col_vucc_grids like concat('%',?,'%')"; + $binding[] = $gridsquare; + $binding[] = $gridsquare; - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } + if ($band != 'All') { + if ($band == 'SAT') { + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { + $sql .= " and col_prop_mode !='SAT'"; + $sql .= " and col_band = ?"; + $binding[] = $band; + } + } - return $this->db->query($sql); - } + return $this->db->query($sql, $binding); + } public function activator_details($call, $band, $leogeo){ $this->load->model('logbooks_model'); @@ -1325,6 +1337,7 @@ class Logbook_model extends CI_Model { 'COL_CONT' => $this->input->post('continent'), 'COL_DXCC'=> $this->input->post('dxcc_id'), 'COL_CQZ' => $this->input->post('cqz'), + 'COL_ITUZ' => $this->input->post('ituz') != '' ? $this->input->post('ituz') : null, 'COL_SAT_NAME' => $this->input->post('sat_name'), 'COL_SAT_MODE' => $this->input->post('sat_mode'), 'COL_NOTES' => $this->input->post('notes'), @@ -1360,6 +1373,8 @@ class Logbook_model extends CI_Model { 'COL_SRX' => $srx_string, 'COL_CONTEST_ID' => $this->input->post('contest_name'), 'COL_QSL_VIA' => $this->input->post('qsl_via_callsign'), + 'COL_ANT_AZ' => $this->input->post('ant_az') != '' ? $this->input->post('ant_az') : null, + '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'), @@ -1572,9 +1587,9 @@ class Logbook_model extends CI_Model { function call_us_county($callsign) { $this->db->select('COL_CALL, COL_CNTY'); - $this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id'); + $this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id'); $this->db->where('COL_CALL', $callsign); - $this->db->where('station_profile.user_id', $this->session->userdata('user_id')); + $this->db->where('station_profile.user_id', $this->session->userdata('user_id')); $where = "COL_CNTY != \"\""; $this->db->where($where); @@ -1589,7 +1604,51 @@ class Logbook_model extends CI_Model { $qsl_county = substr($qsl_county, (strpos($qsl_county, ',')+1)); return $qsl_county; } else { - return NULL; + return NULL; + } + } + + function call_ituzone($callsign) { + $this->db->select('COL_CALL, COL_ITUZ'); + $this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id'); + $this->db->where('COL_CALL', $callsign); + $this->db->where('station_profile.user_id', $this->session->userdata('user_id')); + $where = "COL_ITUZ != \"\""; + + $this->db->where($where); + + $this->db->order_by("COL_TIME_ON", "desc"); + $this->db->limit(1); + $query = $this->db->get($this->config->item('table_name')); + if ($query->num_rows() > 0) + { + $data = $query->row(); + $qsl_ituz = $data->COL_ITUZ; + return $qsl_ituz; + } else { + return NULL; + } + } + + function call_cqzone($callsign) { + $this->db->select('COL_CALL, COL_CQZ'); + $this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id'); + $this->db->where('COL_CALL', $callsign); + $this->db->where('station_profile.user_id', $this->session->userdata('user_id')); + $where = "COL_CQZ != \"\""; + + $this->db->where($where); + + $this->db->order_by("COL_TIME_ON", "desc"); + $this->db->limit(1); + $query = $this->db->get($this->config->item('table_name')); + if ($query->num_rows() > 0) + { + $data = $query->row(); + $qsl_cqz = $data->COL_CQZ; + return $qsl_cqz; + } else { + return NULL; } } @@ -1726,46 +1785,49 @@ class Logbook_model extends CI_Model { } function get_qsos_for_printing($station_id2 = null) { + $binding=[]; + $this->load->model('stations'); + $station_id = $this->stations->find_active(); - $this->load->model('stations'); - $station_id = $this->stations->find_active(); + $sql = 'SELECT + STATION_CALLSIGN, + COL_PRIMARY_KEY, + COL_CALL, + COL_QSL_VIA, + COL_TIME_ON, + COL_MODE, + COL_SUBMODE, + COL_FREQ, + UPPER(COL_BAND) as COL_BAND, + COL_RST_SENT, + COL_SAT_NAME, + COL_SAT_MODE, + COL_QSL_RCVD, + COL_COMMENT, + (select adif from dxcc_prefixes where (CASE WHEN COL_QSL_VIA != \'\' THEN COL_QSL_VIA ELSE COL_CALL END) like concat(dxcc_prefixes.`call`,\'%\') order by end limit 1) as ADIF, + (select entity from dxcc_prefixes where (CASE WHEN COL_QSL_VIA != \'\' THEN COL_QSL_VIA ELSE COL_CALL END) like concat(dxcc_prefixes.`call`,\'%\') order by end limit 1) as ENTITY, + (CASE WHEN COL_QSL_VIA != \'\' THEN COL_QSL_VIA ELSE COL_CALL END) AS COL_ROUTING + FROM '.$this->config->item('table_name').' thcv + join station_profile on thcv.station_id = station_profile.station_id + WHERE + COL_QSL_SENT in (\'R\', \'Q\')'; - $sql = 'SELECT - STATION_CALLSIGN, - COL_PRIMARY_KEY, - COL_CALL, - COL_QSL_VIA, - COL_TIME_ON, - COL_MODE, - COL_SUBMODE, - COL_FREQ, - UPPER(COL_BAND) as COL_BAND, - COL_RST_SENT, - COL_SAT_NAME, - COL_SAT_MODE, - COL_QSL_RCVD, - COL_COMMENT, - (select adif from dxcc_prefixes where (CASE WHEN COL_QSL_VIA != \'\' THEN COL_QSL_VIA ELSE COL_CALL END) like concat(dxcc_prefixes.`call`,\'%\') order by end limit 1) as ADIF, - (select entity from dxcc_prefixes where (CASE WHEN COL_QSL_VIA != \'\' THEN COL_QSL_VIA ELSE COL_CALL END) like concat(dxcc_prefixes.`call`,\'%\') order by end limit 1) as ENTITY, - (CASE WHEN COL_QSL_VIA != \'\' THEN COL_QSL_VIA ELSE COL_CALL END) AS COL_ROUTING - FROM '.$this->config->item('table_name').' thcv - join station_profile on thcv.station_id = station_profile.station_id - WHERE - COL_QSL_SENT in (\'R\', \'Q\')'; + if ($station_id2 == NULL) { + $sql .= ' and thcv.station_id = ?'; + $binding[] = $station_id; + } else if ($station_id2 != 'All') { + $sql .= ' and thcv.station_id = ?'; + $binding[] = $station_id2; + } - if ($station_id2 == NULL) { - $sql .= ' and thcv.station_id = ' . $station_id; - } else if ($station_id2 != 'All') { - $sql .= ' and thcv.station_id = ' . $station_id2; - } + // always filter user. this ensures that even if the station_id is from another user no inaccesible QSOs will be returned + $sql .= ' and station_profile.user_id = ?'; + $binding[] = $this->session->userdata('user_id'); - // always filter user. this ensures that even if the station_id is from another user no inaccesible QSOs will be returned - $sql .= ' and station_profile.user_id = ' . $this->session->userdata('user_id'); + $sql .= ' ORDER BY ADIF, COL_ROUTING'; - $sql .= ' ORDER BY ADIF, COL_ROUTING'; - - $query = $this->db->query($sql); - return $query; + $query = $this->db->query($sql, $binding); + return $query; } function get_qsos($num, $offset, $StationLocationsArray = null, $band = '') { @@ -1831,24 +1893,27 @@ class Logbook_model extends CI_Model { /* * Function returns the QSOs from the logbook, which have not been either marked as uploaded to hrdlog, or has been modified with an edit */ - function get_hrdlog_qsos($station_id){ - $sql = 'select *, dxcc_entities.name as station_country from ' . $this->config->item('table_name') . ' thcv ' . - ' left join station_profile on thcv.station_id = station_profile.station_id' . - ' left outer join dxcc_entities on thcv.col_my_dxcc = dxcc_entities.adif' . - ' where thcv.station_id = ' . $station_id . - ' and (COL_HRDLOG_QSO_UPLOAD_STATUS is NULL - or COL_HRDLOG_QSO_UPLOAD_STATUS = "" - or COL_HRDLOG_QSO_UPLOAD_STATUS = "M" - or COL_HRDLOG_QSO_UPLOAD_STATUS = "N")'; + function get_hrdlog_qsos($station_id){ + $binding=[]; + $sql = 'select *, dxcc_entities.name as station_country from ' . $this->config->item('table_name') . ' thcv ' . + ' left join station_profile on thcv.station_id = station_profile.station_id' . + ' left outer join dxcc_entities on thcv.col_my_dxcc = dxcc_entities.adif' . + ' where thcv.station_id = ?'. + ' and (COL_HRDLOG_QSO_UPLOAD_STATUS is NULL + or COL_HRDLOG_QSO_UPLOAD_STATUS = "" + or COL_HRDLOG_QSO_UPLOAD_STATUS = "M" + or COL_HRDLOG_QSO_UPLOAD_STATUS = "N")'; + $binding[]=$station_id; - $query = $this->db->query($sql); - return $query; - } + $query = $this->db->query($sql, $binding); + return $query; + } /* * Function returns the QSOs from the logbook, which have not been either marked as uploaded to qrz, or has been modified with an edit */ function get_qrz_qsos($station_id, $trusted = false){ + $binding=[]; $this->load->model('stations'); if ((!$trusted) && (!$this->stations->check_station_is_accessible($station_id))) { return; @@ -1856,62 +1921,55 @@ class Logbook_model extends CI_Model { $sql = 'select *, dxcc_entities.name as station_country from ' . $this->config->item('table_name') . ' thcv ' . ' left join station_profile on thcv.station_id = station_profile.station_id' . ' left outer join dxcc_entities on thcv.col_my_dxcc = dxcc_entities.adif' . - ' where thcv.station_id = ' . $station_id . + ' where thcv.station_id = ?'. ' and (COL_QRZCOM_QSO_UPLOAD_STATUS is NULL or COL_QRZCOM_QSO_UPLOAD_STATUS = "" or COL_QRZCOM_QSO_UPLOAD_STATUS = "M" or COL_QRZCOM_QSO_UPLOAD_STATUS = "N")'; + $binding[]=$station_id; - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); return $query; } /* * Function returns the QSOs from the logbook, which have not been either marked as uploaded to webADIF */ - function get_webadif_qsos($station_id,$from = null, $to = null,$trusted = false){ - $this->load->model('stations'); - if ((!$trusted) && (!$this->stations->check_station_is_accessible($station_id))) { - return; - } - $sql = " + function get_webadif_qsos($station_id,$from = null, $to = null,$trusted = false) { + $binding=[]; + $this->load->model('stations'); + if ((!$trusted) && (!$this->stations->check_station_is_accessible($station_id))) { + return; + } + $sql = " SELECT qsos.*, station_profile.*, dxcc_entities.name as station_country - FROM %s qsos + FROM ".$this->config->item('table_name')." qsos INNER JOIN station_profile ON qsos.station_id = station_profile.station_id LEFT JOIN dxcc_entities on qsos.col_my_dxcc = dxcc_entities.adif LEFT OUTER JOIN webadif ON qsos.COL_PRIMARY_KEY = webadif.qso_id - WHERE qsos.station_id = %d - AND qsos.COL_SAT_NAME = 'QO-100' - AND webadif.upload_date IS NULL + WHERE qsos.station_id = ? + AND qsos.COL_SAT_NAME = 'QO-100' + AND webadif.upload_date IS NULL "; - $sql = sprintf( - $sql, - $this->config->item('table_name'), - $station_id - ); - if ($from) { - $from = DateTime::createFromFormat('d/m/Y', $from); - $from = $from->format('Y-m-d'); + $binding[] = $station_id; - $sql.=" AND qsos.COL_TIME_ON >= %s"; - $sql=sprintf( - $sql, - $this->db->escape($from) - ); - } - if ($to) { - $to = DateTime::createFromFormat('d/m/Y', $to); - $to = $to->format('Y-m-d'); + if ($from) { + $from = DateTime::createFromFormat('d/m/Y', $from); + $from = $from->format('Y-m-d'); - $sql.=" AND qsos.COL_TIME_ON <= %s"; - $sql=sprintf( - $sql, - $this->db->escape($to) - ); - } + $sql.=" AND qsos.COL_TIME_ON >= ?"; + $binding[]=$from; + } + if ($to) { + $to = DateTime::createFromFormat('d/m/Y', $to); + $to = $to->format('Y-m-d'); - return $this->db->query($sql); - } + $sql.=" AND qsos.COL_TIME_ON <= ?"; + $binding[]=$to; + } + + return $this->db->query($sql, $binding); + } /* * Function returns all the station_id's with QRZ API Key's @@ -1992,36 +2050,35 @@ class Logbook_model extends CI_Model { } } - function get_last_qsos($num, $StationLocationsArray = null) { + function get_last_qsos($num, $StationLocationsArray = null) { + $binding=[]; + if($StationLocationsArray == null) { + $this->load->model('logbooks_model'); + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + } else { + $logbooks_locations_array = $StationLocationsArray; + } + + if ($logbooks_locations_array) { + $location_list = "'".implode("','",$logbooks_locations_array)."'"; + + $sql = "SELECT * FROM ( select * from " . $this->config->item('table_name'). " + WHERE station_id IN(". $location_list .") + order by col_time_on desc + limit ?) hrd + JOIN station_profile ON station_profile.station_id = hrd.station_id + LEFT JOIN dxcc_entities ON hrd.col_dxcc = dxcc_entities.adif + order by col_time_on desc"; + $binding[]=$num*1; + $query = $this->db->query($sql,$binding); + + return $query; + } else { + return null; + } - if($StationLocationsArray == null) { - $this->load->model('logbooks_model'); - $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - } else { - $logbooks_locations_array = $StationLocationsArray; } - if ($logbooks_locations_array) { - $location_list = "'".implode("','",$logbooks_locations_array)."'"; - - $sql = "SELECT * FROM ( select * from " . $this->config->item('table_name'). " - WHERE station_id IN(". $location_list .") - order by col_time_on desc - limit " . $num . - ") hrd - JOIN station_profile ON station_profile.station_id = hrd.station_id - LEFT JOIN dxcc_entities ON hrd.col_dxcc = dxcc_entities.adif - order by col_time_on desc"; - - $query = $this->db->query($sql); - - return $query; - } else { - return null; - } - - } - function check_if_callsign_cnfmd_in_logbook($callsign, $StationLocationsArray = null, $band = null) { if($StationLocationsArray == null) { @@ -2238,69 +2295,72 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray = } /* Get all QSOs with a valid grid for use in the KML export */ - function kml_get_all_qsos($band, $mode, $dxcc, $cqz, $propagation, $fromdate, $todate) { - $this->load->model('logbooks_model'); - $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + function kml_get_all_qsos($band, $mode, $dxcc, $cqz, $propagation, $fromdate, $todate) { + $this->load->model('logbooks_model'); + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - $this->db->select('COL_CALL, COL_BAND, COL_TIME_ON, COL_RST_RCVD, COL_RST_SENT, COL_MODE, COL_SUBMODE, COL_NAME, COL_COUNTRY, COL_PRIMARY_KEY, COL_SAT_NAME, COL_GRIDSQUARE'); - $this->db->where_in('station_id', $logbooks_locations_array); - $this->db->where("coalesce(COL_GRIDSQUARE, '') <> ''"); + $this->db->select('COL_CALL, COL_BAND, COL_TIME_ON, COL_RST_RCVD, COL_RST_SENT, COL_MODE, COL_SUBMODE, COL_NAME, COL_COUNTRY, COL_PRIMARY_KEY, COL_SAT_NAME, COL_GRIDSQUARE'); + $this->db->where_in('station_id', $logbooks_locations_array); + $this->db->where("coalesce(COL_GRIDSQUARE, '') <> ''"); - if ($band != 'All') { - if ($band == 'SAT') { - $this->db->where('COL_PROP_MODE = \'' . $band . '\''); - } - else { - $this->db->where('COL_PROP_MODE != \'SAT\''); - $this->db->where('COL_BAND = \'' . $band .'\''); - } - } + if ($band != 'All') { + if ($band == 'SAT') { + $this->db->where('COL_PROP_MODE', $band); + } + else { + $this->db->where('COL_PROP_MODE != \'SAT\''); + $this->db->where('COL_BAND', $band); + } + } - if ($mode != 'All') { - $this->db->where('COL_MODE = \'' . $mode . '\''); - } + if ($mode != 'All') { + $this->db->where('COL_MODE', $mode); + } - if ($dxcc != 'All') { - $this->db->where('COL_DXCC = ' . $dxcc); - } + if ($dxcc != 'All') { + $this->db->where('COL_DXCC',$dxcc); + } - if ($cqz != 'All') { - $this->db->where('COL_CQZ = ' . $cqz); - } + if ($cqz != 'All') { + $this->db->where('COL_CQZ', $cqz); + } - if ($propagation != 'All') { - $this->db->where('COL_PROP_MODE = ' . $propagation); - } + if ($propagation != 'All') { + $this->db->where('COL_PROP_MODE', $propagation); + } - // If date is set, we add it to the where-statement - if ($fromdate != "") { - $this->db->where("date(".$this->config->item('table_name').".COL_TIME_ON) >= '".$fromdate."'"); - } - if ($todate != "") { - $this->db->where("date(".$this->config->item('table_name').".COL_TIME_ON) <= '".$todate."'"); - } + // If date is set, we add it to the where-statement + if ($fromdate != "") { + $this->db->where("date(".$this->config->item('table_name').".COL_TIME_ON) >=", $fromdate); + } + if ($todate != "") { + $this->db->where("date(".$this->config->item('table_name').".COL_TIME_ON) <=", $todate); + } - $query = $this->db->get($this->config->item('table_name')); - return $query; - } + $query = $this->db->get($this->config->item('table_name')); + return $query; + } function cfd_get_all_qsos($fromdate, $todate) { + $binding=[]; $this->load->model('logbooks_model'); $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); // If date is set, we add it to the where-statement if ($fromdate ?? ''!= "") { - $from=" AND date(q.COL_TIME_ON) >= '".$fromdate."'"; + $from=" AND date(q.COL_TIME_ON) >= ?"; + $binding[]=$fromdate; } else { $from=""; } if ($todate ?? '' != "") { - $till=" AND date(q.COL_TIME_ON) <= '".$todate."'"; + $till=" AND date(q.COL_TIME_ON) <= ?"; + $binding[]=$todate; } else { $till=''; } - $location_list = "'".implode("','",$logbooks_locations_array)."'"; + $location_list = "'".implode("','",$logbooks_locations_array)."'"; $sql="SELECT dx.prefix,dx.name, @@ -2311,27 +2371,27 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray = ELSE mo.qrgmode END AS mode,q.col_band as band, COUNT(1) as cnfmd - FROM ".$this->config->item('table_name')." q - INNER JOIN - dxcc_entities dx ON (dx.adif = q.COL_DXCC) - INNER JOIN - adif_modes mo ON (mo.mode = q.COL_MODE) - inner join bands b on (b.band=q.COL_BAND) - WHERE - (q.COL_QSL_RCVD = 'Y' - OR q.COL_LOTW_QSL_RCVD = 'Y' - OR q.COL_EQSL_QSL_RCVD = 'Y') - AND q.station_id in (".$location_list.") - AND (b.bandgroup='hf' or b.band = '6m') ".($from ?? '')." ".($till ?? '')." - GROUP BY dx.prefix,dx.name , CASE - WHEN q.col_mode = 'CW' THEN 'C' - WHEN mo.qrgmode = 'DATA' THEN 'R' - WHEN mo.qrgmode = 'SSB' THEN 'F' - ELSE mo.qrgmode - END,q.COL_BAND order by dx.prefix asc, q.col_band desc"; + FROM ".$this->config->item('table_name')." q + INNER JOIN + dxcc_entities dx ON (dx.adif = q.COL_DXCC) + INNER JOIN + adif_modes mo ON (mo.mode = q.COL_MODE) + inner join bands b on (b.band=q.COL_BAND) + WHERE + (q.COL_QSL_RCVD = 'Y' + OR q.COL_LOTW_QSL_RCVD = 'Y' + OR q.COL_EQSL_QSL_RCVD = 'Y') + AND q.station_id in (".$location_list.") + AND (b.bandgroup='hf' or b.band = '6m') ".($from ?? '')." ".($till ?? '')." + GROUP BY dx.prefix,dx.name , CASE + WHEN q.col_mode = 'CW' THEN 'C' + WHEN mo.qrgmode = 'DATA' THEN 'R' + WHEN mo.qrgmode = 'SSB' THEN 'F' + ELSE mo.qrgmode + END,q.COL_BAND order by dx.prefix asc, q.col_band desc"; - $query = $this->db->query($sql); - return $query; + $query = $this->db->query($sql,$binding); + return $query; } @@ -2438,55 +2498,57 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray = /* Return QSOs over a period of days */ function map_week_qsos($start, $end) { - $this->load->model('logbooks_model'); - $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + $this->load->model('logbooks_model'); + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - $this->db->where("COL_TIME_ON BETWEEN '".$start."' AND '".$end."'"); - $this->db->where_in('station_id', $logbooks_locations_array); - $this->db->order_by("COL_TIME_ON", "ASC"); - $query = $this->db->get($this->config->item('table_name')); + $this->db->where("COL_TIME_ON >= ",$start); + $this->db->where("COL_TIME_ON <= ",$end); + $this->db->where_in('station_id', $logbooks_locations_array); + $this->db->order_by("COL_TIME_ON", "ASC"); + $query = $this->db->get($this->config->item('table_name')); - return $query; + return $query; } /* used to return custom qsos requires start, end date plus a band */ function map_custom_qsos($start, $end, $band, $mode, $propagation) { - $this->load->model('logbooks_model'); - $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + $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; + if (!$logbooks_locations_array) { + return null; + } + + $this->db->join('dxcc_entities', $this->config->item('table_name').'.col_dxcc = dxcc_entities.adif', 'left'); + $this->db->where("COL_TIME_ON >=",$start." 00:00:00"); + $this->db->where("COL_TIME_ON <=",$end." 23:59:59'"); + $this->db->where_in("station_id", $logbooks_locations_array); + + if($band != "All" && $band != "SAT") { + $this->db->where("COL_BAND", $band); + } + + if ($band == "SAT") { + $this->db->where("COL_PROP_MODE", "SAT"); + } + + if ($mode != 'All') { + $this->db->group_start(); + $this->db->where("COL_MODE", $mode); + $this->db->or_where("COL_SUBMODE", $mode); + $this->db->group_end(); + } + + if ($propagation != 'All') { + $this->db->where("COL_PROP_MODE", $propagation); + } + + $this->db->order_by("COL_TIME_ON", "ASC"); + $query = $this->db->get($this->config->item('table_name')); + + return $query; } - $this->db->join('dxcc_entities', $this->config->item('table_name').'.col_dxcc = dxcc_entities.adif', 'left'); - $this->db->where("COL_TIME_ON BETWEEN '".$start." 00:00:00' AND '".$end." 23:59:59'"); - $this->db->where_in("station_id", $logbooks_locations_array); - - if($band != "All" && $band != "SAT") { - $this->db->where("COL_BAND", $band); - } - - if ($band == "SAT") { - $this->db->where("COL_PROP_MODE", "SAT"); - } - - if ($mode != 'All') { - $this->db->group_start(); - $this->db->where("COL_MODE", $mode); - $this->db->or_where("COL_SUBMODE", $mode); - $this->db->group_end(); - } - - if ($propagation != 'All') { - $this->db->where("COL_PROP_MODE", $propagation); - } - - $this->db->order_by("COL_TIME_ON", "ASC"); - $query = $this->db->get($this->config->item('table_name')); - - return $query; - } - /* Returns QSOs for the date sent eg 2011-09-30 */ function map_day($date) { $this->load->model('logbooks_model'); @@ -2495,7 +2557,8 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray = $start = $date." 00:00:00"; $end = $date." 23:59:59"; - $this->db->where("COL_TIME_ON BETWEEN '".$start."' AND '".$end."'"); + $this->db->where("COL_TIME_ON >= ", $start); + $this->db->where("COL_TIME_ON <= ", $end); $this->db->where_in('station_id', $logbooks_locations_array); $this->db->order_by("COL_TIME_ON", "ASC"); $query = $this->db->get($this->config->item('table_name')); @@ -3223,24 +3286,33 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray = /* Used to check if the qso is already in the database */ function import_check($datetime, $callsign, $band, $mode, $station_callsign, $station_id = null) { + $binding=[]; $mode=$this->get_main_mode_from_mode($mode); - $this->db->select('COL_PRIMARY_KEY, COL_TIME_ON, COL_CALL, COL_BAND, COL_GRIDSQUARE'); - $this->db->where('COL_TIME_ON >= DATE_ADD(DATE_FORMAT("'.$datetime.'", \'%Y-%m-%d %H:%i\' ), INTERVAL -15 MINUTE )'); - $this->db->where('COL_TIME_ON <= DATE_ADD(DATE_FORMAT("'.$datetime.'", \'%Y-%m-%d %H:%i\' ), INTERVAL 15 MINUTE )'); - $this->db->where('COL_CALL', $callsign); - $this->db->where('COL_STATION_CALLSIGN', $station_callsign); - $this->db->where('COL_BAND', $band); - $this->db->where('COL_MODE', $mode); + $sql='SELECT COL_PRIMARY_KEY, COL_TIME_ON, COL_CALL, COL_BAND, COL_GRIDSQUARE from '.$this->config->item('table_name').' + WHERE COL_TIME_ON >= DATE_ADD(DATE_FORMAT(?, \'%Y-%m-%d %H:%i\' ), INTERVAL -15 MINUTE ) + AND COL_TIME_ON <= DATE_ADD(DATE_FORMAT(?, \'%Y-%m-%d %H:%i\' ), INTERVAL 15 MINUTE ) + AND COL_CALL=? + AND COL_STATION_CALLSIGN=? + AND COL_BAND=? + AND COL_MODE=?'; + + $binding[]=$datetime; + $binding[]=$datetime; + $binding[]=$callsign; + $binding[]=$station_callsign; + $binding[]=$band; + $binding[]=$mode; + if(isset($station_id) && $station_id > 0) { - $this->db->where('station_id', $station_id); + $sql.=' AND station_id=?'; + $binding[]=$station_id; } - $query = $this->db->get($this->config->item('table_name')); + $query = $this->db->query($sql, $binding); - if ($query->num_rows() > 0) - { + if ($query->num_rows() > 0) { $ret = $query->row(); return ["Found", $ret->COL_PRIMARY_KEY, $ret->COL_GRIDSQUARE]; } else { @@ -3256,7 +3328,7 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray = 'COL_CLUBLOG_QSO_DOWNLOAD_STATUS' => $qsl_status, ); - $this->db->where('date_format(COL_TIME_ON, \'%Y-%m-%d %H:%i:%s\') = "'.$datetime.'"'); + $this->db->where('date_format(COL_TIME_ON, \'%Y-%m-%d %H:%i:%s\') = ',$datetime); $this->db->where('COL_CALL', $callsign); $this->db->where("replace(replace(COL_BAND,'cm',''),'m','')", $band); // no way to achieve a real bandmatch, so fallback to match without unit. e.g.: "6" was provided by Clublog. Do they mean 6m or 6cm? $this->db->where('COL_STATION_CALLSIGN', $station_callsign); @@ -3327,15 +3399,16 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray = } $this->db->group_start(); - $this->db->where('date_format(COL_LOTW_QSLRDATE, \'%Y-%m-%d %H:%i\') != "'.$qsl_date.'"'); + $this->db->where('date_format(COL_LOTW_QSLRDATE, \'%Y-%m-%d %H:%i\') != ',$qsl_date); $this->db->or_where('COL_LOTW_QSLRDATE is null'); $this->db->group_end(); - $this->db->where('date_format(COL_TIME_ON, \'%Y-%m-%d %H:%i\') = "'.$datetime.'"'); $this->db->where('COL_CALL', $callsign); $this->db->where('COL_BAND', $band); + $this->db->where('date_format(COL_TIME_ON, \'%Y-%m-%d %H:%i\') = ',$datetime); $this->db->where('COL_STATION_CALLSIGN', $station_callsign); $this->db->where('COL_PRIMARY_KEY', $qsoid); + $this->db->update($this->config->item('table_name'), $data); unset($data); @@ -3344,7 +3417,7 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray = 'COL_DISTANCE' => 0 ); $this->db->select('station_profile.station_gridsquare as station_gridsquare'); - $this->db->where('date_format(COL_TIME_ON, \'%Y-%m-%d %H:%i\') = "'.$datetime.'"'); + $this->db->where('date_format(COL_TIME_ON, \'%Y-%m-%d %H:%i\') = ',$datetime); $this->db->where('COL_CALL', $callsign); $this->db->where('COL_BAND', $band); $this->db->where('COL_PRIMARY_KEY', $qsoid); @@ -3367,7 +3440,7 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray = $data['COL_DISTANCE'] = $this->qra->distance($station_gridsquare, $qsl_vucc_grids, 'K'); } - $this->db->where('date_format(COL_TIME_ON, \'%Y-%m-%d %H:%i\') = "'.$datetime.'"'); + $this->db->where('date_format(COL_TIME_ON, \'%Y-%m-%d %H:%i\') = ',$datetime); $this->db->where('COL_CALL', $callsign); $this->db->where('COL_BAND', $band); $this->db->where('COL_PRIMARY_KEY', $qsoid); @@ -3405,30 +3478,55 @@ function lotw_last_qsl_date($user_id) { return '1900-01-01 00:00:00.000'; } - function import_bulk($records, $station_id = "0", $skipDuplicate = false, $markClublog = false, $markLotw = false, $dxccAdif = false, $markQrz = false, $markHrd = false,$skipexport = false, $operatorName = false, $apicall = false, $skipStationCheck = false) { - $custom_errors=''; - $a_qsos=[]; + function import_bulk($records, $station_id = "0", $skipDuplicate = false, $markClublog = false, $markLotw = false, $dxccAdif = false, $markQrz = false, $markEqsl = false, $markHrd = false,$skipexport = false, $operatorName = false, $apicall = false, $skipStationCheck = false) { + $this->load->model('user_model'); + $custom_errors=''; + $a_qsos=[]; + $amsat_qsos=[]; + $today = time(); if (!$this->stations->check_station_is_accessible($station_id) && $apicall == false ) { return 'Station not accessible
'; } $station_id_ok = true; $station_profile=$this->stations->profile_clean($station_id); + $amsat_status_upload = $this->user_model->get_user_amsat_status_upload_by_id($station_profile->user_id); + + foreach ($records as $record) { + $one_error = $this->logbook_model->import($record, $station_id, $skipDuplicate, $markClublog, $markLotw,$dxccAdif, $markQrz, $markEqsl, $markHrd, $skipexport, $operatorName, $apicall, $skipStationCheck, true, $station_id_ok, $station_profile); + if ($one_error['error'] ?? '' != '') { + $custom_errors.=$one_error['error']."
"; + } else { // No Errors / QSO doesn't exist so far + array_push($a_qsos,$one_error['raw_qso'] ?? ''); + if (isset($record['prop_mode']) && $record['prop_mode'] == 'SAT' && $amsat_status_upload) { + $amsat_qsodate=strtotime(($record['qso_date'] ?? '1970-01-01').' '.($record['time_on'] ?? '00:00:00')); + $date_diff=$today - $amsat_qsodate; + if ($date_diff >= -300 && $date_diff <= 518400) { // Five minutes grace time to the future and max 6 days back + $data = array( + 'COL_TIME_ON' => date('Y-m-d', strtotime($record['qso_date'])) ." ".date('H:i:s', strtotime($record['time_on'])), + 'COL_SAT_NAME' => $record['sat_name'], + 'COL_BAND' => $record['band'], + 'COL_BAND_RX' => $record['band_rx'] ?? '', + 'COL_MODE' => $record['mode'], + 'COL_STATION_CALLSIGN' => $station_profile->station_callsign, + 'COL_MY_GRIDSQUARE' => $station_profile->station_gridsquare, + ); + array_push($amsat_qsos,$data); + } + } + } + } + $records=''; + gc_collect_cycles(); + if (count($a_qsos)>0) { + $this->db->insert_batch($this->config->item('table_name'), $a_qsos); + } + foreach($amsat_qsos as $amsat_qso) { + $this->upload_amsat_status($data); + } + return $custom_errors; +} + - foreach ($records as $record) { - $one_error = $this->logbook_model->import($record, $station_id, $skipDuplicate, $markClublog, $markLotw,$dxccAdif, $markQrz, $markHrd, $skipexport, $operatorName, $apicall, $skipStationCheck, true, $station_id_ok, $station_profile); - if ($one_error['error'] ?? '' != '') { - $custom_errors.=$one_error['error']."
"; - } else { - array_push($a_qsos,$one_error['raw_qso'] ?? ''); - } - } - $records=''; - gc_collect_cycles(); - if (count($a_qsos)>0) { - $this->db->insert_batch($this->config->item('table_name'), $a_qsos); - } - return $custom_errors; - } /* * $skipDuplicate - used in ADIF import to skip duplicate checking when importing QSOs * $markLoTW - used in ADIF import to mark QSOs as exported to LoTW when importing QSOs @@ -3437,7 +3535,7 @@ function lotw_last_qsl_date($user_id) { * $markHrd - used in ADIF import to mark QSOs as exported to HRDLog.net Logbook when importing QSOs * $skipexport - used in ADIF import to skip the realtime upload to QRZ Logbook when importing QSOs from ADIF */ - function import($record, $station_id = "0", $skipDuplicate = false, $markClublog = false, $markLotw = false, $dxccAdif = false, $markQrz = false, $markHrd = false,$skipexport = false, $operatorName = false, $apicall = false, $skipStationCheck = false, $batchmode = false, $station_id_ok = false, $station_profile = null) { + function import($record, $station_id = "0", $skipDuplicate = false, $markClublog = false, $markLotw = false, $dxccAdif = false, $markQrz = false, $markEqsl = false, $markHrd = false,$skipexport = false, $operatorName = false, $apicall = false, $skipStationCheck = false, $batchmode = false, $station_id_ok = false, $station_profile = null) { // be sure that station belongs to user $this->load->model('stations'); if ($station_id_ok == false) { @@ -3463,18 +3561,18 @@ function lotw_last_qsl_date($user_id) { $my_error = ""; // Join date+time - $time_on = date('Y-m-d', strtotime($record['qso_date'])) ." ".date('H:i:s', strtotime($record['time_on'])); + $time_on = date('Y-m-d', strtotime($record['qso_date'] ?? '1970-01-01')) ." ".date('H:i:s', strtotime($record['time_on'] ?? '00:00:00')); if (isset($record['time_off'])) { if (isset($record['date_off'])) { // date_off and time_off set - $time_off = date('Y-m-d', strtotime($record['date_off'])) . ' ' . date('H:i:s', strtotime($record['time_off'])); + $time_off = date('Y-m-d', strtotime($record['date_off'] ?? '1970-01-01 00:00:00')) . ' ' . date('H:i:s', strtotime($record['time_off'] ?? '1970-01-01 00:00:00')); } elseif (strtotime($record['time_off']) < strtotime($record['time_on'])) { // date_off is not set, QSO ends next day - $time_off = date('Y-m-d', strtotime($record['qso_date'] . ' + 1 day')) . ' ' . date('H:i:s', strtotime($record['time_off'])); + $time_off = date('Y-m-d', strtotime(($record['qso_date'] ?? '1970-01-01 00:00:00'). ' + 1 day')) . ' ' . date('H:i:s', strtotime($record['time_off'] ?? '1970-01-01 00:00:00')); } else { // date_off is not set, QSO ends same day - $time_off = date('Y-m-d', strtotime($record['qso_date'])) . ' ' . date('H:i:s', strtotime($record['time_off'])); + $time_off = date('Y-m-d', strtotime($record['qso_date'] ?? '1970-01-01 00:00:00')) . ' ' . date('H:i:s', strtotime($record['time_off'] ?? '1970-01-01 00:00:00')); } } else { // date_off and time_off not set, QSO end == QSO start @@ -3873,6 +3971,15 @@ function lotw_last_qsl_date($user_id) { $input_qrzcom_qso_upload_status = (!empty($record['qrzcom_qso_upload_status'])) ? $record['qrzcom_qso_upload_status'] : ''; } + if ($markEqsl != null) { + $input_eqsl_qso_upload_status = 'Y'; + $input_eqsl_qso_upload_date = $date = date("Y-m-d H:i:s", strtotime("now")); + } else { + $input_eqsl_qso_upload_date = (!empty($record['eqsl_qslsdate'])) ? $record['eqsl_qslsdate'] : null; + $input_eqsl_qso_upload_status = (!empty($record['eqsl_qsl_sent'])) ? $record['eqsl_qsl_sent'] : ''; + } + + // Create array with QSO Data use ?: $data = array( 'COL_A_INDEX' => $input_a_index, @@ -3910,9 +4017,9 @@ function lotw_last_qsl_date($user_id) { 'COL_EMAIL' => (!empty($record['email'])) ? $record['email'] : '', 'COL_EQ_CALL' => (!empty($record['eq_call'])) ? $record['eq_call'] : '', 'COL_EQSL_QSL_RCVD' => (!empty($record['eqsl_qsl_rcvd'])) ? $record['eqsl_qsl_rcvd'] : null, - 'COL_EQSL_QSL_SENT' => (!empty($record['eqsl_qsl_sent'])) ? $record['eqsl_qsl_sent'] : null, + 'COL_EQSL_QSL_SENT' => $input_eqsl_qso_upload_status, 'COL_EQSL_QSLRDATE' => (!empty($record['eqsl_qslrdate'])) ? $record['eqsl_qslrdate'] : null, - 'COL_EQSL_QSLSDATE' => (!empty($record['eqsl_qslsdate'])) ? $record['eqsl_qslsdate'] : null, + 'COL_EQSL_QSLSDATE' => $input_eqsl_qso_upload_date, 'COL_EQSL_STATUS' => (!empty($record['eqsl_status'])) ? $record['eqsl_status'] : '', 'COL_FISTS' => (!empty($record['fists'])) ? $record['fists'] : null, 'COL_FISTS_CC' => (!empty($record['fists_cc'])) ? $record['fists_cc'] : null, @@ -4675,14 +4782,17 @@ function lotw_last_qsl_date($user_id) { print("$count updated\n"); } - public function update_distances(){ + public function update_distances($all){ + ini_set('memory_limit', '-1'); // This consumes a much of Memory! + $this->db->trans_start(); // Transaction has to be started here, because otherwise we're trying to update rows which are locked by the select $this->db->select("COL_PRIMARY_KEY, COL_GRIDSQUARE, station_gridsquare"); $this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id'); - $this->db->where("((COL_DISTANCE is NULL) or (COL_DISTANCE = 0))"); + if (!$all) { + $this->db->where("((COL_DISTANCE is NULL) or (COL_DISTANCE = 0))"); + } $this->db->where("COL_GRIDSQUARE is NOT NULL"); $this->db->where("COL_GRIDSQUARE != ''"); $this->db->where("COL_GRIDSQUARE != station_gridsquare"); - $this->db->trans_start(); $query = $this->db->get($this->config->item('table_name')); $count = 0; diff --git a/application/models/Logbookadvanced_model.php b/application/models/Logbookadvanced_model.php index cf7e6952f..97f129268 100644 --- a/application/models/Logbookadvanced_model.php +++ b/application/models/Logbookadvanced_model.php @@ -31,6 +31,59 @@ class Logbookadvanced_model extends CI_Model { } } + if ((isset($searchCriteria['invalid'])) && ($searchCriteria['invalid'] !== '')) { + $id_sql=" + select GROUP_CONCAT(col_primary_key separator ',') as qsoids from ( + select col_primary_key from " . $this->config->item('table_name') . " + join station_profile on " . $this->config->item('table_name') . ".station_id = station_profile.station_id + where station_profile.user_id = ? + and coalesce(col_mode, '') = '' + + union all + + select col_primary_key from " . $this->config->item('table_name') . " + join station_profile on " . $this->config->item('table_name') . ".station_id = station_profile.station_id + where station_profile.user_id = ? + and coalesce(col_band, '') = '' + + union all + + select col_primary_key from " . $this->config->item('table_name') . " + join station_profile on " . $this->config->item('table_name') . ".station_id = station_profile.station_id + where station_profile.user_id = ? + and coalesce(col_call, '') = '' + + union all + + select col_primary_key from " . $this->config->item('table_name') . " + join station_profile on " . $this->config->item('table_name') . ".station_id = station_profile.station_id + where station_profile.user_id = ? + and (col_time_on is null or cast(col_time_on as date) = '1970-01-01') + + union all + + select col_primary_key from " . $this->config->item('table_name') . " + join station_profile on " . $this->config->item('table_name') . ".station_id = station_profile.station_id + where station_profile.user_id = ? + and coalesce(col_cont, '') <> '' + and col_cont NOT IN ('AF', 'AN', 'AS', 'EU', 'NA', 'OC', 'SA') + ) as x"; + + $id_query = $this->db->query($id_sql, [$searchCriteria['user_id'], $searchCriteria['user_id'], $searchCriteria['user_id'], $searchCriteria['user_id'], $searchCriteria['user_id']]); + + $ids2fetch = ''; + + foreach ($id_query->result() as $id) { + $ids2fetch .= ','.$id->qsoids; + } + $ids2fetch = ltrim($ids2fetch, ','); + if ($ids2fetch ?? '' !== '') { + $conditions[] = "qsos.COL_PRIMARY_KEY in (".$ids2fetch.")"; + } else { + $conditions[] = "1=0"; + } + } + if ($searchCriteria['dateFrom'] !== '') { $from = $searchCriteria['dateFrom']; $conditions[] = "date(COL_TIME_ON) >= ?"; @@ -42,7 +95,11 @@ class Logbookadvanced_model extends CI_Model { $binding[] = $to; } if ($searchCriteria['de'] !== 'All') { - $stationids = implode(',', $searchCriteria['de']); + if ($searchCriteria['de'] == '') { + $stationids = 'null'; + } else { + $stationids = implode(',', $searchCriteria['de']); + } $conditions[] = "qsos.station_id in (".$stationids.")"; } if ($searchCriteria['dx'] !== '') { @@ -231,6 +288,19 @@ class Logbookadvanced_model extends CI_Model { $binding[] = '%'.$searchCriteria['contest'].'%'; } + if ($searchCriteria['continent'] !== '') { + if ($searchCriteria['continent'] == 'invalid') { + $conditions[] = "COL_CONT NOT IN ('AF', 'AN', 'AS', 'EU', 'NA', 'OC', 'SA')"; + $conditions[] = "coalesce(COL_CONT, '') <> ''"; + } else if ($searchCriteria['continent'] == 'blank') { + $conditions[] = "coalesce(COL_CONT, '') = ''"; + } + else { + $conditions[] = "COL_CONT = ?"; + $binding[] = $searchCriteria['continent']; + } + } + if (($searchCriteria['ids'] ?? '') !== '') { $conditions[] = "qsos.COL_PRIMARY_KEY in (".implode(",",$searchCriteria['ids']).")"; } @@ -457,6 +527,9 @@ class Logbookadvanced_model extends CI_Model { if (!empty($callbook['qslmgr']) && empty($qso['COL_QSL_VIA'])) { $updatedData['COL_QSL_VIA'] = $callbook['qslmgr']; } + if (!empty($callbook['ituz']) && empty($qso['COL_ITUZ'])) { + $updatedData['COL_ITUZ'] = $callbook['ituz']; + } if (count($updatedData) > 0) { $this->db->where('COL_PRIMARY_KEY', $qsoID); @@ -528,6 +601,8 @@ class Logbookadvanced_model extends CI_Model { case "contest": $column = 'COL_CONTEST_ID'; break; case "lotwsent": $column = 'COL_LOTW_QSL_SENT'; break; case "lotwreceived": $column = 'COL_LOTW_QSL_RCVD'; break; + case "qslmsg": $column = 'COL_QSLMSG'; break; + case "continent": $column = 'COL_CONT'; break; default: return; } @@ -652,6 +727,21 @@ class Logbookadvanced_model extends CI_Model { " SET " . $this->config->item('table_name').".COL_LOTW_QSL_RCVD = ?, " . $this->config->item('table_name').".COL_LOTW_QSLRDATE = now()" . " WHERE " . $this->config->item('table_name').".col_primary_key in ? and station_profile.user_id = ?"; + $query = $this->db->query($sql, array($value, json_decode($ids, true), $this->session->userdata('user_id'))); + + } else if ($column == 'COL_QSLMSG') { + + $sql = "UPDATE ".$this->config->item('table_name')." JOIN station_profile ON ". $this->config->item('table_name').".station_id = station_profile.station_id" . + " SET " . $this->config->item('table_name').".COL_QSLMSG = ? " . + " WHERE " . $this->config->item('table_name').".col_primary_key in ? and station_profile.user_id = ?"; + + $query = $this->db->query($sql, array($value, json_decode($ids, true), $this->session->userdata('user_id'))); + } else if ($column == 'COL_CONT') { + + $sql = "UPDATE ".$this->config->item('table_name')." JOIN station_profile ON ". $this->config->item('table_name').".station_id = station_profile.station_id" . + " SET " . $this->config->item('table_name').".COL_CONT = ? " . + " WHERE " . $this->config->item('table_name').".col_primary_key in ? and station_profile.user_id = ?"; + $query = $this->db->query($sql, array($value, json_decode($ids, true), $this->session->userdata('user_id'))); } else { diff --git a/application/models/Note.php b/application/models/Note.php index 95c11d7f3..8027ab0d5 100644 --- a/application/models/Note.php +++ b/application/models/Note.php @@ -6,8 +6,7 @@ class Note extends CI_Model { if ($api_key == null) { $user_id = $this->session->userdata('user_id'); } else { - $CI =& get_instance(); - $CI->load->model('api_model'); + $this->load->model('api_model'); if (strpos($this->api_model->access($api_key), 'r') !== false) { $this->api_model->update_last_used($api_key); $user_id = $this->api_model->key_userid($api_key); @@ -20,9 +19,9 @@ class Note extends CI_Model { function add() { $data = array( - 'cat' => xss_clean($this->input->post('category')), - 'title' => xss_clean($this->input->post('title')), - 'note' => xss_clean($this->input->post('content')), + 'cat' => $this->input->post('category', TRUE), + 'title' => $this->input->post('title', TRUE), + 'note' => $this->input->post('content', TRUE), 'user_id' => $this->session->userdata('user_id') ); @@ -31,23 +30,37 @@ class Note extends CI_Model { function edit() { $data = array( - 'cat' => xss_clean($this->input->post('category')), - 'title' => xss_clean($this->input->post('title')), - 'note' => xss_clean($this->input->post('content')) + 'cat' => $this->input->post('category', TRUE), + 'title' => $this->input->post('title', TRUE), + 'note' => $this->input->post('content', TRUE) ); - $this->db->where('id', xss_clean($this->input->post('id'))); + $this->db->where('id', $this->input->post('id', TRUE)); $this->db->where('user_id', $this->session->userdata('user_id')); $this->db->update('notes', $data); } function delete($id) { - $this->db->delete('notes', array('id' => xss_clean($id), 'user_id' =>$this->session->userdata('user_id'))); + + $clean_id = $this->security->xss_clean($id); + + if (! is_numeric($clean_id)) { + show_404(); + } + + $this->db->delete('notes', array('id' => $clean_id, 'user_id' => $this->session->userdata('user_id'))); } function view($id) { + + $clean_id = $this->security->xss_clean($id); + + if (! is_numeric($clean_id)) { + show_404(); + } + // Get Note - $this->db->where('id', xss_clean($id)); + $this->db->where('id', $clean_id); $this->db->where('user_id', $this->session->userdata('user_id')); return $this->db->get('notes'); } diff --git a/application/models/Oqrs_model.php b/application/models/Oqrs_model.php index ccc12ef9e..9177a46e4 100644 --- a/application/models/Oqrs_model.php +++ b/application/models/Oqrs_model.php @@ -1,21 +1,23 @@ db->where('oqrs', "1"); return $this->db->get('station_profile'); } function get_station_info($station_id) { - $station_id = $this->security->xss_clean($station_id); + $binding = []; $sql = 'select count(*) as count, min(col_time_on) as mindate, max(col_time_on) as maxdate - from ' . $this->config->item('table_name') . ' where station_id = ' . $station_id; + from ' . $this->config->item('table_name') . ' where station_id = ?'; + $binding[] = $station_id; - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); return $query->row(); } @@ -42,29 +44,22 @@ class Oqrs_model extends CI_Model { return $result; } - - function get_qsos_grouped($callsign){ - - // Populating array with worked band/mode combinations - $worked = $this->getQueryData($station_id, $callsign); - - $result['qsocount'] = count($worked); - $result['qsoarray'] = $resultArray; - - return $result; - } - /* * Builds query depending on what we are searching for */ function getQueryData($station_id, $callsign) { - $station_id = $this->security->xss_clean($station_id); - $callsign = $this->security->xss_clean($callsign); - $sql = 'select lower(col_mode) col_mode, coalesce(col_submode, "") col_submode, col_band from ' . $this->config->item('table_name') . ' where station_id = ' . $station_id . ' and col_call ="' . $callsign . '" and col_prop_mode != "SAT"'; - $sql .= ' union all select lower(col_mode) col_mode, coalesce(col_submode, "") col_submode, "SAT" col_band from ' . $this->config->item('table_name') . ' where station_id = ' . $station_id . ' and col_call ="' . $callsign . '" and col_prop_mode = "SAT"'; + $binding = []; - $query = $this->db->query($sql); + $sql = 'select lower(col_mode) col_mode, coalesce(col_submode, "") col_submode, col_band from ' . $this->config->item('table_name') . ' where station_id = ? and col_call = ? and col_prop_mode != "SAT"'; + $binding[] = $station_id; + $binding[] = $callsign; + + $sql .= ' union all select lower(col_mode) col_mode, coalesce(col_submode, "") col_submode, "SAT" col_band from ' . $this->config->item('table_name') . ' where station_id = ? and col_call = ? and col_prop_mode = "SAT"'; + $binding[] = $station_id; + $binding[] = $callsign; + + $query = $this->db->query($sql, $binding); return $query->result(); } @@ -73,14 +68,18 @@ class Oqrs_model extends CI_Model { * Builds query depending on what we are searching for */ function getQueryDataGrouped($callsign) { - $callsign = $this->security->xss_clean($callsign); - $sql = 'select lower(col_mode) col_mode, coalesce(col_submode, "") col_submode, col_band, station_callsign, station_profile_name, l.station_id from ' . $this->config->item('table_name') . ' as l join station_profile on l.station_id = station_profile.station_id where station_profile.oqrs = "1" and l.col_call ="' . $callsign . '" and l.col_prop_mode != "SAT"'; + + $binding = []; + + $sql = 'select lower(col_mode) col_mode, coalesce(col_submode, "") col_submode, col_band, station_callsign, station_profile_name, l.station_id from ' . $this->config->item('table_name') . ' as l join station_profile on l.station_id = station_profile.station_id where station_profile.oqrs = "1" and l.col_call = ? and l.col_prop_mode != "SAT"'; + $binding[] = $callsign; $sql .= ' union all select lower(col_mode) col_mode, coalesce(col_submode, "") col_submode, "SAT" col_band, station_callsign, station_profile_name, l.station_id from ' . $this->config->item('table_name') . ' l' . - ' join station_profile on l.station_id = station_profile.station_id where station_profile.oqrs = "1" and col_call ="' . $callsign . '" and col_prop_mode = "SAT"'; + ' join station_profile on l.station_id = station_profile.station_id where station_profile.oqrs = "1" and col_call = ? and col_prop_mode = "SAT"'; + $binding[] = $callsign; - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); if ($query) { return $query->result(); @@ -128,15 +127,15 @@ class Oqrs_model extends CI_Model { $qsos = $postdata['qsos']; foreach($qsos as $qso) { $data = array( - 'date' => xss_clean($qso[0]), - 'time' => xss_clean($qso[1]), - 'band' => xss_clean($qso[2]), - 'mode' => xss_clean($qso[3]), - 'requestcallsign' => xss_clean($postdata['callsign']), - 'station_id' => xss_clean($postdata['station_id']), - 'note' => xss_clean($postdata['message']), - 'email' => xss_clean($postdata['email']), - 'qslroute' => xss_clean($postdata['qslroute']), + 'date' => $qso[0], + 'time' => $qso[1], + 'band' => $qso[2], + 'mode' => $qso[3], + 'requestcallsign' => $postdata['callsign'], + 'station_id' => $postdata['station_id'], + 'note' => $postdata['message'], + 'email' => $postdata['email'], + 'qslroute' => $postdata['qslroute'], 'status' => '0', ); @@ -148,8 +147,8 @@ class Oqrs_model extends CI_Model { $data['qsoid'] = $qsoid; $this->db->insert('oqrs', $data); - if(!in_array(xss_clean($postdata['station_id']), $station_ids)){ - array_push($station_ids, xss_clean($postdata['station_id'])); + if(!in_array($postdata['station_id'], $station_ids)){ + array_push($station_ids, $postdata['station_id']); } } @@ -161,15 +160,15 @@ class Oqrs_model extends CI_Model { $qsos = $postdata['qsos']; foreach($qsos as $qso) { $data = array( - 'date' => xss_clean($qso[0]), - 'time' => xss_clean($qso[1]), - 'band' => xss_clean($qso[2]), - 'mode' => xss_clean($qso[3]), - 'requestcallsign' => xss_clean($postdata['callsign']), - 'station_id' => xss_clean($qso[4]), - 'note' => xss_clean($postdata['message']), - 'email' => xss_clean($postdata['email']), - 'qslroute' => xss_clean($postdata['qslroute']), + 'date' => $qso[0], + 'time' => $qso[1], + 'band' => $qso[2], + 'mode' => $qso[3], + 'requestcallsign' => $postdata['callsign'], + 'station_id' => $qso[4], + 'note' => $postdata['message'], + 'email' => $postdata['email'], + 'qslroute' => $postdata['qslroute'], 'status' => '0', ); @@ -182,17 +181,19 @@ class Oqrs_model extends CI_Model { $this->db->insert('oqrs', $data); - if(!in_array(xss_clean($qso[4]), $station_ids)){ - array_push($station_ids, xss_clean($qso[4])); + if(!in_array($qso[4], $station_ids)){ + array_push($station_ids, $qso[4]); } } return $station_ids; } function delete_oqrs_line($id) { - $sql = 'delete from oqrs where id =' . xss_clean($id); + $binding = []; + $sql = 'delete from oqrs where id = ?'; + $binding[] = $id; - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); return true; } @@ -206,14 +207,14 @@ class Oqrs_model extends CI_Model { $qsos = $postdata['qsos']; foreach($qsos as $qso) { $data = array( - 'date' => xss_clean($qso[0]), - 'time' => xss_clean($qso[1]), - 'band' => xss_clean($qso[2]), - 'mode' => xss_clean($qso[3]), - 'requestcallsign' => xss_clean($postdata['callsign']), - 'station_id' => xss_clean($postdata['station_id']), - 'note' => xss_clean($postdata['message']), - 'email' => xss_clean($postdata['email']), + 'date' => $qso[0], + 'time' => $qso[1], + 'band' => $qso[2], + 'mode' => $qso[3], + 'requestcallsign' => $postdata['callsign'], + 'station_id' => $postdata['station_id'], + 'note' => $postdata['message'], + 'email' => $postdata['email'], 'qslroute' => '', 'status' => '1', 'qsoid' => '0', @@ -224,16 +225,28 @@ class Oqrs_model extends CI_Model { } function check_oqrs($qsodata) { + + $binding = []; + $sql = 'select * from ' . $this->config->item('table_name') . - ' where (col_band = \'' . $qsodata['band'] . '\' or col_prop_mode = \'' . $qsodata['band'] . '\') - and col_call = \'' . $qsodata['requestcallsign'] . '\' - and date(col_time_on) = \'' . $qsodata['date'] . '\' - and (col_mode = \'' . $qsodata['mode'] . '\' - or col_submode = \'' . $qsodata['mode'] . '\') - and timediff(time(col_time_on), \'' . $qsodata['time'] . '\') <= 3000 - and station_id = ' . $qsodata['station_id']; + ' where (col_band = ? or col_prop_mode = ?) + and col_call = ? + and date(col_time_on) = ? + and (col_mode = ? + or col_submode = ?) + and timediff(time(col_time_on), ?) <= 3000 + and station_id = ?'; - $query = $this->db->query($sql); + $binding[] = $qsodata['band']; + $binding[] = $qsodata['band']; + $binding[] = $qsodata['requestcallsign']; + $binding[] = $qsodata['date']; + $binding[] = $qsodata['mode']; + $binding[] = $qsodata['mode']; + $binding[] = $qsodata['time']; + $binding[] = $qsodata['station_id']; + + $query = $this->db->query($sql, $binding); if ($result = $query->result()) { $id = 0; @@ -272,15 +285,25 @@ class Oqrs_model extends CI_Model { } function search_log_time_date($time, $date, $band, $mode) { - $sql = 'select * from ' . $this->config->item('table_name') . ' thcv - join station_profile on thcv.station_id = station_profile.station_id where (col_band = \'' . $band . '\' or col_prop_mode = \'' . $band . '\') - and date(col_time_on) = \'' . $date . '\' - and (col_mode = \'' . $mode . '\' - or col_submode = \'' . $mode . '\') - and timediff(time(col_time_on), \'' . $time . '\') <= 3000 - and station_profile.user_id = '. $this->session->userdata('user_id'); - return $this->db->query($sql);; + $binding = []; + + $sql = 'select * from ' . $this->config->item('table_name') . ' thcv + join station_profile on thcv.station_id = station_profile.station_id where (col_band = ? or col_prop_mode = ?) + and date(col_time_on) = ? + and (col_mode = ? + or col_submode = ?) + and timediff(time(col_time_on), ?) <= 3000 + and station_profile.user_id = ?'; + $binding[] = $band; + $binding[] = $band; + $binding[] = $date; + $binding[] = $mode; + $binding[] = $mode; + $binding[] = $time; + $binding[] = $this->session->userdata('user_id'); + + return $this->db->query($sql, $binding); } function mark_oqrs_line_as_done($id) { @@ -294,9 +317,11 @@ class Oqrs_model extends CI_Model { } function getQslInfo($station_id) { - $sql = 'select oqrs_text from station_profile where station_id = ' . $station_id; + $binding = []; + $sql = 'select oqrs_text from station_profile where station_id = ?'; + $binding[] = $station_id; - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); if ($query->num_rows() > 0) { @@ -308,9 +333,11 @@ class Oqrs_model extends CI_Model { } function getOqrsEmailSetting($station_id) { - $sql = 'select oqrs_email from station_profile where station_id = ' . $station_id; + $binding = []; + $sql = 'select oqrs_email from station_profile where station_id = ?'; + $binding[] = $station_id; - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); if ($query->num_rows() > 0) { @@ -366,19 +393,32 @@ class Oqrs_model extends CI_Model { public function oqrs_requests($location_list) { if ($location_list != "") { - $sql = 'SELECT COUNT(*) AS number FROM oqrs JOIN station_profile ON oqrs.station_id = station_profile.station_id WHERE oqrs.station_id IN ('.$location_list.') AND status < 2'; + $sql = 'SELECT status, COUNT(*) AS number FROM oqrs JOIN station_profile ON oqrs.station_id = station_profile.station_id WHERE oqrs.station_id IN ('.$location_list.') GROUP BY status'; $query = $this->db->query($sql); - $row = $query->row(); - return $row->number; + $sum = 0; + $open = 0; + foreach ($query->result_array() as $row) { + $sum += $row['number']; + if ($row['status'] == 1) { + $open += $row['number']; + } + } + if ($open == 0 && $sum == 0) { + return 0; + } else { + return $open."/".$sum; + } } else { return 0; } } function getOqrsStationsFromSlug($logbook_id) { - $sql = 'SELECT station_callsign FROM `station_logbooks_relationship` JOIN `station_profile` ON station_logbooks_relationship.station_location_id = station_profile.station_id WHERE station_profile.oqrs = 1 AND station_logbook_id = '.$logbook_id.';'; + $binding = []; + $sql = 'SELECT station_callsign FROM `station_logbooks_relationship` JOIN `station_profile` ON station_logbooks_relationship.station_location_id = station_profile.station_id WHERE station_profile.oqrs = 1 AND station_logbook_id = ?;'; + $binding[] = $logbook_id; - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); if ($query->num_rows() > 0) { return true; @@ -386,4 +426,19 @@ class Oqrs_model extends CI_Model { return false; } } + + public function oqrs_enabled($slug) { + if ($slug) { + $this->load->model('Logbooks_model'); + $logbook_id = $this->Logbooks_model->public_slug_exists_logbook_id($slug); + if (!empty($this->getOqrsStationsFromSlug($logbook_id))) { + return true; + } else { + return false; + } + } else { + return false; + } + } + } diff --git a/application/models/Publicsearch.php b/application/models/Publicsearch.php index 304f3d11a..80a7d453b 100644 --- a/application/models/Publicsearch.php +++ b/application/models/Publicsearch.php @@ -24,13 +24,17 @@ class Publicsearch extends CI_Model { } function public_search_enabled($slug) { - $this->db->select('public_search'); - $this->db->where('public_slug', $slug); - $query = $this->db->get('station_logbooks'); - if ($query->result_array()[0]['public_search'] == 1) { - return true; + if ($slug) { + $this->db->select('public_search'); + $this->db->where('public_slug', $slug); + $query = $this->db->get('station_logbooks'); + if ($query->result_array()[0]['public_search'] == 1) { + return true; + } + return false; + } else { + return false; } - return false; } } diff --git a/application/models/Rac.php b/application/models/Rac.php index 1422cd113..08d9c3bb7 100644 --- a/application/models/Rac.php +++ b/application/models/Rac.php @@ -23,7 +23,7 @@ class rac extends CI_Model { $states = array(); // Used for keeping track of which states that are not worked - $qsl = $this->genfunctions->gen_qsl_from_postdata($postdata); + $qsl = $this->genfunctions->gen_qsl_from_postdata($postdata); foreach ($stateArray as $state) { // Generating array for use in the table $states[$state]['count'] = 0; // Inits each state's count @@ -86,11 +86,9 @@ class rac extends CI_Model { /* * Function gets worked and confirmed summary on each band on the active stationprofile */ - function get_rac_summary($bands, $postdata) - { - $CI =& get_instance(); - $CI->load->model('logbooks_model'); - $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + function get_rac_summary($bands, $postdata) { + $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; @@ -114,14 +112,15 @@ class rac extends CI_Model { return $racSummary; } - function getSummaryByBand($band, $postdata, $location_list) - { + function getSummaryByBand($band, $postdata, $location_list) { + $bindings=[]; $sql = "SELECT count(distinct thcv.col_state) as count FROM " . $this->config->item('table_name') . " thcv"; $sql .= " where station_id in (" . $location_list . ")"; if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode ='" . $band . "'"; + $sql .= " and thcv.col_prop_mode = ?"; + $bindings[]=$band; } else if ($band == 'All') { $this->load->model('bands'); @@ -133,28 +132,32 @@ class rac extends CI_Model { " and thcv.col_prop_mode !='SAT'"; } else { $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band ='" . $band . "'"; + $sql .= " and thcv.col_band = ?"; + $bindings[]=$band; } if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= $this->addStateToQuery(); - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } - function getSummaryByBandConfirmed($band, $postdata, $location_list) - { + function getSummaryByBandConfirmed($band, $postdata, $location_list) { + $bindings=[]; $sql = "SELECT count(distinct thcv.col_state) as count FROM " . $this->config->item('table_name') . " thcv"; $sql .= " where station_id in (" . $location_list . ")"; if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode ='" . $band . "'"; + $sql .= " and thcv.col_prop_mode = ?"; + $bindings[]=$band; } else if ($band == 'All') { $this->load->model('bands'); @@ -166,18 +169,21 @@ class rac extends CI_Model { " and thcv.col_prop_mode !='SAT'"; } else { $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band ='" . $band . "'"; + $sql .= " and thcv.col_band = ?"; + $bindings[]=$band; } if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= $this->genfunctions->addQslToQuery($postdata); $sql .= $this->addStateToQuery(); - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } @@ -187,26 +193,31 @@ class rac extends CI_Model { * $postdata contains data from the form, in this case Lotw or QSL are used */ function getracWorked($location_list, $band, $postdata) { + $bindings=[]; $sql = "SELECT distinct col_state FROM " . $this->config->item('table_name') . " thcv where station_id in (" . $location_list . ")"; if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= $this->addStateToQuery(); - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); $sql .= " and not exists (select 1 from ". $this->config->item('table_name') . " where station_id in (". $location_list . ")" . " and col_state = thcv.col_state"; if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); $sql .= $this->genfunctions->addQslToQuery($postdata); @@ -214,7 +225,7 @@ class rac extends CI_Model { $sql .= ")"; - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } @@ -224,20 +235,23 @@ class rac extends CI_Model { * $postdata contains data from the form, in this case Lotw or QSL are used */ function getracConfirmed($location_list, $band, $postdata) { + $bindings=[]; $sql = "SELECT distinct col_state FROM " . $this->config->item('table_name') . " thcv where station_id in (" . $location_list . ")"; if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= $this->addStateToQuery(); - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); $sql .= $this->genfunctions->addQslToQuery($postdata); - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } diff --git a/application/models/Stations.php b/application/models/Stations.php index 509b1beac..a2c99d26c 100644 --- a/application/models/Stations.php +++ b/application/models/Stations.php @@ -114,7 +114,7 @@ class Stations extends CI_Model { 'station_pota' => xss_clean(strtoupper($this->input->post('pota', true))), 'station_sig' => xss_clean(strtoupper($this->input->post('sig', true))), 'station_sig_info' => xss_clean(strtoupper($this->input->post('sig_info', true))), - 'station_callsign' => xss_clean($this->input->post('station_callsign', true)), + 'station_callsign' => xss_clean(strtoupper($this->input->post('station_callsign', true))), 'station_power' => is_numeric(xss_clean($this->input->post('station_power', true))) ? xss_clean($this->input->post('station_power', true)) : NULL, 'station_dxcc' => xss_clean($this->input->post('dxcc', true)), 'station_cnty' => $county, @@ -168,15 +168,15 @@ class Stations extends CI_Model { $data = array( 'station_profile_name' => xss_clean($this->input->post('station_profile_name', true)), - 'station_gridsquare' => xss_clean($this->input->post('gridsquare', true)), + 'station_gridsquare' => xss_clean(strtoupper($this->input->post('gridsquare', true))), 'station_city' => xss_clean($this->input->post('city', true)), - 'station_iota' => xss_clean($this->input->post('iota', true)), - 'station_sota' => xss_clean($this->input->post('sota', true)), - 'station_wwff' => xss_clean($this->input->post('wwff', true)), - 'station_pota' => xss_clean($this->input->post('pota', true)), - 'station_sig' => xss_clean($this->input->post('sig', true)), - 'station_sig_info' => xss_clean($this->input->post('sig_info', true)), - 'station_callsign' => xss_clean($this->input->post('station_callsign', true)), + 'station_iota' => xss_clean(strtoupper($this->input->post('iota', true))), + 'station_sota' => xss_clean(strtoupper($this->input->post('sota', true))), + 'station_wwff' => xss_clean(strtoupper($this->input->post('wwff', true))), + 'station_pota' => xss_clean(strtoupper($this->input->post('pota', true))), + 'station_sig' => xss_clean(strtoupper($this->input->post('sig', true))), + 'station_sig_info' => xss_clean(strtoupper($this->input->post('sig_info', true))), + 'station_callsign' => xss_clean(strtoupper($this->input->post('station_callsign', true))), 'station_power' => is_numeric(xss_clean($this->input->post('station_power', true))) ? xss_clean($this->input->post('station_power', true)) : NULL, 'station_dxcc' => xss_clean($this->input->post('dxcc', true)), 'station_cnty' => $county, diff --git a/application/models/Timeline_model.php b/application/models/Timeline_model.php index fb92cd1a5..703f76ba5 100644 --- a/application/models/Timeline_model.php +++ b/application/models/Timeline_model.php @@ -1,373 +1,429 @@ load->model('logbooks_model'); - $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); +class Timeline_model extends CI_Model { + function get_timeline($band, $mode, $propmode, $award, $qsl, $lotw, $eqsl, $clublog) { + $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; - } + if (!$logbooks_locations_array) { + return null; + } $location_list = "'".implode("','",$logbooks_locations_array)."'"; - switch ($award) { - case 'dxcc': $result = $this->get_timeline_dxcc($band, $mode, $location_list, $qsl, $lotw, $eqsl); break; - case 'was': $result = $this->get_timeline_was($band, $mode, $location_list, $qsl, $lotw, $eqsl); break; - case 'iota': $result = $this->get_timeline_iota($band, $mode, $location_list, $qsl, $lotw, $eqsl); break; - case 'waz': $result = $this->get_timeline_waz($band, $mode, $location_list, $qsl, $lotw, $eqsl); break; - case 'vucc': $result = $this->get_timeline_vucc($band, $mode, $location_list, $qsl, $lotw, $eqsl); break; - case 'waja': $result = $this->get_timeline_waja($band, $mode, $location_list, $qsl, $lotw, $eqsl); break; - } + switch ($award) { + case 'dxcc': $result = $this->get_timeline_dxcc($band, $mode, $propmode, $location_list, $qsl, $lotw, $eqsl, $clublog); break; + case 'was': $result = $this->get_timeline_was($band, $mode, $propmode, $location_list, $qsl, $lotw, $eqsl, $clublog); break; + case 'iota': $result = $this->get_timeline_iota($band, $mode, $propmode, $location_list, $qsl, $lotw, $eqsl, $clublog); break; + case 'waz': $result = $this->get_timeline_waz($band, $mode, $propmode, $location_list, $qsl, $lotw, $eqsl, $clublog); break; + case 'vucc': $result = $this->get_timeline_vucc($band, $mode, $propmode, $location_list, $qsl, $lotw, $eqsl, $clublog); break; + case 'waja': $result = $this->get_timeline_waja($band, $mode, $propmode, $location_list, $qsl, $lotw, $eqsl, $clublog); break; + } - return $result; - } + return $result; + } - public function get_timeline_dxcc($band, $mode, $location_list, $qsl, $lotw, $eqsl) { - $sql = "select min(date(COL_TIME_ON)) date, prefix, col_country, end, adif from " - .$this->config->item('table_name'). " thcv - join dxcc_entities on thcv.col_dxcc = dxcc_entities.adif - where station_id in (" . $location_list . ")"; + public function get_timeline_dxcc($band, $mode, $propmode, $location_list, $qsl, $lotw, $eqsl, $clublog) { + $binding = []; + $sql = "select min(date(COL_TIME_ON)) date, prefix, col_country, end, adif from " + .$this->config->item('table_name'). " thcv + join dxcc_entities on thcv.col_dxcc = dxcc_entities.adif + where station_id in (" . $location_list . ")"; - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } - else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } + if ($band == 'SAT') { // Left for compatibility reasons + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $sql .= " and col_band = ?"; + $binding[] = $band; + } + if ( $propmode == 'NoSAT' ) { // All without SAT + $sql .= " and col_prop_mode !='SAT'"; + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $sql .= " and col_prop_mode = ?"; + $binding[] = $propmode; + } + } - if ($mode != 'All') { - $sql .= " and col_mode ='" . $mode . "'"; - } + if ($mode != 'All') { + $sql .= " and col_mode = ?"; + $binding[] = $mode; + } - $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl); + $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl, $clublog); - $sql .= " group by col_dxcc, col_country - order by date desc"; + $sql .= " group by col_dxcc, col_country + order by date desc"; - $query = $this->db->query($sql); + $query = $this->db->query($sql, $binding); - return $query->result(); - } + return $query->result(); + } - public function get_timeline_waja($band, $mode, $location_list, $qsl, $lotw, $eqsl) { - $sql = "select min(date(COL_TIME_ON)) date, col_state from " - .$this->config->item('table_name'). " thcv - where station_id in (" . $location_list . ")"; + public function get_timeline_waja($band, $mode, $propmode, $location_list, $qsl, $lotw, $eqsl, $clublog) { + $binding = []; + $sql = "select min(date(COL_TIME_ON)) date, col_state from " + .$this->config->item('table_name'). " thcv + where station_id in (" . $location_list . ")"; - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } - else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } + if ($band == 'SAT') { // Left for compatibility reasons + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $sql .= " and col_band = ?"; + $binding[] = $band; + } + if ( $propmode == 'NoSAT' ) { // All without SAT + $sql .= " and col_prop_mode !='SAT'"; + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $sql .= " and col_prop_mode = ?"; + $binding[] = $propmode; + } + } - if ($mode != 'All') { - $sql .= " and col_mode ='" . $mode . "'"; - } - $sql .= " and COL_DXCC = '339' and trim(coalesce(COL_STATE,'')) != '' "; + if ($mode != 'All') { + $sql .= " and col_mode = ?"; + $binding[] = $mode; + } - $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl); + $sql .= " and COL_DXCC = '339' and trim(coalesce(COL_STATE,'')) != '' "; - $sql .= " group by col_state - order by date desc"; + $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl, $clublog); - $query = $this->db->query($sql); + $sql .= " group by col_state + order by date desc"; - return $query->result(); - } + $query = $this->db->query($sql, $binding); - public function get_timeline_was($band, $mode, $location_list, $qsl, $lotw, $eqsl) { - $sql = "select min(date(COL_TIME_ON)) date, col_state from " - .$this->config->item('table_name'). " thcv - where station_id in (" . $location_list . ")"; + return $query->result(); + } - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } - else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } + public function get_timeline_was($band, $mode, $propmode, $location_list, $qsl, $lotw, $eqsl, $clublog) { + $binding = []; + $sql = "select min(date(COL_TIME_ON)) date, col_state from " + .$this->config->item('table_name'). " thcv + where station_id in (" . $location_list . ")"; - if ($mode != 'All') { - $sql .= " and col_mode ='" . $mode . "'"; - } + if ($band == 'SAT') { // Left for compatibility reasons + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $sql .= " and col_band = ?"; + $binding[] = $band; + } + if ( $propmode == 'NoSAT' ) { // All without SAT + $sql .= " and col_prop_mode !='SAT'"; + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $sql .= " and col_prop_mode = ?"; + $binding[] = $propmode; + } + } - $sql .= " and COL_DXCC in ('291', '6', '110')"; - $sql .= " and COL_STATE in ('AK','AL','AR','AZ','CA','CO','CT','DE','FL','GA','HI','IA','ID','IL','IN','KS','KY','LA','MA','MD','ME','MI','MN','MO','MS','MT','NC','ND','NE','NH','NJ','NM','NV','NY','OH','OK','OR','PA','RI','SC','SD','TN','TX','UT','VA','VT','WA','WI','WV','WY')"; + if ($mode != 'All') { + $sql .= " and col_mode = ?"; + $binding[] = $mode; + } - $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl); + $sql .= " and COL_DXCC in ('291', '6', '110')"; + $sql .= " and COL_STATE in ('AK','AL','AR','AZ','CA','CO','CT','DE','FL','GA','HI','IA','ID','IL','IN','KS','KY','LA','MA','MD','ME','MI','MN','MO','MS','MT','NC','ND','NE','NH','NJ','NM','NV','NY','OH','OK','OR','PA','RI','SC','SD','TN','TX','UT','VA','VT','WA','WI','WV','WY')"; - $sql .= " group by col_state - order by date desc"; + $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl, $clublog); - $query = $this->db->query($sql); + $sql .= " group by col_state + order by date desc"; - return $query->result(); - } + $query = $this->db->query($sql, $binding); - public function get_timeline_iota($band, $mode, $location_list, $qsl, $lotw, $eqsl) { - $sql = "select min(date(COL_TIME_ON)) date, col_iota, name, prefix from " - .$this->config->item('table_name'). " thcv - join iota on thcv.col_iota = iota.tag - where station_id in (" . $location_list . ")"; + return $query->result(); + } - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } - else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } + public function get_timeline_iota($band, $mode, $propmode, $location_list, $qsl, $lotw, $eqsl, $clublog) { + $binding = []; + $sql = "select min(date(COL_TIME_ON)) date, col_iota, name, prefix from " + .$this->config->item('table_name'). " thcv + join iota on thcv.col_iota = iota.tag + where station_id in (" . $location_list . ")"; - if ($mode != 'All') { - $sql .= " and col_mode ='" . $mode . "'"; - } + if ($band == 'SAT') { // Left for compatibility reasons + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $sql .= " and col_band = ?"; + $binding[] = $band; + } + if ( $propmode == 'NoSAT' ) { // All without SAT + $sql .= " and col_prop_mode !='SAT'"; + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $sql .= " and col_prop_mode = ?"; + $binding[] = $propmode; + } + } - $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl); - $sql .= " and col_iota <> '' group by col_iota, name, prefix - order by date desc"; + if ($mode != 'All') { + $sql .= " and col_mode = ?"; + $binding[] = $mode; + } - $query = $this->db->query($sql); + $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl, $clublog); - return $query->result(); - } + $sql .= " and col_iota <> '' group by col_iota, name, prefix + order by date desc"; - public function get_timeline_waz($band, $mode, $location_list, $qsl, $lotw, $eqsl) { - $sql = "select min(date(COL_TIME_ON)) date, col_cqz from " - .$this->config->item('table_name'). " thcv - where station_id in (" . $location_list . ")"; + $query = $this->db->query($sql, $binding); - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } - else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } + return $query->result(); + } - if ($mode != 'All') { - $sql .= " and col_mode ='" . $mode . "'"; - } + public function get_timeline_waz($band, $mode, $propmode, $location_list, $qsl, $lotw, $eqsl, $clublog) { + $binding = []; + $sql = "select min(date(COL_TIME_ON)) date, col_cqz from " + .$this->config->item('table_name'). " thcv + where station_id in (" . $location_list . ")"; - $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl); + if ($band == 'SAT') { // Left for compatibility reasons + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $sql .= " and col_band = ?"; + $binding[] = $band; + } + if ( $propmode == 'NoSAT' ) { // All without SAT + $sql .= " and col_prop_mode !='SAT'"; + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $sql .= " and col_prop_mode = ?"; + $binding[] = $propmode; + } + } - $sql .= " and col_cqz <> '' group by col_cqz - order by date desc"; - $query = $this->db->query($sql); + if ($mode != 'All') { + $sql .= " and col_mode = ?"; + $binding[] = $mode; + } + + $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl, $clublog); + + $sql .= " and col_cqz <> '' group by col_cqz + order by date desc"; + + $query = $this->db->query($sql, $binding); + + return $query->result(); + } - return $query->result(); - } - // Adds confirmation to query - function addQslToQuery($qsl, $lotw, $eqsl) { + function addQslToQuery($qsl, $lotw, $eqsl, $clublog) { $sql = ''; - if ($lotw == 1 and $qsl == 0 and $eqsl == 0) { - $sql .= " and col_lotw_qsl_rcvd = 'Y'"; - } + if ( (($lotw ?? 0) != 0) || (($qsl ?? 0) != 0) || (($eqsl ?? 0) != 0) || (($clublog ?? 0) != 0) ) { + $sql .= 'and ('; - if ($qsl == 1 and $lotw == 0 and $eqsl == 0) { - $sql .= " and col_qsl_rcvd = 'Y'"; - } + if ($lotw ?? 0 == 1) { + $sql .= "col_lotw_qsl_rcvd = 'Y' or"; + } - if ($eqsl == 1 and $lotw == 0 and $qsl == 0) { - $sql .= " and col_eqsl_qsl_rcvd = 'Y'"; - } + if ($qsl ?? 0 == 1) { + $sql .= " col_qsl_rcvd = 'Y' or"; + } - if ($lotw == 1 and $qsl == 1 and $eqsl == 0) { - $sql .= " and (col_lotw_qsl_rcvd = 'Y' or col_qsl_rcvd = 'Y')"; - } + if ($eqsl ?? 0 == 1) { + $sql .= " col_eqsl_qsl_rcvd = 'Y' or"; + } - if ($qsl == 1 and $lotw == 0 and $eqsl == 1) { - $sql .= " and (col_qsl_rcvd = 'Y' or col_eqsl_qsl_rcvd = 'Y')"; - } - - if ($eqsl == 1 and $lotw == 1 and $qsl == 0) { - $sql .= " and (col_eqsl_qsl_rcvd = 'Y' or col_lotw_qsl_rcvd = 'Y')"; - } - - if ($qsl == 1 && $lotw == 1 && $eqsl == 1) { - $sql .= " and (col_qsl_rcvd = 'Y' or col_lotw_qsl_rcvd = 'Y' or col_eqsl_qsl_rcvd = 'Y')"; - } + if ($clublog ?? 0 == 1) { + $sql .= " col_clublog_qso_download_status = 'Y' or"; + } + $sql.=' 1=0)'; + } return $sql; } - public function get_timeline_vucc3($band, $mode, $location_list, $qsl, $lotw, $eqsl) { - // $sql = "select min(date(COL_TIME_ON)) date, col_gridsquare from " - $sql = "select min(date(COL_TIME_ON)) date, upper(substring(col_gridsquare, 1, 4)) gridsquare from " - .$this->config->item('table_name'). " thcv - where station_id in (" . $location_list . ")"; - - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } - else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } - - if ($mode != 'All') { - $sql .= " and col_mode ='" . $mode . "'"; - } - - $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl); - - $sql .= " and col_gridsquare <> '' group by upper(substring(col_gridsquare, 1, 4)) - order by date desc"; - - $query = $this->db->query($sql); - $this->vucc_shit($band, $mode, $location_list, $qsl, $lotw, $eqsl); - - return $query->result(); - } - - public function timeline_qso_details($querystring, $band, $mode, $type){ - $CI =& get_instance(); - $CI->load->model('logbooks_model'); - $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + public function timeline_qso_details($querystring, $band, $propmode, $mode, $type){ + $this->load->model('logbooks_model'); + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); $this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id'); $this->db->join('dxcc_entities', 'dxcc_entities.adif = '.$this->config->item('table_name').'.COL_DXCC', 'left outer'); $this->db->join('lotw_users', 'lotw_users.callsign = '.$this->config->item('table_name').'.col_call', 'left outer'); - if ($band != 'All') { - if ($band == 'SAT') { - $this->db->where('col_prop_mode', $band); - } else { - $this->db->where('COL_PROP_MODE !=', 'SAT'); - $this->db->where('col_band', $band); - } - } + if ($band == 'SAT') { // Left for compatibility reasons + $this->db->where('col_prop_mode', $band); + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $this->db->where('col_band', $band); + } + if ( $propmode == 'NoSAT' ) { // All without SAT + $this->db->where('col_prop_mode !=', 'SAT'); + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + $this->db->group_start(); + $this->db->where('trim(col_prop_mode)', ''); + $this->db->or_where('col_prop_mode is null'); + $this->db->group_end(); + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $this->db->where('col_prop_mode', $propmode); + } + } - if ($mode != 'All') { - $this->db->where('col_mode', $mode); - } + if ($mode != 'All') { + $this->db->where('col_mode', $mode); + } - $this->db->where_in('station_profile.station_id', $logbooks_locations_array); + $this->db->where_in('station_profile.station_id', $logbooks_locations_array); - switch($type) { - case 'dxcc': $this->db->where('COL_DXCC', $querystring); break; - case 'was': $this->db->where('COL_STATE', $querystring); break; - case 'iota': $this->db->where('COL_IOTA', $querystring); break; - case 'waz': $this->db->where('COL_CQZ', $querystring); break; - case 'vucc': $this->db->group_start(); $this->db->like('COL_GRIDSQUARE', $querystring); $this->db->or_like('COL_VUCC_GRIDS',$querystring); $this->db->group_end();break; - case 'waja': $this->db->where('COL_STATE', $querystring); break; - } - $this->db->order_by('COL_TIME_ON', 'DESC'); + switch($type) { + case 'dxcc': $this->db->where('COL_DXCC', $querystring); break; + case 'was': $this->db->where('COL_STATE', $querystring); $this->db->where("COL_DXCC in ('291', '6', '110')"); break; + case 'iota': $this->db->where('COL_IOTA', $querystring); break; + case 'waz': $this->db->where('COL_CQZ', $querystring); break; + case 'vucc': $this->db->group_start(); $this->db->like('COL_GRIDSQUARE', $querystring); $this->db->or_like('COL_VUCC_GRIDS',$querystring); $this->db->group_end();break; + case 'waja': $this->db->where('COL_STATE', $querystring); $this->db->where('COL_DXCC','339'); break; + } + $this->db->order_by('COL_TIME_ON', 'DESC'); - return $this->db->get($this->config->item('table_name')); - } + return $this->db->get($this->config->item('table_name')); + } - public function get_timeline_vucc($band, $mode, $location_list, $qsl, $lotw, $eqsl) { - $timeline = array(); + public function get_timeline_vucc($band, $mode, $propmode, $location_list, $qsl, $lotw, $eqsl, $clublog) { + $timeline = array(); - $col_gridsquare = $this->get_gridsquare($band, $mode, $location_list, $qsl, $lotw, $eqsl); + $col_gridsquare = $this->get_gridsquare($band, $mode, $propmode, $location_list, $qsl, $lotw, $eqsl, $clublog); - foreach ($col_gridsquare as $grid) { - $timeline[] = array( - 'gridsquare' => $grid->gridsquare, - 'date' => $grid->date); - } - - $col_vucc_grids = $this->get_vucc_grids($band, $mode, $location_list, $qsl, $lotw, $eqsl); - - foreach ($col_vucc_grids as $gridSplit) { - $grids = explode(",", $gridSplit->gridsquare); - foreach($grids as $key) { - $grid_four = strtoupper(substr(trim($key),0,4)); - if (!array_search($grid_four, array_column($timeline, 'gridsquare'))) { - $timeline[] = array( - 'gridsquare' => $grid_four, - 'date' => $gridSplit->date); - } - } - } - usort($timeline, function($a, $b) { - return $b['date'] <=> $a['date']; - }); + foreach ($col_gridsquare as $grid) { + $timeline[] = array( + 'gridsquare' => $grid->gridsquare, + 'date' => $grid->date); + } - return $timeline; - } + $col_vucc_grids = $this->get_vucc_grids($band, $mode, $propmode, $location_list, $qsl, $lotw, $eqsl, $clublog); - public function get_gridsquare($band, $mode, $location_list, $qsl, $lotw, $eqsl) { - // $sql = "select min(date(COL_TIME_ON)) date, col_gridsquare from " - $sql = "select min(COL_TIME_ON) date, upper(substring(col_gridsquare, 1, 4)) gridsquare from " - .$this->config->item('table_name'). " thcv - where station_id in (" . $location_list . ")"; + foreach ($col_vucc_grids as $gridSplit) { + $grids = explode(",", $gridSplit->gridsquare); + foreach($grids as $key) { + $grid_four = strtoupper(substr(trim($key),0,4)); + if (!array_search($grid_four, array_column($timeline, 'gridsquare'))) { + $timeline[] = array( + 'gridsquare' => $grid_four, + 'date' => $gridSplit->date); + } + } + } + usort($timeline, function($a, $b) { + return $b['date'] <=> $a['date']; + }); - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } - else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } + return $timeline; + } - if ($mode != 'All') { - $sql .= " and col_mode ='" . $mode . "'"; - } + public function get_gridsquare($band, $mode, $propmode, $location_list, $qsl, $lotw, $eqsl, $clublog) { + $binding = []; + $sql = "select min(COL_TIME_ON) date, upper(substring(col_gridsquare, 1, 4)) gridsquare from " + .$this->config->item('table_name'). " thcv + where station_id in (" . $location_list . ")"; - $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl); + if ($band == 'SAT') { // Left for compatibility reasons + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $sql .= " and col_band = ?"; + $binding[] = $band; + } + if ( $propmode == 'NoSAT' ) { // All without SAT + $sql .= " and col_prop_mode !='SAT'"; + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $sql .= " and col_prop_mode = ?"; + $binding[] = $propmode; + } + } - $sql .= " and col_gridsquare <> '' group by upper(substring(col_gridsquare, 1, 4)) - order by date desc"; + if ($mode != 'All') { + $sql .= " and col_mode = ?"; + $binding[] = $mode; + } - $query = $this->db->query($sql); + $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl, $clublog); - return $query->result(); - } + $sql .= " and col_gridsquare <> '' group by upper(substring(col_gridsquare, 1, 4)) + order by date desc"; - public function get_vucc_grids($band, $mode, $location_list, $qsl, $lotw, $eqsl) { - // $sql = "select min(date(COL_TIME_ON)) date, col_gridsquare from " - $sql = "select COL_TIME_ON as date, upper(col_vucc_grids) gridsquare from " - .$this->config->item('table_name'). " thcv - where station_id in (" . $location_list . ")"; + $query = $this->db->query($sql, $binding); - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; - } - else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; - } - } + return $query->result(); + } - if ($mode != 'All') { - $sql .= " and col_mode ='" . $mode . "'"; - } + public function get_vucc_grids($band, $mode, $propmode, $location_list, $qsl, $lotw, $eqsl, $clublog) { + $binding = []; + $sql = "select COL_TIME_ON as date, upper(col_vucc_grids) gridsquare from " + .$this->config->item('table_name'). " thcv + where station_id in (" . $location_list . ")"; - $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl); + if ($band == 'SAT') { // Left for compatibility reasons + $sql .= " and col_prop_mode = ?"; + $binding[] = $band; + } else { // Not SAT + if ($band != 'All') { // Band set? Take care of it + $sql .= " and col_band = ?"; + $binding[] = $band; + } + if ( $propmode == 'NoSAT' ) { // All without SAT + $sql .= " and col_prop_mode !='SAT'"; + } elseif ($propmode == 'None') { // Empty Propmode + $sql .= " and (trim(col_prop_mode)='' or col_prop_mode is null)"; + } elseif ($propmode == 'All') { // Dont care for propmode + ; // No Prop-Filter + } else { // Propmode set, take care of it + $sql .= " and col_prop_mode = ?"; + $binding[] = $propmode; + } + } - $sql .= " and col_vucc_grids <> ''"; + if ($mode != 'All') { + $sql .= " and col_mode = ?"; + $binding[] = $mode; + } - $query = $this->db->query($sql); + $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl, $clublog); + + $sql .= " and col_vucc_grids <> ''"; + + $query = $this->db->query($sql, $binding); + + return $query->result(); + } - return $query->result(); - } - } diff --git a/application/models/User_model.php b/application/models/User_model.php index 033d0e857..abc84878f 100644 --- a/application/models/User_model.php +++ b/application/models/User_model.php @@ -87,6 +87,17 @@ class User_Model extends CI_Model { return $r->user_email; } + function get_user_amsat_status_upload_by_id($id) { + + $clean_id = $this->security->xss_clean($id); + + $this->db->where('user_id', $clean_id); + $query = $this->db->get($this->config->item('auth_table')); + + $r = $query->row(); + return $r->user_amsat_status_upload; + } + function hasQrzKey($user_id) { $this->db->where('station_profile.qrzapikey is not null'); $this->db->where('station_profile.qrzapikey != ""'); @@ -407,12 +418,12 @@ class User_Model extends CI_Model { // FUNCTION: void update_session() // Updates a user's login session after they've logged in // TODO: This should return bool TRUE/FALSE or 0/1 - function update_session($id, $u = null) { + function update_session($id, $u = null, $impersonate = false) { if ($u == null) { $u = $this->get_by_id($id); } - + $userdata = array( 'user_id' => $u->row()->user_id, 'user_name' => $u->row()->user_name, @@ -452,16 +463,23 @@ class User_Model extends CI_Model { 'active_station_logbook' => $u->row()->active_station_logbook, 'user_language' => isset($u->row()->user_language) ? $u->row()->user_language: 'english', 'isWinkeyEnabled' => $u->row()->winkey, - 'hasQrzKey' => $this->hasQrzKey($u->row()->user_id) + 'hasQrzKey' => $this->hasQrzKey($u->row()->user_id), + 'impersonate' => $this->session->userdata('impersonate') ?? false, ); - + foreach (array_keys($this->frequency->defaultFrequencies) as $band) { - $qrg_unit = $this->session->userdata("qrgunit_$band") ?? ($this->user_options_model->get_options('frequency', array('option_name' => 'unit', 'option_key' => $band))->row()->option_value ?? ''); + $qrg_unit = $this->session->userdata("qrgunit_$band") ?? ($this->user_options_model->get_options('frequency', array('option_name' => 'unit', 'option_key' => $band), $u->row()->user_id)->row()->option_value ?? ''); if ($qrg_unit !== '') { $userdata['qrgunit_'.$band] = $qrg_unit; + } else { + $userdata['qrgunit_'.$band] = $this->frequency->defaultFrequencies[$band]['UNIT']; } } - + + if ($impersonate) { + $userdata['impersonate'] = true; + } + $this->session->set_userdata($userdata); } @@ -475,6 +493,7 @@ class User_Model extends CI_Model { $user_id = $this->session->userdata('user_id'); $user_type = $this->session->userdata('user_type'); $user_hash = $this->session->userdata('user_hash'); + $impersonate = $this->session->userdata('impersonate'); if(ENVIRONMENT != 'maintenance') { if($this->_auth($user_id."-".$user_type, $user_hash)) { @@ -486,7 +505,7 @@ class User_Model extends CI_Model { return 0; } } else { // handle the maintenance mode and kick out user on page reload if not an admin - if($user_type == '99') { + if($user_type == '99' || $impersonate === true) { if($this->_auth($user_id."-".$user_type, $user_hash)) { // Freshen the session $this->update_session($user_id, $u); @@ -559,16 +578,6 @@ class User_Model extends CI_Model { } } - // FUNCTION: bool set($username, $data) - // Updates a user's record in the database - // TODO: This returns TRUE/1 no matter what at the moment - should - // TODO: return TRUE/FALSE or 0/1 depending on success/failure - function set($username, $data) { - $this->db->where('user_name', $username); - $this->db->update($this->config->item('auth_table', $data)); - return 1; - } - // FUNCTION: object users() // Returns a list of users with additional counts function users() { diff --git a/application/models/Wab.php b/application/models/Wab.php index ae8f355c0..0e1b2856b 100644 --- a/application/models/Wab.php +++ b/application/models/Wab.php @@ -81,24 +81,28 @@ class Wab extends CI_Model { * $postdata contains data from the form, in this case Lotw or QSL are used */ function getWabWorked($location_list, $postdata) { // $mode, $sat, $orbit) { + $bindings=[]; $sql = "SELECT distinct col_sig_info FROM " . $this->config->item('table_name') . " thcv where station_id in (" . $location_list . ") and col_sig = 'WAB' and coalesce(col_sig_info, '') <> ''"; - $sql .= $this->genfunctions->addBandToQuery($postdata['band']); + $sql .= $this->genfunctions->addBandToQuery($postdata['band'],$bindings); if ($postdata['band'] == 'SAT') { if ($postdata['sat'] != 'All') { - $sql .= " and col_sat_name ='" . $postdata['sat'] . "'"; + $sql .= " and col_sat_name = ?"; + $bindings[]=$postdata['sat']; } } if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } - $sql .= $this->addOrbitToQuery($postdata['orbit']); + $sql .= $this->addOrbitToQuery($postdata['orbit'],$bindings); - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } @@ -108,35 +112,40 @@ class Wab extends CI_Model { * $postdata contains data from the form, in this case Lotw or QSL are used */ function getWabConfirmed($location_list, $postdata) { // $mode, $qsl, $lotw, $eqsl, $qrz, $clublog, $sat, $orbit) { + $bindings=[]; $sql = "SELECT distinct col_sig_info FROM " . $this->config->item('table_name') . " thcv where station_id in (" . $location_list . ") and col_sig = 'WAB' and coalesce(col_sig_info, '') <> ''"; - $sql .= $this->genfunctions->addBandToQuery($postdata['band']); + $sql .= $this->genfunctions->addBandToQuery($postdata['band'],$bindings); if ($postdata['band'] == 'SAT') { if ($postdata['sat'] != 'All') { - $sql .= " and col_sat_name ='" . $postdata['sat'] . "'"; + $sql .= " and col_sat_name = ?"; + $bindings[]=$postdata['sat']; } } if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } - $sql .= $this->addOrbitToQuery($postdata['orbit']); + $sql .= $this->addOrbitToQuery($postdata['orbit'],$bindings); $sql .= $this->genfunctions->addQslToQuery($postdata); - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } // Adds orbit type to query - function addOrbitToQuery($orbit) { + function addOrbitToQuery($orbit,&$binding) { $sql = ''; if ($orbit != 'All') { - $sql .= ' AND satellite.orbit = \''.$orbit.'\''; + $sql .= ' AND satellite.orbit = ?'; + $binding[]=$orbit; } return $sql; diff --git a/application/models/Wac.php b/application/models/Wac.php new file mode 100644 index 000000000..312133d53 --- /dev/null +++ b/application/models/Wac.php @@ -0,0 +1,274 @@ +load->library('Genfunctions'); + } + + function get_wac_array($bands, $postdata, $location_list) { + $wac = array(); + + foreach ($this->validContinents as $cont) { + $wac[$cont]['count'] = 0; // Inits each wac's count + } + + $qsl = $this->genfunctions->gen_qsl_from_postdata($postdata); + + foreach ($bands as $band) { + foreach ($this->validContinents as $cont) { + $bandWac[$cont][$band] = '-'; // Sets all to dash to indicate no result + } + + if ($postdata['worked'] != NULL) { + $wacBand = $this->getWACWorked($location_list, $band, $postdata); + foreach ($wacBand as $line) { + $bandWac[$line->col_cont][$band] = ''; + $wac[$line->col_cont]['count']++; + } + } + if ($postdata['confirmed'] != NULL) { + $wacBand = $this->getWACConfirmed($location_list, $band, $postdata); + foreach ($wacBand as $line) { + $bandWac[$line->col_cont][$band] = ''; + $wac[$line->col_cont]['count']++; + } + } + } + + // We want to remove the worked continents in the list, since we do not want to display them + if ($postdata['worked'] == NULL) { + $wacBand = $this->getWACWorked($location_list, $postdata['band'], $postdata); + foreach ($wacBand as $line) { + unset($bandWac[$line->col_cont]); + } + } + + // We want to remove the confirmed continents in the list, since we do not want to display them + if ($postdata['confirmed'] == NULL) { + $wacBand = $this->getWACConfirmed($location_list, $postdata['band'], $postdata); + foreach ($wacBand as $line) { + unset($bandWac[$line->col_cont]); + } + } + + if ($postdata['notworked'] == NULL) { + foreach ($this->validContinents as $cont) { + if ($wac[$cont]['count'] == 0) { + unset($bandWac[$cont]); + }; + } + } + + if (isset($bandWac)) { + return $bandWac; + } else { + return 0; + } + } + + /* + * Function returns all worked, but not confirmed continents + * $postdata contains data from the form, in this case Lotw or QSL are used + */ + function getWACWorked($location_list, $band, $postdata) { + $bindings=[]; + $sql = "SELECT distinct col_cont FROM " . $this->config->item('table_name') . " thcv + LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name + where station_id in (" . $location_list . ") and col_cont in ('AF', 'EU', 'AS', 'SA', 'NA', 'OC', 'AN')"; + + if ($postdata['mode'] != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; + } + + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); + if ($band == 'SAT') { + if ($postdata['sat'] != 'All') { + $sql .= " and col_sat_name = ?"; + $bindings[]=$postdata['sat']; + } + } + $sql .= $this->addOrbitToQuery($postdata,$bindings); + + $sql .= " and not exists (select 1 from " . $this->config->item('table_name') . " thcv2 + LEFT JOIN satellite on thcv2.COL_SAT_NAME = satellite.name + where station_id in (" . $location_list . + ") and col_cont = thcv.col_cont and col_cont <> '' "; + + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); + if ($band == 'SAT') { + if ($postdata['sat'] != 'All') { + $sql .= " and col_sat_name = ?"; + $bindings[]=$postdata['sat']; + } + } + + if ($postdata['mode'] != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; + } + + $sql .= $this->addOrbitToQuery($postdata,$bindings); + + $sql .= $this->genfunctions->addQslToQuery($postdata); + + $sql .= ")"; + + $query = $this->db->query($sql,$bindings); + + return $query->result(); + } + + /* + * Function returns all confirmed continents on given band and on LoTW or QSL + * $postdata contains data from the form, in this case Lotw or QSL are used + */ + function getWACConfirmed($location_list, $band, $postdata) { + $bindings=[]; + $sql = "SELECT distinct col_cont FROM " . $this->config->item('table_name') . " thcv + LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name + where station_id in (" . $location_list . ") and col_cont in ('AF', 'EU', 'AS', 'SA', 'NA', 'OC', 'AN')"; + + if ($postdata['mode'] != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; + } + + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); + if ($band == 'SAT') { + if ($postdata['sat'] != 'All') { + $sql .= " and col_sat_name = ?"; + $bindings[]=$postdata['sat']; + } + } + + $sql .= $this->genfunctions->addQslToQuery($postdata); + + $sql .= $this->addOrbitToQuery($postdata,$bindings); + + $query = $this->db->query($sql,$bindings); + + return $query->result(); + } + + + /* + * Function gets worked and confirmed summary on each band on the active stationprofile + */ + function get_wac_summary($bands, $postdata, $location_list) { + foreach ($bands as $band) { + $worked = $this->getSummaryByBand($band, $postdata, $location_list); + $confirmed = $this->getSummaryByBandConfirmed($band, $postdata, $location_list); + $wacSummary['worked'][$band] = $worked[0]->count; + $wacSummary['confirmed'][$band] = $confirmed[0]->count; + } + + $workedTotal = $this->getSummaryByBand($postdata['band'], $postdata, $location_list); + $confirmedTotal = $this->getSummaryByBandConfirmed($postdata['band'], $postdata, $location_list); + + $wacSummary['worked']['Total'] = $workedTotal[0]->count; + $wacSummary['confirmed']['Total'] = $confirmedTotal[0]->count; + + return $wacSummary; + } + + function getSummaryByBand($band, $postdata, $location_list) { + $bindings=[]; + $sql = "SELECT count(distinct thcv.col_cont) as count FROM " . $this->config->item('table_name') . " thcv"; + $sql .= " LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name"; + + $sql .= " where station_id in (" . $location_list . ") and col_cont in ('AF', 'EU', 'AS', 'SA', 'NA', 'OC', 'AN')"; + + if ($band == 'SAT') { + $sql .= " and thcv.col_prop_mode = ?"; + $bindings[]=$band; + if ($band != 'All' && $postdata['sat'] != 'All') { + $sql .= " and col_sat_name = ?"; + $bindings[]=$postdata['sat']; + } + } else if ($band == 'All') { + $this->load->model('bands'); + + $bandslots = $this->bands->get_worked_bands(); + + $bandslots_list = "'".implode("','",$bandslots)."'"; + + $sql .= " and thcv.col_band in (" . $bandslots_list . ")" . + " and thcv.col_prop_mode !='SAT'"; + } else { + $sql .= " and thcv.col_prop_mode !='SAT'"; + $sql .= " and thcv.col_band = ?"; + $bindings[]=$band; + } + + if ($postdata['mode'] != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; + } + + $sql .= $this->addOrbitToQuery($postdata,$bindings); + + $query = $this->db->query($sql,$bindings); + return $query->result(); + } + + function getSummaryByBandConfirmed($band, $postdata, $location_list){ + $bindings=[]; + $sql = "SELECT count(distinct thcv.col_cont) as count FROM " . $this->config->item('table_name') . " thcv"; + $sql .= " LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name"; + + $sql .= " where station_id in (" . $location_list . ") and col_cont in ('AF', 'EU', 'AS', 'SA', 'NA', 'OC', 'AN')"; + + if ($band == 'SAT') { + $sql .= " and thcv.col_prop_mode ='" . $band . "'"; + if ($postdata['sat'] != 'All') { + $sql .= " and col_sat_name = ?"; + $bindings[]=$postdata['sat']; + } + } else if ($band == 'All') { + $this->load->model('bands'); + + $bandslots = $this->bands->get_worked_bands(); + + $bandslots_list = "'".implode("','",$bandslots)."'"; + + $sql .= " and thcv.col_band in (" . $bandslots_list . ")" . + " and thcv.col_prop_mode !='SAT'"; + } else { + $sql .= " and thcv.col_prop_mode !='SAT'"; + $sql .= " and thcv.col_band = ?"; + $bindings[]=$band; + } + + if ($postdata['mode'] != 'All') { + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; + } + + $sql .= $this->genfunctions->addQslToQuery($postdata); + $sql .= $this->addOrbitToQuery($postdata,$bindings); + + $query = $this->db->query($sql,$bindings); + + return $query->result(); + } + + // Adds orbit type to query + function addOrbitToQuery($postdata,&$binding) { + $sql = ''; + if ($postdata['orbit'] != 'All') { + $sql .= ' AND satellite.orbit = ?'; + $binding[]=$postdata['orbit']; + } + return $sql; + } + +} diff --git a/application/models/Waja.php b/application/models/Waja.php index 4f31bed8d..b488aa144 100644 --- a/application/models/Waja.php +++ b/application/models/Waja.php @@ -68,7 +68,7 @@ class WAJA extends CI_Model { $prefectures[$state]['count'] = 0; // Inits each state's count } - $qsl = $this->genfunctions->gen_qsl_from_postdata($postdata); + $qsl = $this->genfunctions->gen_qsl_from_postdata($postdata); foreach ($bands as $band) { @@ -126,16 +126,19 @@ class WAJA extends CI_Model { } function getWajaBandConfirmed($location_list, $band, $postdata) { + $bindings=[]; $sql = "select adif as waja, name from dxcc_entities join ( select col_dxcc from ".$this->config->item('table_name')." thcv where station_id in (" . $location_list . ") and col_dxcc > 0"; - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= $this->genfunctions->addQslToQuery($postdata); @@ -147,22 +150,25 @@ class WAJA extends CI_Model { $sql .= " and dxcc_entities.end is null"; } - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } function getWajaBandWorked($location_list, $band, $postdata) { + $bindings=[]; $sql = "select adif as waja, name from dxcc_entities join ( select col_dxcc from ".$this->config->item('table_name')." thcv where station_id in (" . $location_list . ") and col_dxcc > 0"; - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= " group by col_dxcc @@ -172,7 +178,7 @@ class WAJA extends CI_Model { $sql .= " and dxcc_entities.end is null"; } - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } @@ -182,29 +188,34 @@ class WAJA extends CI_Model { * $postdata contains data from the form, in this case Lotw or QSL are used */ function getWajaWorked($location_list, $band, $postdata) { + $bindings=[]; $sql = "SELECT distinct LPAD(col_state, 2, '0') AS col_state FROM " . $this->config->item('table_name') . " thcv where station_id in (" . $location_list . ")"; if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= $this->addStateToQuery(); - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); $sql .= " and not exists (select 1 from ". $this->config->item('table_name') . " where station_id in (". $location_list . ")" . " and col_state = thcv.col_state"; if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); $sql .= $this->genfunctions->addQslToQuery($postdata); $sql .= $this->addStateToQuery(); $sql .= ")"; - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } @@ -214,21 +225,24 @@ class WAJA extends CI_Model { * $postdata contains data from the form, in this case Lotw or QSL are used */ function getWajaConfirmed($location_list, $band, $postdata) { + $bindings=[]; $sql = "SELECT distinct LPAD(col_state, 2, '0') AS col_state FROM " . $this->config->item('table_name') . " thcv where station_id in (" . $location_list . ")"; if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= $this->addStateToQuery(); - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); $sql .= $this->genfunctions->addQslToQuery($postdata); - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } - + /* * Function gets worked and confirmed summary on each band on the active stationprofile */ @@ -250,11 +264,14 @@ class WAJA extends CI_Model { } function getSummaryByBand($band, $postdata, $location_list) { + $bindings=[]; $sql = "SELECT count(distinct thcv.col_state) as count FROM " . $this->config->item('table_name') . " thcv"; $sql .= " where station_id in (" . $location_list . ")"; if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode ='" . $band . "'"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } else if ($band == 'All') { $this->load->model('bands'); @@ -266,26 +283,31 @@ class WAJA extends CI_Model { $sql .= " and thcv.col_prop_mode !='SAT'"; } else { $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band ='" . $band . "'"; + $sql .= " and thcv.col_band = ?"; + $bindings[]=$band; } if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= $this->addStateToQuery(); - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } function getSummaryByBandConfirmed($band, $postdata, $location_list) { + $bindings=[]; $sql = "SELECT count(distinct thcv.col_state) as count FROM " . $this->config->item('table_name') . " thcv"; $sql .= " where station_id in (" . $location_list . ")"; if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode ='" . $band . "'"; + $sql .= " and thcv.col_prop_mode = ?"; + $bindings[]=$band; } else if ($band == 'All') { $this->load->model('bands'); $bandslots = $this->bands->get_worked_bands('waja'); @@ -294,16 +316,19 @@ class WAJA extends CI_Model { $sql .= " and thcv.col_prop_mode !='SAT'"; } else { $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band ='" . $band . "'"; + $sql .= " and thcv.col_band = ?"; + $bindings[]=$band; } if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= $this->genfunctions->addQslToQuery($postdata); $sql .= $this->addStateToQuery(); - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } diff --git a/application/models/Was.php b/application/models/Was.php index 1f012805c..15c328744 100644 --- a/application/models/Was.php +++ b/application/models/Was.php @@ -21,8 +21,8 @@ class was extends CI_Model { $states = array(); // Used for keeping track of which states that are not worked - $qsl = $this->genfunctions->gen_qsl_from_postdata($postdata); - + $qsl = $this->genfunctions->gen_qsl_from_postdata($postdata); + foreach ($stateArray as $state) { // Generating array for use in the table $states[$state]['count'] = 0; // Inits each state's count } @@ -84,11 +84,9 @@ class was extends CI_Model { /* * Function gets worked and confirmed summary on each band on the active stationprofile */ - function get_was_summary($bands, $postdata) - { - $CI =& get_instance(); - $CI->load->model('logbooks_model'); - $logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + function get_was_summary($bands, $postdata) { + $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; @@ -112,14 +110,14 @@ class was extends CI_Model { return $wasSummary; } - function getSummaryByBand($band, $postdata, $location_list) - { + function getSummaryByBand($band, $postdata, $location_list) { + $bindings=[]; $sql = "SELECT count(distinct thcv.col_state) as count FROM " . $this->config->item('table_name') . " thcv"; - $sql .= " where station_id in (" . $location_list . ")"; if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode ='" . $band . "'"; + $sql .= " and thcv.col_prop_mode = ?"; + $bindings[]=$band; } else if ($band == 'All') { $this->load->model('bands'); @@ -131,28 +129,31 @@ class was extends CI_Model { " and thcv.col_prop_mode !='SAT'"; } else { $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band ='" . $band . "'"; + $sql .= " and thcv.col_band = ?"; + $bindings[]=$band; } if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= $this->addStateToQuery(); - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } - function getSummaryByBandConfirmed($band, $postdata, $location_list) - { + function getSummaryByBandConfirmed($band, $postdata, $location_list) { + $bindings=[]; $sql = "SELECT count(distinct thcv.col_state) as count FROM " . $this->config->item('table_name') . " thcv"; - $sql .= " where station_id in (" . $location_list . ")"; if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode ='" . $band . "'"; + $sql .= " and thcv.col_prop_mode = ?"; + $bindings[]=$band; } else if ($band == 'All') { $this->load->model('bands'); @@ -164,18 +165,21 @@ class was extends CI_Model { " and thcv.col_prop_mode !='SAT'"; } else { $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band ='" . $band . "'"; + $sql .= " and thcv.col_band = ?"; + $bindings[]=$band; } if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= $this->genfunctions->addQslToQuery($postdata); $sql .= $this->addStateToQuery(); - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } @@ -185,26 +189,31 @@ class was extends CI_Model { * $postdata contains data from the form, in this case Lotw or QSL are used */ function getWasWorked($location_list, $band, $postdata) { + $bindings=[]; $sql = "SELECT distinct col_state FROM " . $this->config->item('table_name') . " thcv where station_id in (" . $location_list . ")"; if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= $this->addStateToQuery(); - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); $sql .= " and not exists (select 1 from ". $this->config->item('table_name') . " where station_id in (". $location_list . ")" . " and col_state = thcv.col_state"; if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); $sql .= $this->genfunctions->addQslToQuery($postdata); @@ -212,7 +221,7 @@ class was extends CI_Model { $sql .= ")"; - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } @@ -222,20 +231,23 @@ class was extends CI_Model { * $postdata contains data from the form, in this case Lotw or QSL are used */ function getWasConfirmed($location_list, $band, $postdata) { + $bindings=[]; $sql = "SELECT distinct col_state FROM " . $this->config->item('table_name') . " thcv where station_id in (" . $location_list . ")"; if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = '" . $postdata['mode'] . "' or col_submode = '" . $postdata['mode'] . "')"; + $sql .= " and (col_mode = ? or col_submode = ?)"; + $bindings[]=$postdata['mode']; + $bindings[]=$postdata['mode']; } $sql .= $this->addStateToQuery(); - $sql .= $this->genfunctions->addBandToQuery($band); + $sql .= $this->genfunctions->addBandToQuery($band,$bindings); $sql .= $this->genfunctions->addQslToQuery($postdata); - $query = $this->db->query($sql); + $query = $this->db->query($sql,$bindings); return $query->result(); } diff --git a/application/models/Winkey.php b/application/models/Winkey.php index 43938fd41..28a142388 100644 --- a/application/models/Winkey.php +++ b/application/models/Winkey.php @@ -20,13 +20,13 @@ class Winkey extends CI_Model $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')); + return json_encode(array('status' => 'not found')); } } @@ -46,4 +46,4 @@ class Winkey extends CI_Model } } -?> \ No newline at end of file +?> diff --git a/application/views/accumulate/index.php b/application/views/accumulate/index.php index 042a906ea..835a98e53 100644 --- a/application/views/accumulate/index.php +++ b/application/views/accumulate/index.php @@ -6,9 +6,9 @@ var lang_statistics_accumulated_worked_vucc = ''; var lang_statistics_accumulated_worked_waja = ''; var lang_general_word_year = ''; - var lang_general_word_yearly = ''; + var lang_general_word_yearly = ""; var lang_general_word_month = ''; - var lang_general_word_monthly = ''; + var lang_general_word_monthly = ''; var lang_general_word_diff = '';
@@ -76,6 +76,35 @@
+
+ +
+ +
+
+
diff --git a/application/views/activators/index.php b/application/views/activators/index.php index e34bbe2b6..0c1097c7a 100644 --- a/application/views/activators/index.php +++ b/application/views/activators/index.php @@ -1,3 +1,6 @@ +

@@ -65,11 +68,7 @@ ?> call] = $line->vucc_grids; - } - } + if ($activators_array) { $result = write_activators($activators_array, $vucc_grids, $custom_date_format, $bandselect, $orbit); diff --git a/application/views/adif/import.php b/application/views/adif/import.php index 6d55e66bd..a1a46a813 100644 --- a/application/views/adif/import.php +++ b/application/views/adif/import.php @@ -96,6 +96,16 @@
+
+
+
+ + +
+
+
+
+
@@ -151,7 +161,7 @@
-
all QSO's of the ADIF, regardless if they match to the chosen station-location.") ?>
+
', ''); ?>
@@ -276,4 +286,4 @@ - \ No newline at end of file + diff --git a/application/views/adif/import_failed.php b/application/views/adif/import_failed.php new file mode 100644 index 000000000..c0152a810 --- /dev/null +++ b/application/views/adif/import_failed.php @@ -0,0 +1,22 @@ +
+
+ session->flashdata('message')) { ?> + +
+

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

+
+ + + + + +
diff --git a/application/views/awards/cq/index.php b/application/views/awards/cq/index.php index 69ef546d5..f146437bc 100644 --- a/application/views/awards/cq/index.php +++ b/application/views/awards/cq/index.php @@ -1,5 +1,7 @@ ")}}function ir(){var e=P().querySelector('meta[name="htmx-config"]');if(e){return x(e.content)}else{return null}}function or(){var e=ir();if(e){D.config=V(D.config,e)}}rr(function(){or();nr();var e=P().body;rt(e);window.onpopstate=function(e){if(e.state&&e.state.htmx){xt()}};setTimeout(function(){lt(e,"htmx:load",{})},0)});return D}()}); \ No newline at end of file +var htmx=function(){"use strict";const Q={onLoad:null,process:null,on:null,off:null,trigger:null,ajax:null,find:null,findAll:null,closest:null,values:function(e,t){const n=cn(e,t||"post");return n.values},remove:null,addClass:null,removeClass:null,toggleClass:null,takeClass:null,swap:null,defineExtension:null,removeExtension:null,logAll:null,logNone:null,logger:null,config:{historyEnabled:true,historyCacheSize:10,refreshOnHistoryMiss:false,defaultSwapStyle:"innerHTML",defaultSwapDelay:0,defaultSettleDelay:20,includeIndicatorStyles:true,indicatorClass:"htmx-indicator",requestClass:"htmx-request",addedClass:"htmx-added",settlingClass:"htmx-settling",swappingClass:"htmx-swapping",allowEval:true,allowScriptTags:true,inlineScriptNonce:"",inlineStyleNonce:"",attributesToSettle:["class","style","width","height"],withCredentials:false,timeout:0,wsReconnectDelay:"full-jitter",wsBinaryType:"blob",disableSelector:"[hx-disable], [data-hx-disable]",scrollBehavior:"instant",defaultFocusScroll:false,getCacheBusterParam:false,globalViewTransitions:false,methodsThatUseUrlParams:["get","delete"],selfRequestsOnly:true,ignoreTitle:false,scrollIntoViewOnBoost:true,triggerSpecsCache:null,disableInheritance:false,responseHandling:[{code:"204",swap:false},{code:"[23]..",swap:true},{code:"[45]..",swap:false,error:true}],allowNestedOobSwaps:true},parseInterval:null,_:null,version:"2.0.2"};Q.onLoad=$;Q.process=Dt;Q.on=be;Q.off=we;Q.trigger=de;Q.ajax=Hn;Q.find=r;Q.findAll=p;Q.closest=g;Q.remove=K;Q.addClass=Y;Q.removeClass=o;Q.toggleClass=W;Q.takeClass=ge;Q.swap=ze;Q.defineExtension=Bn;Q.removeExtension=Un;Q.logAll=z;Q.logNone=J;Q.parseInterval=h;Q._=_;const n={addTriggerHandler:Et,bodyContains:le,canAccessLocalStorage:j,findThisElement:Ee,filterValues:hn,swap:ze,hasAttribute:s,getAttributeValue:te,getClosestAttributeValue:re,getClosestMatch:T,getExpressionVars:Cn,getHeaders:dn,getInputValues:cn,getInternalData:ie,getSwapSpecification:pn,getTriggerSpecs:lt,getTarget:Ce,makeFragment:D,mergeObjects:ue,makeSettleInfo:xn,oobSwap:Te,querySelectorExt:ae,settleImmediately:Gt,shouldCancel:ht,triggerEvent:de,triggerErrorEvent:fe,withExtensions:Bt};const v=["get","post","put","delete","patch"];const O=v.map(function(e){return"[hx-"+e+"], [data-hx-"+e+"]"}).join(", ");const R=e("head");function e(e,t=false){return new RegExp(`<${e}(\\s[^>]*>|>)([\\s\\S]*?)<\\/${e}>`,t?"gim":"im")}function h(e){if(e==undefined){return undefined}let t=NaN;if(e.slice(-2)=="ms"){t=parseFloat(e.slice(0,-2))}else if(e.slice(-1)=="s"){t=parseFloat(e.slice(0,-1))*1e3}else if(e.slice(-1)=="m"){t=parseFloat(e.slice(0,-1))*1e3*60}else{t=parseFloat(e)}return isNaN(t)?undefined:t}function ee(e,t){return e instanceof Element&&e.getAttribute(t)}function s(e,t){return!!e.hasAttribute&&(e.hasAttribute(t)||e.hasAttribute("data-"+t))}function te(e,t){return ee(e,t)||ee(e,"data-"+t)}function u(e){const t=e.parentElement;if(!t&&e.parentNode instanceof ShadowRoot)return e.parentNode;return t}function ne(){return document}function H(e,t){return e.getRootNode?e.getRootNode({composed:t}):ne()}function T(e,t){while(e&&!t(e)){e=u(e)}return e||null}function q(e,t,n){const r=te(t,n);const o=te(t,"hx-disinherit");var i=te(t,"hx-inherit");if(e!==t){if(Q.config.disableInheritance){if(i&&(i==="*"||i.split(" ").indexOf(n)>=0)){return r}else{return null}}if(o&&(o==="*"||o.split(" ").indexOf(n)>=0)){return"unset"}}return r}function re(t,n){let r=null;T(t,function(e){return!!(r=q(t,ce(e),n))});if(r!=="unset"){return r}}function f(e,t){const n=e instanceof Element&&(e.matches||e.matchesSelector||e.msMatchesSelector||e.mozMatchesSelector||e.webkitMatchesSelector||e.oMatchesSelector);return!!n&&n.call(e,t)}function L(e){const t=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i;const n=t.exec(e);if(n){return n[1].toLowerCase()}else{return""}}function N(e){const t=new DOMParser;return t.parseFromString(e,"text/html")}function A(e,t){while(t.childNodes.length>0){e.append(t.childNodes[0])}}function I(e){const t=ne().createElement("script");se(e.attributes,function(e){t.setAttribute(e.name,e.value)});t.textContent=e.textContent;t.async=false;if(Q.config.inlineScriptNonce){t.nonce=Q.config.inlineScriptNonce}return t}function P(e){return e.matches("script")&&(e.type==="text/javascript"||e.type==="module"||e.type==="")}function k(e){Array.from(e.querySelectorAll("script")).forEach(e=>{if(P(e)){const t=I(e);const n=e.parentNode;try{n.insertBefore(t,e)}catch(e){w(e)}finally{e.remove()}}})}function D(e){const t=e.replace(R,"");const n=L(t);let r;if(n==="html"){r=new DocumentFragment;const i=N(e);A(r,i.body);r.title=i.title}else if(n==="body"){r=new DocumentFragment;const i=N(t);A(r,i.body);r.title=i.title}else{const i=N('");r=i.querySelector("template").content;r.title=i.title;var o=r.querySelector("title");if(o&&o.parentNode===r){o.remove();r.title=o.innerText}}if(r){if(Q.config.allowScriptTags){k(r)}else{r.querySelectorAll("script").forEach(e=>e.remove())}}return r}function oe(e){if(e){e()}}function t(e,t){return Object.prototype.toString.call(e)==="[object "+t+"]"}function M(e){return typeof e==="function"}function X(e){return t(e,"Object")}function ie(e){const t="htmx-internal-data";let n=e[t];if(!n){n=e[t]={}}return n}function F(t){const n=[];if(t){for(let e=0;e=0}function le(e){const t=e.getRootNode&&e.getRootNode();if(t&&t instanceof window.ShadowRoot){return ne().body.contains(t.host)}else{return ne().body.contains(e)}}function U(e){return e.trim().split(/\s+/)}function ue(e,t){for(const n in t){if(t.hasOwnProperty(n)){e[n]=t[n]}}return e}function S(e){try{return JSON.parse(e)}catch(e){w(e);return null}}function j(){const e="htmx:localStorageTest";try{localStorage.setItem(e,e);localStorage.removeItem(e);return true}catch(e){return false}}function V(t){try{const e=new URL(t);if(e){t=e.pathname+e.search}if(!/^\/$/.test(t)){t=t.replace(/\/+$/,"")}return t}catch(e){return t}}function _(e){return vn(ne().body,function(){return eval(e)})}function $(t){const e=Q.on("htmx:load",function(e){t(e.detail.elt)});return e}function z(){Q.logger=function(e,t,n){if(console){console.log(t,e,n)}}}function J(){Q.logger=null}function r(e,t){if(typeof e!=="string"){return e.querySelector(t)}else{return r(ne(),e)}}function p(e,t){if(typeof e!=="string"){return e.querySelectorAll(t)}else{return p(ne(),e)}}function E(){return window}function K(e,t){e=y(e);if(t){E().setTimeout(function(){K(e);e=null},t)}else{u(e).removeChild(e)}}function ce(e){return e instanceof Element?e:null}function G(e){return e instanceof HTMLElement?e:null}function Z(e){return typeof e==="string"?e:null}function d(e){return e instanceof Element||e instanceof Document||e instanceof DocumentFragment?e:null}function Y(e,t,n){e=ce(y(e));if(!e){return}if(n){E().setTimeout(function(){Y(e,t);e=null},n)}else{e.classList&&e.classList.add(t)}}function o(e,t,n){let r=ce(y(e));if(!r){return}if(n){E().setTimeout(function(){o(r,t);r=null},n)}else{if(r.classList){r.classList.remove(t);if(r.classList.length===0){r.removeAttribute("class")}}}}function W(e,t){e=y(e);e.classList.toggle(t)}function ge(e,t){e=y(e);se(e.parentElement.children,function(e){o(e,t)});Y(ce(e),t)}function g(e,t){e=ce(y(e));if(e&&e.closest){return e.closest(t)}else{do{if(e==null||f(e,t)){return e}}while(e=e&&ce(u(e)));return null}}function l(e,t){return e.substring(0,t.length)===t}function pe(e,t){return e.substring(e.length-t.length)===t}function i(e){const t=e.trim();if(l(t,"<")&&pe(t,"/>")){return t.substring(1,t.length-2)}else{return t}}function m(e,t,n){e=y(e);if(t.indexOf("closest ")===0){return[g(ce(e),i(t.substr(8)))]}else if(t.indexOf("find ")===0){return[r(d(e),i(t.substr(5)))]}else if(t==="next"){return[ce(e).nextElementSibling]}else if(t.indexOf("next ")===0){return[me(e,i(t.substr(5)),!!n)]}else if(t==="previous"){return[ce(e).previousElementSibling]}else if(t.indexOf("previous ")===0){return[ye(e,i(t.substr(9)),!!n)]}else if(t==="document"){return[document]}else if(t==="window"){return[window]}else if(t==="body"){return[document.body]}else if(t==="root"){return[H(e,!!n)]}else if(t.indexOf("global ")===0){return m(e,t.slice(7),true)}else{return F(d(H(e,!!n)).querySelectorAll(i(t)))}}var me=function(t,e,n){const r=d(H(t,n)).querySelectorAll(e);for(let e=0;e=0;e--){const o=r[e];if(o.compareDocumentPosition(t)===Node.DOCUMENT_POSITION_FOLLOWING){return o}}};function ae(e,t){if(typeof e!=="string"){return m(e,t)[0]}else{return m(ne().body,e)[0]}}function y(e,t){if(typeof e==="string"){return r(d(t)||document,e)}else{return e}}function xe(e,t,n){if(M(t)){return{target:ne().body,event:Z(e),listener:t}}else{return{target:y(e),event:Z(t),listener:n}}}function be(t,n,r){_n(function(){const e=xe(t,n,r);e.target.addEventListener(e.event,e.listener)});const e=M(n);return e?n:r}function we(t,n,r){_n(function(){const e=xe(t,n,r);e.target.removeEventListener(e.event,e.listener)});return M(n)?n:r}const ve=ne().createElement("output");function Se(e,t){const n=re(e,t);if(n){if(n==="this"){return[Ee(e,t)]}else{const r=m(e,n);if(r.length===0){w('The selector "'+n+'" on '+t+" returned no matches!");return[ve]}else{return r}}}}function Ee(e,t){return ce(T(e,function(e){return te(ce(e),t)!=null}))}function Ce(e){const t=re(e,"hx-target");if(t){if(t==="this"){return Ee(e,"hx-target")}else{return ae(e,t)}}else{const n=ie(e);if(n.boosted){return ne().body}else{return e}}}function Oe(t){const n=Q.config.attributesToSettle;for(let e=0;e0){s=e.substr(0,e.indexOf(":"));t=e.substr(e.indexOf(":")+1,e.length)}else{s=e}const n=ne().querySelectorAll(t);if(n){se(n,function(e){let t;const n=o.cloneNode(true);t=ne().createDocumentFragment();t.appendChild(n);if(!He(s,e)){t=d(n)}const r={shouldSwap:true,target:e,fragment:t};if(!de(e,"htmx:oobBeforeSwap",r))return;e=r.target;if(r.shouldSwap){_e(s,e,e,t,i)}se(i.elts,function(e){de(e,"htmx:oobAfterSwap",r)})});o.parentNode.removeChild(o)}else{o.parentNode.removeChild(o);fe(ne().body,"htmx:oobErrorNoTarget",{content:o})}return e}function qe(e){se(p(e,"[hx-preserve], [data-hx-preserve]"),function(e){const t=te(e,"id");const n=ne().getElementById(t);if(n!=null){e.parentNode.replaceChild(n,e)}})}function Le(l,e,u){se(e.querySelectorAll("[id]"),function(t){const n=ee(t,"id");if(n&&n.length>0){const r=n.replace("'","\\'");const o=t.tagName.replace(":","\\:");const e=d(l);const i=e&&e.querySelector(o+"[id='"+r+"']");if(i&&i!==e){const s=t.cloneNode();Re(t,i);u.tasks.push(function(){Re(t,s)})}}})}function Ne(e){return function(){o(e,Q.config.addedClass);Dt(ce(e));Ae(d(e));de(e,"htmx:load")}}function Ae(e){const t="[autofocus]";const n=G(f(e,t)?e:e.querySelector(t));if(n!=null){n.focus()}}function c(e,t,n,r){Le(e,n,r);while(n.childNodes.length>0){const o=n.firstChild;Y(ce(o),Q.config.addedClass);e.insertBefore(o,t);if(o.nodeType!==Node.TEXT_NODE&&o.nodeType!==Node.COMMENT_NODE){r.tasks.push(Ne(o))}}}function Ie(e,t){let n=0;while(n0}function ze(e,t,r,o){if(!o){o={}}e=y(e);const n=document.activeElement;let i={};try{i={elt:n,start:n?n.selectionStart:null,end:n?n.selectionEnd:null}}catch(e){}const s=xn(e);if(r.swapStyle==="textContent"){e.textContent=t}else{let n=D(t);s.title=n.title;if(o.selectOOB){const u=o.selectOOB.split(",");for(let t=0;t0){E().setTimeout(l,r.settleDelay)}else{l()}}function Je(e,t,n){const r=e.getResponseHeader(t);if(r.indexOf("{")===0){const o=S(r);for(const i in o){if(o.hasOwnProperty(i)){let e=o[i];if(X(e)){n=e.target!==undefined?e.target:n}else{e={value:e}}de(n,i,e)}}}else{const s=r.split(",");for(let e=0;e0){const s=o[0];if(s==="]"){e--;if(e===0){if(n===null){t=t+"true"}o.shift();t+=")})";try{const l=vn(r,function(){return Function(t)()},function(){return true});l.source=t;return l}catch(e){fe(ne().body,"htmx:syntax:error",{error:e,source:t});return null}}}else if(s==="["){e++}if(nt(s,n,i)){t+="(("+i+"."+s+") ? ("+i+"."+s+") : (window."+s+"))"}else{t=t+s}n=o.shift()}}}function b(e,t){let n="";while(e.length>0&&!t.test(e[0])){n+=e.shift()}return n}function ot(e){let t;if(e.length>0&&Qe.test(e[0])){e.shift();t=b(e,et).trim();e.shift()}else{t=b(e,x)}return t}const it="input, textarea, select";function st(e,t,n){const r=[];const o=tt(t);do{b(o,We);const l=o.length;const u=b(o,/[,\[\s]/);if(u!==""){if(u==="every"){const c={trigger:"every"};b(o,We);c.pollInterval=h(b(o,/[,\[\s]/));b(o,We);var i=rt(e,o,"event");if(i){c.eventFilter=i}r.push(c)}else{const a={trigger:u};var i=rt(e,o,"event");if(i){a.eventFilter=i}while(o.length>0&&o[0]!==","){b(o,We);const f=o.shift();if(f==="changed"){a.changed=true}else if(f==="once"){a.once=true}else if(f==="consume"){a.consume=true}else if(f==="delay"&&o[0]===":"){o.shift();a.delay=h(b(o,x))}else if(f==="from"&&o[0]===":"){o.shift();if(Qe.test(o[0])){var s=ot(o)}else{var s=b(o,x);if(s==="closest"||s==="find"||s==="next"||s==="previous"){o.shift();const d=ot(o);if(d.length>0){s+=" "+d}}}a.from=s}else if(f==="target"&&o[0]===":"){o.shift();a.target=ot(o)}else if(f==="throttle"&&o[0]===":"){o.shift();a.throttle=h(b(o,x))}else if(f==="queue"&&o[0]===":"){o.shift();a.queue=b(o,x)}else if(f==="root"&&o[0]===":"){o.shift();a[f]=ot(o)}else if(f==="threshold"&&o[0]===":"){o.shift();a[f]=b(o,x)}else{fe(e,"htmx:syntax:error",{token:o.shift()})}}r.push(a)}}if(o.length===l){fe(e,"htmx:syntax:error",{token:o.shift()})}b(o,We)}while(o[0]===","&&o.shift());if(n){n[t]=r}return r}function lt(e){const t=te(e,"hx-trigger");let n=[];if(t){const r=Q.config.triggerSpecsCache;n=r&&r[t]||st(e,t,r)}if(n.length>0){return n}else if(f(e,"form")){return[{trigger:"submit"}]}else if(f(e,'input[type="button"], input[type="submit"]')){return[{trigger:"click"}]}else if(f(e,it)){return[{trigger:"change"}]}else{return[{trigger:"click"}]}}function ut(e){ie(e).cancelled=true}function ct(e,t,n){const r=ie(e);r.timeout=E().setTimeout(function(){if(le(e)&&r.cancelled!==true){if(!pt(n,e,Xt("hx:poll:trigger",{triggerSpec:n,target:e}))){t(e)}ct(e,t,n)}},n.pollInterval)}function at(e){return location.hostname===e.hostname&&ee(e,"href")&&ee(e,"href").indexOf("#")!==0}function ft(e){return g(e,Q.config.disableSelector)}function dt(t,n,e){if(t instanceof HTMLAnchorElement&&at(t)&&(t.target===""||t.target==="_self")||t.tagName==="FORM"&&String(ee(t,"method")).toLowerCase()!=="dialog"){n.boosted=true;let r,o;if(t.tagName==="A"){r="get";o=ee(t,"href")}else{const i=ee(t,"method");r=i?i.toLowerCase():"get";if(r==="get"){}o=ee(t,"action")}e.forEach(function(e){mt(t,function(e,t){const n=ce(e);if(ft(n)){a(n);return}he(r,o,n,t)},n,e,true)})}}function ht(e,t){const n=ce(t);if(!n){return false}if(e.type==="submit"||e.type==="click"){if(n.tagName==="FORM"){return true}if(f(n,'input[type="submit"], button')&&g(n,"form")!==null){return true}if(n instanceof HTMLAnchorElement&&n.href&&(n.getAttribute("href")==="#"||n.getAttribute("href").indexOf("#")!==0)){return true}}return false}function gt(e,t){return ie(e).boosted&&e instanceof HTMLAnchorElement&&t.type==="click"&&(t.ctrlKey||t.metaKey)}function pt(e,t,n){const r=e.eventFilter;if(r){try{return r.call(t,n)!==true}catch(e){const o=r.source;fe(ne().body,"htmx:eventFilter:error",{error:e,source:o});return true}}return false}function mt(s,l,e,u,c){const a=ie(s);let t;if(u.from){t=m(s,u.from)}else{t=[s]}if(u.changed){t.forEach(function(e){const t=ie(e);t.lastValue=e.value})}se(t,function(o){const i=function(e){if(!le(s)){o.removeEventListener(u.trigger,i);return}if(gt(s,e)){return}if(c||ht(e,s)){e.preventDefault()}if(pt(u,s,e)){return}const t=ie(e);t.triggerSpec=u;if(t.handledFor==null){t.handledFor=[]}if(t.handledFor.indexOf(s)<0){t.handledFor.push(s);if(u.consume){e.stopPropagation()}if(u.target&&e.target){if(!f(ce(e.target),u.target)){return}}if(u.once){if(a.triggeredOnce){return}else{a.triggeredOnce=true}}if(u.changed){const n=ie(o);const r=o.value;if(n.lastValue===r){return}n.lastValue=r}if(a.delayed){clearTimeout(a.delayed)}if(a.throttle){return}if(u.throttle>0){if(!a.throttle){de(s,"htmx:trigger");l(s,e);a.throttle=E().setTimeout(function(){a.throttle=null},u.throttle)}}else if(u.delay>0){a.delayed=E().setTimeout(function(){de(s,"htmx:trigger");l(s,e)},u.delay)}else{de(s,"htmx:trigger");l(s,e)}}};if(e.listenerInfos==null){e.listenerInfos=[]}e.listenerInfos.push({trigger:u.trigger,listener:i,on:o});o.addEventListener(u.trigger,i)})}let yt=false;let xt=null;function bt(){if(!xt){xt=function(){yt=true};window.addEventListener("scroll",xt);setInterval(function(){if(yt){yt=false;se(ne().querySelectorAll("[hx-trigger*='revealed'],[data-hx-trigger*='revealed']"),function(e){wt(e)})}},200)}}function wt(e){if(!s(e,"data-hx-revealed")&&B(e)){e.setAttribute("data-hx-revealed","true");const t=ie(e);if(t.initHash){de(e,"revealed")}else{e.addEventListener("htmx:afterProcessNode",function(){de(e,"revealed")},{once:true})}}}function vt(e,t,n,r){const o=function(){if(!n.loaded){n.loaded=true;t(e)}};if(r>0){E().setTimeout(o,r)}else{o()}}function St(t,n,e){let i=false;se(v,function(r){if(s(t,"hx-"+r)){const o=te(t,"hx-"+r);i=true;n.path=o;n.verb=r;e.forEach(function(e){Et(t,e,n,function(e,t){const n=ce(e);if(g(n,Q.config.disableSelector)){a(n);return}he(r,o,n,t)})})}});return i}function Et(r,e,t,n){if(e.trigger==="revealed"){bt();mt(r,n,t,e);wt(ce(r))}else if(e.trigger==="intersect"){const o={};if(e.root){o.root=ae(r,e.root)}if(e.threshold){o.threshold=parseFloat(e.threshold)}const i=new IntersectionObserver(function(t){for(let e=0;e0){t.polling=true;ct(ce(r),n,e)}else{mt(r,n,t,e)}}function Ct(e){const t=ce(e);if(!t){return false}const n=t.attributes;for(let e=0;e", "+e).join(""));return o}else{return[]}}function qt(e){const t=g(ce(e.target),"button, input[type='submit']");const n=Nt(e);if(n){n.lastButtonClicked=t}}function Lt(e){const t=Nt(e);if(t){t.lastButtonClicked=null}}function Nt(e){const t=g(ce(e.target),"button, input[type='submit']");if(!t){return}const n=y("#"+ee(t,"form"),t.getRootNode())||g(t,"form");if(!n){return}return ie(n)}function At(e){e.addEventListener("click",qt);e.addEventListener("focusin",qt);e.addEventListener("focusout",Lt)}function It(t,e,n){const r=ie(t);if(!Array.isArray(r.onHandlers)){r.onHandlers=[]}let o;const i=function(e){vn(t,function(){if(ft(t)){return}if(!o){o=new Function("event",n)}o.call(t,e)})};t.addEventListener(e,i);r.onHandlers.push({event:e,listener:i})}function Pt(t){ke(t);for(let e=0;eQ.config.historyCacheSize){i.shift()}while(i.length>0){try{localStorage.setItem("htmx-history-cache",JSON.stringify(i));break}catch(e){fe(ne().body,"htmx:historyCacheError",{cause:e,cache:i});i.shift()}}}function _t(t){if(!j()){return null}t=V(t);const n=S(localStorage.getItem("htmx-history-cache"))||[];for(let e=0;e=200&&this.status<400){de(ne().body,"htmx:historyCacheMissLoad",i);const e=D(this.response);const t=e.querySelector("[hx-history-elt],[data-hx-history-elt]")||e;const n=jt();const r=xn(n);Dn(e.title);Ve(n,t,r);Gt(r.tasks);Ut=o;de(ne().body,"htmx:historyRestore",{path:o,cacheMiss:true,serverResponse:this.response})}else{fe(ne().body,"htmx:historyCacheMissLoadError",i)}};e.send()}function Yt(e){zt();e=e||location.pathname+location.search;const t=_t(e);if(t){const n=D(t.content);const r=jt();const o=xn(r);Dn(n.title);Ve(r,n,o);Gt(o.tasks);E().setTimeout(function(){window.scrollTo(0,t.scroll)},0);Ut=e;de(ne().body,"htmx:historyRestore",{path:e,item:t})}else{if(Q.config.refreshOnHistoryMiss){window.location.reload(true)}else{Zt(e)}}}function Wt(e){let t=Se(e,"hx-indicator");if(t==null){t=[e]}se(t,function(e){const t=ie(e);t.requestCount=(t.requestCount||0)+1;e.classList.add.call(e.classList,Q.config.requestClass)});return t}function Qt(e){let t=Se(e,"hx-disabled-elt");if(t==null){t=[]}se(t,function(e){const t=ie(e);t.requestCount=(t.requestCount||0)+1;e.setAttribute("disabled","");e.setAttribute("data-disabled-by-htmx","")});return t}function en(e,t){se(e,function(e){const t=ie(e);t.requestCount=(t.requestCount||0)-1;if(t.requestCount===0){e.classList.remove.call(e.classList,Q.config.requestClass)}});se(t,function(e){const t=ie(e);t.requestCount=(t.requestCount||0)-1;if(t.requestCount===0){e.removeAttribute("disabled");e.removeAttribute("data-disabled-by-htmx")}})}function tn(t,n){for(let e=0;en.indexOf(e)<0)}else{e=e.filter(e=>e!==n)}r.delete(t);se(e,e=>r.append(t,e))}}function sn(t,n,r,o,i){if(o==null||tn(t,o)){return}else{t.push(o)}if(nn(o)){const s=ee(o,"name");let e=o.value;if(o instanceof HTMLSelectElement&&o.multiple){e=F(o.querySelectorAll("option:checked")).map(function(e){return e.value})}if(o instanceof HTMLInputElement&&o.files){e=F(o.files)}rn(s,e,n);if(i){ln(o,r)}}if(o instanceof HTMLFormElement){se(o.elements,function(e){if(t.indexOf(e)>=0){on(e.name,e.value,n)}else{t.push(e)}if(i){ln(e,r)}});new FormData(o).forEach(function(e,t){if(e instanceof File&&e.name===""){return}rn(t,e,n)})}}function ln(e,t){const n=e;if(n.willValidate){de(n,"htmx:validation:validate");if(!n.checkValidity()){t.push({elt:n,message:n.validationMessage,validity:n.validity});de(n,"htmx:validation:failed",{message:n.validationMessage,validity:n.validity})}}}function un(n,e){for(const t of e.keys()){n.delete(t)}e.forEach(function(e,t){n.append(t,e)});return n}function cn(e,t){const n=[];const r=new FormData;const o=new FormData;const i=[];const s=ie(e);if(s.lastButtonClicked&&!le(s.lastButtonClicked)){s.lastButtonClicked=null}let l=e instanceof HTMLFormElement&&e.noValidate!==true||te(e,"hx-validate")==="true";if(s.lastButtonClicked){l=l&&s.lastButtonClicked.formNoValidate!==true}if(t!=="get"){sn(n,o,i,g(e,"form"),l)}sn(n,r,i,e,l);if(s.lastButtonClicked||e.tagName==="BUTTON"||e.tagName==="INPUT"&&ee(e,"type")==="submit"){const c=s.lastButtonClicked||e;const a=ee(c,"name");rn(a,c.value,o)}const u=Se(e,"hx-include");se(u,function(e){sn(n,r,i,ce(e),l);if(!f(e,"form")){se(d(e).querySelectorAll(it),function(e){sn(n,r,i,e,l)})}});un(r,o);return{errors:i,formData:r,values:An(r)}}function an(e,t,n){if(e!==""){e+="&"}if(String(n)==="[object Object]"){n=JSON.stringify(n)}const r=encodeURIComponent(n);e+=encodeURIComponent(t)+"="+r;return e}function fn(e){e=Ln(e);let n="";e.forEach(function(e,t){n=an(n,t,e)});return n}function dn(e,t,n){const r={"HX-Request":"true","HX-Trigger":ee(e,"id"),"HX-Trigger-Name":ee(e,"name"),"HX-Target":te(t,"id"),"HX-Current-URL":ne().location.href};wn(e,"hx-headers",false,r);if(n!==undefined){r["HX-Prompt"]=n}if(ie(e).boosted){r["HX-Boosted"]="true"}return r}function hn(n,e){const t=re(e,"hx-params");if(t){if(t==="none"){return new FormData}else if(t==="*"){return n}else if(t.indexOf("not ")===0){se(t.substr(4).split(","),function(e){e=e.trim();n.delete(e)});return n}else{const r=new FormData;se(t.split(","),function(t){t=t.trim();if(n.has(t)){n.getAll(t).forEach(function(e){r.append(t,e)})}});return r}}else{return n}}function gn(e){return!!ee(e,"href")&&ee(e,"href").indexOf("#")>=0}function pn(e,t){const n=t||re(e,"hx-swap");const r={swapStyle:ie(e).boosted?"innerHTML":Q.config.defaultSwapStyle,swapDelay:Q.config.defaultSwapDelay,settleDelay:Q.config.defaultSettleDelay};if(Q.config.scrollIntoViewOnBoost&&ie(e).boosted&&!gn(e)){r.show="top"}if(n){const s=U(n);if(s.length>0){for(let e=0;e0?o.join(":"):null;r.scroll=c;r.scrollTarget=i}else if(l.indexOf("show:")===0){const a=l.substr(5);var o=a.split(":");const f=o.pop();var i=o.length>0?o.join(":"):null;r.show=f;r.showTarget=i}else if(l.indexOf("focus-scroll:")===0){const d=l.substr("focus-scroll:".length);r.focusScroll=d=="true"}else if(e==0){r.swapStyle=l}else{w("Unknown modifier in hx-swap: "+l)}}}}return r}function mn(e){return re(e,"hx-encoding")==="multipart/form-data"||f(e,"form")&&ee(e,"enctype")==="multipart/form-data"}function yn(t,n,r){let o=null;Bt(n,function(e){if(o==null){o=e.encodeParameters(t,r,n)}});if(o!=null){return o}else{if(mn(n)){return un(new FormData,Ln(r))}else{return fn(r)}}}function xn(e){return{tasks:[],elts:[e]}}function bn(e,t){const n=e[0];const r=e[e.length-1];if(t.scroll){var o=null;if(t.scrollTarget){o=ce(ae(n,t.scrollTarget))}if(t.scroll==="top"&&(n||o)){o=o||n;o.scrollTop=0}if(t.scroll==="bottom"&&(r||o)){o=o||r;o.scrollTop=o.scrollHeight}}if(t.show){var o=null;if(t.showTarget){let e=t.showTarget;if(t.showTarget==="window"){e="body"}o=ce(ae(n,e))}if(t.show==="top"&&(n||o)){o=o||n;o.scrollIntoView({block:"start",behavior:Q.config.scrollBehavior})}if(t.show==="bottom"&&(r||o)){o=o||r;o.scrollIntoView({block:"end",behavior:Q.config.scrollBehavior})}}}function wn(r,e,o,i){if(i==null){i={}}if(r==null){return i}const s=te(r,e);if(s){let e=s.trim();let t=o;if(e==="unset"){return null}if(e.indexOf("javascript:")===0){e=e.substr(11);t=true}else if(e.indexOf("js:")===0){e=e.substr(3);t=true}if(e.indexOf("{")!==0){e="{"+e+"}"}let n;if(t){n=vn(r,function(){return Function("return ("+e+")")()},{})}else{n=S(e)}for(const l in n){if(n.hasOwnProperty(l)){if(i[l]==null){i[l]=n[l]}}}}return wn(ce(u(r)),e,o,i)}function vn(e,t,n){if(Q.config.allowEval){return t()}else{fe(e,"htmx:evalDisallowedError");return n}}function Sn(e,t){return wn(e,"hx-vars",true,t)}function En(e,t){return wn(e,"hx-vals",false,t)}function Cn(e){return ue(Sn(e),En(e))}function On(t,n,r){if(r!==null){try{t.setRequestHeader(n,r)}catch(e){t.setRequestHeader(n,encodeURIComponent(r));t.setRequestHeader(n+"-URI-AutoEncoded","true")}}}function Rn(t){if(t.responseURL&&typeof URL!=="undefined"){try{const e=new URL(t.responseURL);return e.pathname+e.search}catch(e){fe(ne().body,"htmx:badResponseUrl",{url:t.responseURL})}}}function C(e,t){return t.test(e.getAllResponseHeaders())}function Hn(e,t,n){e=e.toLowerCase();if(n){if(n instanceof Element||typeof n==="string"){return he(e,t,null,null,{targetOverride:y(n),returnPromise:true})}else{return he(e,t,y(n.source),n.event,{handler:n.handler,headers:n.headers,values:n.values,targetOverride:y(n.target),swapOverride:n.swap,select:n.select,returnPromise:true})}}else{return he(e,t,null,null,{returnPromise:true})}}function Tn(e){const t=[];while(e){t.push(e);e=e.parentElement}return t}function qn(e,t,n){let r;let o;if(typeof URL==="function"){o=new URL(t,document.location.href);const i=document.location.origin;r=i===o.origin}else{o=t;r=l(t,document.location.origin)}if(Q.config.selfRequestsOnly){if(!r){return false}}return de(e,"htmx:validateUrl",ue({url:o,sameHost:r},n))}function Ln(e){if(e instanceof FormData)return e;const t=new FormData;for(const n in e){if(e.hasOwnProperty(n)){if(typeof e[n].forEach==="function"){e[n].forEach(function(e){t.append(n,e)})}else if(typeof e[n]==="object"&&!(e[n]instanceof Blob)){t.append(n,JSON.stringify(e[n]))}else{t.append(n,e[n])}}}return t}function Nn(r,o,e){return new Proxy(e,{get:function(t,e){if(typeof e==="number")return t[e];if(e==="length")return t.length;if(e==="push"){return function(e){t.push(e);r.append(o,e)}}if(typeof t[e]==="function"){return function(){t[e].apply(t,arguments);r.delete(o);t.forEach(function(e){r.append(o,e)})}}if(t[e]&&t[e].length===1){return t[e][0]}else{return t[e]}},set:function(e,t,n){e[t]=n;r.delete(o);e.forEach(function(e){r.append(o,e)});return true}})}function An(r){return new Proxy(r,{get:function(e,t){if(typeof t==="symbol"){return Reflect.get(e,t)}if(t==="toJSON"){return()=>Object.fromEntries(r)}if(t in e){if(typeof e[t]==="function"){return function(){return r[t].apply(r,arguments)}}else{return e[t]}}const n=r.getAll(t);if(n.length===0){return undefined}else if(n.length===1){return n[0]}else{return Nn(e,t,n)}},set:function(t,n,e){if(typeof n!=="string"){return false}t.delete(n);if(typeof e.forEach==="function"){e.forEach(function(e){t.append(n,e)})}else if(typeof e==="object"&&!(e instanceof Blob)){t.append(n,JSON.stringify(e))}else{t.append(n,e)}return true},deleteProperty:function(e,t){if(typeof t==="string"){e.delete(t)}return true},ownKeys:function(e){return Reflect.ownKeys(Object.fromEntries(e))},getOwnPropertyDescriptor:function(e,t){return Reflect.getOwnPropertyDescriptor(Object.fromEntries(e),t)}})}function he(t,n,r,o,i,D){let s=null;let l=null;i=i!=null?i:{};if(i.returnPromise&&typeof Promise!=="undefined"){var e=new Promise(function(e,t){s=e;l=t})}if(r==null){r=ne().body}const M=i.handler||Mn;const X=i.select||null;if(!le(r)){oe(s);return e}const u=i.targetOverride||ce(Ce(r));if(u==null||u==ve){fe(r,"htmx:targetError",{target:te(r,"hx-target")});oe(l);return e}let c=ie(r);const a=c.lastButtonClicked;if(a){const L=ee(a,"formaction");if(L!=null){n=L}const N=ee(a,"formmethod");if(N!=null){if(N.toLowerCase()!=="dialog"){t=N}}}const f=re(r,"hx-confirm");if(D===undefined){const K=function(e){return he(t,n,r,o,i,!!e)};const G={target:u,elt:r,path:n,verb:t,triggeringEvent:o,etc:i,issueRequest:K,question:f};if(de(r,"htmx:confirm",G)===false){oe(s);return e}}let d=r;let h=re(r,"hx-sync");let g=null;let F=false;if(h){const A=h.split(":");const I=A[0].trim();if(I==="this"){d=Ee(r,"hx-sync")}else{d=ce(ae(r,I))}h=(A[1]||"drop").trim();c=ie(d);if(h==="drop"&&c.xhr&&c.abortable!==true){oe(s);return e}else if(h==="abort"){if(c.xhr){oe(s);return e}else{F=true}}else if(h==="replace"){de(d,"htmx:abort")}else if(h.indexOf("queue")===0){const Z=h.split(" ");g=(Z[1]||"last").trim()}}if(c.xhr){if(c.abortable){de(d,"htmx:abort")}else{if(g==null){if(o){const P=ie(o);if(P&&P.triggerSpec&&P.triggerSpec.queue){g=P.triggerSpec.queue}}if(g==null){g="last"}}if(c.queuedRequests==null){c.queuedRequests=[]}if(g==="first"&&c.queuedRequests.length===0){c.queuedRequests.push(function(){he(t,n,r,o,i)})}else if(g==="all"){c.queuedRequests.push(function(){he(t,n,r,o,i)})}else if(g==="last"){c.queuedRequests=[];c.queuedRequests.push(function(){he(t,n,r,o,i)})}oe(s);return e}}const p=new XMLHttpRequest;c.xhr=p;c.abortable=F;const m=function(){c.xhr=null;c.abortable=false;if(c.queuedRequests!=null&&c.queuedRequests.length>0){const e=c.queuedRequests.shift();e()}};const B=re(r,"hx-prompt");if(B){var y=prompt(B);if(y===null||!de(r,"htmx:prompt",{prompt:y,target:u})){oe(s);m();return e}}if(f&&!D){if(!confirm(f)){oe(s);m();return e}}let x=dn(r,u,y);if(t!=="get"&&!mn(r)){x["Content-Type"]="application/x-www-form-urlencoded"}if(i.headers){x=ue(x,i.headers)}const U=cn(r,t);let b=U.errors;const j=U.formData;if(i.values){un(j,Ln(i.values))}const V=Ln(Cn(r));const w=un(j,V);let v=hn(w,r);if(Q.config.getCacheBusterParam&&t==="get"){v.set("org.htmx.cache-buster",ee(u,"id")||"true")}if(n==null||n===""){n=ne().location.href}const S=wn(r,"hx-request");const _=ie(r).boosted;let E=Q.config.methodsThatUseUrlParams.indexOf(t)>=0;const C={boosted:_,useUrlParams:E,formData:v,parameters:An(v),unfilteredFormData:w,unfilteredParameters:An(w),headers:x,target:u,verb:t,errors:b,withCredentials:i.credentials||S.credentials||Q.config.withCredentials,timeout:i.timeout||S.timeout||Q.config.timeout,path:n,triggeringEvent:o};if(!de(r,"htmx:configRequest",C)){oe(s);m();return e}n=C.path;t=C.verb;x=C.headers;v=Ln(C.parameters);b=C.errors;E=C.useUrlParams;if(b&&b.length>0){de(r,"htmx:validation:halted",C);oe(s);m();return e}const $=n.split("#");const z=$[0];const O=$[1];let R=n;if(E){R=z;const Y=!v.keys().next().done;if(Y){if(R.indexOf("?")<0){R+="?"}else{R+="&"}R+=fn(v);if(O){R+="#"+O}}}if(!qn(r,R,C)){fe(r,"htmx:invalidPath",C);oe(l);return e}p.open(t.toUpperCase(),R,true);p.overrideMimeType("text/html");p.withCredentials=C.withCredentials;p.timeout=C.timeout;if(S.noHeaders){}else{for(const k in x){if(x.hasOwnProperty(k)){const W=x[k];On(p,k,W)}}}const H={xhr:p,target:u,requestConfig:C,etc:i,boosted:_,select:X,pathInfo:{requestPath:n,finalRequestPath:R,responsePath:null,anchor:O}};p.onload=function(){try{const t=Tn(r);H.pathInfo.responsePath=Rn(p);M(r,H);if(H.keepIndicators!==true){en(T,q)}de(r,"htmx:afterRequest",H);de(r,"htmx:afterOnLoad",H);if(!le(r)){let e=null;while(t.length>0&&e==null){const n=t.shift();if(le(n)){e=n}}if(e){de(e,"htmx:afterRequest",H);de(e,"htmx:afterOnLoad",H)}}oe(s);m()}catch(e){fe(r,"htmx:onLoadError",ue({error:e},H));throw e}};p.onerror=function(){en(T,q);fe(r,"htmx:afterRequest",H);fe(r,"htmx:sendError",H);oe(l);m()};p.onabort=function(){en(T,q);fe(r,"htmx:afterRequest",H);fe(r,"htmx:sendAbort",H);oe(l);m()};p.ontimeout=function(){en(T,q);fe(r,"htmx:afterRequest",H);fe(r,"htmx:timeout",H);oe(l);m()};if(!de(r,"htmx:beforeRequest",H)){oe(s);m();return e}var T=Wt(r);var q=Qt(r);se(["loadstart","loadend","progress","abort"],function(t){se([p,p.upload],function(e){e.addEventListener(t,function(e){de(r,"htmx:xhr:"+t,{lengthComputable:e.lengthComputable,loaded:e.loaded,total:e.total})})})});de(r,"htmx:beforeSend",H);const J=E?null:yn(p,r,v);p.send(J);return e}function In(e,t){const n=t.xhr;let r=null;let o=null;if(C(n,/HX-Push:/i)){r=n.getResponseHeader("HX-Push");o="push"}else if(C(n,/HX-Push-Url:/i)){r=n.getResponseHeader("HX-Push-Url");o="push"}else if(C(n,/HX-Replace-Url:/i)){r=n.getResponseHeader("HX-Replace-Url");o="replace"}if(r){if(r==="false"){return{}}else{return{type:o,path:r}}}const i=t.pathInfo.finalRequestPath;const s=t.pathInfo.responsePath;const l=re(e,"hx-push-url");const u=re(e,"hx-replace-url");const c=ie(e).boosted;let a=null;let f=null;if(l){a="push";f=l}else if(u){a="replace";f=u}else if(c){a="push";f=s||i}if(f){if(f==="false"){return{}}if(f==="true"){f=s||i}if(t.pathInfo.anchor&&f.indexOf("#")===-1){f=f+"#"+t.pathInfo.anchor}return{type:a,path:f}}else{return{}}}function Pn(e,t){var n=new RegExp(e.code);return n.test(t.toString(10))}function kn(e){for(var t=0;t0){E().setTimeout(e,y.swapDelay)}else{e()}}if(f){fe(o,"htmx:responseError",ue({error:"Response Status Error Code "+s.status+" from "+i.pathInfo.requestPath},i))}}const Xn={};function Fn(){return{init:function(e){return null},getSelectors:function(){return null},onEvent:function(e,t){return true},transformResponse:function(e,t,n){return e},isInlineSwap:function(e){return false},handleSwap:function(e,t,n,r){return false},encodeParameters:function(e,t,n){return null}}}function Bn(e,t){if(t.init){t.init(n)}Xn[e]=ue(Fn(),t)}function Un(e){delete Xn[e]}function jn(e,n,r){if(n==undefined){n=[]}if(e==undefined){return n}if(r==undefined){r=[]}const t=te(e,"hx-ext");if(t){se(t.split(","),function(e){e=e.replace(/ /g,"");if(e.slice(0,7)=="ignore:"){r.push(e.slice(7));return}if(r.indexOf(e)<0){const t=Xn[e];if(t&&n.indexOf(t)<0){n.push(t)}}})}return jn(ce(u(e)),n,r)}var Vn=false;ne().addEventListener("DOMContentLoaded",function(){Vn=true});function _n(e){if(Vn||ne().readyState==="complete"){e()}else{ne().addEventListener("DOMContentLoaded",e)}}function $n(){if(Q.config.includeIndicatorStyles!==false){const e=Q.config.inlineStyleNonce?` nonce="${Q.config.inlineStyleNonce}"`:"";ne().head.insertAdjacentHTML("beforeend"," ."+Q.config.indicatorClass+"{opacity:0} ."+Q.config.requestClass+" ."+Q.config.indicatorClass+"{opacity:1; transition: opacity 200ms ease-in;} ."+Q.config.requestClass+"."+Q.config.indicatorClass+"{opacity:1; transition: opacity 200ms ease-in;} ")}}function zn(){const e=ne().querySelector('meta[name="htmx-config"]');if(e){return S(e.content)}else{return null}}function Jn(){const e=zn();if(e){Q.config=ue(Q.config,e)}}_n(function(){Jn();$n();let e=ne().body;Dt(e);const t=ne().querySelectorAll("[hx-trigger='restored'],[data-hx-trigger='restored']");e.addEventListener("htmx:abort",function(e){const t=e.target;const n=ie(t);if(n&&n.xhr){n.xhr.abort()}});const n=window.onpopstate?window.onpopstate.bind(window):null;window.onpopstate=function(e){if(e.state&&e.state.htmx){Yt();se(t,function(e){de(e,"htmx:restored",{document:ne(),triggerEvent:de})})}else{if(n){n(e)}}};E().setTimeout(function(){de(e,"htmx:load",{});e=null},0)});return Q}(); \ No newline at end of file diff --git a/assets/js/leaflet/leafembed.js b/assets/js/leaflet/leafembed.js index efe989dad..73a138008 100644 --- a/assets/js/leaflet/leafembed.js +++ b/assets/js/leaflet/leafembed.js @@ -14,7 +14,7 @@ function initmap(ShowGrid='No', MapTag='map', options={}) { // set up the map map = new L.Map(MapTag); // create the tile layer with correct attribution - var osmAttrib='Map data © OpenStreetMap contributors'; + var osmAttrib = option_map_tile_server_copyright; var osm = new L.TileLayer(osmUrl, {minZoom: 1, maxZoom: 12, attribution: osmAttrib}); var printer = L.easyPrint({ @@ -69,7 +69,7 @@ function initmap(ShowGrid='No', MapTag='map', options={}) { map.setView(new L.LatLng(_q_lat, _q_lng), _q_zoom); map.addLayer(osm); //map.on('moveend', onMapMove); // all data load directecty, without interest in recharging during a movement - var layerControl = new L.Control.Layers(null, { 'Gridsquares': maidenhead = L.maidenhead() }).addTo(map); + var layerControl = new L.Control.Layers(null, { [lang_general_gridsquares]: maidenhead = L.maidenhead() }).addTo(map); if(ShowGrid == "Yes") { maidenhead.addTo(map); } if ((typeof options.initmap_only=="undefined") || (options.initmap_only!=true)) { initplot(_url_qso, options); } diff --git a/assets/js/sections/accumulatedstatistics.js b/assets/js/sections/accumulatedstatistics.js index 3155e01b8..239ab00bd 100644 --- a/assets/js/sections/accumulatedstatistics.js +++ b/assets/js/sections/accumulatedstatistics.js @@ -8,6 +8,7 @@ function accumulatePlot(form) { var award = form.award.value; var mode = form.mode.value; var period = form.periodradio.value; + var propmode = form.propmode.value; $.ajax({ url: base_url + "index.php/accumulated/get_accumulated_data", type: "post", @@ -15,6 +16,7 @@ function accumulatePlot(form) { Band: form.band.value, Award: award, Mode: mode, + Propmode: propmode, Period: period, }, success: function (data) { @@ -206,3 +208,10 @@ function accumulatePlot(form) { }, }); } + +$('#band').change(function(){ + var band = $("#band option:selected").text(); + if (band == "SAT") { + $('#propmode').val('SAT'); + } +}); diff --git a/assets/js/sections/adif.js b/assets/js/sections/adif.js index 3e19699c4..4f9b2da27 100644 --- a/assets/js/sections/adif.js +++ b/assets/js/sections/adif.js @@ -14,7 +14,7 @@ $(document).ready(function(){ fileReader.onloadend = function() { arrayBuffer = this.result; let chker = partof(arrayBuffer,4096); - if (chker.toUpperCase().includes(''; - result += ' ' + locator2.toUpperCase() + ' Latitude = ' + html['latlng2'][0] + ' Longitude = ' + html['latlng2'][1] + '
'; - result += 'Distance between ' + locator1.toUpperCase() + ' and ' + locator2.toUpperCase() + ' is ' + html['distance'] + '.
'; - result += 'The bearing is ' + html['bearing'] + '.'; + var result = "
" + html['latlong_info_text'] + "

"; + result += html['text_latlng1'] + '
'; + result += html['text_latlng2'] + '

'; + result += html['distance'] + ' '; + result += html['bearing'] + '
'; $(".qrbResult").html(result); newpath(html['latlng1'], html['latlng2'], locator1, locator2); } }); } else { - $('.qrbResult').html(''); + $("#mapqrb").hide(); + $('.qrbResult').html(''); } } function validateLocator(locator) { - vucc_gridno = locator.split(",").length; - if(vucc_gridno == 3 || vucc_gridno > 4) { + const regex = /^[A-R]{2}[0-9]{2}([A-X]{2}([0-9]{2}([A-X]{2})?)?)?$/i; + const locators = locator.split(","); + + if (locators.length === 3 || locators.length > 4) { return false; } - if(locator.length < 4 && !(/^[a-rA-R]{2}[0-9]{2}[a-xA-X]{0,2}[0-9]{0,2}[a-xA-X]{0,2}$/.test(locator))) { - return false; + + for (let i = 0; i < locators.length; i++) { + let loc = locators[i].trim(); + + if (!regex.test(loc)) { + return false; + } } return true; @@ -938,7 +951,7 @@ function statesDropdown(states, set_state = null) { dropdown.empty(); var option = $('") + .attr("value", value.year) + .text(value.year)); + }); + } else { + $(".contestyear").append(lang_export_reg1testedi_no_contests_for_stationlocation); + } + } + }); +} + +function loadContests() { + $(".contestname").empty(); + $(".contestdates").empty(); + $(".contestbands").empty(); + $.ajax({ + url: base_url + 'index.php/reg1test/getContests', + type: 'post', + data: { + 'year': $("#year").val(), + 'station_id': $("#station_id").val() + }, + success: function (data) { + $(".contestname").append('
' + lang_export_reg1testedi_select_contest + '
' + + '' + + ' '); + + $.each(data, function (key, value) { + $('#contestid') + .append($("") + .attr("value", value.col_contest_id) + .text(value.contestname)); + }); + } + }); +} + +function loadContestDates() { + $(".contestdates").empty(); + $(".contestbands").empty(); + $.ajax({ + url: base_url + 'index.php/reg1test/getContestDates', + type: 'post', + data: { + 'year': $("#year").val(), + 'contestid': $("#contestid").val(), + 'station_id': $("#station_id").val() + }, + success: function (data) { + $(".contestdates").append('
' + lang_export_reg1testedi_select_date_range + '
' + + '
' + + '' + + '' + + '
' + + ' '); + + $.each(data, function (key, value) { + $('#contestdatesfrom') + .append($("") + .attr("value", value.date) + .text(value.date)); + }); + + + $.each(data, function (key, value) { + $('#contestdatesto') + .append($("") + .attr("value", value.date) + .text(value.date)); + }); + } + }); +} + +function loadContestBands() { + $(".contestbands").empty(); + + $.ajax({ + url: base_url + 'index.php/reg1test/getContestBands', + type: 'post', + data: { + 'contestid': $("#contestid").val(), + 'station_id': $("#station_id").val(), + 'contestdatesfrom': $("#contestdatesfrom").val(), + 'contestdatesto': $("#contestdatesto").val() + }, + success: function (data) { + $(".contestbands").append('
' + lang_export_reg1testedi_select_band + '
' + + '' + + ' '); + + $.each(data, function (key, value) { + $('#contestband') + .append($("") + .attr("value", value.band) + .text(value.band)); + }); + + $(".contestbands").append('' + lang_export_reg1testedi_bandhint + ''); + } + }); +} + +function addAdditionalInfo() { + $(".additionalinfo").removeAttr("hidden"); +} diff --git a/assets/js/sections/sattimers.js b/assets/js/sections/sattimers.js index 06f7af820..38724921f 100644 --- a/assets/js/sections/sattimers.js +++ b/assets/js/sections/sattimers.js @@ -92,7 +92,7 @@ function update(i) { } } -for (let i=1; i<=26; i+=2) { +for (let i=1; i<=28; i+=2) { var x = setInterval(function() { update(i); }, 1000); diff --git a/assets/js/sections/simplefle.js b/assets/js/sections/simplefle.js index 2f12ca500..6d5d7528f 100644 --- a/assets/js/sections/simplefle.js +++ b/assets/js/sections/simplefle.js @@ -226,6 +226,8 @@ function handleInput() { var sotaWwff = ""; qsoList = []; $("#qsoTable tbody").empty(); + errors = []; + checkMainFieldsErrors(); var text = textarea.val().trim(); lines = text.split("\n"); @@ -309,9 +311,6 @@ function handleInput() { itemNumber = itemNumber + 1; }); - errors = []; - checkMainFieldsErrors(); - if (callsign) { if (freq === 0) { freq = getFreqFromBand(band, mode); @@ -416,9 +415,7 @@ function handleInput() { } prevMode = mode; - - showErrors(); - }); //lines.forEach((row) + }); // Scroll to the bototm of #qsoTableBody (scroll by the value of its scrollheight property) $("#qsoTableBody").scrollTop($("#qsoTableBody").get(0).scrollHeight); @@ -437,9 +434,7 @@ function handleInput() { $(".js-qso-count").html(""); } - if (errors) { - $(".js-status").html(errors.join("
")); - } + showErrors(); } function checkMainFieldsErrors() { @@ -483,7 +478,7 @@ textarea.focus(function () { }); function addErrorMessage(errorMessage) { - errorMessage = '' + errorMessage + ""; + errorMessage = '
' + errorMessage + "
"; if (errors.includes(errorMessage) == false) { errors.push(errorMessage); } @@ -529,11 +524,15 @@ function clearSession() { $("#contest").val(""); qsoList = []; $(".js-qso-count").html(""); + errors = []; + $(".js-status").html(""); + window.location.reload(); } function showErrors() { if (errors) { - $(".js-status").html(errors.join("
")); + $(".js-status").html(errors.join("\n")); + resizeElements(); } } @@ -605,7 +604,7 @@ function getBandFromFreq(freq) { } else if (freq >= 300000 && freq <= 7500000) { return "submm"; } else { - return "Unknown"; + return ""; } } @@ -825,6 +824,8 @@ function resizeElements() { var textarea = $('#sfle_textarea'); var textareaOffset = 40; + var errorMessagesContainer = $('#errorMessages'); + var tableFrame = $('.sfletable.table'); var tableFrameOffset = 140; @@ -832,7 +833,7 @@ function resizeElements() { var tableoOffset = 160; if ($(window).width() >= 768) { - var newHeight = $(window).height() - textarea.offset().top - textareaOffset; + var newHeight = $(window).height() - textarea.offset().top - textareaOffset - errorMessagesContainer.height(); textarea.css('height', newHeight + 'px'); var newHeight = $(window).height() - tableFrame.offset().top - tableFrameOffset; diff --git a/assets/js/sections/station_locations.js b/assets/js/sections/station_locations.js index 43268951d..749e186d9 100644 --- a/assets/js/sections/station_locations.js +++ b/assets/js/sections/station_locations.js @@ -6,6 +6,25 @@ $(document).ready(function () { }, }); + $('#dxcc_id').multiselect({ + // template is needed for bs5 support + templates: { + button: '', + }, + enableFiltering: true, + enableFullValueFiltering: false, + enableCaseInsensitiveFiltering: true, + filterPlaceholder: lang_general_word_search, + widthSynchronizationMode: 'always', + numberDisplayed: 1, + inheritClass: true, + buttonWidth: '100%', + maxHeight: 600 + }); + $('.multiselect-container .multiselect-filter', $('#dxcc_id').parent()).css({ + 'position': 'sticky', 'top': '0px', 'z-index': 1, 'background-color':'inherit', 'width':'100%', 'height':'37px' + }) + if (window.location.pathname.indexOf("/station/edit") !== -1 || window.location.pathname.indexOf("/station/create") !== -1 || window.location.pathname.indexOf("/station/copy") !== -1) { selectize_usa_county('#stateDropdown', '#stationCntyInputEdit'); updateStateDropdown('#dxcc_id', '#stateInputLabel', '#location_us_county', '#stationCntyInputEdit'); diff --git a/assets/js/sections/timeline.js b/assets/js/sections/timeline.js new file mode 100644 index 000000000..f6b64395d --- /dev/null +++ b/assets/js/sections/timeline.js @@ -0,0 +1,6 @@ +$('#band').change(function(){ + var band = $("#band option:selected").text(); + if (band == "SAT") { + $('#propmode').val('SAT'); + } +}); diff --git a/assets/js/sections/wajamap.js b/assets/js/sections/wajamap.js index e12df68d8..b5dcf3431 100644 --- a/assets/js/sections/wajamap.js +++ b/assets/js/sections/wajamap.js @@ -157,7 +157,7 @@ const mapcoordinates = { "type": "FeatureCollection", "features": [ L.tileLayer( osmUrl, { - attribution: '© OpenStreetMap contributors, CC-BY-SA', + attribution: option_map_tile_server_copyright, maxZoom: 18 } ).addTo(map); @@ -206,8 +206,8 @@ info.onAdd = function (map) { // method that we will use to update the control based on feature properties passed info.update = function (props) { - this._div.innerHTML = '

Prefecture

' + (props ? - '' + props.id.substring(3,5) + ' - ' + props.name + '
' : 'Hover over a prefecture'); + this._div.innerHTML = '

' + lang_japan_province + '

' + (props ? + '' + props.id.substring(3,5) + ' - ' + props.name + '
' : lang_hover_over_a_prefecture); }; info.addTo(map); @@ -223,7 +223,7 @@ info.addTo(map); addMarkers(); }); - var layerControl = new L.Control.Layers(null, { 'Gridsquares': maidenhead = L.maidenhead() }).addTo(map); + var layerControl = new L.Control.Layers(null, { [lang_general_gridsquares]: maidenhead = L.maidenhead() }).addTo(map); maidenhead.addTo(map); } diff --git a/assets/js/sections/wasmap.js b/assets/js/sections/wasmap.js index b23fc984c..7a684517a 100644 --- a/assets/js/sections/wasmap.js +++ b/assets/js/sections/wasmap.js @@ -164,7 +164,7 @@ const mapcoordinates = { "type": "FeatureCollection", "features": [ L.tileLayer( osmUrl, { - attribution: '© OpenStreetMap contributors, CC-BY-SA', + attribution: option_map_tile_server_copyright, maxZoom: 18 } ).addTo(map); @@ -226,8 +226,8 @@ info.onAdd = function (map) { // method that we will use to update the control based on feature properties passed info.update = function (props) { - this._div.innerHTML = '

State

' + (props ? - '' + props.id.substring(3,5) + ' - ' + props.name + '
' : 'Hover over a state'); + this._div.innerHTML = '

' + lang_usa_state + '

' + (props ? + '' + props.id.substring(3,5) + ' - ' + props.name + '
' : lang_hover_over_a_state); }; info.addTo(map); @@ -243,7 +243,7 @@ info.addTo(map); addMarkers(); }); -var layerControl = new L.Control.Layers(null, { 'Gridsquares': maidenhead = L.maidenhead() }).addTo(map); +var layerControl = new L.Control.Layers(null, { [lang_general_gridsquares]: maidenhead = L.maidenhead() }).addTo(map); maidenhead.addTo(map); diff --git a/assets/js/winkey.js b/assets/js/winkey.js index c6195fe9c..7a319beda 100644 --- a/assets/js/winkey.js +++ b/assets/js/winkey.js @@ -28,7 +28,19 @@ ModeSelected.addEventListener('change', (event) => { } }); +$('#winkeycwspeed').change(function (event) { + // Get the value from the input + let speed = parseInt($('#winkeycwspeed').val(), 10); + // Convert to hexadecimal and pad if necessary + let hexspeed = speed.toString(16).padStart(2, '0'); + + // Create the command + let command = `02 ${hexspeed}`; + + // Send the command as hex bytes + sendHexToSerial(command); +}); let function1Name, function1Macro, function2Name, function2Macro, function3Name, function3Macro, function4Name, function4Macro, function5Name, function5Macro; @@ -69,9 +81,8 @@ let connectButton = document.getElementById("connectButton"); let statusBar = document.getElementById("statusBar"); //Couple the elements to the Events -connectButton.addEventListener("click", clickConnect) -sendButton.addEventListener("click", clickSend) -// statusButton.addEventListener("click", clickStatus) +connectButton.addEventListener("click", clickConnect); +sendButton.addEventListener("click", clickSend); //When the connectButton is pressed async function clickConnect() { @@ -92,7 +103,7 @@ navigator.serial.addEventListener('connect', e => { statusBar.innerText = `Connected to ${e.port}`; connectButton.innerText = "Disconnect" }); - + navigator.serial.addEventListener('disconnect', e => { statusBar.innerText = `Disconnected`; connectButton.innerText = "Connect" @@ -127,12 +138,12 @@ async function connect() { inputDone = port.readable.pipeTo(decoder.writable); inputStream = decoder.readable; - const encoder = new TextEncoderStream(); - outputDone = encoder.readable.pipeTo(port.writable); - outputStream = encoder.writable; - - writeToByte("0x00, 0x02"); - writeToByte("0x02, 0x00"); + // Keyer init + sendHexToSerial("00 02"); + await delay(300); // Wait for 300ms + sendHexToSerial("02 00"); + await delay(300); // Wait for 300ms + sendHexToSerial("02 14"); // init 20 wpm $('#winkey_buttons').show(); @@ -148,24 +159,88 @@ async function connect() { } } -//Write to the Serial port -async function writeToStream(line) { - var enc = new TextEncoder(); // always utf-8 - - const writer = outputStream.getWriter(); - writer.write(line); - writer.releaseLock(); +function stop_cw_sending() { + sendHexToSerial("0A"); + $("#send_carrier").attr("hidden", false); + $("#stop_carrier").attr("hidden", true); } -async function writeToByte(line) { - const writer = outputStream.getWriter(); - const data = new Uint8Array([line]); - writer.write(data); - writer.releaseLock(); +function send_carrier() { + sendHexToSerial("0B 01"); + $("#send_carrier").attr("hidden", true); + $("#stop_carrier").attr("hidden", false); +} + +function stop_carrier() { + sendHexToSerial("0B 00"); + $("#send_carrier").attr("hidden", false); + $("#stop_carrier").attr("hidden", true); +} + +function delay(ms) { + return new Promise(resolve => setTimeout(resolve, ms)); +} + +// Helper function to convert a hex string to a Uint8Array +function hexStringToUint8Array(hexString) { + // Remove any spaces or non-hex characters + hexString = hexString.replace(/[^0-9a-f]/gi, ''); + + // Ensure the string has an even length + if (hexString.length % 2 !== 0) { + console.warn('Hex string has an odd length, padding with a leading zero.'); + hexString = '0' + hexString; + } + + const byteArray = new Uint8Array(hexString.length / 2); + + for (let i = 0; i < hexString.length; i += 2) { + byteArray[i / 2] = parseInt(hexString.substr(i, 2), 16); + } + + return byteArray; +} + +async function sendHexToSerial(hexString) { + if (port && port.writable) { + // Convert the hex string to a Uint8Array + const byteArray = hexStringToUint8Array(hexString); + + // Create a writer from the writable stream + const writer = port.writable.getWriter(); + + try { + // Write the byte array to the serial port + await writer.write(byteArray); + } catch (error) { + console.error('Error writing to serial port:', error); + } finally { + // Release the lock on the writer + writer.releaseLock(); + } + } else { + console.error('Port is not available or writable.'); + } +} + +//Write to the Serial port +async function writeToStream(line) { + const outputStream = port.writable.getWriter(); + + // Convert the text to a Uint8Array + const encoder = new TextEncoder(); + const buffer = encoder.encode(line.toUpperCase()); + + // Write the Uint8Array to the serial port + await outputStream.write(buffer); + + // Release the stream lock + outputStream.releaseLock(); } //Disconnect from the Serial port async function disconnect() { + sendHexToSerial("00 03"); if (reader) { await reader.cancel(); @@ -188,11 +263,11 @@ async function disconnect() { //When the send button is pressed function clickSend() { - writeToStream(sendText.value); - writeToStream("\r"); - - //and clear the input field, so it's clear it has been sent - sendText.value = ""; + writeToStream(sendText.value).then(function() { + // writeToStream("\r"); + //and clear the input field, so it's clear it has been sent + $('#sendText').val(''); + }); } @@ -249,23 +324,7 @@ async function readLoop() { } } -function closeModal() { - var container = document.getElementById("modals-here") - var backdrop = document.getElementById("modal-backdrop") - var modal = document.getElementById("modal") - - modal.classList.remove("show") - backdrop.classList.remove("show") - - getMacros(); - - setTimeout(function() { - container.removeChild(backdrop) - container.removeChild(modal) - }, 200) -} - -function UpdateMacros(macrotext) { +function UpdateMacros(macrotext) { // Get the values from the form set to uppercase let CALL = document.getElementById("callsign").value.toUpperCase(); @@ -303,7 +362,7 @@ function getMacros() { const morsekey_func3_Button = document.getElementById('morsekey_func3'); morsekey_func3_Button.textContent = 'F3 (' + function3Name + ')'; - + const morsekey_func4_Button = document.getElementById('morsekey_func4'); morsekey_func4_Button.textContent = 'F4 (' + function4Name + ')'; @@ -311,3 +370,73 @@ function getMacros() { morsekey_func5_Button.textContent = 'F5 (' + function5Name + ')'; }); } + +$('#winkey_settings').click(function (event) { + $.ajax({ + url: base_url + 'index.php/qso/winkeysettings', + type: 'post', + success: function (html) { + BootstrapDialog.show({ + title: 'Winkey Macros', + size: BootstrapDialog.SIZE_NORMAL, + cssClass: 'options', + nl2br: false, + message: html, + onshown: function(dialog) { + }, + buttons: [{ + label: 'Save', + cssClass: 'btn-primary btn-sm', + id: 'saveButton', + action: function (dialogItself) { + winkey_macro_save(); + dialogItself.close(); + } + }, + { + label: lang_admin_close, + cssClass: 'btn-sm', + id: 'closeButton', + action: function (dialogItself) { + $('#optionButton').prop("disabled", false); + dialogItself.close(); + } + }], + onhide: function(dialogRef){ + $('#optionButton').prop("disabled", false); + }, + }); + } + }); +}); + +function winkey_macro_save() { + $.ajax({ + url: base_url + 'index.php/qso/cwmacrosave', + type: 'post', + data: { + function1_name: $('#function1_name').val(), + function1_macro: $('#function1_macro').val(), + function2_name: $('#function2_name').val(), + function2_macro: $('#function2_macro').val(), + function3_name: $('#function3_name').val(), + function3_macro: $('#function3_macro').val(), + function4_name: $('#function4_name').val(), + function4_macro: $('#function4_macro').val(), + function5_name: $('#function5_name').val(), + function5_macro: $('#function5_macro').val(), + }, + success: function (html) { + BootstrapDialog.alert({ + title: 'INFO', + message: 'Macros were saved.', + type: BootstrapDialog.TYPE_INFO, + closable: false, + draggable: false, + callback: function (result) { + getMacros(); + } + }); + } + }); +} diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index 6f543e149..3050c04d5 100644 --- a/assets/lang_src/messages.pot +++ b/assets/lang_src/messages.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-09 07:24+0000\n" +"POT-Creation-Date: 2024-09-07 07:18+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,8 +16,102 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: application/controllers/Accumulated.php:21 -#: application/views/interface_assets/header.php:150 +#: application/controllers/Accumulated.php:12 +#: application/controllers/Activators.php:13 +#: application/controllers/Activatorsmap.php:13 +#: application/controllers/Adif.php:13 application/controllers/Awards.php:16 +#: application/controllers/Backup.php:13 application/controllers/Backup.php:26 +#: application/controllers/Backup.php:63 application/controllers/Band.php:15 +#: application/controllers/Bandmap.php:9 +#: application/controllers/Cabrillo.php:16 +#: application/controllers/Cabrillo.php:53 +#: application/controllers/Cabrillo.php:80 +#: application/controllers/Cabrillo.php:135 +#: application/controllers/Calltester.php:11 +#: application/controllers/Cfdexport.php:18 +#: application/controllers/Cfdexport.php:29 +#: application/controllers/Components.php:13 +#: application/controllers/Contestcalendar.php:15 +#: application/controllers/Contesting.php:14 +#: application/controllers/Cron.php:26 application/controllers/Cron.php:162 +#: application/controllers/Csv.php:8 application/controllers/Csv.php:31 +#: application/controllers/Dayswithqso.php:11 +#: application/controllers/Debug.php:10 +#: application/controllers/Distancerecords.php:11 +#: application/controllers/Distances.php:11 +#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29 +#: application/controllers/Dxatlas.php:51 +#: application/controllers/Dxatlas.php:108 +#: application/controllers/Dxcalendar.php:8 +#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23 +#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144 +#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247 +#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:353 +#: application/controllers/Eqsl.php:420 application/controllers/Eqsl.php:436 +#: application/controllers/Eqsl.php:497 application/controllers/Hamsat.php:13 +#: application/controllers/Kmlexport.php:18 +#: application/controllers/Kmlexport.php:33 +#: application/controllers/Labels.php:26 +#: application/controllers/Logbookadvanced.php:16 +#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45 +#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104 +#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401 +#: application/controllers/Lotw.php:719 application/controllers/Lotw.php:827 +#: application/controllers/Lotw.php:835 application/controllers/Mode.php:15 +#: application/controllers/Notes.php:10 application/controllers/Options.php:15 +#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13 +#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12 +#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44 +#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147 +#: application/controllers/Qso.php:9 application/controllers/Qso.php:19 +#: application/controllers/Qso.php:176 application/controllers/Qso.php:275 +#: application/controllers/Qso.php:295 application/controllers/Qso.php:304 +#: application/controllers/Qso.php:600 application/controllers/Radio.php:261 +#: application/controllers/Radio.php:287 application/controllers/Radio.php:303 +#: application/controllers/Reg1test.php:18 +#: application/controllers/Reg1test.php:63 +#: application/controllers/Reg1test.php:102 +#: application/controllers/Reg1test.php:130 +#: application/controllers/Reg1test.php:164 +#: application/controllers/Satellite.php:18 +#: application/controllers/Satellite.php:37 +#: application/controllers/Satellite.php:44 +#: application/controllers/Satellite.php:53 +#: application/controllers/Satellite.php:72 +#: application/controllers/Satellite.php:87 +#: application/controllers/Satellite.php:95 +#: application/controllers/Satellite.php:103 +#: application/controllers/Satellite.php:117 +#: application/controllers/Satellite.php:135 +#: application/controllers/Satellite.php:146 +#: application/controllers/Satellite.php:162 +#: application/controllers/Satellite.php:190 +#: application/controllers/Satellite.php:201 +#: application/controllers/Satellite.php:223 +#: application/controllers/Satellite.php:236 +#: application/controllers/Satellite.php:244 +#: application/controllers/Sattimers.php:9 +#: application/controllers/Search.php:13 +#: application/controllers/Simplefle.php:7 +#: application/controllers/Station.php:17 +#: application/controllers/Stationsetup.php:15 +#: application/controllers/Themes.php:17 +#: application/controllers/Timeline.php:10 +#: application/controllers/Timeplotter.php:11 +#: application/controllers/Update.php:24 application/controllers/Update.php:273 +#: application/controllers/Update.php:284 +#: application/controllers/Update.php:295 +#: application/controllers/Update.php:306 application/controllers/User.php:13 +#: application/controllers/User.php:45 application/controllers/User.php:230 +#: application/controllers/User.php:231 application/controllers/User.php:743 +#: application/controllers/User.php:762 application/controllers/User.php:1045 +#: application/controllers/User.php:1247 +#: application/controllers/User_options.php:9 +msgid "You're not allowed to do that!" +msgstr "" + +#: application/controllers/Accumulated.php:19 +#: application/views/interface_assets/header.php:152 msgid "Accumulated Statistics" msgstr "" @@ -27,24 +121,26 @@ msgid "Activated Gridsquare Map" msgstr "" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:910 -#: application/controllers/Awards.php:942 +#: application/controllers/Awards.php:919 +#: application/controllers/Awards.php:951 #: application/controllers/Gridmap.php:31 -#: application/controllers/Visitor.php:374 -#: application/views/activators/index.php:101 +#: application/controllers/Visitor.php:385 +#: application/views/activators/index.php:100 +#: application/views/interface_assets/footer.php:43 +#: application/views/visitor/layout/footer.php:22 #: application/views/visitor/layout/header.php:68 msgid "Gridsquares" msgstr "" #: application/controllers/Activated_gridmap.php:32 #: application/controllers/Gridmap.php:32 -#: application/controllers/Visitor.php:375 +#: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" msgstr "" #: application/controllers/Activated_gridmap.php:33 #: application/controllers/Gridmap.php:33 -#: application/controllers/Visitor.php:376 +#: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" msgstr "" @@ -53,12 +149,13 @@ msgid "Total gridsquares activated" msgstr "" #: application/controllers/Activators.php:20 -#: application/views/activators/index.php:2 +#: application/views/activators/index.php:5 #: application/views/interface_assets/header.php:142 msgid "Gridsquare Activators" msgstr "" #: application/controllers/Activatorsmap.php:17 +#: application/views/activators/index.php:2 msgid "Activators Map" msgstr "" @@ -75,7 +172,7 @@ msgid "ADIF Export" msgstr "" #: application/controllers/Adif.php:145 -#: application/views/interface_assets/header.php:384 +#: application/views/interface_assets/header.php:388 msgid "ADIF Import / Export" msgstr "" @@ -88,20 +185,25 @@ msgstr "" msgid "Unsupported Filetype" msgstr "" -#: application/controllers/Adif.php:245 +#: application/controllers/Adif.php:240 +#: application/views/adif/import_failed.php:12 +msgid "ADIF Import failed!" +msgstr "" + +#: application/controllers/Adif.php:254 msgid "Station Profile not valid for User" msgstr "" -#: application/controllers/Adif.php:252 +#: application/controllers/Adif.php:261 #: application/views/adif/import_success.php:12 msgid "ADIF Imported" msgstr "" -#: application/controllers/Adif.php:263 +#: application/controllers/Adif.php:272 msgid "DCL Import" msgstr "" -#: application/controllers/Adif.php:319 +#: application/controllers/Adif.php:328 msgid "DCL Data Imported" msgstr "" @@ -131,25 +233,8 @@ msgstr "" msgid "API Key %s has been deleted" msgstr "" -#: application/controllers/Api.php:118 -msgid "Key Disabled" -msgstr "" - -#: application/controllers/Api.php:118 -msgid "No Key Found" -msgstr "" - -#: application/controllers/Api.php:120 -msgid "Key Invalid - either not found or disabled" -msgstr "" - -#: application/controllers/Api.php:124 -#: application/views/lotw_views/index.php:95 -msgid "Valid" -msgstr "" - #: application/controllers/Awards.php:22 -#: application/views/interface_assets/header.php:158 +#: application/views/interface_assets/header.php:160 #: application/views/qso/edit_ajax.php:35 msgid "Awards" msgstr "" @@ -164,12 +249,13 @@ msgstr "" #: application/controllers/Awards.php:652 #: application/controllers/Awards.php:714 #: application/controllers/Awards.php:776 -#: application/controllers/Awards.php:847 -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:930 -#: application/controllers/Awards.php:1125 -#: application/controllers/Awards.php:1615 -#: application/controllers/Awards.php:1755 +#: application/controllers/Awards.php:856 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:939 +#: application/controllers/Awards.php:1140 +#: application/controllers/Awards.php:1639 +#: application/controllers/Awards.php:1779 +#: application/controllers/Awards.php:1908 #, php-format msgid "Awards - %s" msgstr "" @@ -177,13 +263,13 @@ msgstr "" #: application/controllers/Awards.php:92 #: application/views/awards/dok/index.php:149 #: application/views/bands/index.php:47 -#: application/views/contesting/index.php:170 -#: application/views/interface_assets/header.php:194 -#: application/views/logbookadvanced/index.php:613 +#: application/views/contesting/index.php:53 +#: application/views/interface_assets/header.php:198 +#: application/views/logbookadvanced/index.php:641 #: application/views/logbookadvanced/useroptions.php:130 -#: application/views/qso/edit_ajax.php:361 application/views/qso/index.php:264 -#: application/views/qso/index.php:508 application/views/user/edit.php:603 -#: application/views/view_log/qso.php:351 +#: application/views/qso/edit_ajax.php:388 application/views/qso/index.php:264 +#: application/views/qso/index.php:518 application/views/user/edit.php:603 +#: application/views/view_log/qso.php:354 msgid "DOK" msgstr "" @@ -191,15 +277,15 @@ msgstr "" #: application/views/bandmap/list.php:112 application/views/bands/index.php:48 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 -#: application/views/interface_assets/header.php:164 +#: application/views/interface_assets/header.php:166 #: application/views/kml/index.php:47 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:145 -#: application/views/logbookadvanced/index.php:580 +#: application/views/logbookadvanced/index.php:156 +#: application/views/logbookadvanced/index.php:608 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/useroptions.php:82 #: application/views/lookup/index.php:4 -#: application/views/lotw_views/index.php:40 +#: application/views/lotw_views/index.php:36 #: application/views/qso/edit_ajax.php:219 application/views/qso/index.php:361 #: application/views/search/cqzones_result.php:15 #: application/views/search/result.php:27 @@ -214,12 +300,12 @@ msgid "Awards - WAJA" msgstr "" #: application/controllers/Awards.php:327 application/views/bands/index.php:51 -#: application/views/interface_assets/header.php:210 +#: application/views/interface_assets/header.php:214 msgid "JCC" msgstr "" #: application/controllers/Awards.php:375 application/views/bands/index.php:57 -#: application/views/interface_assets/header.php:170 +#: application/views/interface_assets/header.php:172 msgid "VUCC" msgstr "" @@ -228,15 +314,20 @@ msgid "Log View - VUCC" msgstr "" #: application/controllers/Awards.php:453 -#: application/controllers/Timeline.php:92 -#: application/controllers/Timeline.php:95 -#: application/controllers/Timeline.php:98 -#: application/controllers/Timeline.php:101 -#: application/controllers/Timeline.php:104 -#: application/controllers/Timeline.php:107 +#: application/controllers/Distancerecords.php:59 +#: application/controllers/Timeline.php:105 +#: application/controllers/Timeline.php:108 +#: application/controllers/Timeline.php:111 +#: application/controllers/Timeline.php:114 +#: application/controllers/Timeline.php:117 +#: application/controllers/Timeline.php:120 msgid "Log View" msgstr "" +#: application/controllers/Awards.php:454 +msgid " and band " +msgstr "" + #: application/controllers/Awards.php:457 msgid " and sat " msgstr "" @@ -258,12 +349,12 @@ msgid " and " msgstr "" #: application/controllers/Awards.php:486 -#: application/controllers/Logbook.php:1278 +#: application/controllers/Logbook.php:1289 #: application/views/awards/index.php:8 application/views/bands/index.php:55 #: application/views/dashboard/index.php:9 -#: application/views/interface_assets/header.php:178 -#: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:259 +#: application/views/interface_assets/header.php:182 +#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/index.php:270 #: application/views/logbookadvanced/useroptions.php:98 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:17 @@ -271,10 +362,10 @@ msgstr "" #: application/views/qslcard/searchresult.php:49 #: application/views/qslcard/searchresult.php:65 #: application/views/qslcard/searchresult.php:81 -#: application/views/qso/components/previous_contacts.php:83 -#: application/views/qso/edit_ajax.php:336 +#: application/views/qso/components/previous_contacts.php:82 +#: application/views/qso/edit_ajax.php:363 #: application/views/search/search_result_ajax.php:9 -#: application/views/station_profile/edit.php:216 +#: application/views/station_profile/edit.php:243 #: application/views/user/edit.php:234 application/views/user/edit.php:256 #: application/views/user/edit.php:278 application/views/user/edit.php:300 #: application/views/user/edit.php:323 @@ -284,18 +375,18 @@ msgid "SOTA" msgstr "" #: application/controllers/Awards.php:503 -#: application/controllers/Logbook.php:1279 +#: application/controllers/Logbook.php:1290 #: application/views/bands/index.php:60 #: application/views/dashboard/index.php:10 -#: application/views/interface_assets/header.php:172 -#: application/views/logbookadvanced/edit.php:19 -#: application/views/logbookadvanced/index.php:279 +#: application/views/interface_assets/header.php:176 +#: application/views/logbookadvanced/edit.php:20 +#: application/views/logbookadvanced/index.php:290 #: application/views/logbookadvanced/useroptions.php:134 #: application/views/lookup/index.php:9 -#: application/views/qso/components/previous_contacts.php:84 -#: application/views/qso/edit_ajax.php:341 +#: application/views/qso/components/previous_contacts.php:83 +#: application/views/qso/edit_ajax.php:368 #: application/views/search/search_result_ajax.php:10 -#: application/views/station_profile/edit.php:229 +#: application/views/station_profile/edit.php:256 #: application/views/user/edit.php:235 application/views/user/edit.php:257 #: application/views/user/edit.php:279 application/views/user/edit.php:301 #: application/views/user/edit.php:324 @@ -304,18 +395,18 @@ msgid "WWFF" msgstr "" #: application/controllers/Awards.php:520 -#: application/controllers/Logbook.php:1280 +#: application/controllers/Logbook.php:1291 #: application/views/bands/index.php:52 #: application/views/dashboard/index.php:11 -#: application/views/interface_assets/header.php:182 +#: application/views/interface_assets/header.php:186 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:263 -#: application/views/logbookadvanced/index.php:595 +#: application/views/logbookadvanced/index.php:274 +#: application/views/logbookadvanced/index.php:623 #: application/views/logbookadvanced/useroptions.php:106 -#: application/views/qso/components/previous_contacts.php:85 -#: application/views/qso/edit_ajax.php:346 +#: application/views/qso/components/previous_contacts.php:84 +#: application/views/qso/edit_ajax.php:373 #: application/views/search/search_result_ajax.php:11 -#: application/views/station_profile/edit.php:242 +#: application/views/station_profile/edit.php:269 #: application/views/user/edit.php:236 application/views/user/edit.php:258 #: application/views/user/edit.php:280 application/views/user/edit.php:302 #: application/views/user/edit.php:325 @@ -334,7 +425,7 @@ msgid "Worked All States (WAS)" msgstr "" #: application/controllers/Awards.php:714 application/views/bands/index.php:53 -#: application/views/interface_assets/header.php:188 +#: application/views/interface_assets/header.php:192 msgid "RAC" msgstr "" @@ -342,74 +433,80 @@ msgstr "" msgid "H26" msgstr "" -#: application/controllers/Awards.php:847 +#: application/controllers/Awards.php:856 msgid "IOTA (Island On The Air)" msgstr "" -#: application/controllers/Awards.php:858 -#: application/controllers/Awards.php:872 -#: application/views/interface_assets/header.php:230 +#: application/controllers/Awards.php:867 +#: application/controllers/Awards.php:881 +#: application/views/interface_assets/header.php:234 msgid "US Counties" msgstr "" -#: application/controllers/Awards.php:887 +#: application/controllers/Awards.php:896 msgid "Log View - Counties" msgstr "" -#: application/controllers/Awards.php:894 +#: application/controllers/Awards.php:903 msgid "Awards - " msgstr "" -#: application/controllers/Awards.php:911 -#: application/controllers/Awards.php:943 +#: application/controllers/Awards.php:920 +#: application/controllers/Awards.php:952 msgid "Gridsquares worked" msgstr "" -#: application/controllers/Awards.php:912 -#: application/controllers/Awards.php:944 +#: application/controllers/Awards.php:921 +#: application/controllers/Awards.php:953 msgid "Gridsquares confirmed on LoTW" msgstr "" -#: application/controllers/Awards.php:913 -#: application/controllers/Awards.php:945 +#: application/controllers/Awards.php:922 +#: application/controllers/Awards.php:954 msgid "Gridsquares confirmed by paper QSL" msgstr "" -#: application/controllers/Awards.php:930 +#: application/controllers/Awards.php:939 msgid "Fred Fish Memorial Award (FFMA)" msgstr "" -#: application/controllers/Awards.php:1125 -#: application/views/interface_assets/header.php:168 +#: application/controllers/Awards.php:1140 +#: application/views/interface_assets/header.php:170 #: application/views/logbookadvanced/useroptions.php:138 msgid "SIG" msgstr "" -#: application/controllers/Awards.php:1143 +#: application/controllers/Awards.php:1158 msgid "Awards - SIG - " msgstr "" -#: application/controllers/Awards.php:1755 -#: application/views/awards/itu/index.php:18 +#: application/controllers/Awards.php:1779 +#: application/views/awards/itu/index.php:20 msgid "ITU Zones" msgstr "" +#: application/controllers/Awards.php:1908 +#: application/views/awards/wac/index.php:8 +#: application/views/interface_assets/header.php:174 +msgid "Worked All Continents (WAC)" +msgstr "" + #: application/controllers/Backup.php:15 application/views/backup/main.php:14 -#: application/views/interface_assets/header.php:280 +#: application/views/interface_assets/header.php:284 msgid "Backup" msgstr "" -#: application/controllers/Backup.php:48 +#: application/controllers/Backup.php:50 msgid "ADIF - Backup" msgstr "" -#: application/controllers/Backup.php:80 +#: application/controllers/Backup.php:84 msgid "Notes - Backup" msgstr "" #: application/controllers/Band.php:25 application/views/bands/index.php:28 #: application/views/bands/index.php:32 -#: application/views/interface_assets/header.php:379 +#: application/views/interface_assets/header.php:383 #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:56 msgid "Bands" @@ -425,8 +522,8 @@ msgstr "" #: application/controllers/Bandmap.php:28 #: application/controllers/Bandmap.php:69 -#: application/controllers/Options.php:137 -#: application/controllers/Options.php:148 +#: application/controllers/Options.php:145 +#: application/controllers/Options.php:156 #: application/views/options/sidebar.php:10 msgid "DXCluster" msgstr "" @@ -436,7 +533,7 @@ msgid "Export Cabrillo" msgstr "" #: application/controllers/Cfdexport.php:20 -#: application/views/interface_assets/header.php:396 +#: application/views/interface_assets/header.php:402 msgid "CFD Export" msgstr "" @@ -453,7 +550,7 @@ msgid "No user has configured Clublog." msgstr "" #: application/controllers/Contestcalendar.php:19 -#: application/views/interface_assets/header.php:247 +#: application/views/interface_assets/header.php:251 msgid "Contest Calendar" msgstr "" @@ -462,38 +559,62 @@ msgstr "" msgid "Contest Logging" msgstr "" -#: application/controllers/Contesting.php:112 -#: application/views/interface_assets/header.php:274 +#: application/controllers/Contesting.php:113 +#: application/views/interface_assets/header.php:278 msgid "Contests" msgstr "" -#: application/controllers/Contesting.php:126 +#: application/controllers/Contesting.php:127 msgid "Update Contest" msgstr "" #: application/controllers/Continents.php:25 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:57 -#: application/views/interface_assets/header.php:154 +#: application/views/interface_assets/header.php:156 msgid "Continents" msgstr "" #: application/controllers/Cron.php:38 -#: application/views/interface_assets/header.php:284 +#: application/views/interface_assets/header.php:288 msgid "Cron Manager" msgstr "" -#: application/controllers/Cron.php:137 application/views/cron/edit.php:5 +#: application/controllers/Cron.php:154 application/views/cron/edit.php:5 msgid "Edit Cronjob" msgstr "" +#: application/controllers/Cron.php:274 +#: application/views/interface_assets/footer.php:36 +msgid "OK" +msgstr "" + +#: application/controllers/Cron.php:278 +#, php-format +msgid "" +"Last run occurred more than %s seconds ago.%sPlease check your master cron! " +"It should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:281 +#, php-format +msgid "" +"Last run occurred more than %s minutes ago.%sSeems like your Mastercron " +"isn't running!%sIt should run every minute (* * * * *)." +msgstr "" + +#: application/controllers/Cron.php:286 application/views/cron/index.php:29 +msgctxt "Master Cron" +msgid "Not running" +msgstr "" + #: application/controllers/Csv.php:20 application/views/csv/index.php:3 -#: application/views/interface_assets/header.php:392 +#: application/views/interface_assets/header.php:396 msgid "SOTA CSV Export" msgstr "" -#: application/controllers/Dashboard.php:108 -#: application/controllers/Visitor.php:132 +#: application/controllers/Dashboard.php:123 +#: application/controllers/Visitor.php:134 msgid "Dashboard" msgstr "" @@ -540,6 +661,12 @@ msgstr "" msgid "File Migration failed. Please check the Error Log." msgstr "" +#: application/controllers/Distancerecords.php:42 +#: application/controllers/Distancerecords.php:59 +#: application/views/interface_assets/header.php:146 +msgid "Satellite Distance Records" +msgstr "" + #: application/controllers/Distances.php:17 #: application/views/distances/index.php:5 #: application/views/distances/index.php:8 @@ -547,27 +674,31 @@ msgstr "" msgid "Distances Worked" msgstr "" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 #: application/views/distances/index.php:15 msgid "QSOs with" msgstr "" -#: application/controllers/Distances.php:82 +#: application/controllers/Distances.php:83 msgid "and band" msgstr "" +#: application/controllers/Distances.php:83 +msgid "and propagation" +msgstr "" + #: application/controllers/Dxatlas.php:19 -#: application/views/interface_assets/header.php:390 +#: application/views/interface_assets/header.php:394 msgid "DX Atlas Gridsquare Export" msgstr "" #: application/controllers/Dxcalendar.php:10 -#: application/views/interface_assets/header.php:245 +#: application/views/interface_assets/header.php:249 msgid "DX Calendar" msgstr "" #: application/controllers/Eqsl.php:34 -#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:325 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:306 msgid "eQSL Cards" @@ -585,19 +716,19 @@ msgstr "" msgid "eQSL QSO Upload" msgstr "" -#: application/controllers/Eqsl.php:415 +#: application/controllers/Eqsl.php:424 msgid "eQSL Tools" msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid " / Errors: " msgstr "" -#: application/controllers/Eqsl.php:462 +#: application/controllers/Eqsl.php:472 msgid "Successfully downloaded: " msgstr "" -#: application/controllers/Eqsl.php:471 +#: application/controllers/Eqsl.php:481 msgid "eQSL Card Image Download" msgstr "" @@ -607,7 +738,7 @@ msgid "Gridsquare Map" msgstr "" #: application/controllers/Gridmap.php:34 -#: application/controllers/Visitor.php:377 +#: application/controllers/Visitor.php:388 msgid "Total gridsquares worked" msgstr "" @@ -627,7 +758,7 @@ msgid "No QSOs found to upload." msgstr "" #: application/controllers/Kmlexport.php:24 -#: application/views/interface_assets/header.php:388 +#: application/views/interface_assets/header.php:392 #: application/views/kml/index.php:3 msgid "KML Export" msgstr "" @@ -640,59 +771,59 @@ msgstr "" msgid "Create Label Type" msgstr "" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:402 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:406 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:403 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:407 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 #: application/views/labels/index.php:76 msgid "Paper Type" msgstr "" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:404 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:408 #: application/views/labels/index.php:42 application/views/labels/index.php:77 msgid "Measurement" msgstr "" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:405 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:409 msgid "Top Margin" msgstr "" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:406 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:410 msgid "Left Margin" msgstr "" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:407 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:411 msgid "QSLs Horizontally" msgstr "" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:408 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:412 msgid "QSLs Vertically" msgstr "" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:409 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:413 msgid "Horizontal Space" msgstr "" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:410 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:414 msgid "Vertical Space" msgstr "" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:411 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:415 msgid "Label width" msgstr "" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:412 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:416 msgid "Label height" msgstr "" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:413 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:417 msgid "Size of Font" msgstr "" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:414 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:418 msgid "Number of QSOs on label" msgstr "" @@ -701,22 +832,22 @@ msgid "Create Paper Type" msgstr "" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:461 +#: application/controllers/Labels.php:465 msgid "Paper Name" msgstr "" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:462 +#: application/controllers/Labels.php:466 msgid "Paper Width" msgstr "" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:463 +#: application/controllers/Labels.php:467 msgid "Paper Height" msgstr "" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:471 +#: application/controllers/Labels.php:475 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -743,27 +874,27 @@ msgstr "" msgid "0 QSOs found for print!" msgstr "" -#: application/controllers/Labels.php:391 +#: application/controllers/Labels.php:395 msgid "Edit Label" msgstr "" -#: application/controllers/Labels.php:420 +#: application/controllers/Labels.php:424 msgid "Label was saved." msgstr "" -#: application/controllers/Labels.php:428 +#: application/controllers/Labels.php:432 msgid "Label was deleted." msgstr "" -#: application/controllers/Labels.php:450 +#: application/controllers/Labels.php:454 msgid "Edit Paper" msgstr "" -#: application/controllers/Labels.php:475 +#: application/controllers/Labels.php:479 msgid "Paper was saved." msgstr "" -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "Paper was deleted." msgstr "" @@ -785,20 +916,20 @@ msgstr "" msgid "Logbook" msgstr "" -#: application/controllers/Logbook.php:653 -#: application/controllers/Logbook.php:668 +#: application/controllers/Logbook.php:657 +#: application/controllers/Logbook.php:672 #: application/views/activated_gridmap/index.php:58 #: application/views/awards/dok/index.php:55 #: application/views/awards/dxcc/index.php:61 -#: application/views/awards/helvetia/index.php:53 +#: application/views/awards/helvetia/index.php:55 #: application/views/awards/jcc/index.php:52 -#: application/views/awards/rac/index.php:45 +#: application/views/awards/rac/index.php:47 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:72 -#: application/views/awards/waja/index.php:53 -#: application/views/awards/was/index.php:53 +#: application/views/awards/waja/index.php:55 +#: application/views/awards/was/index.php:55 #: application/views/gridmap/index.php:101 -#: application/views/logbookadvanced/index.php:568 +#: application/views/logbookadvanced/index.php:596 #: application/views/logbookadvanced/useroptions.php:62 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:28 @@ -811,20 +942,21 @@ msgstr "" msgid "QSL" msgstr "" -#: application/controllers/Logbook.php:656 +#: application/controllers/Logbook.php:660 #: application/views/activated_gridmap/index.php:66 -#: application/views/awards/cq/index.php:58 +#: application/views/awards/cq/index.php:60 #: application/views/awards/dok/index.php:59 #: application/views/awards/dxcc/index.php:65 -#: application/views/awards/helvetia/index.php:57 -#: application/views/awards/itu/index.php:58 +#: application/views/awards/helvetia/index.php:59 +#: application/views/awards/itu/index.php:60 #: application/views/awards/jcc/index.php:56 -#: application/views/awards/rac/index.php:49 +#: application/views/awards/rac/index.php:51 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:80 -#: application/views/awards/waja/index.php:57 -#: application/views/awards/was/index.php:57 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/waja/index.php:59 +#: application/views/awards/was/index.php:59 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:109 #: application/views/logbookadvanced/useroptions.php:66 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159 @@ -832,28 +964,29 @@ msgstr "" #: application/views/qslprint/qsolist.php:21 #: application/views/qslprint/qsolist.php:167 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:384 +#: application/views/qso/edit_ajax.php:411 #: application/views/search/result_search.php:22 #: application/views/search/search_result_ajax.php:298 #: application/views/search/search_result_ajax.php:313 #: application/views/timeline/index.php:60 application/views/user/edit.php:563 -#: application/views/user/edit.php:659 application/views/view_log/qso.php:408 +#: application/views/user/edit.php:659 application/views/view_log/qso.php:411 msgid "LoTW" msgstr "" -#: application/controllers/Logbook.php:659 +#: application/controllers/Logbook.php:663 #: application/views/activated_gridmap/index.php:74 -#: application/views/awards/cq/index.php:62 +#: application/views/awards/cq/index.php:64 #: application/views/awards/dok/index.php:63 #: application/views/awards/dxcc/index.php:69 -#: application/views/awards/helvetia/index.php:61 -#: application/views/awards/itu/index.php:62 +#: application/views/awards/helvetia/index.php:63 +#: application/views/awards/itu/index.php:64 #: application/views/awards/jcc/index.php:60 -#: application/views/awards/rac/index.php:53 +#: application/views/awards/rac/index.php:55 #: application/views/awards/wab/index.php:88 -#: application/views/awards/waja/index.php:61 -#: application/views/awards/was/index.php:61 -#: application/views/dashboard/index.php:244 +#: application/views/awards/wac/index.php:52 +#: application/views/awards/waja/index.php:63 +#: application/views/awards/was/index.php:63 +#: application/views/dashboard/index.php:260 #: application/views/gridmap/index.php:117 #: application/views/logbookadvanced/useroptions.php:70 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130 @@ -861,63 +994,67 @@ msgstr "" #: application/views/qslprint/qsolist.php:18 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:151 -#: application/views/qso/edit_ajax.php:381 +#: application/views/qso/edit_ajax.php:408 #: application/views/search/result_search.php:16 #: application/views/search/search_result_ajax.php:260 #: application/views/search/search_result_ajax.php:273 -#: application/views/station_profile/edit.php:278 +#: application/views/station_profile/edit.php:305 #: application/views/timeline/index.php:64 application/views/user/edit.php:564 #: application/views/user/edit.php:667 application/views/user/edit.php:731 msgid "eQSL" msgstr "" -#: application/controllers/Logbook.php:665 +#: application/controllers/Logbook.php:669 #: application/views/awards/dok/index.php:71 #: application/views/awards/dxcc/index.php:77 #: application/views/awards/jcc/index.php:68 #: application/views/awards/wab/index.php:104 -#: application/views/awards/waja/index.php:69 +#: application/views/awards/waja/index.php:71 #: application/views/logbookadvanced/useroptions.php:74 #: application/views/search/search_result_ajax.php:124 -#: application/views/station_profile/edit.php:325 +#: application/views/station_profile/edit.php:352 +#: application/views/timeline/index.php:68 #: application/views/update/index.php:20 application/views/user/edit.php:566 #: application/views/user/edit.php:683 -#: application/views/view_log/partial/log_ajax.php:83 -#: application/views/view_log/qso.php:423 +#: application/views/view_log/partial/log_ajax.php:85 +#: application/views/view_log/qso.php:426 msgid "Clublog" msgstr "" -#: application/controllers/Logbook.php:1273 +#: application/controllers/Logbook.php:1284 #: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:39 #: application/views/adif/dcl_success.php:33 -#: application/views/awards/cq/index.php:86 +#: application/views/awards/cq/index.php:88 #: application/views/awards/dok/index.php:91 #: application/views/awards/dxcc/index.php:162 -#: application/views/awards/helvetia/index.php:85 +#: application/views/awards/helvetia/index.php:87 #: application/views/awards/iota/index.php:105 -#: application/views/awards/itu/index.php:86 +#: application/views/awards/itu/index.php:88 #: application/views/awards/jcc/index.php:88 -#: application/views/awards/rac/index.php:77 +#: application/views/awards/rac/index.php:79 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:53 -#: application/views/awards/waja/index.php:89 -#: application/views/awards/was/index.php:85 +#: application/views/awards/wac/index.php:110 +#: application/views/awards/waja/index.php:91 +#: application/views/awards/was/index.php:87 #: application/views/components/hamsat/table.php:30 -#: application/views/contesting/index.php:57 -#: application/views/contesting/index.php:203 +#: application/views/contesting/index.php:108 +#: application/views/contesting/index.php:250 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 +#: 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/logbookadvanced/edit.php:11 -#: application/views/logbookadvanced/index.php:170 -#: application/views/logbookadvanced/index.php:544 +#: application/views/logbookadvanced/index.php:181 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/useroptions.php:34 #: application/views/mode/index.php:28 @@ -934,14 +1071,14 @@ msgstr "" #: application/views/qslcard/searchresult.php:76 #: application/views/qslprint/qslprint.php:24 #: application/views/qslprint/qsolist.php:9 -#: application/views/qso/components/previous_contacts.php:78 +#: application/views/qso/components/previous_contacts.php:77 #: application/views/qso/edit_ajax.php:119 application/views/qso/index.php:136 #: application/views/satellite/index.php:24 #: application/views/search/cqzones_result.php:10 #: application/views/search/lotw_unconfirmed_result.php:8 #: application/views/search/result_search.php:7 #: application/views/search/search_result_ajax.php:4 -#: application/views/simplefle/index.php:144 +#: application/views/simplefle/index.php:150 #: application/views/statistics/custom.php:60 #: application/views/statistics/custom_result.php:62 #: application/views/statistics/custom_result.php:88 @@ -953,17 +1090,17 @@ msgstr "" #: application/views/user/edit.php:295 application/views/user/edit.php:318 #: application/views/view_log/partial/log.php:9 #: application/views/view_log/partial/log_ajax.php:4 -#: application/views/view_log/qso.php:104 application/views/visitor/index.php:6 +#: application/views/view_log/qso.php:107 application/views/visitor/index.php:6 #: application/views/widgets/qsos.php:29 msgid "Mode" msgstr "" -#: application/controllers/Logbook.php:1274 +#: application/controllers/Logbook.php:1285 #: application/views/awards/pota/index.php:36 #: application/views/awards/wwff/index.php:36 -#: application/views/contesting/index.php:111 -#: application/views/contesting/index.php:204 -#: application/views/logbookadvanced/index.php:547 +#: application/views/contesting/index.php:165 +#: application/views/contesting/index.php:251 +#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/useroptions.php:38 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 @@ -972,25 +1109,25 @@ msgstr "" #: application/views/qslcard/searchresult.php:77 #: application/views/qslprint/qslprint.php:26 #: application/views/qslprint/qsolist.php:11 -#: application/views/qso/components/previous_contacts.php:79 +#: application/views/qso/components/previous_contacts.php:78 #: application/views/qso/edit_ajax.php:142 application/views/qso/index.php:177 #: application/views/search/search_result_ajax.php:5 -#: application/views/simplefle/index.php:145 +#: application/views/simplefle/index.php:151 #: application/views/user/edit.php:230 application/views/user/edit.php:252 #: application/views/user/edit.php:274 application/views/user/edit.php:296 #: application/views/user/edit.php:319 #: application/views/view_log/partial/log.php:10 #: application/views/view_log/partial/log_ajax.php:5 -#: application/views/view_log/qso.php:109 application/views/visitor/index.php:9 +#: application/views/view_log/qso.php:112 application/views/visitor/index.php:9 msgid "RST (S)" msgstr "" -#: application/controllers/Logbook.php:1275 +#: application/controllers/Logbook.php:1286 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 -#: application/views/contesting/index.php:131 -#: application/views/contesting/index.php:205 -#: application/views/logbookadvanced/index.php:550 +#: application/views/contesting/index.php:189 +#: application/views/contesting/index.php:252 +#: application/views/logbookadvanced/index.php:578 #: application/views/logbookadvanced/useroptions.php:42 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 @@ -999,51 +1136,50 @@ msgstr "" #: application/views/qslcard/searchresult.php:78 #: application/views/qslprint/qslprint.php:27 #: application/views/qslprint/qsolist.php:12 -#: application/views/qso/components/previous_contacts.php:80 +#: application/views/qso/components/previous_contacts.php:79 #: application/views/qso/edit_ajax.php:147 application/views/qso/index.php:182 #: application/views/search/search_result_ajax.php:6 -#: application/views/simplefle/index.php:146 +#: application/views/simplefle/index.php:152 #: application/views/user/edit.php:231 application/views/user/edit.php:253 #: application/views/user/edit.php:275 application/views/user/edit.php:297 #: application/views/user/edit.php:320 #: application/views/view_log/partial/log.php:11 #: application/views/view_log/partial/log_ajax.php:6 -#: application/views/view_log/qso.php:114 +#: application/views/view_log/qso.php:117 #: application/views/visitor/index.php:12 msgid "RST (R)" msgstr "" -#: application/controllers/Logbook.php:1276 +#: application/controllers/Logbook.php:1287 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 #: application/views/qslcard/searchresult.php:47 #: application/views/qslcard/searchresult.php:63 #: application/views/qslcard/searchresult.php:79 -#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/components/previous_contacts.php:80 #: application/views/search/result_search.php:11 #: application/views/search/search_result_ajax.php:7 -#: application/views/station_profile/index.php:43 #: application/views/stationsetup/stationsetup.php:124 #: application/views/statistics/custom_result.php:92 -#: application/views/timeline/index.php:118 application/views/user/edit.php:232 +#: application/views/timeline/index.php:151 application/views/user/edit.php:232 #: application/views/user/edit.php:254 application/views/user/edit.php:276 #: application/views/user/edit.php:298 application/views/user/edit.php:321 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:235 -#: application/views/view_log/qso.php:528 +#: application/views/view_log/qso.php:238 +#: application/views/view_log/qso.php:531 #: application/views/visitor/index.php:15 msgid "Country" msgstr "" -#: application/controllers/Logbook.php:1277 +#: application/controllers/Logbook.php:1288 #: application/views/awards/iota/index.php:169 #: application/views/bands/index.php:50 application/views/dashboard/index.php:8 -#: application/views/interface_assets/header.php:180 +#: application/views/interface_assets/header.php:184 #: application/views/logbookadvanced/edit.php:9 -#: application/views/logbookadvanced/index.php:267 -#: application/views/logbookadvanced/index.php:592 +#: application/views/logbookadvanced/index.php:278 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/qslcarousel.php:38 #: application/views/logbookadvanced/useroptions.php:102 #: application/views/lookup/index.php:6 @@ -1052,11 +1188,11 @@ msgstr "" #: application/views/qslcard/searchresult.php:48 #: application/views/qslcard/searchresult.php:64 #: application/views/qslcard/searchresult.php:80 -#: application/views/qso/components/previous_contacts.php:82 -#: application/views/qso/edit_ajax.php:318 +#: application/views/qso/components/previous_contacts.php:81 +#: application/views/qso/edit_ajax.php:345 #: application/views/search/search_result_ajax.php:8 -#: application/views/station_profile/edit.php:188 -#: application/views/timeline/index.php:202 application/views/user/edit.php:233 +#: application/views/station_profile/edit.php:215 +#: application/views/timeline/index.php:235 application/views/user/edit.php:233 #: application/views/user/edit.php:255 application/views/user/edit.php:277 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/view_log/partial/log_ajax.php:8 @@ -1064,17 +1200,17 @@ msgstr "" msgid "IOTA" msgstr "" -#: application/controllers/Logbook.php:1281 +#: application/controllers/Logbook.php:1292 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:20 -#: application/views/awards/rac/index.php:141 -#: application/views/awards/was/index.php:149 -#: application/views/contesting/index.php:173 +#: application/views/awards/rac/index.php:143 +#: application/views/awards/was/index.php:151 +#: application/views/contesting/index.php:56 #: application/views/dashboard/index.php:12 -#: application/views/logbookadvanced/edit.php:20 -#: application/views/logbookadvanced/edit.php:64 -#: application/views/logbookadvanced/index.php:162 -#: application/views/logbookadvanced/index.php:583 +#: application/views/logbookadvanced/edit.php:21 +#: application/views/logbookadvanced/edit.php:66 +#: application/views/logbookadvanced/index.php:173 +#: application/views/logbookadvanced/index.php:611 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/useroptions.php:86 #: application/views/qslcard/searchresult.php:18 @@ -1082,9 +1218,9 @@ msgstr "" #: application/views/qslcard/searchresult.php:50 #: application/views/qslcard/searchresult.php:66 #: application/views/qslcard/searchresult.php:82 -#: application/views/qso/components/previous_contacts.php:86 +#: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 -#: application/views/timeline/index.php:177 application/views/user/edit.php:237 +#: application/views/timeline/index.php:210 application/views/user/edit.php:237 #: application/views/user/edit.php:259 application/views/user/edit.php:281 #: application/views/user/edit.php:303 application/views/user/edit.php:326 #: application/views/view_log/partial/log_ajax.php:12 @@ -1092,20 +1228,21 @@ msgstr "" msgid "State" msgstr "" -#: application/controllers/Logbook.php:1282 +#: application/controllers/Logbook.php:1293 #: application/views/activated_gridmap/index.php:106 #: application/views/awards/ffma/index.php:34 #: application/views/awards/gridmaster/index.php:33 #: application/views/awards/vucc/band.php:12 #: application/views/contesting/index.php:17 -#: application/views/contesting/index.php:210 +#: application/views/contesting/index.php:257 #: application/views/dashboard/index.php:13 +#: application/views/distancerecords/index.php:20 #: application/views/gridmap/index.php:152 #: application/views/labels/index.php:125 #: application/views/logbookadvanced/edit.php:8 #: application/views/logbookadvanced/index.php:10 -#: application/views/logbookadvanced/index.php:166 -#: application/views/logbookadvanced/index.php:556 +#: application/views/logbookadvanced/index.php:177 +#: application/views/logbookadvanced/index.php:584 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/useroptions.php:126 #: application/views/lookup/index.php:5 @@ -1114,38 +1251,39 @@ msgstr "" #: application/views/qslcard/searchresult.php:51 #: application/views/qslcard/searchresult.php:67 #: application/views/qslcard/searchresult.php:83 -#: application/views/qso/components/previous_contacts.php:87 +#: application/views/qso/components/previous_contacts.php:86 #: application/views/qso/edit_ajax.php:156 application/views/qso/index.php:279 +#: application/views/satellite/pass.php:28 #: application/views/search/cqzones_result.php:12 #: application/views/search/result.php:33 #: application/views/search/search_result_ajax.php:13 -#: application/views/simplefle/index.php:147 -#: application/views/station_profile/index.php:44 +#: application/views/simplefle/index.php:153 #: application/views/stationsetup/stationsetup.php:125 -#: application/views/timeline/index.php:257 application/views/user/edit.php:130 +#: application/views/timeline/index.php:290 application/views/user/edit.php:130 #: application/views/user/edit.php:238 application/views/user/edit.php:260 #: application/views/user/edit.php:282 application/views/user/edit.php:304 #: application/views/user/edit.php:327 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:515 +#: application/views/view_log/qso.php:518 #: application/views/visitor/index.php:27 msgid "Gridsquare" msgstr "" -#: application/controllers/Logbook.php:1283 +#: application/controllers/Logbook.php:1294 #: application/views/activated_gridmap/index.php:108 #: application/views/awards/ffma/index.php:36 #: application/views/awards/gridmaster/index.php:35 #: 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/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/index.php:12 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 #: application/views/qslcard/searchresult.php:52 #: application/views/qslcard/searchresult.php:68 #: application/views/qslcard/searchresult.php:84 -#: application/views/qso/components/previous_contacts.php:88 +#: application/views/qso/components/previous_contacts.php:87 #: application/views/search/search_result_ajax.php:14 #: application/views/user/edit.php:239 application/views/user/edit.php:261 #: application/views/user/edit.php:283 application/views/user/edit.php:305 @@ -1155,32 +1293,33 @@ msgstr "" msgid "Distance" msgstr "" -#: application/controllers/Logbook.php:1284 +#: application/controllers/Logbook.php:1295 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:8 -#: application/views/activators/index.php:7 +#: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 -#: application/views/awards/cq/index.php:72 +#: application/views/awards/cq/index.php:74 #: application/views/awards/dok/index.php:77 #: application/views/awards/dxcc/index.php:117 -#: application/views/awards/helvetia/index.php:71 +#: application/views/awards/helvetia/index.php:73 #: application/views/awards/iota/index.php:91 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:74 #: application/views/awards/jcc/index.php:74 #: application/views/awards/pota/index.php:35 -#: application/views/awards/rac/index.php:63 +#: application/views/awards/rac/index.php:65 #: application/views/awards/sig/qso_list.php:13 #: application/views/awards/sota/index.php:26 #: application/views/awards/vucc/index.php:21 #: application/views/awards/wab/index.php:22 -#: application/views/awards/waja/index.php:75 -#: application/views/awards/was/index.php:71 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/waja/index.php:77 +#: application/views/awards/was/index.php:73 #: application/views/awards/wwff/index.php:35 #: application/views/bandmap/index.php:45 application/views/bandmap/list.php:88 #: application/views/bands/create.php:24 application/views/bands/edit.php:6 #: application/views/bands/index.php:45 -#: application/views/contesting/index.php:70 -#: application/views/contesting/index.php:202 +#: application/views/contesting/index.php:121 +#: application/views/contesting/index.php:249 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 #: application/views/debug/index.php:549 application/views/dxatlas/index.php:31 @@ -1188,8 +1327,8 @@ msgstr "" #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 #: application/views/logbookadvanced/edit.php:3 -#: application/views/logbookadvanced/index.php:181 -#: application/views/logbookadvanced/index.php:553 +#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/index.php:581 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/useroptions.php:46 #: application/views/oqrs/notinlogform.php:10 @@ -1207,13 +1346,13 @@ msgstr "" #: application/views/qslmanagement/index.php:24 #: application/views/qslprint/qslprint.php:25 #: application/views/qslprint/qsolist.php:10 -#: application/views/qso/components/previous_contacts.php:89 +#: application/views/qso/components/previous_contacts.php:88 #: application/views/qso/edit_ajax.php:83 application/views/qso/index.php:151 #: application/views/search/cqzones_result.php:11 #: application/views/search/lotw_unconfirmed_result.php:9 #: application/views/search/result_search.php:10 #: application/views/search/search_result_ajax.php:15 -#: application/views/simplefle/index.php:143 +#: application/views/simplefle/index.php:149 #: application/views/stationsetup/exportmapoptions.php:31 #: application/views/statistics/custom.php:53 #: application/views/statistics/custom_result.php:55 @@ -1231,72 +1370,71 @@ msgstr "" msgid "Band" msgstr "" -#: application/controllers/Logbook.php:1285 +#: application/controllers/Logbook.php:1296 #: application/controllers/Radio.php:48 application/views/bandmap/list.php:110 -#: application/views/contesting/index.php:87 +#: application/views/contesting/index.php:138 #: application/views/dashboard/index.php:16 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 #: application/views/qslcard/searchresult.php:70 #: application/views/qslcard/searchresult.php:86 -#: application/views/qso/components/previous_contacts.php:90 +#: application/views/qso/components/previous_contacts.php:89 #: application/views/qso/edit_ajax.php:71 application/views/qso/index.php:169 #: application/views/search/search_result_ajax.php:16 #: application/views/user/edit.php:228 application/views/user/edit.php:250 #: application/views/user/edit.php:272 application/views/user/edit.php:294 #: application/views/user/edit.php:317 #: application/views/view_log/partial/log_ajax.php:16 -#: application/views/view_log/qso.php:93 application/views/visitor/index.php:36 +#: application/views/view_log/qso.php:94 application/views/visitor/index.php:36 msgid "Frequency" msgstr "" -#: application/controllers/Logbook.php:1286 +#: application/controllers/Logbook.php:1297 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:283 -#: application/views/logbookadvanced/index.php:598 +#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:626 #: application/views/logbookadvanced/useroptions.php:110 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 #: application/views/qslcard/searchresult.php:87 -#: application/views/qso/components/previous_contacts.php:91 +#: application/views/qso/components/previous_contacts.php:90 #: application/views/search/search_result_ajax.php:17 #: application/views/simplefle/index.php:112 #: application/views/user/edit.php:240 application/views/user/edit.php:262 #: application/views/user/edit.php:284 application/views/user/edit.php:306 #: application/views/user/edit.php:329 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:535 +#: application/views/view_log/qso.php:538 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "" -#: application/controllers/Logbook.php:1307 +#: application/controllers/Logbook.php:1318 #: application/controllers/Stationsetup.php:381 #: application/views/awards/dxcc/index.php:28 #: application/views/awards/dxcc/index.php:238 #: application/views/csv/index.php:65 application/views/dashboard/index.php:28 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:669 +#: application/views/interface_assets/footer.php:675 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:154 +#: application/views/logbookadvanced/index.php:165 #: application/views/lookup/index.php:31 -#: application/views/lotw_views/index.php:56 +#: application/views/lotw_views/index.php:52 #: application/views/qso/components/previous_contacts.php:59 #: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 -#: application/views/station_profile/create.php:73 -#: application/views/station_profile/edit.php:78 -#: application/views/station_profile/index.php:65 +#: application/views/station_profile/create.php:80 +#: application/views/station_profile/edit.php:105 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 #: application/views/stationsetup/stationsetup.php:150 -#: application/views/timeline/index.php:134 +#: application/views/timeline/index.php:167 #: application/views/timeplotter/index.php:33 #: application/views/view_log/partial/log_ajax.php:29 -#: application/views/view_log/qso.php:236 -#: application/views/view_log/qso.php:529 +#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:532 msgid "Deleted DXCC" msgstr "" @@ -1310,7 +1448,7 @@ msgstr "" #: application/controllers/Lotw.php:54 application/controllers/Lotw.php:83 #: application/controllers/Lotw.php:125 application/views/adif/import.php:27 -#: application/views/interface_assets/header.php:423 +#: application/views/interface_assets/header.php:429 #: application/views/lotw/import.php:3 #: application/views/lotw_views/index.php:12 #: application/views/lotw_views/upload_cert.php:3 @@ -1318,28 +1456,55 @@ msgstr "" msgid "Logbook of the World" msgstr "" -#: application/controllers/Lotw.php:610 +#: application/controllers/Lotw.php:152 +msgid "Certificate Imported." +msgstr "" + +#: application/controllers/Lotw.php:159 +msgid "Certificate Updated." +msgstr "" + +#: application/controllers/Lotw.php:384 +msgid "Certificate Deleted." +msgstr "" + +#: application/controllers/Lotw.php:413 +#, 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:617 msgid "LoTW ADIF Information" msgstr "" -#: application/controllers/Lotw.php:718 +#: application/controllers/Lotw.php:725 msgid "LoTW ADIF Import" msgstr "" -#: application/controllers/Lotw.php:830 +#: application/controllers/Lotw.php:752 application/controllers/Lotw.php:870 +msgid "You have not defined your ARRL LoTW credentials!" +msgstr "" + +#: application/controllers/Lotw.php:837 msgid "LoTW .TQ8 Upload" msgstr "" -#: application/controllers/Lotw.php:927 application/controllers/Lotw.php:932 +#: application/controllers/Lotw.php:915 +msgid "Your ARRL username and/or password is incorrect." +msgstr "" + +#: application/controllers/Lotw.php:934 application/controllers/Lotw.php:939 msgid "LoTW .TQ8 Sent" msgstr "" -#: application/controllers/Lotw.php:939 +#: application/controllers/Lotw.php:946 msgid "LoTW .TQ8 Not Sent" msgstr "" #: application/controllers/Mode.php:25 -#: application/views/interface_assets/header.php:272 +#: application/views/interface_assets/header.php:276 #: application/views/mode/index.php:15 msgid "Modes" msgstr "" @@ -1348,28 +1513,28 @@ msgstr "" msgid "Edit Mode" msgstr "" -#: application/controllers/Notes.php:19 +#: application/controllers/Notes.php:18 #: application/views/interface_assets/header.php:128 #: application/views/notes/add.php:9 application/views/notes/edit.php:10 #: application/views/notes/main.php:5 application/views/notes/main.php:8 #: application/views/notes/view.php:6 application/views/notes/view.php:9 #: application/views/qso/edit_ajax.php:36 -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:38 -#: application/views/qso/index.php:541 application/views/qso/index.php:586 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:590 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:38 +#: application/views/qso/index.php:563 application/views/qso/index.php:608 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:593 msgid "Notes" msgstr "" -#: application/controllers/Notes.php:38 +#: application/controllers/Notes.php:37 msgid "Add Notes" msgstr "" -#: application/controllers/Notes.php:58 +#: application/controllers/Notes.php:64 #: application/views/oqrs/showrequests.php:88 msgid "Note" msgstr "" -#: application/controllers/Notes.php:79 application/views/notes/edit.php:7 +#: application/controllers/Notes.php:92 application/views/notes/edit.php:7 #: application/views/notes/view.php:19 msgid "Edit Note" msgstr "" @@ -1377,16 +1542,16 @@ msgstr "" #: application/controllers/Options.php:31 #: application/controllers/Options.php:41 #: application/controllers/Options.php:56 -#: application/controllers/Options.php:136 -#: application/controllers/Options.php:147 -#: application/controllers/Options.php:184 -#: application/controllers/Options.php:195 -#: application/controllers/Options.php:228 -#: application/controllers/Options.php:239 -#: application/controllers/Options.php:309 -#: application/controllers/Options.php:319 -#: application/controllers/Options.php:387 -#: application/controllers/Options.php:397 +#: application/controllers/Options.php:144 +#: application/controllers/Options.php:155 +#: application/controllers/Options.php:192 +#: application/controllers/Options.php:203 +#: application/controllers/Options.php:236 +#: application/controllers/Options.php:247 +#: application/controllers/Options.php:317 +#: application/controllers/Options.php:327 +#: application/controllers/Options.php:395 +#: application/controllers/Options.php:405 msgid "Wavelog Options" msgstr "" @@ -1403,95 +1568,96 @@ msgstr "" #: application/controllers/Options.php:110 #: application/controllers/Options.php:118 #: application/controllers/Options.php:126 +#: application/controllers/Options.php:134 msgid "Options saved" msgstr "" -#: application/controllers/Options.php:165 +#: application/controllers/Options.php:173 msgid "de continent changed to " msgstr "" -#: application/controllers/Options.php:170 +#: application/controllers/Options.php:178 msgid "Maximum age of spots changed to " msgstr "" -#: application/controllers/Options.php:175 +#: application/controllers/Options.php:183 msgid "DXCluster Cache URL changed to " msgstr "" -#: application/controllers/Options.php:185 -#: application/controllers/Options.php:196 +#: application/controllers/Options.php:193 +#: application/controllers/Options.php:204 msgid "Radio Settings" msgstr "" -#: application/controllers/Options.php:217 +#: application/controllers/Options.php:225 msgid "Radio Timeout Warning changed to " msgstr "" -#: application/controllers/Options.php:229 -#: application/controllers/Options.php:240 +#: application/controllers/Options.php:237 +#: application/controllers/Options.php:248 #: application/views/options/sidebar.php:6 msgid "Email" msgstr "" -#: application/controllers/Options.php:297 +#: application/controllers/Options.php:305 msgid "The settings were saved successfully." msgstr "" -#: application/controllers/Options.php:299 +#: application/controllers/Options.php:307 msgid "Something went wrong with saving the settings. Try again." msgstr "" -#: application/controllers/Options.php:310 -#: application/controllers/Options.php:320 +#: application/controllers/Options.php:318 +#: application/controllers/Options.php:328 #: application/views/options/sidebar.php:8 msgid "OQRS Options" msgstr "" -#: application/controllers/Options.php:333 +#: application/controllers/Options.php:341 msgid "OQRS options have been saved." msgstr "" -#: application/controllers/Options.php:373 -#: application/controllers/Options.php:378 +#: application/controllers/Options.php:381 +#: application/controllers/Options.php:386 msgid "Testmail failed. Something went wrong." msgstr "" -#: application/controllers/Options.php:375 +#: application/controllers/Options.php:383 msgid "Testmail sent. Email settings seem to be correct." msgstr "" -#: application/controllers/Options.php:388 -#: application/controllers/Options.php:398 +#: application/controllers/Options.php:396 +#: application/controllers/Options.php:406 msgid "Version Info Settings" msgstr "" -#: application/controllers/Options.php:404 +#: application/controllers/Options.php:412 msgid "Version Info Header changed to" msgstr "" -#: application/controllers/Options.php:408 +#: application/controllers/Options.php:416 msgid "Version Info Mode changed to" msgstr "" -#: application/controllers/Options.php:413 +#: application/controllers/Options.php:421 msgid "Version Info Custom Text saved!" msgstr "" -#: application/controllers/Options.php:424 +#: application/controllers/Options.php:432 msgid "Version Info will be shown to all users again" msgstr "" -#: application/controllers/Options.php:432 +#: application/controllers/Options.php:440 msgid "Version Info will not be shown to any user" msgstr "" -#: application/controllers/Oqrs.php:22 application/controllers/Oqrs.php:61 -#: application/controllers/Oqrs.php:73 +#: application/controllers/Oqrs.php:46 application/controllers/Oqrs.php:85 +#: application/controllers/Oqrs.php:97 msgid "Log Search & OQRS" msgstr "" -#: application/controllers/Oqrs.php:104 -#: application/views/interface_assets/header.php:413 +#: application/controllers/Oqrs.php:127 +#: application/views/interface_assets/header.php:419 msgid "OQRS Requests" msgstr "" @@ -1499,8 +1665,46 @@ msgstr "" msgid "QRB Calculator" msgstr "" +#: application/controllers/Qrbcalc.php:49 +#: application/controllers/Qrbcalc.php:50 +#, php-format +msgid "Latitude: %s, Longitude: %s" +msgstr "" + +#: application/controllers/Qrbcalc.php:54 +#, php-format +msgid "The distance between %s and %s is %s mile." +msgid_plural "The distance between %s and %s is %s miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:57 +#, php-format +msgid "The distance between %s and %s is %s nautical mile." +msgid_plural "The distance between %s and %s is %s nautical miles." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:60 +#, php-format +msgid "The distance between %s and %s is %s kilometer." +msgid_plural "The distance between %s and %s is %s kilometers." +msgstr[0] "" +msgstr[1] "" + +#: application/controllers/Qrbcalc.php:66 +#, php-format +msgid "The bearing is %s." +msgstr "" + +#: application/controllers/Qrbcalc.php:72 +msgid "" +"Negative latitudes are south of the equator, negative longitudes are west of " +"Greenwich." +msgstr "" + #: application/controllers/Qrz.php:173 -#: application/views/interface_assets/header.php:426 +#: application/views/interface_assets/header.php:432 msgid "QRZ Logbook" msgstr "" @@ -1512,8 +1716,8 @@ msgstr "" msgid "QRZ ADIF Information" msgstr "" -#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:261 +#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:277 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:283 msgid "QSL Cards" @@ -1536,13 +1740,13 @@ msgid "Add QSO" msgstr "" #: application/controllers/Radio.php:17 -#: application/views/interface_assets/header.php:432 +#: application/views/interface_assets/header.php:438 msgid "Hardware Interfaces" msgstr "" #: application/controllers/Radio.php:47 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:60 -#: application/views/contesting/index.php:92 +#: application/views/contesting/index.php:143 #: application/views/qso/index.php:312 msgid "Radio" msgstr "" @@ -1552,10 +1756,10 @@ msgid "Timestamp" msgstr "" #: application/controllers/Radio.php:52 -#: application/views/logbookadvanced/index.php:522 -#: application/views/lotw_views/index.php:47 +#: application/views/logbookadvanced/index.php:550 +#: application/views/lotw_views/index.php:43 #: application/views/simplefle/index.php:20 -#: application/views/simplefle/index.php:171 +#: application/views/simplefle/index.php:177 #: application/views/stationsetup/exportmapoptions.php:5 #: application/views/statistics/custom.php:31 #: application/views/statistics/custom_result.php:33 @@ -1563,7 +1767,7 @@ msgid "Options" msgstr "" #: application/controllers/Radio.php:90 -#: application/views/contesting/index.php:96 +#: application/views/contesting/index.php:147 #: application/views/qso/index.php:316 msgid "last updated" msgstr "" @@ -1579,26 +1783,24 @@ msgstr "" #: application/controllers/Radio.php:105 #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 -#: application/views/interface_assets/footer.php:2323 -#: application/views/interface_assets/footer.php:2341 -#: application/views/interface_assets/footer.php:2362 -#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2337 +#: application/views/interface_assets/footer.php:2355 +#: application/views/interface_assets/footer.php:2376 +#: application/views/interface_assets/footer.php:2394 #: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:514 -#: application/views/lotw_views/index.php:118 +#: application/views/logbookadvanced/index.php:542 +#: application/views/lotw_views/index.php:114 #: application/views/mode/index.php:55 #: application/views/oqrs/showrequests.php:71 #: application/views/qslcard/index.php:65 #: application/views/satellite/edit.php:40 #: application/views/satellite/index.php:26 #: application/views/search/stored_queries.php:22 -#: application/views/station_profile/index.php:55 -#: application/views/station_profile/index.php:106 #: application/views/stationsetup/stationsetup.php:33 #: application/views/stationsetup/stationsetup.php:137 #: application/views/stationsetup/stationsetup.php:192 -#: application/views/themes/index.php:107 application/views/user/main.php:54 -#: application/views/view_log/qso.php:613 +#: application/views/themes/index.php:107 application/views/user/index.php:57 +#: application/views/view_log/qso.php:616 msgid "Delete" msgstr "" @@ -1606,11 +1808,15 @@ msgstr "" msgid "No CAT interfaced radios found." msgstr "" -#: application/controllers/Satellite.php:37 +#: application/controllers/Reg1test.php:25 +msgid "Export EDI" +msgstr "" + +#: application/controllers/Satellite.php:39 msgid "Create Satellite" msgstr "" -#: application/controllers/Satellite.php:60 +#: application/controllers/Satellite.php:66 msgid "Edit Satellite" msgstr "" @@ -1623,10 +1829,7 @@ msgstr "" #: application/views/awards/counties/index.php:8 #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:19 -#: application/views/awards/was/index.php:21 -#: application/views/dashboard/index.php:64 -#: application/views/dashboard/index.php:73 -#: application/views/dashboard/index.php:82 +#: application/views/awards/was/index.php:23 #: application/views/simplefle/index.php:16 msgid "here" msgstr "" @@ -1638,9 +1841,10 @@ msgstr "" #: application/controllers/Search.php:19 #: application/views/continents/index.php:49 -#: application/views/interface_assets/header.php:336 -#: application/views/interface_assets/header.php:343 -#: application/views/logbookadvanced/index.php:511 +#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/header.php:340 +#: application/views/interface_assets/header.php:347 +#: application/views/logbookadvanced/index.php:538 #: application/views/oqrs/index.php:28 #: application/views/oqrs/showrequests.php:67 #: application/views/qslcard/searchform.php:8 @@ -1654,8 +1858,8 @@ msgstr "" #: application/views/search/lotw_unconfirmed.php:37 #: application/views/search/main.php:4 application/views/search/main.php:12 #: application/views/search/main.php:33 -#: application/views/visitor/layout/header.php:99 -#: application/views/visitor/layout/header.php:100 +#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:98 msgid "Search" msgstr "" @@ -1673,15 +1877,23 @@ msgid "" "date" msgstr "" -#: application/controllers/Station.php:35 -#: application/controllers/Station.php:78 application/views/csv/index.php:19 +#: application/controllers/Station.php:36 +#: application/controllers/Stationsetup.php:226 +msgid "Create Station Location" +msgstr "" + +#: application/controllers/Station.php:51 +msgid "Edit Station Location: " +msgstr "" + +#: application/controllers/Station.php:59 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 #: application/views/labels/index.php:124 -#: application/views/logbookadvanced/edit.php:18 +#: application/views/logbookadvanced/edit.php:19 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:427 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:454 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 @@ -1689,22 +1901,13 @@ msgstr "" msgid "Station Location" msgstr "" -#: application/controllers/Station.php:55 -#: application/controllers/Stationsetup.php:226 -msgid "Create Station Location" -msgstr "" - -#: application/controllers/Station.php:70 -msgid "Edit Station Location: " -msgstr "" - -#: application/controllers/Station.php:92 +#: application/controllers/Station.php:73 msgid "Duplicate Station Location:" msgstr "" #: application/controllers/Stationsetup.php:35 -#: application/views/interface_assets/header.php:377 -#: application/views/interface_assets/header.php:488 +#: application/views/interface_assets/header.php:381 +#: application/views/interface_assets/header.php:494 msgid "Station Setup" msgstr "" @@ -1722,7 +1925,7 @@ msgstr "" #: application/controllers/Stationsetup.php:131 #: application/controllers/Stationsetup.php:152 #: application/controllers/Stationsetup.php:436 -#: application/views/qso/index.php:608 +#: application/views/qso/index.php:630 msgid "Error" msgstr "" @@ -1754,9 +1957,10 @@ msgstr "" #: application/views/options/appearance.php:83 #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 +#: application/views/options/appearance.php:110 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:259 -#: application/views/station_profile/edit.php:312 +#: application/views/station_profile/create.php:266 +#: application/views/station_profile/edit.php:339 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 msgid "Disabled" @@ -1768,7 +1972,7 @@ msgid "Set as Active Logbook" msgstr "" #: application/controllers/Stationsetup.php:263 -#: application/views/interface_assets/header.php:486 +#: application/views/interface_assets/header.php:492 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" @@ -1791,20 +1995,17 @@ msgid "Are you sure you want to delete the public slug?" msgstr "" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "" "Are you sure you want to make the following station the active station: " msgstr "" #: application/controllers/Stationsetup.php:349 -#: application/views/station_profile/index.php:69 #: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" msgstr "" #: application/controllers/Stationsetup.php:351 -#: application/views/station_profile/index.php:71 #: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" msgstr "" @@ -1813,54 +2014,45 @@ msgstr "" #: application/views/interface_assets/header.php:113 #: application/views/qso/edit_ajax.php:33 application/views/qso/index.php:20 #: application/views/simplefle/index.php:28 -#: application/views/station_profile/index.php:76 #: application/views/stationsetup/stationsetup.php:161 -#: application/views/user/main.php:87 application/views/user/main.php:89 +#: application/views/user/index.php:90 application/views/user/index.php:92 msgid "QSO" msgstr "" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 -#: application/views/cron/index.php:56 -#: application/views/interface_assets/footer.php:535 -#: application/views/interface_assets/footer.php:544 +#: application/views/cron/index.php:58 +#: application/views/interface_assets/footer.php:541 +#: application/views/interface_assets/footer.php:550 #: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:541 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 #: application/views/search/stored_queries.php:21 -#: application/views/station_profile/index.php:46 -#: application/views/station_profile/index.php:79 #: application/views/stationsetup/stationsetup.php:128 #: application/views/stationsetup/stationsetup.php:165 -#: application/views/themes/index.php:104 application/views/user/main.php:52 +#: application/views/themes/index.php:104 application/views/user/index.php:52 msgid "Edit" msgstr "" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:99 #: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" #: application/controllers/Stationsetup.php:363 -#: application/views/station_profile/index.php:54 -#: application/views/station_profile/index.php:101 #: application/views/stationsetup/stationsetup.php:136 #: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" msgstr "" #: application/controllers/Stationsetup.php:367 -#: application/views/station_profile/index.php:47 -#: application/views/station_profile/index.php:82 #: application/views/stationsetup/stationsetup.php:129 #: application/views/stationsetup/stationsetup.php:168 msgid "Copy" msgstr "" #: application/controllers/Stationsetup.php:372 -#: application/views/station_profile/index.php:105 #: application/views/stationsetup/stationsetup.php:191 #, php-format msgid "" @@ -1893,7 +2085,7 @@ msgid "QSL Statistics" msgstr "" #: application/controllers/Themes.php:27 -#: application/views/interface_assets/header.php:278 +#: application/views/interface_assets/header.php:282 msgid "Themes" msgstr "" @@ -1905,14 +2097,14 @@ msgstr "" msgid "Edit Theme" msgstr "" -#: application/controllers/Timeline.php:17 -#: application/views/interface_assets/header.php:148 +#: application/controllers/Timeline.php:15 +#: application/views/interface_assets/header.php:150 #: application/views/timeline/index.php:2 msgid "Timeline" msgstr "" #: application/controllers/Timeplotter.php:17 -#: application/views/interface_assets/header.php:152 +#: application/views/interface_assets/header.php:154 #: application/views/timeplotter/index.php:9 msgid "Timeplotter" msgstr "" @@ -1953,130 +2145,154 @@ msgstr "" msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/User.php:12 -#: application/views/interface_assets/header.php:268 +#: application/controllers/User.php:36 +#: application/views/interface_assets/header.php:272 msgid "User Accounts" msgstr "" -#: application/controllers/User.php:52 +#: application/controllers/User.php:76 msgid "Add User" msgstr "" -#: application/controllers/User.php:166 +#: application/controllers/User.php:190 msgid "Users" msgstr "" -#: application/controllers/User.php:240 application/controllers/User.php:673 +#: application/controllers/User.php:264 application/controllers/User.php:697 msgid "Edit User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 -#: application/views/user/main.php:3 application/views/user/main.php:46 +#: application/controllers/User.php:689 application/controllers/User.php:692 +#: application/views/user/index.php:3 application/views/user/index.php:46 msgid "User" msgstr "" -#: application/controllers/User.php:665 application/controllers/User.php:668 +#: application/controllers/User.php:689 application/controllers/User.php:692 msgid "edited" msgstr "" -#: application/controllers/User.php:722 +#: application/controllers/User.php:746 msgid "Profile" msgstr "" -#: application/controllers/User.php:779 +#: application/controllers/User.php:803 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "" -#: application/controllers/User.php:843 application/controllers/User.php:853 +#: application/controllers/User.php:867 application/controllers/User.php:877 msgid "Login failed. Try again." msgstr "" -#: application/controllers/User.php:860 -#: application/views/interface_assets/header.php:356 -#: application/views/user/login.php:89 -#: application/views/visitor/layout/header.php:88 +#: application/controllers/User.php:884 +#: application/views/interface_assets/header.php:360 +#: application/views/user/login.php:91 +#: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "" -#: application/controllers/User.php:868 -msgid "User logged in" -msgstr "" - -#: application/controllers/User.php:899 +#: application/controllers/User.php:922 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " "Only administrators are currently allowed to log in." msgstr "" -#: application/controllers/User.php:902 +#: application/controllers/User.php:925 msgid "Incorrect username or password!" msgstr "" -#: application/controllers/User.php:919 +#: application/controllers/User.php:942 #, php-format msgid "User %s logged out." msgstr "" -#: application/controllers/User.php:933 +#: application/controllers/User.php:956 msgid "Password Reset is disabled on the Demo!" msgstr "" -#: application/controllers/User.php:946 +#: application/controllers/User.php:969 msgid "Forgot Password" msgstr "" -#: application/controllers/User.php:996 application/views/user/main.php:8 +#: application/controllers/User.php:1019 application/views/user/index.php:8 msgid "Email settings are incorrect." msgstr "" -#: application/controllers/User.php:1000 application/controllers/User.php:1005 +#: application/controllers/User.php:1023 application/controllers/User.php:1028 msgid "Password Reset Processed." msgstr "" -#: application/controllers/User.php:1107 +#: application/controllers/User.php:1129 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "" +#: application/controllers/User.php:1199 application/views/user/index.php:143 +msgid "" +"You currently can't impersonate another user. Please change the " +"encryption_key in your config.php file first!" +msgstr "" + +#: application/controllers/User.php:1206 +msgid "Invalid Hash" +msgstr "" + +#: application/controllers/User.php:1219 +msgid "The impersonation hash is too old. Please try again." +msgstr "" + +#: application/controllers/User.php:1226 +msgid "" +"You can't impersonate another user while you're not logged in as the source " +"user" +msgstr "" + +#: application/controllers/User.php:1232 +msgid "There was a problem with your session. Please try again." +msgstr "" + +#: application/controllers/User.php:1239 +msgid "The requested user to impersonate does not exist" +msgstr "" + #: application/controllers/Visitor.php:50 -#: application/controllers/Visitor.php:79 -#: application/controllers/Visitor.php:142 -#: application/controllers/Visitor.php:169 -#: application/controllers/Visitor.php:199 -#: application/controllers/Visitor.php:478 +#: application/controllers/Visitor.php:81 +#: application/controllers/Visitor.php:148 +#: application/controllers/Visitor.php:175 +#: application/controllers/Visitor.php:210 +#: application/controllers/Visitor.php:472 #: application/controllers/Widgets.php:40 msgid "Unknown Public Page." msgstr "" -#: application/controllers/Visitor.php:74 -#: application/controllers/Visitor.php:165 -#: application/controllers/Visitor.php:195 -#: application/controllers/Visitor.php:474 +#: application/controllers/Visitor.php:76 +#: application/controllers/Visitor.php:171 +#: application/controllers/Visitor.php:206 +#: application/controllers/Visitor.php:468 #: application/controllers/Widgets.php:36 msgid "Empty Logbook" msgstr "" -#: application/controllers/Visitor.php:205 +#: application/controllers/Visitor.php:216 msgid "Satellite Gridsquare Map" msgstr "" -#: application/controllers/Visitor.php:411 +#: application/controllers/Visitor.php:405 #: application/views/stationsetup/stationsetup.php:35 msgid "Public Search" msgstr "" -#: application/controllers/Visitor.php:444 +#: application/controllers/Visitor.php:438 msgid "Export Map" msgstr "" #: application/controllers/Webadif.php:90 #: application/controllers/Webadif.php:137 -#: application/views/interface_assets/header.php:427 +#: application/views/interface_assets/header.php:433 msgid "QO-100 Dx Club Upload" msgstr "" @@ -2088,6 +2304,84 @@ msgstr "" msgid "No stations found that are using Wavelog OQRS." msgstr "" +#: application/libraries/Subdivisions.php:31 +msgctxt "Division Name (States in various countries)." +msgid "Province" +msgstr "" + +#: application/libraries/Subdivisions.php:39 +msgctxt "Division Name (States in various countries)." +msgid "Oblast" +msgstr "" + +#: application/libraries/Subdivisions.php:41 +#: application/libraries/Subdivisions.php:47 +msgctxt "Division Name (States in various countries)." +msgid "Region" +msgstr "" + +#: application/libraries/Subdivisions.php:45 +msgctxt "Division Name (States in various countries)." +msgid "Department" +msgstr "" + +#: application/libraries/Subdivisions.php:49 +msgctxt "Division Name (States in various countries)." +msgid "Municipality" +msgstr "" + +#: application/libraries/Subdivisions.php:51 +msgctxt "Division Name (States in various countries)." +msgid "Federal State" +msgstr "" + +#: application/libraries/Subdivisions.php:56 +#: application/libraries/Subdivisions.php:94 +msgctxt "Division Name (States in various countries)." +msgid "County" +msgstr "" + +#: application/libraries/Subdivisions.php:60 +#: application/libraries/Subdivisions.php:85 +msgctxt "Division Name (States in various countries)." +msgid "District" +msgstr "" + +#: application/libraries/Subdivisions.php:62 +msgctxt "Division Name (States in various countries)." +msgid "Canton" +msgstr "" + +#: application/libraries/Subdivisions.php:64 +msgctxt "Division Name (States in various countries)." +msgid "US State" +msgstr "" + +#: application/libraries/Subdivisions.php:67 +msgctxt "Division Name (States in various countries)." +msgid "Prefecture" +msgstr "" + +#: application/libraries/Subdivisions.php:69 +msgctxt "Division Name (States in various countries)." +msgid "State" +msgstr "" + +#: application/libraries/Subdivisions.php:78 +msgctxt "Division Name (States in various countries)." +msgid "US County" +msgstr "" + +#: application/libraries/Subdivisions.php:90 +msgctxt "Division Name (States in various countries)." +msgid "DME" +msgstr "" + +#: application/libraries/Subdivisions.php:92 +msgctxt "Division Name (States in various countries)." +msgid "City / Ku / Gun" +msgstr "" + #: application/models/Eqslmethods_model.php:281 msgid "Your eQSL username and/or password is incorrect." msgstr "" @@ -2124,31 +2418,31 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:4148 +#: application/models/Logbook_model.php:4255 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4154 +#: application/models/Logbook_model.php:4261 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4159 +#: application/models/Logbook_model.php:4266 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4162 +#: application/models/Logbook_model.php:4269 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4165 +#: application/models/Logbook_model.php:4272 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4168 +#: application/models/Logbook_model.php:4275 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4171 +#: application/models/Logbook_model.php:4278 msgid "unknown" msgstr "" @@ -2177,7 +2471,7 @@ msgid "Accumulated number of WAJA worked" msgstr "" #: application/views/accumulate/index.php:8 -#: application/views/dashboard/index.php:222 +#: application/views/dashboard/index.php:238 #: application/views/dayswithqso/index.php:16 #: application/views/statistics/index.php:18 #: application/views/visitor/index.php:246 @@ -2190,7 +2484,7 @@ msgid "Yearly" msgstr "" #: application/views/accumulate/index.php:10 -#: application/views/dashboard/index.php:227 +#: application/views/dashboard/index.php:243 #: application/views/visitor/index.php:251 msgid "Month" msgstr "" @@ -2206,29 +2500,33 @@ msgstr "" #: application/views/accumulate/index.php:24 #: application/views/accumulate/index.php:34 +#: application/views/accumulate/index.php:83 #: application/views/activated_gridmap/index.php:10 #: application/views/activated_gridmap/index.php:22 #: application/views/activated_gridmap/index.php:32 #: application/views/activated_gridmap/index.php:41 -#: application/views/activators/index.php:10 -#: application/views/awards/cq/index.php:75 -#: application/views/awards/cq/index.php:89 +#: application/views/activators/index.php:13 +#: application/views/awards/cq/index.php:77 +#: application/views/awards/cq/index.php:91 #: application/views/awards/dok/index.php:94 #: application/views/awards/dxcc/index.php:134 #: application/views/awards/dxcc/index.php:150 #: application/views/awards/dxcc/index.php:165 -#: application/views/awards/helvetia/index.php:88 +#: application/views/awards/helvetia/index.php:90 #: application/views/awards/iota/index.php:108 -#: application/views/awards/itu/index.php:75 -#: application/views/awards/itu/index.php:89 +#: application/views/awards/itu/index.php:77 +#: application/views/awards/itu/index.php:91 #: application/views/awards/jcc/index.php:91 -#: application/views/awards/rac/index.php:80 +#: application/views/awards/rac/index.php:82 #: application/views/awards/wab/index.php:24 #: application/views/awards/wab/index.php:36 #: application/views/awards/wab/index.php:46 #: application/views/awards/wab/index.php:55 -#: application/views/awards/waja/index.php:92 -#: application/views/awards/was/index.php:88 +#: application/views/awards/wac/index.php:81 +#: application/views/awards/wac/index.php:97 +#: application/views/awards/wac/index.php:113 +#: application/views/awards/waja/index.php:94 +#: application/views/awards/was/index.php:90 #: application/views/bandmap/list.php:71 application/views/bandmap/list.php:78 #: application/views/bandmap/list.php:90 application/views/bands/index.php:117 #: application/views/cabrillo/index.php:65 @@ -2239,6 +2537,7 @@ msgstr "" #: application/views/csv/index.php:94 application/views/distances/index.php:21 #: application/views/distances/index.php:36 #: application/views/distances/index.php:46 +#: application/views/distances/index.php:56 #: application/views/dxatlas/index.php:21 #: application/views/dxatlas/index.php:33 #: application/views/dxatlas/index.php:44 @@ -2250,28 +2549,29 @@ msgstr "" #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 #: application/views/gridmap/index.php:83 -#: application/views/interface_assets/footer.php:1435 -#: application/views/interface_assets/footer.php:1574 +#: application/views/interface_assets/footer.php:1448 +#: application/views/interface_assets/footer.php:1587 #: application/views/kml/index.php:21 application/views/kml/index.php:33 #: application/views/kml/index.php:49 application/views/kml/index.php:67 #: application/views/kml/index.php:79 -#: application/views/logbookadvanced/index.php:172 #: application/views/logbookadvanced/index.php:183 #: application/views/logbookadvanced/index.php:194 -#: application/views/logbookadvanced/index.php:203 -#: application/views/logbookadvanced/index.php:212 -#: application/views/logbookadvanced/index.php:237 +#: application/views/logbookadvanced/index.php:205 +#: application/views/logbookadvanced/index.php:214 +#: application/views/logbookadvanced/index.php:223 #: application/views/logbookadvanced/index.php:248 -#: application/views/logbookadvanced/index.php:299 -#: application/views/logbookadvanced/index.php:310 -#: application/views/logbookadvanced/index.php:321 -#: application/views/logbookadvanced/index.php:331 -#: application/views/logbookadvanced/index.php:341 -#: application/views/logbookadvanced/index.php:352 -#: application/views/logbookadvanced/index.php:363 -#: application/views/logbookadvanced/index.php:374 -#: application/views/logbookadvanced/index.php:385 -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:259 +#: application/views/logbookadvanced/index.php:306 +#: application/views/logbookadvanced/index.php:326 +#: application/views/logbookadvanced/index.php:337 +#: application/views/logbookadvanced/index.php:348 +#: application/views/logbookadvanced/index.php:358 +#: application/views/logbookadvanced/index.php:368 +#: application/views/logbookadvanced/index.php:379 +#: application/views/logbookadvanced/index.php:390 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:423 #: application/views/lotw/import.php:54 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -2282,11 +2582,12 @@ msgstr "" #: application/views/stationsetup/exportmapoptions.php:33 #: application/views/timeline/index.php:10 #: application/views/timeline/index.php:22 +#: application/views/timeline/index.php:77 #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 #: application/views/user/edit.php:633 -#: application/views/visitor/layout/footer.php:169 +#: application/views/visitor/layout/footer.php:171 msgid "All" msgstr "" @@ -2324,29 +2625,254 @@ msgstr "" msgid "Period" msgstr "" -#: application/views/accumulate/index.php:83 -#: application/views/activators/index.php:50 -#: application/views/awards/cq/index.php:111 +#: application/views/accumulate/index.php:80 +#: application/views/distances/index.php:53 +#: application/views/gridmap/index.php:38 +#: application/views/logbookadvanced/edit.php:14 +#: application/views/logbookadvanced/index.php:221 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/timeline/index.php:74 +msgid "Propagation" +msgstr "" + +#: application/views/accumulate/index.php:84 +#: application/views/distances/index.php:57 +#: application/views/timeline/index.php:78 +msgid "All but SAT" +msgstr "" + +#: application/views/accumulate/index.php:85 +#: application/views/distances/index.php:58 +#: application/views/gridmap/index.php:42 +#: application/views/logbookadvanced/edit.php:142 +#: application/views/logbookadvanced/index.php:307 +#: application/views/timeline/index.php:79 +msgid "None/Empty" +msgstr "" + +#: application/views/accumulate/index.php:86 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/logbookadvanced/index.php:225 +#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:414 +#: application/views/timeline/index.php:80 +msgctxt "Propagation Mode" +msgid "Aircraft Scatter" +msgstr "" + +#: application/views/accumulate/index.php:87 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/logbookadvanced/index.php:226 +#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:415 +#: application/views/timeline/index.php:81 +msgctxt "Propagation Mode" +msgid "Aurora" +msgstr "" + +#: application/views/accumulate/index.php:88 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/logbookadvanced/index.php:227 +#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:416 +#: application/views/timeline/index.php:82 +msgctxt "Propagation Mode" +msgid "Aurora-E" +msgstr "" + +#: application/views/accumulate/index.php:89 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/logbookadvanced/index.php:228 +#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:417 +#: application/views/timeline/index.php:83 +msgctxt "Propagation Mode" +msgid "Back scatter" +msgstr "" + +#: application/views/accumulate/index.php:90 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/logbookadvanced/index.php:229 +#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:418 +#: application/views/timeline/index.php:84 +msgctxt "Propagation Mode" +msgid "EchoLink" +msgstr "" + +#: application/views/accumulate/index.php:91 +#: 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/logbookadvanced/index.php:230 +#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:419 +#: application/views/timeline/index.php:85 +msgctxt "Propagation Mode" +msgid "Earth-Moon-Earth" +msgstr "" + +#: application/views/accumulate/index.php:92 +#: 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/logbookadvanced/index.php:231 +#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:420 +#: application/views/timeline/index.php:86 +msgctxt "Propagation Mode" +msgid "Sporadic E" +msgstr "" + +#: application/views/accumulate/index.php:93 +#: 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/logbookadvanced/index.php:232 +#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:421 +#: application/views/timeline/index.php:87 +msgctxt "Propagation Mode" +msgid "Field Aligned Irregularities" +msgstr "" + +#: application/views/accumulate/index.php:94 +#: 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/logbookadvanced/index.php:233 +#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:422 +#: application/views/timeline/index.php:88 +msgctxt "Propagation Mode" +msgid "F2 Reflection" +msgstr "" + +#: application/views/accumulate/index.php:95 +#: 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/logbookadvanced/index.php:234 +#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:423 +#: application/views/timeline/index.php:89 +msgctxt "Propagation Mode" +msgid "Internet-assisted" +msgstr "" + +#: application/views/accumulate/index.php:96 +#: 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/logbookadvanced/index.php:235 +#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:424 +#: application/views/timeline/index.php:90 +msgctxt "Propagation Mode" +msgid "Ionoscatter" +msgstr "" + +#: application/views/accumulate/index.php:97 +#: 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/logbookadvanced/index.php:236 +#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:425 +#: application/views/timeline/index.php:91 +msgctxt "Propagation Mode" +msgid "IRLP" +msgstr "" + +#: application/views/accumulate/index.php:98 +#: 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/logbookadvanced/index.php:237 +#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:426 +#: application/views/timeline/index.php:92 +msgctxt "Propagation Mode" +msgid "Meteor scatter" +msgstr "" + +#: application/views/accumulate/index.php:99 +#: 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/logbookadvanced/index.php:238 +#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:427 +#: application/views/timeline/index.php:93 +msgctxt "Propagation Mode" +msgid "Terrestrial or atmospheric repeater or transponder" +msgstr "" + +#: application/views/accumulate/index.php:100 +#: 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/logbookadvanced/index.php:239 +#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:428 +#: application/views/timeline/index.php:94 +msgctxt "Propagation Mode" +msgid "Rain scatter" +msgstr "" + +#: application/views/accumulate/index.php:101 +#: 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/logbookadvanced/index.php:240 +#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:429 +#: application/views/timeline/index.php:95 +msgctxt "Propagation Mode" +msgid "Satellite" +msgstr "" + +#: application/views/accumulate/index.php:102 +#: 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/logbookadvanced/index.php:241 +#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:430 +#: application/views/timeline/index.php:96 +msgctxt "Propagation Mode" +msgid "Trans-equatorial" +msgstr "" + +#: application/views/accumulate/index.php:103 +#: 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/logbookadvanced/index.php:242 +#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:431 +#: application/views/timeline/index.php:97 +msgctxt "Propagation Mode" +msgid "Tropospheric ducting" +msgstr "" + +#: application/views/accumulate/index.php:112 +#: application/views/activators/index.php:53 +#: application/views/awards/cq/index.php:113 #: application/views/awards/dok/index.php:127 #: application/views/awards/dxcc/index.php:187 -#: application/views/awards/helvetia/index.php:110 +#: application/views/awards/helvetia/index.php:112 #: application/views/awards/iota/index.php:130 -#: application/views/awards/itu/index.php:111 +#: application/views/awards/itu/index.php:113 #: application/views/awards/jcc/index.php:113 -#: application/views/awards/rac/index.php:102 -#: application/views/awards/waja/index.php:114 -#: application/views/awards/was/index.php:110 -#: application/views/distances/index.php:53 +#: application/views/awards/rac/index.php:104 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/waja/index.php:116 +#: application/views/awards/was/index.php:112 +#: application/views/distances/index.php:79 #: application/views/logbookadvanced/useroptions.php:17 #: application/views/lookup/index.php:63 #: application/views/stationsetup/exportmapoptions.php:6 -#: application/views/timeline/index.php:72 -#: application/views/timeline/index.php:137 -#: application/views/timeline/index.php:164 -#: application/views/timeline/index.php:189 -#: application/views/timeline/index.php:218 -#: application/views/timeline/index.php:243 -#: application/views/timeline/index.php:270 +#: application/views/timeline/index.php:105 +#: application/views/timeline/index.php:170 +#: application/views/timeline/index.php:197 +#: application/views/timeline/index.php:222 +#: application/views/timeline/index.php:251 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:303 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "" @@ -2354,12 +2880,15 @@ msgstr "" #: application/views/activated_gridmap/index.php:20 #: application/views/awards/dxcc/index.php:131 #: application/views/awards/wab/index.php:34 +#: application/views/awards/wac/index.php:78 #: 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/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:192 +#: application/views/logbookadvanced/edit.php:17 +#: application/views/logbookadvanced/index.php:203 #: application/views/satellite/flightpath.php:34 +#: application/views/satellite/passtable.php:5 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:112 msgid "Satellite" @@ -2368,9 +2897,10 @@ msgstr "" #: application/views/activated_gridmap/index.php:30 #: application/views/awards/dxcc/index.php:147 #: application/views/awards/wab/index.php:44 +#: application/views/awards/wac/index.php:94 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:80 -#: application/views/logbookadvanced/index.php:201 +#: application/views/logbookadvanced/index.php:212 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:23 @@ -2385,16 +2915,17 @@ msgid "Confirmation" msgstr "" #: application/views/activated_gridmap/index.php:82 -#: application/views/awards/cq/index.php:66 +#: application/views/awards/cq/index.php:68 #: application/views/awards/dok/index.php:67 #: application/views/awards/dxcc/index.php:73 -#: application/views/awards/helvetia/index.php:65 -#: application/views/awards/itu/index.php:66 +#: application/views/awards/helvetia/index.php:67 +#: application/views/awards/itu/index.php:68 #: application/views/awards/jcc/index.php:64 -#: application/views/awards/rac/index.php:57 +#: application/views/awards/rac/index.php:59 #: application/views/awards/wab/index.php:96 -#: application/views/awards/waja/index.php:65 -#: application/views/awards/was/index.php:65 +#: application/views/awards/wac/index.php:56 +#: application/views/awards/waja/index.php:67 +#: application/views/awards/was/index.php:67 #: application/views/gridmap/index.php:125 application/views/user/edit.php:675 msgid "QRZ.com" msgstr "" @@ -2430,59 +2961,62 @@ msgstr "" #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:37 #: application/views/gridmap/index.php:156 -#: application/views/logbookadvanced/index.php:12 +#: application/views/logbookadvanced/index.php:13 msgid "Bearing" msgstr "" -#: application/views/activators/index.php:23 +#: application/views/activators/index.php:26 msgctxt "Orbiter LEO or GEO" msgid "Both" msgstr "" -#: application/views/activators/index.php:30 +#: application/views/activators/index.php:33 msgid "Minimum Count" msgstr "" -#: application/views/activators/index.php:77 +#: application/views/activators/index.php:76 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:46 -#: application/views/awards/cq/index.php:196 +#: application/views/awards/cq/index.php:198 #: application/views/awards/dok/index.php:196 #: application/views/awards/dxcc/index.php:280 -#: application/views/awards/helvetia/index.php:198 +#: application/views/awards/helvetia/index.php:200 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:196 +#: application/views/awards/itu/index.php:198 #: application/views/awards/jcc/index.php:236 #: application/views/awards/pota/index.php:67 -#: application/views/awards/rac/index.php:190 +#: application/views/awards/rac/index.php:192 #: application/views/awards/sig/index.php:45 #: application/views/awards/sota/index.php:53 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:39 -#: application/views/awards/waja/index.php:200 -#: application/views/awards/was/index.php:198 +#: application/views/awards/wac/index.php:199 +#: application/views/awards/waja/index.php:202 +#: application/views/awards/was/index.php:200 #: application/views/awards/wwff/index.php:64 +#: application/views/distancerecords/index.php:50 #: application/views/public_search/empty.php:3 -#: application/views/qrz/export.php:64 application/views/timeline/index.php:102 +#: application/views/qrz/export.php:64 application/views/timeline/index.php:135 msgid "Nothing found!" msgstr "" -#: application/views/activators/index.php:99 -#: application/views/adif/import.php:66 application/views/adif/import.php:172 -#: application/views/adif/import.php:217 +#: application/views/activators/index.php:98 +#: application/views/adif/import.php:66 application/views/adif/import.php:182 +#: application/views/adif/import.php:227 #: application/views/awards/pota/index.php:34 #: application/views/awards/sig/qso_list.php:11 #: application/views/awards/sota/index.php:25 #: application/views/awards/wwff/index.php:34 #: application/views/cabrillo/index.php:31 #: application/views/components/hamsat/table.php:27 -#: application/views/contesting/index.php:104 -#: application/views/csv/index.php:23 application/views/dashboard/index.php:152 +#: application/views/contesting/index.php:156 +#: application/views/csv/index.php:23 application/views/dashboard/index.php:168 +#: application/views/distancerecords/index.php:18 #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41 #: application/views/eqslcard/index.php:28 #: application/views/hamsat/index.php:30 application/views/labels/index.php:123 #: application/views/logbookadvanced/qslcarousel.php:30 -#: application/views/lotw_views/index.php:39 +#: application/views/lotw_views/index.php:35 #: application/views/oqrs/qsolist.php:6 #: application/views/oqrs/request_grouped.php:12 #: application/views/qslcard/index.php:28 @@ -2491,35 +3025,36 @@ msgstr "" #: application/views/qslprint/qslprint.php:21 #: application/views/qslprint/qsolist.php:6 #: application/views/qso/edit_ajax.php:62 application/views/qso/index.php:124 +#: application/views/reg1test/index.php:33 #: application/views/search/cqzones.php:32 #: application/views/search/cqzones_result.php:9 #: application/views/search/lotw_unconfirmed.php:33 #: application/views/search/lotw_unconfirmed_result.php:6 #: application/views/search/result.php:11 -#: application/views/simplefle/index.php:142 -#: application/views/station_profile/edit.php:36 +#: application/views/simplefle/index.php:148 +#: application/views/station_profile/edit.php:63 #: application/views/stationsetup/linkedlocations.php:17 -#: application/views/user/edit.php:123 application/views/user/main.php:4 -#: application/views/user/main.php:47 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:507 +#: application/views/user/edit.php:123 application/views/user/index.php:4 +#: application/views/user/index.php:47 application/views/user/profile.php:29 +#: application/views/view_log/qso.php:82 application/views/view_log/qso.php:510 msgid "Callsign" msgstr "" -#: application/views/activators/index.php:100 +#: application/views/activators/index.php:99 msgid "Count" msgstr "" -#: application/views/activators/index.php:102 -#: application/views/timeline/index.php:121 -#: application/views/timeline/index.php:153 -#: application/views/timeline/index.php:178 -#: application/views/timeline/index.php:205 -#: application/views/timeline/index.php:232 -#: application/views/timeline/index.php:258 +#: application/views/activators/index.php:101 +#: application/views/timeline/index.php:154 +#: application/views/timeline/index.php:186 +#: application/views/timeline/index.php:211 +#: application/views/timeline/index.php:238 +#: application/views/timeline/index.php:265 +#: application/views/timeline/index.php:291 msgid "Show QSO's" msgstr "" -#: application/views/activators/index.php:103 +#: application/views/activators/index.php:102 msgid "Show Map" msgstr "" @@ -2560,10 +3095,12 @@ msgstr "" #: application/views/awards/wwff/index.php:32 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:25 -#: application/views/contesting/index.php:42 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36 +#: application/views/contesting/index.php:93 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:163 +#: application/views/debug/index.php:545 +#: application/views/distancerecords/index.php:16 +#: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2576,22 +3113,22 @@ msgstr "" #: application/views/qslcard/searchresult.php:4 #: application/views/qslprint/qslprint.php:22 #: application/views/qslprint/qsolist.php:7 application/views/qso/index.php:64 -#: application/views/qso/index.php:100 +#: application/views/qso/index.php:100 application/views/satellite/pass.php:473 #: application/views/search/cqzones_result.php:7 #: application/views/search/result_search.php:4 #: application/views/search/search_result_ajax.php:89 -#: application/views/simplefle/index.php:140 +#: application/views/simplefle/index.php:146 #: application/views/statistics/custom.php:38 #: application/views/statistics/custom_result.php:40 #: application/views/statistics/custom_result.php:85 -#: application/views/timeline/index.php:116 -#: application/views/timeline/index.php:151 -#: application/views/timeline/index.php:176 -#: application/views/timeline/index.php:201 -#: application/views/timeline/index.php:230 -#: application/views/timeline/index.php:255 +#: application/views/timeline/index.php:149 +#: application/views/timeline/index.php:184 +#: application/views/timeline/index.php:209 +#: application/views/timeline/index.php:234 +#: application/views/timeline/index.php:263 +#: application/views/timeline/index.php:288 #: application/views/view_log/partial/log.php:4 -#: application/views/view_log/partial/log_ajax.php:57 +#: application/views/view_log/partial/log_ajax.php:59 #: application/views/visitor/index.php:147 #: application/views/widgets/qsos.php:24 msgid "Date" @@ -2602,10 +3139,12 @@ msgstr "" #: application/views/awards/wwff/index.php:33 #: application/views/bandmap/list.php:109 #: application/views/components/hamsat/table.php:26 -#: application/views/contesting/index.php:47 -#: application/views/contesting/index.php:200 -#: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37 +#: application/views/contesting/index.php:98 +#: application/views/contesting/index.php:247 +#: application/views/dashboard/index.php:166 +#: application/views/debug/index.php:546 +#: application/views/distancerecords/index.php:17 +#: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2616,12 +3155,12 @@ msgstr "" #: application/views/search/cqzones_result.php:8 #: application/views/search/result_search.php:5 #: application/views/search/search_result_ajax.php:91 -#: application/views/simplefle/index.php:141 +#: application/views/simplefle/index.php:147 #: application/views/statistics/custom_result.php:86 -#: application/views/timeline/index.php:256 +#: application/views/timeline/index.php:289 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 -#: application/views/view_log/partial/log_ajax.php:59 +#: application/views/view_log/partial/log_ajax.php:61 #: application/views/visitor/index.php:150 #: application/views/widgets/qsos.php:26 msgid "Time" @@ -2630,7 +3169,7 @@ msgstr "" #: application/views/adif/dcl_success.php:31 #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 -#: application/views/contesting/index.php:201 +#: application/views/contesting/index.php:248 #: application/views/debug/index.php:547 application/views/debug/index.php:582 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 @@ -2642,7 +3181,7 @@ msgstr "" #: application/views/search/search_result_ajax.php:93 #: application/views/statistics/custom_result.php:87 #: application/views/view_log/partial/log.php:8 -#: application/views/view_log/partial/log_ajax.php:61 +#: application/views/view_log/partial/log_ajax.php:63 #: application/views/visitor/index.php:152 #: application/views/widgets/qsos.php:28 msgid "Call" @@ -2660,14 +3199,14 @@ msgstr "" msgid "DCL QSL Status" msgstr "" -#: application/views/adif/import.php:36 application/views/adif/import.php:242 +#: application/views/adif/import.php:36 application/views/adif/import.php:252 msgid "DARC DCL" msgstr "" #: application/views/adif/import.php:55 -#: application/views/dashboard/index.php:97 -#: application/views/dashboard/index.php:118 -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:112 +#: application/views/dashboard/index.php:133 +#: application/views/dashboard/index.php:139 #: application/views/eqsl/import.php:45 application/views/lotw/import.php:25 #: application/views/lotw_views/index.php:4 msgid "Important" @@ -2677,29 +3216,29 @@ msgstr "" msgid "Log Files must have the file type *.adi" msgstr "" -#: application/views/adif/import.php:56 application/views/view_log/qso.php:622 +#: application/views/adif/import.php:56 application/views/view_log/qso.php:625 msgid "Maximum file upload size is " msgstr "" -#: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:175 +#: application/views/adif/import.php:56 application/views/adif/import.php:230 +#: application/views/adif/import.php:268 application/views/debug/index.php:175 #: application/views/debug/index.php:192 application/views/debug/index.php:537 #: application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:34 #: application/views/qrz/export.php:73 application/views/qrz/export.php:94 -#: application/views/station_profile/index.php:31 #: application/views/stationsetup/stationsetup.php:111 -#: application/views/view_log/qso.php:622 +#: application/views/view_log/qso.php:625 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" msgstr "" #: application/views/adif/import.php:60 application/views/adif/import.php:62 -#: application/views/adif/import.php:168 application/views/adif/import.php:215 +#: application/views/adif/import.php:178 application/views/adif/import.php:225 #: application/views/eqsl/import.php:36 application/views/hrdlog/export.php:69 -#: application/views/qrz/export.php:89 application/views/webadif/export.php:89 +#: application/views/qrz/export.php:89 application/views/reg1test/index.php:30 +#: application/views/webadif/export.php:89 msgid "Select Station Location" msgstr "" @@ -2726,69 +3265,75 @@ msgstr "" #: application/views/adif/import.php:95 application/views/adif/import.php:105 #: application/views/adif/import.php:115 application/views/adif/import.php:125 +#: application/views/adif/import.php:135 msgid "Select if ADIF being imported does not contain this information." msgstr "" #: application/views/adif/import.php:103 -msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" +msgid "Mark imported QSOs as uploaded to eQSL Logbook" msgstr "" #: application/views/adif/import.php:113 -msgid "Mark imported QSOs as uploaded to QRZ Logbook" +msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" msgstr "" #: application/views/adif/import.php:123 -msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgid "Mark imported QSOs as uploaded to QRZ Logbook" msgstr "" #: application/views/adif/import.php:133 +msgid "Mark imported QSOs as uploaded to Clublog Logbook" +msgstr "" + +#: application/views/adif/import.php:143 msgid "Use DXCC information from ADIF" msgstr "" -#: application/views/adif/import.php:135 +#: application/views/adif/import.php:145 msgid "" "If not selected, Wavelog will attempt to determine DXCC information " "automatically." msgstr "" -#: application/views/adif/import.php:143 +#: application/views/adif/import.php:153 msgid "Always use login-callsign as operator-name on import" msgstr "" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:32 -#: application/views/interface_assets/footer.php:495 -#: application/views/interface_assets/footer.php:2119 +#: application/views/interface_assets/footer.php:501 +#: application/views/interface_assets/footer.php:2133 msgid "DANGER" msgstr "" -#: application/views/adif/import.php:152 +#: application/views/adif/import.php:162 msgid "Ignore Stationcallsign on import" msgstr "" -#: application/views/adif/import.php:154 +#: application/views/adif/import.php:164 +#, php-format msgid "" -"If selected, Wavelog will try to import all QSO's of the ADIF, " +"If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " "regardless if they match to the chosen station-location." msgstr "" -#: application/views/adif/import.php:158 application/views/adif/import.php:273 +#: application/views/adif/import.php:168 application/views/adif/import.php:283 #: application/views/hrdlog/export.php:50 application/views/qrz/export.php:54 #: application/views/webadif/export.php:55 msgid "Upload" msgstr "" -#: application/views/adif/import.php:165 +#: application/views/adif/import.php:175 msgid "Take your logbook file anywhere!" msgstr "" -#: application/views/adif/import.php:166 +#: application/views/adif/import.php:176 msgid "" "Exporting ADIFs allows you to import contacts into third party applications " "like LoTW, Awards or just for keeping a backup." msgstr "" -#: application/views/adif/import.php:176 application/views/adif/import.php:222 +#: application/views/adif/import.php:186 application/views/adif/import.php:232 #: application/views/cfd/index.php:15 application/views/csv/index.php:118 #: application/views/dxatlas/index.php:118 #: application/views/hrdlog/export.php:77 application/views/kml/index.php:103 @@ -2797,7 +3342,7 @@ msgstr "" msgid "From date" msgstr "" -#: application/views/adif/import.php:179 application/views/adif/import.php:225 +#: application/views/adif/import.php:189 application/views/adif/import.php:235 #: application/views/cfd/index.php:20 application/views/csv/index.php:123 #: application/views/dxatlas/index.php:123 #: application/views/hrdlog/export.php:82 application/views/kml/index.php:108 @@ -2806,40 +3351,40 @@ msgstr "" msgid "To date" msgstr "" -#: application/views/adif/import.php:187 +#: application/views/adif/import.php:197 msgid "Mark exported QSOs as uploaded to LoTW" msgstr "" -#: application/views/adif/import.php:195 +#: application/views/adif/import.php:205 msgid "Export QSOs not uploaded to LoTW" msgstr "" -#: application/views/adif/import.php:200 +#: application/views/adif/import.php:210 msgid "Export QSO's" msgstr "" -#: application/views/adif/import.php:205 +#: application/views/adif/import.php:215 msgid "Export Satellite-Only QSOs" msgstr "" -#: application/views/adif/import.php:206 +#: application/views/adif/import.php:216 msgid "Export All Satellite QSOs" msgstr "" -#: application/views/adif/import.php:208 +#: application/views/adif/import.php:218 msgid "Export All Satellite QSOs Confirmed on LoTW" msgstr "" -#: application/views/adif/import.php:220 application/views/hrdlog/export.php:74 +#: application/views/adif/import.php:230 application/views/hrdlog/export.php:74 #: application/views/qrz/export.php:94 application/views/webadif/export.php:94 msgid "If a date range is not selected then all QSOs will be marked!" msgstr "" -#: application/views/adif/import.php:228 +#: application/views/adif/import.php:238 msgid "Mark QSOs as exported to LoTW" msgstr "" -#: application/views/adif/import.php:242 +#: application/views/adif/import.php:252 #, php-format msgid "" "Go to %s and export your logbook with confirmed DOKs. To speed up the " @@ -2848,36 +3393,47 @@ msgid "" "with DOK info." msgstr "" -#: application/views/adif/import.php:249 +#: application/views/adif/import.php:259 msgid "Only import DOK data from QSOs confirmed on DCL." msgstr "" -#: application/views/adif/import.php:251 +#: application/views/adif/import.php:261 msgid "" "Uncheck if you also want to update DOK with data from unconfirmed QSOs in " "DCL." msgstr "" -#: application/views/adif/import.php:258 +#: application/views/adif/import.php:268 msgid "Overwrites exisiting DOK in log by DCL (if different)." msgstr "" -#: application/views/adif/import.php:260 +#: application/views/adif/import.php:270 msgid "" "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " "log." msgstr "" -#: application/views/adif/import.php:267 +#: application/views/adif/import.php:277 msgid "Ignore QSOs that cannot be matched." msgstr "" -#: application/views/adif/import.php:269 +#: application/views/adif/import.php:279 msgid "" "If unchecked, information about QSOs which could not be found in Wavelog " "will be displayed." msgstr "" +#: application/views/adif/import_failed.php:15 +msgid "The ADIF file could not be parsed correctly." +msgstr "" + +#: application/views/adif/import_failed.php:16 +msgid "" +"At least one of the ADIF fields could not be parsed and/or inserted into the " +"database. Please check the imported ADIF file. You can use an online ADIF " +"file checker. For example:" +msgstr "" + #: application/views/adif/import_success.php:15 msgid "Yay, its imported!" msgstr "" @@ -2930,24 +3486,22 @@ msgstr "" #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 -#: application/views/interface_assets/footer.php:43 -#: application/views/interface_assets/footer.php:530 +#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:536 #: application/views/operator/index.php:23 -#: application/views/options/appearance.php:107 +#: application/views/options/appearance.php:116 #: application/views/options/dxcluster.php:67 #: application/views/options/email.php:112 #: application/views/options/oqrs.php:63 #: application/views/options/radios.php:45 #: application/views/options/version_dialog.php:78 -#: application/views/qso/components/winkeysettings.php:90 -#: application/views/qso/components/winkeysettings_results.php:90 #: application/views/satellite/create.php:70 #: application/views/simplefle/index.php:22 msgid "Save" msgstr "" #: application/views/api/help.php:14 -#: application/views/interface_assets/header.php:431 +#: application/views/interface_assets/header.php:437 msgid "API Keys" msgstr "" @@ -2971,7 +3525,7 @@ msgid "API URL" msgstr "" #: application/views/api/help.php:19 application/views/api/help.php:38 -#: application/views/cron/index.php:21 application/views/debug/index.php:36 +#: application/views/cron/index.php:22 application/views/debug/index.php:36 msgid "Copy to clipboard" msgstr "" @@ -2980,14 +3534,15 @@ msgid "The API URL for this Wavelog instance is" msgstr "" #: application/views/api/help.php:20 application/views/dxcalendar/index.php:15 -#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:477 -#: application/views/qso/index.php:538 application/views/qso/index.php:583 +#: application/views/eqsl/export.php:33 application/views/qso/edit_ajax.php:504 +#: application/views/qso/index.php:560 application/views/qso/index.php:605 #: application/views/radio/index.php:22 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 #: application/views/sattimers/index.php:73 #: application/views/sattimers/index.php:75 +#: application/views/sattimers/index.php:77 #: application/views/search/filter.php:69 msgid "Info" msgstr "" @@ -3003,7 +3558,7 @@ msgid "API Key" msgstr "" #: application/views/api/help.php:28 application/views/cron/edit.php:30 -#: application/views/cron/index.php:51 +#: application/views/cron/index.php:53 #: application/views/search/stored_queries.php:8 msgid "Description" msgstr "" @@ -3016,19 +3571,18 @@ msgstr "" msgid "Permissions" msgstr "" -#: application/views/api/help.php:31 application/views/cron/index.php:52 -#: application/views/lotw_views/index.php:45 +#: application/views/api/help.php:31 application/views/cron/index.php:54 +#: application/views/lotw_views/index.php:41 #: application/views/mode/index.php:31 #: application/views/oqrs/showrequests.php:91 #: application/views/sattimers/index.php:39 #: application/views/stationsetup/stationsetup.php:31 -#: application/views/timeline/index.php:119 -#: application/views/update/index.php:30 +#: application/views/timeline/index.php:152 msgid "Status" msgstr "" #: application/views/api/help.php:32 application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:519 #: application/views/qrz/export.php:43 application/views/webadif/export.php:45 msgid "Actions" msgstr "" @@ -3064,6 +3618,7 @@ msgstr "" #: application/views/awards/counties/details.php:4 #: application/views/awards/details.php:1 #: application/views/awards/vucc/band.php:4 +#: application/views/distancerecords/details.php:1 #: application/views/timeline/details.php:2 msgid "Filtering on" msgstr "" @@ -3074,8 +3629,8 @@ msgstr "" #: application/views/awards/counties/index.php:6 #: application/views/awards/counties/index.php:13 -#: application/views/awards/cq/index.php:17 -#: application/views/awards/cq/index.php:24 +#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:26 #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:13 #: application/views/awards/dxcc/index.php:13 @@ -3084,12 +3639,12 @@ msgstr "" #: application/views/awards/ffma/index.php:14 #: application/views/awards/gridmaster/index.php:6 #: application/views/awards/gridmaster/index.php:13 -#: application/views/awards/helvetia/index.php:17 -#: application/views/awards/helvetia/index.php:24 +#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:26 #: application/views/awards/iota/index.php:15 #: application/views/awards/iota/index.php:22 -#: application/views/awards/itu/index.php:17 -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:26 #: application/views/awards/jcc/index.php:15 #: application/views/awards/jcc/index.php:22 #: application/views/awards/pota/index.php:6 @@ -3102,10 +3657,12 @@ msgstr "" #: application/views/awards/vucc/index.php:13 #: application/views/awards/wab/index.php:11 #: application/views/awards/wab/index.php:18 -#: application/views/awards/waja/index.php:16 -#: application/views/awards/waja/index.php:23 -#: application/views/awards/was/index.php:17 -#: application/views/awards/was/index.php:24 +#: application/views/awards/wac/index.php:7 +#: application/views/awards/wac/index.php:14 +#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:25 +#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:26 #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:13 msgid "Award Info" @@ -3143,17 +3700,18 @@ msgid "Counties Confirmed" msgstr "" #: application/views/awards/counties/index.php:39 -#: application/views/awards/cq/index.php:174 +#: application/views/awards/cq/index.php:176 #: application/views/awards/dok/index.php:174 #: application/views/awards/dxcc/index.php:257 -#: application/views/awards/helvetia/index.php:177 +#: application/views/awards/helvetia/index.php:179 #: application/views/awards/iota/index.php:201 -#: application/views/awards/itu/index.php:174 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:185 -#: application/views/awards/rac/index.php:169 -#: application/views/awards/waja/index.php:177 -#: application/views/awards/was/index.php:177 -#: application/views/dashboard/index.php:217 +#: application/views/awards/rac/index.php:171 +#: application/views/awards/wac/index.php:177 +#: application/views/awards/waja/index.php:179 +#: application/views/awards/was/index.php:179 +#: application/views/dashboard/index.php:233 #: application/views/simplefle/index.php:27 #: application/views/statistics/qsltable.php:54 #: application/views/statistics/qsltable.php:109 @@ -3169,213 +3727,230 @@ msgstr "" msgid "Total" msgstr "" -#: application/views/awards/cq/index.php:18 +#: application/views/awards/cq/index.php:3 +#: application/views/awards/cq/index.php:150 application/views/csv/index.php:80 +#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 +#: application/views/logbookadvanced/edit.php:6 +#: application/views/logbookadvanced/index.php:246 +#: application/views/logbookadvanced/index.php:614 +#: application/views/logbookadvanced/qslcarousel.php:37 +#: application/views/logbookadvanced/useroptions.php:90 +#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:284 +#: application/views/qso/index.php:390 +#: application/views/search/cqzones_result.php:13 +#: application/views/station_profile/create.php:113 +#: application/views/station_profile/edit.php:153 +#: application/views/timeline/index.php:264 +#: application/views/timeplotter/index.php:44 +msgid "CQ Zone" +msgstr "" + +#: application/views/awards/cq/index.php:4 +#: application/views/awards/itu/index.php:4 +msgid "Hover over a zone" +msgstr "" + +#: application/views/awards/cq/index.php:20 msgid "CQ Magazine WAZ Award" msgstr "" -#: application/views/awards/cq/index.php:19 +#: application/views/awards/cq/index.php:21 msgid "" "The CQ Magazine is located in the US and one of the most popular amateur " "radio magazines in the world. The magazine first appeared in January 1945 " "and focuses on awards and the practical aspects of amateur radio." msgstr "" -#: application/views/awards/cq/index.php:20 +#: application/views/awards/cq/index.php:22 msgid "" "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to " "all 40 CQ Zones along with the corresponding confirmation." msgstr "" -#: application/views/awards/cq/index.php:21 +#: application/views/awards/cq/index.php:23 #, php-format msgctxt "uses 'CQ Magazine'" msgid "You can find all the information and rules on the Website of the %s." msgstr "" -#: application/views/awards/cq/index.php:23 +#: application/views/awards/cq/index.php:25 msgid "Awards - CQ Magazine WAZ" msgstr "" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 #: application/views/awards/wab/list.php:6 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:73 -#: application/views/dashboard/index.php:244 -#: application/views/dashboard/index.php:362 -#: application/views/interface_assets/footer.php:39 +#: application/views/dashboard/index.php:260 +#: application/views/dashboard/index.php:378 +#: application/views/interface_assets/footer.php:40 #: application/views/visitor/index.php:266 msgid "Confirmed" msgstr "" -#: application/views/awards/cq/index.php:32 -#: application/views/awards/itu/index.php:32 +#: application/views/awards/cq/index.php:34 +#: application/views/awards/itu/index.php:34 +#: application/views/awards/wac/index.php:22 #: application/views/bandmap/list.php:72 -#: application/views/dashboard/index.php:240 -#: application/views/dashboard/index.php:356 +#: application/views/dashboard/index.php:256 +#: application/views/dashboard/index.php:372 #: application/views/visitor/index.php:262 msgid "Worked" msgstr "" -#: application/views/awards/cq/index.php:36 +#: application/views/awards/cq/index.php:38 #: application/views/awards/dok/index.php:41 #: application/views/awards/dxcc/index.php:43 -#: application/views/awards/helvetia/index.php:35 +#: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:43 -#: application/views/awards/itu/index.php:36 +#: application/views/awards/itu/index.php:38 #: application/views/awards/jcc/index.php:34 -#: application/views/awards/rac/index.php:27 -#: application/views/awards/waja/index.php:35 -#: application/views/awards/was/index.php:35 +#: application/views/awards/rac/index.php:29 +#: application/views/awards/wac/index.php:26 +#: application/views/awards/waja/index.php:37 +#: application/views/awards/was/index.php:37 msgid "Show worked" msgstr "" -#: application/views/awards/cq/index.php:40 +#: application/views/awards/cq/index.php:42 #: application/views/awards/dok/index.php:45 #: application/views/awards/dxcc/index.php:47 -#: application/views/awards/helvetia/index.php:39 +#: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:47 -#: application/views/awards/itu/index.php:40 +#: application/views/awards/itu/index.php:42 #: application/views/awards/jcc/index.php:38 -#: application/views/awards/rac/index.php:31 -#: application/views/awards/waja/index.php:39 -#: application/views/awards/was/index.php:39 +#: application/views/awards/rac/index.php:33 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/waja/index.php:41 +#: application/views/awards/was/index.php:41 msgid "Show confirmed" msgstr "" -#: application/views/awards/cq/index.php:44 +#: application/views/awards/cq/index.php:46 #: application/views/awards/dxcc/index.php:51 -#: application/views/awards/helvetia/index.php:43 +#: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:51 -#: application/views/awards/itu/index.php:44 +#: application/views/awards/itu/index.php:46 #: application/views/awards/jcc/index.php:42 -#: application/views/awards/rac/index.php:35 -#: application/views/awards/waja/index.php:43 -#: application/views/awards/was/index.php:43 +#: application/views/awards/rac/index.php:37 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/waja/index.php:45 +#: application/views/awards/was/index.php:45 msgid "Show not worked" msgstr "" -#: application/views/awards/cq/index.php:50 +#: application/views/awards/cq/index.php:52 #: application/views/awards/dok/index.php:51 #: application/views/awards/dxcc/index.php:57 -#: application/views/awards/helvetia/index.php:49 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/helvetia/index.php:51 +#: application/views/awards/itu/index.php:52 #: application/views/awards/jcc/index.php:48 -#: application/views/awards/rac/index.php:41 -#: application/views/awards/waja/index.php:49 -#: application/views/awards/was/index.php:49 +#: application/views/awards/rac/index.php:43 +#: application/views/awards/wac/index.php:40 +#: application/views/awards/waja/index.php:51 +#: application/views/awards/was/index.php:51 msgid "Show QSO with QSL Type" msgstr "" -#: application/views/awards/cq/index.php:54 -#: application/views/awards/itu/index.php:54 -#: application/views/interface_assets/footer.php:2098 -#: application/views/qso/edit_ajax.php:378 +#: application/views/awards/cq/index.php:56 +#: application/views/awards/itu/index.php:56 +#: application/views/awards/wac/index.php:44 +#: application/views/interface_assets/footer.php:2112 +#: application/views/qso/edit_ajax.php:405 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "" -#: application/views/awards/cq/index.php:110 +#: application/views/awards/cq/index.php:112 #: application/views/awards/dok/index.php:126 #: application/views/awards/dxcc/index.php:186 -#: application/views/awards/helvetia/index.php:109 +#: application/views/awards/helvetia/index.php:111 #: application/views/awards/iota/index.php:129 -#: application/views/awards/itu/index.php:110 +#: application/views/awards/itu/index.php:112 #: application/views/awards/jcc/index.php:112 -#: application/views/awards/rac/index.php:101 -#: application/views/awards/waja/index.php:113 -#: application/views/awards/was/index.php:109 +#: application/views/awards/rac/index.php:103 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/waja/index.php:115 +#: application/views/awards/was/index.php:111 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:523 +#: application/views/logbookadvanced/index.php:551 #: application/views/oqrs/showrequests.php:68 #: application/views/qrbcalc/index.php:19 #: application/views/search/filter.php:40 application/views/user/edit.php:607 msgid "Reset" msgstr "" -#: application/views/awards/cq/index.php:113 +#: application/views/awards/cq/index.php:115 msgid "Show CQ Zone Map" msgstr "" -#: application/views/awards/cq/index.php:122 +#: application/views/awards/cq/index.php:124 #: application/views/awards/dxcc/index.php:199 -#: application/views/awards/helvetia/index.php:122 +#: application/views/awards/helvetia/index.php:124 #: application/views/awards/iota/index.php:142 -#: application/views/awards/itu/index.php:122 -#: application/views/awards/rac/index.php:114 -#: application/views/awards/waja/index.php:126 -#: application/views/awards/was/index.php:122 +#: application/views/awards/itu/index.php:124 +#: application/views/awards/rac/index.php:116 +#: application/views/awards/waja/index.php:128 +#: application/views/awards/was/index.php:124 msgid "Table" msgstr "" -#: application/views/awards/cq/index.php:125 +#: application/views/awards/cq/index.php:127 #: application/views/awards/dok/index.php:128 #: application/views/awards/dxcc/index.php:202 -#: application/views/awards/helvetia/index.php:125 +#: application/views/awards/helvetia/index.php:127 #: application/views/awards/iota/index.php:145 -#: application/views/awards/itu/index.php:125 +#: application/views/awards/itu/index.php:127 #: application/views/awards/jcc/index.php:129 -#: application/views/awards/rac/index.php:117 +#: application/views/awards/rac/index.php:119 #: application/views/awards/wab/index.php:108 -#: application/views/awards/waja/index.php:129 -#: application/views/awards/was/index.php:125 -#: application/views/logbookadvanced/index.php:516 +#: application/views/awards/waja/index.php:131 +#: application/views/awards/was/index.php:127 +#: application/views/logbookadvanced/index.php:544 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "" -#: application/views/awards/cq/index.php:148 application/views/csv/index.php:80 -#: application/views/dxatlas/index.php:80 application/views/kml/index.php:65 -#: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:235 -#: application/views/logbookadvanced/index.php:586 -#: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:90 -#: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 -#: application/views/qso/index.php:390 -#: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:106 -#: application/views/station_profile/edit.php:126 -#: application/views/timeline/index.php:231 -#: application/views/timeplotter/index.php:44 -msgid "CQ Zone" -msgstr "" - -#: application/views/awards/cq/index.php:165 +#: application/views/awards/cq/index.php:167 #: application/views/awards/dok/index.php:165 #: application/views/awards/dxcc/index.php:248 -#: application/views/awards/helvetia/index.php:168 +#: application/views/awards/helvetia/index.php:170 #: application/views/awards/iota/index.php:192 -#: application/views/awards/itu/index.php:165 +#: application/views/awards/itu/index.php:167 #: application/views/awards/jcc/index.php:168 -#: application/views/awards/rac/index.php:160 -#: application/views/awards/waja/index.php:168 -#: application/views/awards/was/index.php:168 +#: application/views/awards/rac/index.php:162 +#: application/views/awards/wac/index.php:168 +#: application/views/awards/waja/index.php:170 +#: application/views/awards/was/index.php:170 msgid "Summary" msgstr "" -#: application/views/awards/cq/index.php:178 +#: application/views/awards/cq/index.php:180 #: application/views/awards/dok/index.php:178 #: application/views/awards/dxcc/index.php:262 -#: application/views/awards/helvetia/index.php:181 +#: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:206 -#: application/views/awards/itu/index.php:178 +#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:195 -#: application/views/awards/rac/index.php:173 -#: application/views/awards/waja/index.php:182 -#: application/views/awards/was/index.php:181 +#: application/views/awards/rac/index.php:175 +#: application/views/awards/wac/index.php:181 +#: application/views/awards/waja/index.php:184 +#: application/views/awards/was/index.php:183 msgid "Total worked" msgstr "" -#: application/views/awards/cq/index.php:185 +#: application/views/awards/cq/index.php:187 #: application/views/awards/dok/index.php:185 #: application/views/awards/dxcc/index.php:269 -#: application/views/awards/helvetia/index.php:188 +#: application/views/awards/helvetia/index.php:190 #: application/views/awards/iota/index.php:213 -#: application/views/awards/itu/index.php:185 +#: application/views/awards/itu/index.php:187 #: application/views/awards/jcc/index.php:214 -#: application/views/awards/rac/index.php:180 -#: application/views/awards/waja/index.php:189 -#: application/views/awards/was/index.php:188 +#: application/views/awards/rac/index.php:182 +#: application/views/awards/wac/index.php:188 +#: application/views/awards/waja/index.php:191 +#: application/views/awards/was/index.php:190 msgid "Total confirmed" msgstr "" @@ -3423,23 +3998,24 @@ msgstr "" #: application/views/awards/dok/index.php:37 #: application/views/awards/dxcc/index.php:39 -#: application/views/awards/helvetia/index.php:31 +#: application/views/awards/helvetia/index.php:33 #: application/views/awards/iota/index.php:39 #: application/views/awards/jcc/index.php:30 -#: application/views/awards/rac/index.php:23 -#: application/views/awards/waja/index.php:31 -#: application/views/awards/was/index.php:31 +#: application/views/awards/rac/index.php:25 +#: application/views/awards/waja/index.php:33 +#: application/views/awards/was/index.php:33 msgid "Worked / Confirmed" msgstr "" #: application/views/awards/dok/index.php:80 #: application/views/awards/dxcc/index.php:120 -#: application/views/awards/helvetia/index.php:74 +#: application/views/awards/helvetia/index.php:76 #: application/views/awards/iota/index.php:94 #: application/views/awards/jcc/index.php:77 -#: application/views/awards/rac/index.php:66 -#: application/views/awards/waja/index.php:78 -#: application/views/awards/was/index.php:74 +#: application/views/awards/rac/index.php:68 +#: application/views/awards/wac/index.php:66 +#: application/views/awards/waja/index.php:80 +#: application/views/awards/was/index.php:76 msgid "Every band" msgstr "" @@ -3460,10 +4036,12 @@ msgid "" msgstr "" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 msgid "ARRL website" msgstr "" #: application/views/awards/dxcc/index.php:16 +#: application/views/awards/wac/index.php:11 #, php-format msgid "You can find all information about the DXCC Award on the %s." msgstr "" @@ -3485,63 +4063,77 @@ msgstr "" #: application/views/awards/dxcc/index.php:87 #: application/views/awards/iota/index.php:61 #: application/views/bandmap/index.php:37 application/views/bandmap/list.php:80 +#: application/views/logbookadvanced/edit.php:144 +#: application/views/logbookadvanced/index.php:309 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:243 application/views/qso/index.php:381 -#: application/views/view_log/qso.php:250 +#: application/views/view_log/qso.php:253 msgid "Antarctica" msgstr "" #: application/views/awards/dxcc/index.php:91 #: application/views/awards/iota/index.php:65 #: application/views/bandmap/index.php:36 application/views/bandmap/list.php:79 +#: application/views/logbookadvanced/edit.php:143 +#: application/views/logbookadvanced/index.php:308 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:242 application/views/qso/index.php:380 -#: application/views/view_log/qso.php:247 +#: application/views/view_log/qso.php:250 msgid "Africa" msgstr "" #: application/views/awards/dxcc/index.php:95 #: application/views/awards/iota/index.php:69 #: application/views/bandmap/index.php:38 application/views/bandmap/list.php:81 +#: application/views/logbookadvanced/edit.php:146 +#: application/views/logbookadvanced/index.php:311 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:244 application/views/qso/index.php:382 -#: application/views/view_log/qso.php:253 +#: application/views/view_log/qso.php:256 msgid "Asia" msgstr "" #: application/views/awards/dxcc/index.php:99 #: application/views/awards/iota/index.php:73 #: application/views/bandmap/index.php:39 application/views/bandmap/list.php:82 +#: application/views/logbookadvanced/edit.php:147 +#: application/views/logbookadvanced/index.php:312 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:245 application/views/qso/index.php:383 -#: application/views/view_log/qso.php:256 +#: application/views/view_log/qso.php:259 msgid "Europe" msgstr "" #: application/views/awards/dxcc/index.php:103 #: application/views/awards/iota/index.php:77 #: application/views/bandmap/index.php:40 application/views/bandmap/list.php:83 +#: application/views/logbookadvanced/edit.php:145 +#: application/views/logbookadvanced/index.php:310 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:246 application/views/qso/index.php:384 -#: application/views/view_log/qso.php:259 +#: application/views/view_log/qso.php:262 msgid "North America" msgstr "" #: application/views/awards/dxcc/index.php:107 #: application/views/awards/iota/index.php:81 #: application/views/bandmap/index.php:42 application/views/bandmap/list.php:85 +#: application/views/logbookadvanced/edit.php:148 +#: application/views/logbookadvanced/index.php:313 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:248 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:265 +#: application/views/view_log/qso.php:268 msgid "South America" msgstr "" #: application/views/awards/dxcc/index.php:111 #: application/views/awards/iota/index.php:85 #: application/views/bandmap/index.php:41 application/views/bandmap/list.php:84 +#: application/views/logbookadvanced/edit.php:149 +#: application/views/logbookadvanced/index.php:314 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:247 application/views/qso/index.php:385 -#: application/views/view_log/qso.php:262 +#: application/views/view_log/qso.php:265 msgid "Oceania" msgstr "" @@ -3555,13 +4147,13 @@ msgstr "" #: application/views/awards/dxcc/index.php:226 #: application/views/awards/iota/index.php:170 -#: application/views/timeline/index.php:117 -#: application/views/timeline/index.php:204 +#: application/views/timeline/index.php:150 +#: application/views/timeline/index.php:237 msgid "Prefix" msgstr "" #: application/views/awards/ffma/index.php:8 -#: application/views/interface_assets/header.php:236 +#: application/views/interface_assets/header.php:240 msgid "Fred Fish Memorial Award" msgstr "" @@ -3616,11 +4208,20 @@ msgstr "" msgid "This map shows only QSOs worked on SAT." msgstr "" -#: application/views/awards/helvetia/index.php:18 +#: application/views/awards/helvetia/index.php:3 +msgctxt "Switzerland Canton" +msgid "Canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:4 +msgid "Hover over a canton" +msgstr "" + +#: application/views/awards/helvetia/index.php:20 msgid "HELVETIA 26 | SWITZERLAND AWARD" msgstr "" -#: application/views/awards/helvetia/index.php:19 +#: application/views/awards/helvetia/index.php:21 msgid "" "The USKA (Union of Swiss Shortwave Amateurs) sponsors two awards, the " "HELVETIA 26 (H26) Award and the SWITZERLAND Award, aimed at promoting " @@ -3628,33 +4229,33 @@ msgid "" "as possible on multiple bands." msgstr "" -#: application/views/awards/helvetia/index.php:20 +#: application/views/awards/helvetia/index.php:22 msgid "" "These awards come in two versions: one for HF bands and the other for VHF " "(including SHF and UHF) bands. Valid connections for these awards date back " "to January 1, 1980" msgstr "" -#: application/views/awards/helvetia/index.php:21 +#: application/views/awards/helvetia/index.php:23 #: application/views/awards/jcc/index.php:19 #: application/views/awards/sota/index.php:10 #: application/views/awards/wab/index.php:15 -#: application/views/awards/waja/index.php:20 +#: application/views/awards/waja/index.php:22 #: application/views/awards/wwff/index.php:10 #, php-format msgid "For more information, please visit: %s." msgstr "" -#: application/views/awards/helvetia/index.php:112 +#: application/views/awards/helvetia/index.php:114 msgid "Show Helvetia Map" msgstr "" -#: application/views/awards/helvetia/index.php:149 +#: application/views/awards/helvetia/index.php:151 msgid "Canton" msgstr "" #: application/views/awards/index.php:9 application/views/bands/index.php:46 -#: application/views/interface_assets/header.php:162 +#: application/views/interface_assets/header.php:164 msgid "CQ" msgstr "" @@ -3702,11 +4303,11 @@ msgstr "" #: application/views/awards/iota/index.php:171 #: application/views/contesting/add.php:25 #: application/views/contesting/create.php:24 -#: application/views/contesting/index.php:153 -#: application/views/contesting/index.php:171 +#: application/views/contesting/index.php:54 +#: application/views/contesting/index.php:214 #: application/views/dashboard/index.php:18 #: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:559 +#: application/views/logbookadvanced/index.php:587 #: application/views/logbookadvanced/qslcarousel.php:34 #: application/views/logbookadvanced/useroptions.php:54 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:188 @@ -3716,12 +4317,12 @@ msgstr "" #: application/views/search/search_result_ajax.php:19 #: application/views/stationsetup/stationsetup.php:30 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:203 application/views/user/edit.php:241 +#: application/views/timeline/index.php:236 application/views/user/edit.php:241 #: application/views/user/edit.php:263 application/views/user/edit.php:285 #: application/views/user/edit.php:307 application/views/user/edit.php:330 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:191 -#: application/views/view_log/qso.php:511 +#: application/views/view_log/qso.php:194 +#: application/views/view_log/qso.php:514 msgid "Name" msgstr "" @@ -3729,7 +4330,19 @@ msgstr "" msgid "Deleted" msgstr "" -#: application/views/awards/itu/index.php:19 +#: application/views/awards/itu/index.php:3 +#: application/views/awards/itu/index.php:150 +#: application/views/logbookadvanced/edit.php:10 +#: application/views/logbookadvanced/index.php:257 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/useroptions.php:94 +#: application/views/qso/edit_ajax.php:299 application/views/qso/index.php:400 +#: application/views/station_profile/create.php:127 +#: application/views/station_profile/edit.php:170 +msgid "ITU Zone" +msgstr "" + +#: application/views/awards/itu/index.php:21 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -3737,30 +4350,20 @@ msgid "" "(ITU)." msgstr "" -#: application/views/awards/itu/index.php:20 +#: application/views/awards/itu/index.php:22 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "" -#: application/views/awards/itu/index.php:23 +#: application/views/awards/itu/index.php:25 msgid "Awards - ITU Zones" msgstr "" -#: application/views/awards/itu/index.php:113 +#: application/views/awards/itu/index.php:115 msgid "Show ITU Zone Map" msgstr "" -#: application/views/awards/itu/index.php:148 -#: application/views/logbookadvanced/edit.php:10 -#: application/views/logbookadvanced/index.php:246 -#: application/views/logbookadvanced/index.php:589 -#: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:120 -#: application/views/station_profile/edit.php:143 -msgid "ITU Zone" -msgstr "" - #: application/views/awards/jcc/index.php:16 msgid "JCC - Japan Century Cities Award" msgstr "" @@ -3786,7 +4389,7 @@ msgstr "" #: application/views/awards/jcc/index.php:116 #: application/views/cabrillo/index.php:180 application/views/cfd/index.php:25 #: application/views/csv/index.php:128 application/views/dxatlas/index.php:128 -#: application/views/kml/index.php:113 +#: application/views/kml/index.php:113 application/views/reg1test/index.php:145 msgid "Export" msgstr "" @@ -3797,18 +4400,19 @@ msgid "Results" msgstr "" #: application/views/awards/jcc/index.php:151 -#: application/views/awards/waja/index.php:151 +#: application/views/awards/waja/index.php:153 +#: application/views/distancerecords/index.php:13 msgid "Number" msgstr "" #: application/views/awards/jcc/index.php:152 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:521 +#: application/views/view_log/qso.php:524 msgid "City" msgstr "" #: application/views/awards/jcc/index.php:187 -#: application/views/dashboard/index.php:352 +#: application/views/dashboard/index.php:368 #: application/views/distances/index.php:23 msgid "SAT" msgstr "" @@ -3840,15 +4444,24 @@ msgid "" msgstr "" #: application/views/awards/pota/index.php:31 -#: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:177 -#: application/views/station_profile/edit.php:245 -#: application/views/user/edit.php:595 application/views/view_log/qso.php:303 -#: application/views/view_log/qso.php:570 +#: application/views/qso/index.php:236 application/views/qso/index.php:492 +#: application/views/station_profile/create.php:184 +#: application/views/station_profile/edit.php:272 +#: application/views/user/edit.php:595 application/views/view_log/qso.php:306 +#: application/views/view_log/qso.php:573 msgid "POTA Reference(s)" msgstr "" -#: application/views/awards/rac/index.php:104 +#: application/views/awards/rac/index.php:3 +msgctxt "Canada Province" +msgid "Province" +msgstr "" + +#: application/views/awards/rac/index.php:4 +msgid "Hover over a province" +msgstr "" + +#: application/views/awards/rac/index.php:106 msgid "Show RAC Map" msgstr "" @@ -3898,7 +4511,7 @@ msgstr "" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 -#: application/views/logbookadvanced/index.php:535 +#: application/views/logbookadvanced/index.php:563 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/useroptions.php:22 #: application/views/qslmanagement/index.php:23 @@ -3994,17 +4607,48 @@ msgstr "" msgid "WAB Square" msgstr "" -#: application/views/awards/waja/index.php:17 +#: application/views/awards/wac/index.php:9 +msgid "" +"Sponsored by the International Amateur Radio Union (IARU), the Worked All " +"Continents award is issued for working and confirming all six continents. " +"These are North America, South America, Oceania, Asia, Europe and Africa." +msgstr "" + +#: application/views/awards/wac/index.php:13 +msgid "Awards - Worked All Continents (WAC)" +msgstr "" + +#: application/views/awards/wac/index.php:151 +#: application/views/continents/index.php:62 +#: application/views/logbookadvanced/edit.php:25 +#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 +#: application/views/view_log/qso.php:245 +msgid "Continent" +msgstr "" + +#: application/views/awards/waja/index.php:3 +msgctxt "Japan Prefecture" +msgid "Prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:4 +msgid "Hover over a prefecture" +msgstr "" + +#: application/views/awards/waja/index.php:19 msgid "WAJA - Worked All Japan prefectures Award" msgstr "" -#: application/views/awards/waja/index.php:18 +#: application/views/awards/waja/index.php:20 msgid "" "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " "radio operators to work all the prefectures in Japan." msgstr "" -#: application/views/awards/waja/index.php:19 +#: application/views/awards/waja/index.php:21 msgid "" "May be claimed for having contacted (heard) and received a QSL card from an " "amateur station located in each of the 47 prefectures of Japan. A list of " @@ -4012,20 +4656,29 @@ msgid "" "however names of prefectures may be omitted." msgstr "" -#: application/views/awards/waja/index.php:116 +#: application/views/awards/waja/index.php:118 msgid "Show WAJA Map" msgstr "" -#: application/views/awards/waja/index.php:152 -#: application/views/timeline/index.php:152 +#: application/views/awards/waja/index.php:154 +#: application/views/timeline/index.php:185 msgid "Prefecture" msgstr "" -#: application/views/awards/was/index.php:18 +#: application/views/awards/was/index.php:3 +msgctxt "USA State" +msgid "State" +msgstr "" + +#: application/views/awards/was/index.php:4 +msgid "Hover over a state" +msgstr "" + +#: application/views/awards/was/index.php:20 msgid "WAS Award" msgstr "" -#: application/views/awards/was/index.php:19 +#: application/views/awards/was/index.php:21 msgid "" "ARRL's most popular award is the Worked All States Award. Thousands upon " "thousands of awards have been issued to hams around the world. In ARRL's " @@ -4033,7 +4686,7 @@ msgid "" "of streamlining and improving the award program." msgstr "" -#: application/views/awards/was/index.php:20 +#: application/views/awards/was/index.php:22 msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -4042,13 +4695,13 @@ msgid "" "outside the U.S. are exempt from this requirement." msgstr "" -#: application/views/awards/was/index.php:21 +#: application/views/awards/was/index.php:23 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." msgstr "" -#: application/views/awards/was/index.php:112 +#: application/views/awards/was/index.php:114 msgid "Show WAS Map" msgstr "" @@ -4071,11 +4724,11 @@ msgid "" msgstr "" #: application/views/awards/wwff/index.php:31 -#: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:171 -#: application/views/station_profile/edit.php:232 -#: application/views/user/edit.php:591 application/views/view_log/qso.php:296 -#: application/views/view_log/qso.php:563 +#: application/views/qso/index.php:224 application/views/qso/index.php:479 +#: application/views/station_profile/create.php:178 +#: application/views/station_profile/edit.php:259 +#: application/views/user/edit.php:591 application/views/view_log/qso.php:299 +#: application/views/view_log/qso.php:566 msgid "WWFF Reference" msgstr "" @@ -4130,8 +4783,8 @@ msgstr "" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:62 #: application/views/contesting/index.php:15 -#: application/views/contesting/index.php:94 -#: application/views/contesting/index.php:169 +#: application/views/contesting/index.php:52 +#: application/views/contesting/index.php:145 #: application/views/qso/index.php:314 msgid "None" msgstr "" @@ -4211,25 +4864,25 @@ msgid "" "will be hidden and cannot be selected." msgstr "" -#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:351 -#: application/views/qso/index.php:248 application/views/qso/index.php:494 -#: application/views/user/edit.php:599 application/views/view_log/qso.php:325 -#: application/views/view_log/qso.php:577 +#: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:378 +#: application/views/qso/index.php:248 application/views/qso/index.php:504 +#: application/views/user/edit.php:599 application/views/view_log/qso.php:328 +#: application/views/view_log/qso.php:580 msgid "Sig" msgstr "" -#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:312 -#: application/views/qso/index.php:433 +#: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:339 +#: application/views/qso/index.php:443 msgid "USA County" msgstr "" #: application/views/bands/index.php:58 -#: application/views/interface_assets/header.php:208 +#: application/views/interface_assets/header.php:212 msgid "WAJA" msgstr "" #: application/views/bands/index.php:59 -#: application/views/interface_assets/header.php:232 +#: application/views/interface_assets/header.php:236 msgid "WAS" msgstr "" @@ -4259,9 +4912,8 @@ msgstr "" #: application/views/bands/index.php:152 #: application/views/contesting/add.php:74 -#: application/views/interface_assets/footer.php:42 -#: application/views/qso/components/winkeysettings.php:91 -#: application/views/qso/components/winkeysettings_results.php:91 +#: application/views/contesting/index.php:83 +#: application/views/interface_assets/footer.php:44 #: application/views/simplefle/index.php:21 #: application/views/version_dialog/index.php:79 msgid "Close" @@ -4291,22 +4943,28 @@ msgstr "" #: application/views/cabrillo/index.php:2 #: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:59 +#: application/views/reg1test/index.php:2 +#: application/views/reg1test/index.php:36 msgid "Proceed" msgstr "" #: application/views/cabrillo/index.php:3 +#: application/views/reg1test/index.php:3 msgid "Select Year" msgstr "" #: application/views/cabrillo/index.php:4 +#: application/views/reg1test/index.php:4 msgid "Select Contest" msgstr "" #: application/views/cabrillo/index.php:5 +#: application/views/reg1test/index.php:5 msgid "Select Date Range" msgstr "" #: application/views/cabrillo/index.php:6 +#: application/views/reg1test/index.php:7 msgid "No contests were found for this station location!" msgstr "" @@ -4319,10 +4977,12 @@ msgid "Select Station Location:" msgstr "" #: application/views/cabrillo/index.php:44 +#: application/views/reg1test/index.php:53 msgid "Club" msgstr "" #: application/views/cabrillo/index.php:48 +#: application/views/reg1test/index.php:58 msgid "Category Operator" msgstr "" @@ -4363,10 +5023,12 @@ msgid "Category Overlay" msgstr "" #: application/views/cabrillo/index.php:150 +#: application/views/reg1test/index.php:70 msgid "Operators" msgstr "" #: application/views/cabrillo/index.php:155 +#: application/views/reg1test/index.php:139 msgid "Soapbox" msgstr "" @@ -4391,6 +5053,7 @@ msgid "Address Country" msgstr "" #: application/views/cabrillo/index.php:186 +#: application/views/reg1test/index.php:150 msgid "No contests were found in your log." msgstr "" @@ -4424,13 +5087,13 @@ msgid "No upcoming activations found. Please check back later." msgstr "" #: application/views/components/hamsat/table.php:28 -#: application/views/contesting/index.php:158 +#: application/views/contesting/index.php:219 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:5 -#: application/views/logbookadvanced/index.php:601 +#: application/views/logbookadvanced/index.php:629 #: application/views/logbookadvanced/useroptions.php:114 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:289 -#: application/views/view_log/qso.php:199 +#: application/views/view_log/qso.php:202 msgid "Comment" msgstr "" @@ -4462,9 +5125,9 @@ msgid "No Contests" msgstr "" #: application/views/contestcalendar/index.php:14 -#: application/views/logbookadvanced/edit.php:21 -#: application/views/logbookadvanced/index.php:288 -#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:635 #: application/views/logbookadvanced/useroptions.php:122 #: application/views/qso/edit_ajax.php:39 #: application/views/simplefle/index.php:80 @@ -4492,10 +5155,11 @@ msgid "Show Details" msgstr "" #: application/views/contestcalendar/index.php:38 -#: application/views/dashboard/index.php:262 -#: application/views/dashboard/index.php:289 -#: application/views/dashboard/index.php:310 -#: application/views/dashboard/index.php:331 +#: application/views/dashboard/index.php:278 +#: application/views/dashboard/index.php:305 +#: application/views/dashboard/index.php:326 +#: application/views/dashboard/index.php:347 +#: application/views/satellite/pass.php:475 msgid "Today" msgstr "" @@ -4529,7 +5193,7 @@ msgstr "" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/interface_assets/header.php:466 +#: application/views/interface_assets/header.php:472 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:43 @@ -4584,15 +5248,15 @@ msgid "Name of Contest in ADIF-specification" msgstr "" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:304 -#: application/views/station_profile/edit.php:28 +#: application/views/station_profile/create.php:311 +#: application/views/station_profile/edit.php:55 msgid "Create" msgstr "" #: application/views/contesting/edit.php:31 -#: application/views/contesting/index.php:24 -#: application/views/qso/edit_ajax.php:548 -#: application/views/view_log/qso.php:275 +#: application/views/contesting/index.php:25 +#: application/views/qso/edit_ajax.php:575 +#: application/views/view_log/qso.php:278 msgid "Contest Name" msgstr "" @@ -4628,90 +5292,138 @@ msgstr "" msgid "Serial + Gridsquare" msgstr "" -#: application/views/contesting/index.php:34 +#: application/views/contesting/index.php:21 +msgid "Serial + Gridsquare + Exchange" +msgstr "" + +#: application/views/contesting/index.php:35 #: application/views/operator/index.php:5 -#: application/views/qso/edit_ajax.php:539 application/views/qso/index.php:352 +#: application/views/qso/edit_ajax.php:566 application/views/qso/index.php:352 msgid "Operator Callsign" msgstr "" -#: application/views/contesting/index.php:116 -#: application/views/contesting/index.php:208 -#: application/views/qso/edit_ajax.php:571 -msgid "Serial (S)" +#: application/views/contesting/index.php:40 +#: application/views/contesting/index.php:45 +msgid "More Settings" msgstr "" -#: application/views/contesting/index.php:121 -#: application/views/contesting/index.php:206 -msgid "Exch (S)" -msgstr "" - -#: application/views/contesting/index.php:126 -msgid "Gridsquare (S)" -msgstr "" - -#: application/views/contesting/index.php:136 -#: application/views/contesting/index.php:209 -#: application/views/qso/edit_ajax.php:566 -msgid "Serial (R)" -msgstr "" - -#: application/views/contesting/index.php:141 -#: application/views/contesting/index.php:207 -msgid "Exch (R)" -msgstr "" - -#: application/views/contesting/index.php:146 -msgid "Gridsquare (R)" -msgstr "" - -#: application/views/contesting/index.php:163 -msgid "Reset QSO" -msgstr "" - -#: application/views/contesting/index.php:164 -#: application/views/qso/index.php:607 -msgid "Save QSO" -msgstr "" - -#: application/views/contesting/index.php:166 +#: application/views/contesting/index.php:49 msgid "Copy received exchange to" msgstr "" -#: application/views/contesting/index.php:168 +#: application/views/contesting/index.php:51 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "" -#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:55 msgid "Age" msgstr "" -#: application/views/contesting/index.php:174 +#: application/views/contesting/index.php:57 msgid "RX Power (W)" msgstr "" -#: application/views/contesting/index.php:175 +#: application/views/contesting/index.php:58 msgid "Locator" msgstr "" -#: application/views/contesting/index.php:187 +#: application/views/contesting/index.php:59 +#: application/views/qso/edit_ajax.php:177 +msgid "QTH" +msgstr "" + +#: application/views/contesting/index.php:64 +msgid "Sequence of Exchanges" +msgstr "" + +#: application/views/contesting/index.php:67 +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 "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Exchange" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Grid" +msgstr "" + +#: application/views/contesting/index.php:72 +#: application/views/contesting/index.php:73 +#: application/views/contesting/index.php:74 +#: application/views/contesting/index.php:75 +#: application/views/contesting/index.php:76 +#: application/views/contesting/index.php:77 +msgctxt "Keep the translation short!" +msgid "Serial" +msgstr "" + +#: application/views/contesting/index.php:172 +#: application/views/contesting/index.php:255 +#: application/views/qso/edit_ajax.php:598 +msgid "Serial (S)" +msgstr "" + +#: application/views/contesting/index.php:177 +msgid "Gridsquare (S)" +msgstr "" + +#: application/views/contesting/index.php:182 +#: application/views/contesting/index.php:253 +msgid "Exch (S)" +msgstr "" + +#: application/views/contesting/index.php:196 +#: application/views/contesting/index.php:256 +#: application/views/qso/edit_ajax.php:593 +msgid "Serial (R)" +msgstr "" + +#: application/views/contesting/index.php:201 +msgid "Gridsquare (R)" +msgstr "" + +#: application/views/contesting/index.php:206 +#: application/views/contesting/index.php:254 +msgid "Exch (R)" +msgstr "" + +#: application/views/contesting/index.php:224 +msgid "Reset QSO" +msgstr "" + +#: application/views/contesting/index.php:225 +#: application/views/qso/index.php:629 +msgid "Save QSO" +msgstr "" + +#: application/views/contesting/index.php:234 msgid "Callsign Suggestions" msgstr "" -#: application/views/contesting/index.php:194 +#: application/views/contesting/index.php:241 msgid "Contest Logbook" msgstr "" -#: application/views/contesting/index.php:211 +#: application/views/contesting/index.php:258 #: application/views/qso/edit_ajax.php:164 msgid "VUCC Gridsquare" msgstr "" -#: application/views/continents/index.php:62 -#: application/views/qso/edit_ajax.php:239 application/views/qso/index.php:377 -#: application/views/view_log/qso.php:242 -msgid "Continent" -msgstr "" - #: application/views/continents/index.php:63 #: application/views/statistics/index.php:19 #: application/views/statistics/index.php:113 @@ -4729,14 +5441,15 @@ msgstr "" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:261 -#: application/views/station_profile/edit.php:314 +#: application/views/options/appearance.php:109 +#: application/views/station_profile/create.php:268 +#: application/views/station_profile/edit.php:341 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 msgid "Enabled" msgstr "" -#: application/views/cron/edit.php:36 application/views/cron/index.php:53 +#: application/views/cron/edit.php:36 application/views/cron/index.php:55 msgid "Intervall" msgstr "" @@ -4786,6 +5499,7 @@ msgstr "" #: application/views/cron/edit.php:74 #: application/views/interface_assets/footer.php:35 +#: application/views/user/index.php:152 msgid "Cancel" msgstr "" @@ -4799,79 +5513,84 @@ msgid "" "requiring CLI access." msgstr "" -#: application/views/cron/index.php:18 +#: application/views/cron/index.php:19 msgid "" "To execute cron jobs based on the data below, remove all old cron jobs and " "create a new one:" msgstr "" -#: application/views/cron/index.php:27 application/views/cron/index.php:31 -msgid "Status Master-Cron" +#: application/views/cron/index.php:29 application/views/cron/index.php:33 +msgid "Status Master-Cron:" msgstr "" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgctxt "PHP Version" msgid "Min. Version is" msgstr "" -#: application/views/cron/index.php:31 +#: application/views/cron/index.php:33 msgid "PHP Version not supported." msgstr "" -#: application/views/cron/index.php:41 +#: application/views/cron/index.php:43 msgid "Cron List" msgstr "" -#: application/views/cron/index.php:50 +#: application/views/cron/index.php:52 #: application/views/stationsetup/stationsetup.php:121 msgid "ID" msgstr "" -#: application/views/cron/index.php:54 +#: application/views/cron/index.php:56 msgid "Last Run" msgstr "" -#: application/views/cron/index.php:55 +#: application/views/cron/index.php:57 msgid "Next Run" msgstr "" -#: application/views/cron/index.php:68 +#: application/views/cron/index.php:70 msgid "healthy" msgstr "" -#: application/views/cron/index.php:70 +#: application/views/cron/index.php:72 msgid "failed" msgstr "" -#: application/views/cron/index.php:75 +#: application/views/cron/index.php:74 +msgid "pending" +msgstr "" + +#: application/views/cron/index.php:79 msgid "disabled" msgstr "" -#: application/views/cron/index.php:79 application/views/cron/index.php:81 -#: application/views/cron/index.php:83 application/views/debug/index.php:494 +#: application/views/cron/index.php:83 application/views/cron/index.php:85 +#: application/views/cron/index.php:87 application/views/debug/index.php:494 #: application/views/debug/index.php:500 application/views/debug/index.php:505 #: application/views/debug/index.php:510 application/views/debug/index.php:515 #: application/views/debug/index.php:520 application/views/debug/index.php:525 +#: application/views/user/index.php:138 msgid "never" msgstr "" -#: application/views/cron/index.php:98 +#: application/views/cron/index.php:102 msgid "Your Mastercron isn't running." msgstr "" -#: application/views/cron/index.php:99 +#: application/views/cron/index.php:103 msgid "" "Copy the cron above to a external cron service or into your server's cron to " "use this cron manager." msgstr "" -#: application/views/cron/index.php:100 +#: application/views/cron/index.php:104 msgid "" "On a basic linux server with shell access use this command to edit your " "crons:" msgstr "" -#: application/views/cron/index.php:107 +#: application/views/cron/index.php:111 #, php-format msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " @@ -4889,154 +5608,10 @@ msgstr "" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:33 application/views/kml/index.php:77 -#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:401 +#: application/views/qso/edit_ajax.php:189 application/views/qso/index.php:411 msgid "Propagation Mode" msgstr "" -#: application/views/csv/index.php:95 application/views/dxatlas/index.php:95 -#: application/views/gridmap/index.php:44 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:214 -#: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:404 -msgctxt "Propagation Mode" -msgid "Aircraft Scatter" -msgstr "" - -#: application/views/csv/index.php:96 application/views/dxatlas/index.php:96 -#: application/views/gridmap/index.php:45 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:215 -#: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:405 -msgctxt "Propagation Mode" -msgid "Aurora" -msgstr "" - -#: application/views/csv/index.php:97 application/views/dxatlas/index.php:97 -#: application/views/gridmap/index.php:46 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:216 -#: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:406 -msgctxt "Propagation Mode" -msgid "Aurora-E" -msgstr "" - -#: application/views/csv/index.php:98 application/views/dxatlas/index.php:98 -#: application/views/gridmap/index.php:47 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:217 -#: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:407 -msgctxt "Propagation Mode" -msgid "Back scatter" -msgstr "" - -#: application/views/csv/index.php:99 application/views/dxatlas/index.php:99 -#: application/views/gridmap/index.php:48 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:218 -#: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:408 -msgctxt "Propagation Mode" -msgid "EchoLink" -msgstr "" - -#: application/views/csv/index.php:100 application/views/dxatlas/index.php:100 -#: application/views/gridmap/index.php:49 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:219 -#: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:409 -msgctxt "Propagation Mode" -msgid "Earth-Moon-Earth" -msgstr "" - -#: application/views/csv/index.php:101 application/views/dxatlas/index.php:101 -#: application/views/gridmap/index.php:50 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:220 -#: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:410 -msgctxt "Propagation Mode" -msgid "Sporadic E" -msgstr "" - -#: application/views/csv/index.php:102 application/views/dxatlas/index.php:102 -#: application/views/gridmap/index.php:51 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:221 -#: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:411 -msgctxt "Propagation Mode" -msgid "Field Aligned Irregularities" -msgstr "" - -#: application/views/csv/index.php:103 application/views/dxatlas/index.php:103 -#: application/views/gridmap/index.php:52 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:222 -#: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:412 -msgctxt "Propagation Mode" -msgid "F2 Reflection" -msgstr "" - -#: application/views/csv/index.php:104 application/views/dxatlas/index.php:104 -#: application/views/gridmap/index.php:53 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:223 -#: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:413 -msgctxt "Propagation Mode" -msgid "Internet-assisted" -msgstr "" - -#: application/views/csv/index.php:105 application/views/dxatlas/index.php:105 -#: application/views/gridmap/index.php:54 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:224 -#: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:414 -msgctxt "Propagation Mode" -msgid "Ionoscatter" -msgstr "" - -#: application/views/csv/index.php:106 application/views/dxatlas/index.php:106 -#: application/views/gridmap/index.php:55 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:225 -#: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:415 -msgctxt "Propagation Mode" -msgid "IRLP" -msgstr "" - -#: application/views/csv/index.php:107 application/views/dxatlas/index.php:107 -#: application/views/gridmap/index.php:56 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:226 -#: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:416 -msgctxt "Propagation Mode" -msgid "Meteor scatter" -msgstr "" - -#: application/views/csv/index.php:108 application/views/dxatlas/index.php:108 -#: application/views/gridmap/index.php:57 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:227 -#: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:417 -msgctxt "Propagation Mode" -msgid "Terrestrial or atmospheric repeater or transponder" -msgstr "" - -#: application/views/csv/index.php:109 application/views/dxatlas/index.php:109 -#: application/views/gridmap/index.php:58 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:228 -#: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:418 -msgctxt "Propagation Mode" -msgid "Rain scatter" -msgstr "" - -#: application/views/csv/index.php:110 application/views/dxatlas/index.php:110 -#: application/views/gridmap/index.php:59 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:229 -#: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:419 -msgctxt "Propagation Mode" -msgid "Satellite" -msgstr "" - -#: application/views/csv/index.php:111 application/views/dxatlas/index.php:111 -#: application/views/gridmap/index.php:60 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:230 -#: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:420 -msgctxt "Propagation Mode" -msgid "Trans-equatorial" -msgstr "" - -#: application/views/csv/index.php:112 application/views/dxatlas/index.php:112 -#: application/views/gridmap/index.php:61 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:231 -#: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:421 -msgctxt "Propagation Mode" -msgid "Tropospheric ducting" -msgstr "" - #: application/views/dashboard/index.php:5 msgid "RSTS" msgstr "" @@ -5045,85 +5620,99 @@ msgstr "" msgid "RSTR" msgstr "" -#: application/views/dashboard/index.php:56 +#: application/views/dashboard/index.php:58 msgid "" "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" msgstr "" -#: application/views/dashboard/index.php:63 +#: application/views/dashboard/index.php:65 #, php-format msgctxt "Dashboard Warning" -msgid "You need to update country files! Click %s to do it." +msgid "You need to update country files! Click %shere%s to do it." msgstr "" -#: application/views/dashboard/index.php:72 +#: application/views/dashboard/index.php:73 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station locations. Click %s to do it:" +msgid "You have no station locations. Click %shere%s to do it." msgstr "" #: application/views/dashboard/index.php:81 #, php-format msgctxt "Dashboard Warning" -msgid "You have no station logbook. Click %s to do it:" +msgid "You have no station logbook. Click %shere%s to do it." msgstr "" -#: application/views/dashboard/index.php:91 +#: application/views/dashboard/index.php:89 +#, php-format +msgctxt "Dashboard Warning" +msgid "" +"Your active Station Location isn't linked to your Logbook. Click %shere%s to " +"do it." +msgstr "" + +#: application/views/dashboard/index.php:97 +#, php-format +msgctxt "Dashboard Warning" +msgid "You have no station linked to your Logbook. Click %shere%s to do it." +msgstr "" + +#: application/views/dashboard/index.php:106 #, php-format msgid "You have had %d QSO today" msgid_plural "You have had %d QSOs today" msgstr[0] "" msgstr[1] "" -#: application/views/dashboard/index.php:97 +#: application/views/dashboard/index.php:112 msgid "You have made no QSOs today; time to turn on the radio!" msgstr "" -#: application/views/dashboard/index.php:104 +#: application/views/dashboard/index.php:119 msgid "Attention: you need to set an active station location." msgstr "" -#: application/views/dashboard/index.php:110 +#: application/views/dashboard/index.php:125 msgid "" "You have themes without defined theme mode. Please ask the admin to edit the " "themes." msgstr "" -#: application/views/dashboard/index.php:118 +#: application/views/dashboard/index.php:133 msgid "At least one of your LoTW certificates is expired!" msgstr "" -#: application/views/dashboard/index.php:124 +#: application/views/dashboard/index.php:139 msgid "At least one of your LoTW certificates is about to expire!" msgstr "" -#: application/views/dashboard/index.php:213 +#: application/views/dashboard/index.php:229 #: application/views/visitor/index.php:237 msgid "QSOs Breakdown" msgstr "" -#: application/views/dashboard/index.php:236 +#: application/views/dashboard/index.php:252 #: application/views/visitor/index.php:258 msgid "Countries Breakdown" msgstr "" -#: application/views/dashboard/index.php:253 +#: application/views/dashboard/index.php:269 #: application/views/visitor/index.php:275 msgid "Needed" msgstr "" -#: application/views/dashboard/index.php:266 -#: application/views/dashboard/index.php:293 -#: application/views/dashboard/index.php:314 -#: application/views/dashboard/index.php:335 +#: application/views/dashboard/index.php:282 +#: application/views/dashboard/index.php:309 +#: application/views/dashboard/index.php:330 +#: application/views/dashboard/index.php:351 #: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130 #: application/views/oqrs/qsolist.php:159 #: application/views/qslprint/qsolist.php:58 #: application/views/qslprint/qsolist.php:138 #: application/views/qslprint/qsolist.php:167 -#: application/views/qso/edit_ajax.php:390 -#: application/views/qso/edit_ajax.php:451 -#: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:550 +#: application/views/qso/edit_ajax.php:417 +#: application/views/qso/edit_ajax.php:478 +#: application/views/qso/edit_ajax.php:518 application/views/qso/index.php:572 #: application/views/search/result_search.php:8 #: application/views/search/search_result_ajax.php:180 #: application/views/search/search_result_ajax.php:260 @@ -5131,91 +5720,91 @@ msgstr "" #: application/views/search/search_result_ajax.php:332 #: application/views/search/search_result_ajax.php:362 #: application/views/statistics/custom_result.php:89 -#: application/views/view_log/partial/log_ajax.php:140 -#: application/views/view_log/partial/log_ajax.php:217 -#: application/views/view_log/partial/log_ajax.php:237 -#: application/views/view_log/partial/log_ajax.php:287 -#: application/views/view_log/partial/log_ajax.php:295 +#: application/views/view_log/partial/log_ajax.php:142 +#: application/views/view_log/partial/log_ajax.php:219 +#: application/views/view_log/partial/log_ajax.php:239 +#: application/views/view_log/partial/log_ajax.php:289 +#: application/views/view_log/partial/log_ajax.php:297 #: application/views/visitor/index.php:287 #: application/views/visitor/index.php:310 #: application/views/visitor/index.php:328 -#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:268 -#: src/QSLManager/QSO.php:371 src/QSLManager/QSO.php:423 -#: src/QSLManager/QSO.php:459 +#: application/views/widgets/qsos.php:30 src/QSLManager/QSO.php:270 +#: src/QSLManager/QSO.php:373 src/QSLManager/QSO.php:425 +#: src/QSLManager/QSO.php:461 msgid "Sent" msgstr "" -#: application/views/dashboard/index.php:272 -#: application/views/dashboard/index.php:299 -#: application/views/dashboard/index.php:320 -#: application/views/dashboard/index.php:341 +#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:315 +#: application/views/dashboard/index.php:336 +#: application/views/dashboard/index.php:357 #: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143 #: application/views/oqrs/qsolist.php:174 #: application/views/qslprint/qsolist.php:100 #: application/views/qslprint/qsolist.php:151 #: application/views/qslprint/qsolist.php:182 -#: application/views/qso/edit_ajax.php:423 -#: application/views/qso/edit_ajax.php:464 -#: application/views/qso/edit_ajax.php:503 +#: application/views/qso/edit_ajax.php:450 +#: application/views/qso/edit_ajax.php:491 +#: application/views/qso/edit_ajax.php:530 #: application/views/search/search_result_ajax.php:222 #: application/views/search/search_result_ajax.php:273 #: application/views/search/search_result_ajax.php:313 #: application/views/search/search_result_ajax.php:345 #: application/views/search/search_result_ajax.php:375 -#: application/views/view_log/partial/log_ajax.php:178 -#: application/views/view_log/partial/log_ajax.php:218 -#: application/views/view_log/partial/log_ajax.php:263 -#: application/views/view_log/partial/log_ajax.php:288 -#: application/views/view_log/partial/log_ajax.php:296 +#: application/views/view_log/partial/log_ajax.php:180 +#: application/views/view_log/partial/log_ajax.php:220 +#: application/views/view_log/partial/log_ajax.php:265 +#: application/views/view_log/partial/log_ajax.php:290 +#: application/views/view_log/partial/log_ajax.php:298 #: application/views/visitor/index.php:292 #: application/views/visitor/index.php:315 -#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:313 -#: src/QSLManager/QSO.php:394 src/QSLManager/QSO.php:436 -#: src/QSLManager/QSO.php:472 +#: application/views/visitor/index.php:333 src/QSLManager/QSO.php:315 +#: src/QSLManager/QSO.php:396 src/QSLManager/QSO.php:438 +#: src/QSLManager/QSO.php:474 msgid "Received" msgstr "" -#: application/views/dashboard/index.php:278 -#: application/views/logbookadvanced/index.php:302 -#: application/views/logbookadvanced/index.php:313 -#: application/views/logbookadvanced/index.php:344 -#: application/views/logbookadvanced/index.php:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:388 -#: application/views/logbookadvanced/index.php:399 +#: application/views/dashboard/index.php:294 +#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:340 +#: application/views/logbookadvanced/index.php:371 +#: application/views/logbookadvanced/index.php:382 +#: application/views/logbookadvanced/index.php:393 +#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:415 +#: application/views/logbookadvanced/index.php:426 #: application/views/oqrs/qsolist.php:56 application/views/oqrs/qsolist.php:98 #: application/views/qslprint/qsolist.php:64 #: application/views/qslprint/qsolist.php:106 -#: application/views/qso/edit_ajax.php:395 -#: application/views/qso/edit_ajax.php:428 -#: application/views/qso/edit_ajax.php:456 -#: application/views/qso/edit_ajax.php:469 +#: application/views/qso/edit_ajax.php:422 +#: application/views/qso/edit_ajax.php:455 +#: application/views/qso/edit_ajax.php:483 #: application/views/qso/edit_ajax.php:496 -#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:555 +#: application/views/qso/edit_ajax.php:523 +#: application/views/qso/edit_ajax.php:535 application/views/qso/index.php:577 #: application/views/search/search_result_ajax.php:186 #: application/views/search/search_result_ajax.php:228 -#: application/views/view_log/partial/log_ajax.php:146 -#: application/views/view_log/partial/log_ajax.php:184 -#: application/views/view_log/partial/log_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:273 -#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:274 -#: src/QSLManager/QSO.php:319 src/QSLManager/QSO.php:379 -#: src/QSLManager/QSO.php:402 +#: application/views/view_log/partial/log_ajax.php:148 +#: application/views/view_log/partial/log_ajax.php:186 +#: application/views/view_log/partial/log_ajax.php:249 +#: application/views/view_log/partial/log_ajax.php:275 +#: application/views/visitor/index.php:297 src/QSLManager/QSO.php:276 +#: src/QSLManager/QSO.php:321 src/QSLManager/QSO.php:381 +#: src/QSLManager/QSO.php:404 msgid "Requested" msgstr "" -#: application/views/dashboard/index.php:288 +#: application/views/dashboard/index.php:304 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" msgstr "" -#: application/views/dashboard/index.php:351 +#: application/views/dashboard/index.php:367 msgid "VUCC-Grids" msgstr "" #: application/views/dayswithqso/index.php:2 -#: application/views/interface_assets/header.php:146 +#: application/views/interface_assets/header.php:148 msgid "Days with QSOs" msgstr "" @@ -5244,7 +5833,7 @@ msgstr "" #: application/views/dayswithqso/index.php:58 #: application/views/dayswithqso/index.php:86 #: application/views/dayswithqso/index.php:108 -#: application/views/timeline/index.php:120 +#: application/views/timeline/index.php:153 msgid "End Date" msgstr "" @@ -5311,9 +5900,7 @@ msgstr "" #: application/views/debug/index.php:47 #, php-format -msgid "" -"Check this wiki article here for " -"more information." +msgid "Check this wiki article %shere%s for more information." msgstr "" #: application/views/debug/index.php:48 @@ -5457,7 +6044,7 @@ msgstr "" msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:283 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:671 msgid "Settings" msgstr "" @@ -5514,7 +6101,7 @@ msgstr "" #: application/views/debug/index.php:506 application/views/debug/index.php:511 #: application/views/debug/index.php:516 application/views/debug/index.php:521 #: application/views/debug/index.php:526 -#: application/views/station_profile/edit.php:22 +#: application/views/station_profile/edit.php:49 msgid "Update" msgstr "" @@ -5556,9 +6143,8 @@ msgstr[1] "" #: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:57 -#: application/views/station_profile/edit.php:46 -#: application/views/station_profile/index.php:42 +#: application/views/station_profile/create.php:64 +#: application/views/station_profile/edit.php:73 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 msgid "Station Callsign" @@ -5586,69 +6172,93 @@ msgid "Everything ok" msgstr "" #: application/views/debug/index.php:629 -msgid "Bulgarian" +msgid "Albanian" msgstr "" #: application/views/debug/index.php:630 -msgid "Chinese (Simplified)" +msgid "Bosnian" msgstr "" #: application/views/debug/index.php:631 -msgid "Czech" +msgid "Bulgarian" msgstr "" #: application/views/debug/index.php:632 -msgid "Dutch" +msgid "Chinese (Simplified)" msgstr "" #: application/views/debug/index.php:633 -msgid "English" +msgid "Croatian" msgstr "" #: application/views/debug/index.php:634 -msgid "Finnish" +msgid "Czech" msgstr "" #: application/views/debug/index.php:635 -msgid "French" +msgid "Dutch" msgstr "" #: application/views/debug/index.php:636 -msgid "German" +msgid "English" msgstr "" #: application/views/debug/index.php:637 -msgid "Greek" +msgid "Finnish" msgstr "" #: application/views/debug/index.php:638 -msgid "Italian" +msgid "French" msgstr "" #: application/views/debug/index.php:639 -msgid "Polish" +msgid "German" msgstr "" #: application/views/debug/index.php:640 -msgid "Portuguese" +msgid "Greek" msgstr "" #: application/views/debug/index.php:641 -msgid "Russian" +msgid "Italian" msgstr "" #: application/views/debug/index.php:642 -msgid "Spanish" +msgid "Montenegrin" msgstr "" #: application/views/debug/index.php:643 -msgid "Swedish" +msgid "Polish" msgstr "" #: application/views/debug/index.php:644 +msgid "Portuguese" +msgstr "" + +#: application/views/debug/index.php:645 +msgid "Russian" +msgstr "" + +#: application/views/debug/index.php:646 +msgid "Serbian" +msgstr "" + +#: application/views/debug/index.php:647 +msgid "Spanish" +msgstr "" + +#: application/views/debug/index.php:648 +msgid "Swedish" +msgstr "" + +#: application/views/debug/index.php:649 msgid "Turkish" msgstr "" +#: application/views/distancerecords/index.php:4 +msgid "This page lists distance records per satellite based on gridsquares." +msgstr "" + #: application/views/distances/index.php:7 #: application/views/interface_assets/footer.php:30 #: application/views/simplefle/index.php:68 @@ -5656,7 +6266,8 @@ msgid "QSO Data" msgstr "" #: application/views/distances/index.php:9 -msgid "contacts were plotted.
Your furthest contact was with" +#, php-format +msgid "contacts were plotted.%s Your furthest contact was with" msgstr "" #: application/views/distances/index.php:10 @@ -5698,7 +6309,7 @@ msgid "Date to" msgstr "" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:366 +#: application/views/view_log/qso.php:369 msgid "QSL Info" msgstr "" @@ -5724,7 +6335,7 @@ msgstr "" #: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 #: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 #: application/views/eqsl/tools.php:15 -#: application/views/interface_assets/header.php:243 +#: application/views/interface_assets/header.php:247 msgid "Tools" msgstr "" @@ -5864,27 +6475,15 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 -#: application/views/interface_assets/footer.php:2324 -#: application/views/interface_assets/footer.php:2342 -#: application/views/interface_assets/footer.php:2363 -#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2338 +#: application/views/interface_assets/footer.php:2356 +#: application/views/interface_assets/footer.php:2377 +#: application/views/interface_assets/footer.php:2395 #: application/views/qslcard/index.php:66 -#: application/views/view_log/qso.php:614 +#: application/views/view_log/qso.php:617 msgid "View" msgstr "" -#: application/views/gridmap/index.php:38 -#: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:210 -#: application/views/logbookadvanced/index.php:604 -#: application/views/logbookadvanced/useroptions.php:118 -msgid "Propagation" -msgstr "" - -#: application/views/gridmap/index.php:42 -msgid "None/Empty" -msgstr "" - #: application/views/gridmap/index.php:43 msgid "All except SAT" msgstr "" @@ -5980,8 +6579,8 @@ msgstr "" #: application/views/interface_assets/footer.php:31 #: application/views/search/search_result_ajax.php:404 #: application/views/view_log/partial/log.php:135 -#: application/views/view_log/partial/log_ajax.php:318 -#: application/views/view_log/qso.php:434 +#: application/views/view_log/partial/log_ajax.php:320 +#: application/views/view_log/qso.php:437 msgid "Edit QSO" msgstr "" @@ -5989,171 +6588,192 @@ msgstr "" msgid "Attention" msgstr "" -#: application/views/interface_assets/footer.php:36 -msgid "OK" -msgstr "" - -#: application/views/interface_assets/footer.php:37 +#: application/views/interface_assets/footer.php:38 msgid "Warning! Are you sure you want delete QSO with " msgstr "" -#: application/views/interface_assets/footer.php:38 +#: application/views/interface_assets/footer.php:39 #: application/views/user/edit.php:493 msgid "Colors" msgstr "" -#: application/views/interface_assets/footer.php:40 +#: application/views/interface_assets/footer.php:41 msgid "Worked not confirmed" msgstr "" -#: application/views/interface_assets/footer.php:41 +#: application/views/interface_assets/footer.php:42 msgid "Not worked" msgstr "" -#: application/views/interface_assets/footer.php:44 -#: application/views/qso/index.php:601 -#: application/views/visitor/layout/footer.php:244 +#: application/views/interface_assets/footer.php:46 +#: application/views/qso/index.php:623 +#: application/views/visitor/layout/footer.php:246 msgid "Clear" msgstr "" -#: application/views/interface_assets/footer.php:45 +#: application/views/interface_assets/footer.php:47 #: application/views/qso/edit_ajax.php:211 -#: application/views/qso/edit_ajax.php:512 +#: application/views/qso/edit_ajax.php:539 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "" -#: application/views/interface_assets/footer.php:127 -#: application/views/interface_assets/header.php:434 +#: application/views/interface_assets/footer.php:48 +msgid "No states for this DXCC available" +msgstr "" + +#: application/views/interface_assets/footer.php:49 +msgid "Compute QRB and QTF" +msgstr "" + +#: application/views/interface_assets/footer.php:50 +msgid "Error in locators. Please check." +msgstr "" + +#: application/views/interface_assets/footer.php:132 +#: application/views/interface_assets/header.php:440 #: application/views/options/sidebar.php:11 msgid "Version Info" msgstr "" -#: application/views/interface_assets/footer.php:392 +#: application/views/interface_assets/footer.php:398 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:395 +#: application/views/interface_assets/footer.php:401 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:411 +#: application/views/interface_assets/footer.php:417 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:413 +#: application/views/interface_assets/footer.php:419 #: application/views/search/filter.php:46 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:415 +#: application/views/interface_assets/footer.php:421 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:420 +#: application/views/interface_assets/footer.php:426 #: application/views/search/filter.php:60 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:432 -#: application/views/interface_assets/footer.php:561 -#: application/views/interface_assets/footer.php:625 +#: application/views/interface_assets/footer.php:438 +#: application/views/interface_assets/footer.php:567 +#: application/views/interface_assets/footer.php:631 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:437 -#: application/views/interface_assets/footer.php:630 +#: application/views/interface_assets/footer.php:443 +#: application/views/interface_assets/footer.php:636 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:458 -#: application/views/interface_assets/footer.php:589 +#: application/views/interface_assets/footer.php:464 +#: application/views/interface_assets/footer.php:595 #: application/views/search/filter.php:79 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:496 +#: application/views/interface_assets/footer.php:502 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:510 +#: application/views/interface_assets/footer.php:516 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:519 +#: application/views/interface_assets/footer.php:525 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:545 +#: application/views/interface_assets/footer.php:551 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:549 +#: application/views/interface_assets/footer.php:555 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:672 +#: application/views/interface_assets/footer.php:678 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1156 -#, php-format -msgid "You're not logged it. Please login" +#: application/views/interface_assets/footer.php:730 +#: application/views/logbookadvanced/index.php:533 +msgid "Callsign: " msgstr "" -#: application/views/interface_assets/footer.php:1362 -#: application/views/interface_assets/footer.php:1366 -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1506 -#: application/views/interface_assets/footer.php:1510 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:731 +msgid "Count: " +msgstr "" + +#: application/views/interface_assets/footer.php:732 +msgid "Grids: " +msgstr "" + +#: application/views/interface_assets/footer.php:1167 +#, php-format +msgid "You're not logged in. Please %slogin%s" +msgstr "" + +#: application/views/interface_assets/footer.php:1375 +#: application/views/interface_assets/footer.php:1379 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1519 +#: application/views/interface_assets/footer.php:1523 +#: application/views/interface_assets/footer.php:1526 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1369 -#: application/views/interface_assets/footer.php:1513 +#: application/views/interface_assets/footer.php:1382 +#: application/views/interface_assets/footer.php:1526 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2100 +#: application/views/interface_assets/footer.php:2114 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2120 +#: application/views/interface_assets/footer.php:2134 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2160 +#: application/views/interface_assets/footer.php:2174 #: application/views/view_log/qso.php:42 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2162 +#: application/views/interface_assets/footer.php:2176 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2335 -#: application/views/interface_assets/footer.php:2374 -#: application/views/view_log/qso.php:604 +#: application/views/interface_assets/footer.php:2349 +#: application/views/interface_assets/footer.php:2388 +#: application/views/view_log/qso.php:607 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2354 +#: application/views/interface_assets/footer.php:2368 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2392 +#: application/views/interface_assets/footer.php:2406 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2403 -#: application/views/interface_assets/footer.php:2428 +#: application/views/interface_assets/footer.php:2417 +#: application/views/interface_assets/footer.php:2442 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2439 +#: application/views/interface_assets/footer.php:2453 msgid "Something went wrong. Please try again!" msgstr "" @@ -6209,91 +6829,91 @@ msgstr "" msgid "Activated Gridsquares" msgstr "" -#: application/views/interface_assets/header.php:160 +#: application/views/interface_assets/header.php:162 msgid "International" msgstr "" -#: application/views/interface_assets/header.php:166 +#: application/views/interface_assets/header.php:168 msgid "ITU" msgstr "" -#: application/views/interface_assets/header.php:186 +#: application/views/interface_assets/header.php:190 msgid "Canada" msgstr "" -#: application/views/interface_assets/header.php:192 +#: application/views/interface_assets/header.php:196 msgid "Germany" msgstr "" -#: application/views/interface_assets/header.php:196 +#: application/views/interface_assets/header.php:200 msgid "DL Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:200 +#: application/views/interface_assets/header.php:204 msgid "Great Britain" msgstr "" -#: application/views/interface_assets/header.php:202 +#: application/views/interface_assets/header.php:206 msgid "WAB" msgstr "" -#: application/views/interface_assets/header.php:206 +#: application/views/interface_assets/header.php:210 msgid "Japan" msgstr "" -#: application/views/interface_assets/header.php:212 +#: application/views/interface_assets/header.php:216 msgid "JA Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:216 +#: application/views/interface_assets/header.php:220 msgid "Luxemburg" msgstr "" -#: application/views/interface_assets/header.php:218 +#: application/views/interface_assets/header.php:222 msgid "LX Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:222 +#: application/views/interface_assets/header.php:226 msgid "Switzerland" msgstr "" -#: application/views/interface_assets/header.php:228 +#: application/views/interface_assets/header.php:232 msgid "USA" msgstr "" -#: application/views/interface_assets/header.php:234 +#: application/views/interface_assets/header.php:238 msgid "US Gridmaster" msgstr "" -#: application/views/interface_assets/header.php:251 +#: application/views/interface_assets/header.php:255 msgid "Bandmap" msgstr "" -#: application/views/interface_assets/header.php:253 +#: application/views/interface_assets/header.php:257 msgid "SAT Timers" msgstr "" -#: application/views/interface_assets/header.php:256 +#: application/views/interface_assets/header.php:260 msgid "Satellite Flightpath" msgstr "" -#: application/views/interface_assets/header.php:258 +#: application/views/interface_assets/header.php:262 msgid "Satellite Pass" msgstr "" -#: application/views/interface_assets/header.php:265 -#: application/views/station_profile/index.php:33 +#: application/views/interface_assets/header.php:269 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" msgstr "" -#: application/views/interface_assets/header.php:270 +#: application/views/interface_assets/header.php:274 msgid "Global Options" msgstr "" -#: application/views/interface_assets/header.php:276 +#: application/views/interface_assets/header.php:280 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:11 +#: application/views/satellite/pass.php:495 #: application/views/statistics/custom.php:20 #: application/views/statistics/custom_result.php:21 #: application/views/statistics/index.php:39 @@ -6301,79 +6921,83 @@ msgstr "" msgid "Satellites" msgstr "" -#: application/views/interface_assets/header.php:282 +#: application/views/interface_assets/header.php:286 msgid "Update Country Files" msgstr "" -#: application/views/interface_assets/header.php:286 +#: application/views/interface_assets/header.php:290 msgid "Debug Information" msgstr "" -#: application/views/interface_assets/header.php:333 +#: application/views/interface_assets/header.php:337 msgid "Add/Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:335 +#: application/views/interface_assets/header.php:339 msgid "Log" msgstr "" -#: application/views/interface_assets/header.php:342 -#: application/views/logbookadvanced/index.php:447 +#: application/views/interface_assets/header.php:346 +#: application/views/logbookadvanced/index.php:474 #: application/views/oqrs/index.php:27 application/views/user/edit.php:441 -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Search Callsign" msgstr "" -#: application/views/interface_assets/header.php:371 +#: application/views/interface_assets/header.php:375 #: application/views/user/edit.php:49 msgid "Account" msgstr "" -#: application/views/interface_assets/header.php:386 +#: application/views/interface_assets/header.php:390 msgid "Other Export Options" msgstr "" -#: application/views/interface_assets/header.php:394 +#: application/views/interface_assets/header.php:398 msgid "Cabrillo Export" msgstr "" -#: application/views/interface_assets/header.php:418 -msgid "QSL Queue" -msgstr "" - -#: application/views/interface_assets/header.php:419 -msgid "Labels" -msgstr "" - -#: application/views/interface_assets/header.php:421 -msgid "Third-Party Services" +#: application/views/interface_assets/header.php:400 +msgid "EDI Export" msgstr "" #: application/views/interface_assets/header.php:424 -msgid "eQSL Import / Export" +msgid "QSL Queue" msgstr "" #: application/views/interface_assets/header.php:425 +msgid "Labels" +msgstr "" + +#: application/views/interface_assets/header.php:427 +msgid "Third-Party Services" +msgstr "" + +#: application/views/interface_assets/header.php:430 +msgid "eQSL Import / Export" +msgstr "" + +#: application/views/interface_assets/header.php:431 msgid "HRDLog Logbook" msgstr "" -#: application/views/interface_assets/header.php:435 +#: application/views/interface_assets/header.php:441 msgid "Help" msgstr "" -#: application/views/interface_assets/header.php:436 +#: application/views/interface_assets/header.php:442 msgid "Forum" msgstr "" -#: application/views/interface_assets/header.php:438 +#: application/views/interface_assets/header.php:444 msgid "Logout" msgstr "" -#: application/views/interface_assets/header.php:446 +#: application/views/interface_assets/header.php:452 msgid "Select a Location" msgstr "" -#: application/views/interface_assets/header.php:525 +#: application/views/interface_assets/header.php:531 msgid "Extras" msgstr "" @@ -6644,86 +7268,122 @@ msgid "Start printing at?" msgstr "" #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:405 -#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:590 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" msgstr "" -#: application/views/logbookadvanced/edit.php:22 +#: application/views/logbookadvanced/edit.php:23 msgid "LoTW Sent" msgstr "" -#: application/views/logbookadvanced/edit.php:23 +#: application/views/logbookadvanced/edit.php:24 msgid "LoTW Received" msgstr "" -#: application/views/logbookadvanced/edit.php:73 +#: application/views/logbookadvanced/edit.php:75 msgid "SAT Mode" msgstr "" -#: application/views/logbookadvanced/edit.php:87 +#: application/views/logbookadvanced/edit.php:89 msgid "Band RX" msgstr "" -#: application/views/logbookadvanced/index.php:133 +#: application/views/logbookadvanced/index.php:11 +#: application/views/logbookadvanced/useroptions.php:162 +msgctxt "Map Options" +msgid "Gridsquares" +msgstr "" + +#: application/views/logbookadvanced/index.php:14 +#: application/views/logbookadvanced/useroptions.php:158 +#: application/views/stationsetup/exportmapoptions.php:23 +msgctxt "Map Options" +msgid "Path lines" +msgstr "" + +#: application/views/logbookadvanced/index.php:15 +#: application/views/logbookadvanced/useroptions.php:166 +msgctxt "Map Options" +msgid "CQ Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:16 +#: application/views/logbookadvanced/useroptions.php:170 +msgctxt "Map Options" +msgid "ITU Zones" +msgstr "" + +#: application/views/logbookadvanced/index.php:17 +#: application/views/logbookadvanced/useroptions.php:174 +msgctxt "Map Options" +msgid "Night Shadow" +msgstr "" + +#: application/views/logbookadvanced/index.php:144 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:137 +#: application/views/logbookadvanced/index.php:148 msgid "To" msgstr "" -#: application/views/logbookadvanced/index.php:141 -#: application/views/logbookadvanced/index.php:541 +#: application/views/logbookadvanced/index.php:152 +#: application/views/logbookadvanced/index.php:569 #: application/views/logbookadvanced/useroptions.php:30 #: application/views/oqrs/showrequests.php:42 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:148 +#: application/views/logbookadvanced/index.php:159 msgctxt "Logbook Advanced DXCC Select" msgid "- NONE - (e.g. /MM, /AM)" msgstr "" -#: application/views/logbookadvanced/index.php:213 +#: application/views/logbookadvanced/index.php:224 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:315 +#: application/views/logbookadvanced/index.php:540 +msgid "Invalid" +msgstr "" + +#: application/views/logbookadvanced/index.php:324 msgid "QSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:300 -#: application/views/logbookadvanced/index.php:311 -#: application/views/logbookadvanced/index.php:342 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:375 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:397 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:327 +#: application/views/logbookadvanced/index.php:338 +#: application/views/logbookadvanced/index.php:369 +#: application/views/logbookadvanced/index.php:380 +#: application/views/logbookadvanced/index.php:391 +#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:439 #: application/views/lookup/lotwuser.php:12 -#: application/views/qso/edit_ajax.php:394 -#: application/views/qso/edit_ajax.php:427 -#: application/views/qso/edit_ajax.php:455 -#: application/views/qso/edit_ajax.php:468 +#: application/views/qso/edit_ajax.php:421 +#: application/views/qso/edit_ajax.php:454 +#: application/views/qso/edit_ajax.php:482 #: application/views/qso/edit_ajax.php:495 -#: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 +#: application/views/qso/edit_ajax.php:522 +#: application/views/qso/edit_ajax.php:534 application/views/qso/index.php:576 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:209 -#: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:236 -#: application/views/station_profile/create.php:275 -#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:216 +#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 +#: application/views/station_profile/create.php:282 #: application/views/station_profile/create.php:293 -#: application/views/station_profile/edit.php:330 -#: application/views/station_profile/edit.php:338 -#: application/views/station_profile/edit.php:364 -#: application/views/station_profile/edit.php:385 -#: application/views/station_profile/edit.php:403 -#: application/views/station_profile/edit.php:410 +#: application/views/station_profile/create.php:300 +#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/edit.php:365 +#: application/views/station_profile/edit.php:391 +#: application/views/station_profile/edit.php:412 +#: application/views/station_profile/edit.php:430 +#: application/views/station_profile/edit.php:437 #: application/views/user/edit.php:347 application/views/user/edit.php:358 #: application/views/user/edit.php:369 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:399 @@ -6733,35 +7393,35 @@ msgstr "" msgid "Yes" msgstr "" -#: application/views/logbookadvanced/index.php:301 -#: application/views/logbookadvanced/index.php:312 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:354 -#: application/views/logbookadvanced/index.php:365 -#: application/views/logbookadvanced/index.php:376 -#: application/views/logbookadvanced/index.php:387 -#: application/views/logbookadvanced/index.php:398 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:381 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:425 +#: application/views/logbookadvanced/index.php:440 #: application/views/lookup/lotwuser.php:14 -#: application/views/qso/edit_ajax.php:393 -#: application/views/qso/edit_ajax.php:426 -#: application/views/qso/edit_ajax.php:454 -#: application/views/qso/edit_ajax.php:467 +#: application/views/qso/edit_ajax.php:420 +#: application/views/qso/edit_ajax.php:453 +#: application/views/qso/edit_ajax.php:481 #: application/views/qso/edit_ajax.php:494 -#: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 +#: application/views/qso/edit_ajax.php:521 +#: application/views/qso/edit_ajax.php:533 application/views/qso/index.php:575 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:210 -#: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:237 -#: application/views/station_profile/create.php:276 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:217 +#: application/views/station_profile/create.php:225 +#: application/views/station_profile/create.php:244 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/create.php:292 -#: application/views/station_profile/edit.php:331 -#: application/views/station_profile/edit.php:339 -#: application/views/station_profile/edit.php:365 -#: application/views/station_profile/edit.php:386 -#: application/views/station_profile/edit.php:404 -#: application/views/station_profile/edit.php:411 +#: application/views/station_profile/create.php:299 +#: application/views/station_profile/edit.php:358 +#: application/views/station_profile/edit.php:366 +#: application/views/station_profile/edit.php:392 +#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/edit.php:431 +#: application/views/station_profile/edit.php:438 #: application/views/user/edit.php:348 application/views/user/edit.php:359 #: application/views/user/edit.php:370 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:400 @@ -6772,32 +7432,32 @@ msgstr "" msgid "No" msgstr "" -#: application/views/logbookadvanced/index.php:303 -#: application/views/logbookadvanced/index.php:345 -#: application/views/logbookadvanced/index.php:367 -#: application/views/logbookadvanced/index.php:389 +#: application/views/logbookadvanced/index.php:330 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:416 #: application/views/oqrs/qsolist.php:53 application/views/oqrs/qsolist.php:95 #: application/views/qslprint/qsolist.php:61 #: application/views/qslprint/qsolist.php:103 -#: application/views/qso/edit_ajax.php:396 -#: application/views/qso/edit_ajax.php:457 -#: application/views/qso/edit_ajax.php:497 application/views/qso/index.php:556 +#: application/views/qso/edit_ajax.php:423 +#: application/views/qso/edit_ajax.php:484 +#: application/views/qso/edit_ajax.php:524 application/views/qso/index.php:578 #: application/views/search/search_result_ajax.php:183 #: application/views/search/search_result_ajax.php:225 -#: application/views/view_log/partial/log_ajax.php:143 -#: application/views/view_log/partial/log_ajax.php:181 -#: src/QSLManager/QSO.php:271 src/QSLManager/QSO.php:316 +#: application/views/view_log/partial/log_ajax.php:145 +#: application/views/view_log/partial/log_ajax.php:183 +#: src/QSLManager/QSO.php:273 src/QSLManager/QSO.php:318 msgid "Queued" msgstr "" -#: application/views/logbookadvanced/index.php:304 -#: application/views/logbookadvanced/index.php:314 -#: application/views/logbookadvanced/index.php:346 -#: application/views/logbookadvanced/index.php:356 -#: application/views/logbookadvanced/index.php:368 -#: application/views/logbookadvanced/index.php:378 -#: application/views/logbookadvanced/index.php:390 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:331 +#: application/views/logbookadvanced/index.php:341 +#: application/views/logbookadvanced/index.php:373 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:395 +#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:417 +#: application/views/logbookadvanced/index.php:427 #: application/views/oqrs/qsolist.php:59 application/views/oqrs/qsolist.php:101 #: application/views/oqrs/qsolist.php:166 #: application/views/oqrs/qsolist.php:181 @@ -6805,42 +7465,42 @@ msgstr "" #: application/views/qslprint/qsolist.php:109 #: application/views/qslprint/qsolist.php:174 #: application/views/qslprint/qsolist.php:189 -#: application/views/qso/edit_ajax.php:397 -#: application/views/qso/edit_ajax.php:429 -#: application/views/qso/edit_ajax.php:458 -#: application/views/qso/edit_ajax.php:470 -#: application/views/qso/edit_ajax.php:498 -#: application/views/qso/edit_ajax.php:509 application/views/qso/index.php:557 +#: application/views/qso/edit_ajax.php:424 +#: application/views/qso/edit_ajax.php:456 +#: application/views/qso/edit_ajax.php:485 +#: application/views/qso/edit_ajax.php:497 +#: application/views/qso/edit_ajax.php:525 +#: application/views/qso/edit_ajax.php:536 application/views/qso/index.php:579 #: application/views/search/search_result_ajax.php:189 #: application/views/search/search_result_ajax.php:231 #: application/views/search/search_result_ajax.php:305 #: application/views/search/search_result_ajax.php:320 -#: application/views/view_log/partial/log_ajax.php:149 -#: application/views/view_log/partial/log_ajax.php:187 -#: application/views/view_log/partial/log_ajax.php:242 -#: application/views/view_log/partial/log_ajax.php:268 -#: src/QSLManager/QSO.php:277 src/QSLManager/QSO.php:322 -#: src/QSLManager/QSO.php:375 src/QSLManager/QSO.php:398 +#: application/views/view_log/partial/log_ajax.php:151 +#: application/views/view_log/partial/log_ajax.php:189 +#: application/views/view_log/partial/log_ajax.php:244 +#: application/views/view_log/partial/log_ajax.php:270 +#: src/QSLManager/QSO.php:279 src/QSLManager/QSO.php:324 +#: src/QSLManager/QSO.php:377 src/QSLManager/QSO.php:400 msgid "Invalid (Ignore)" msgstr "" -#: application/views/logbookadvanced/index.php:308 +#: application/views/logbookadvanced/index.php:335 msgid "QSL received" msgstr "" -#: application/views/logbookadvanced/index.php:315 -#: application/views/logbookadvanced/index.php:357 -#: application/views/logbookadvanced/index.php:379 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:342 +#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:428 msgid "Verified" msgstr "" -#: application/views/logbookadvanced/index.php:319 +#: application/views/logbookadvanced/index.php:346 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:332 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:359 #: application/views/oqrs/qsolist.php:69 application/views/oqrs/qsolist.php:111 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:49 @@ -6849,268 +7509,264 @@ msgstr "" #: application/views/qslprint/qsolist.php:77 #: application/views/qslprint/qsolist.php:119 #: application/views/qslprint/qsolist.php:210 -#: application/views/qso/edit_ajax.php:408 -#: application/views/qso/edit_ajax.php:441 application/views/qso/index.php:568 +#: application/views/qso/edit_ajax.php:435 +#: application/views/qso/edit_ajax.php:468 application/views/qso/index.php:590 #: application/views/search/search_result_ajax.php:199 #: application/views/search/search_result_ajax.php:241 -#: application/views/view_log/partial/log_ajax.php:162 -#: application/views/view_log/partial/log_ajax.php:200 -#: src/QSLManager/QSO.php:294 src/QSLManager/QSO.php:337 +#: application/views/view_log/partial/log_ajax.php:164 +#: application/views/view_log/partial/log_ajax.php:202 +#: src/QSLManager/QSO.php:296 src/QSLManager/QSO.php:339 msgid "Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:323 -#: application/views/logbookadvanced/index.php:333 +#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:360 #: application/views/oqrs/qsolist.php:72 application/views/oqrs/qsolist.php:114 #: application/views/oqrs/showrequests.php:13 #: application/views/qslprint/qslprint.php:6 #: application/views/qslprint/qsolist.php:80 #: application/views/qslprint/qsolist.php:122 #: application/views/qslprint/qsolist.php:211 -#: application/views/qso/edit_ajax.php:407 -#: application/views/qso/edit_ajax.php:440 application/views/qso/index.php:567 +#: application/views/qso/edit_ajax.php:434 +#: application/views/qso/edit_ajax.php:467 application/views/qso/index.php:589 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 -#: application/views/view_log/partial/log_ajax.php:165 -#: application/views/view_log/partial/log_ajax.php:203 -#: src/QSLManager/QSO.php:297 src/QSLManager/QSO.php:340 +#: application/views/view_log/partial/log_ajax.php:167 +#: application/views/view_log/partial/log_ajax.php:205 +#: src/QSLManager/QSO.php:299 src/QSLManager/QSO.php:342 msgid "Direct" msgstr "" -#: application/views/logbookadvanced/index.php:324 -#: application/views/logbookadvanced/index.php:334 +#: application/views/logbookadvanced/index.php:351 +#: application/views/logbookadvanced/index.php:361 #: application/views/oqrs/qsolist.php:78 application/views/oqrs/qsolist.php:120 #: application/views/oqrs/showrequests.php:14 #: application/views/qslprint/qslprint.php:7 #: application/views/qslprint/qsolist.php:86 #: application/views/qslprint/qsolist.php:128 #: application/views/qslprint/qsolist.php:212 -#: application/views/qso/edit_ajax.php:409 -#: application/views/qso/edit_ajax.php:442 application/views/qso/index.php:569 +#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:469 application/views/qso/index.php:591 #: application/views/search/search_result_ajax.php:208 #: application/views/search/search_result_ajax.php:250 -#: application/views/view_log/partial/log_ajax.php:171 -#: application/views/view_log/partial/log_ajax.php:209 -#: src/QSLManager/QSO.php:303 src/QSLManager/QSO.php:346 +#: application/views/view_log/partial/log_ajax.php:173 +#: application/views/view_log/partial/log_ajax.php:211 +#: src/QSLManager/QSO.php:305 src/QSLManager/QSO.php:348 msgid "Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:325 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:352 +#: application/views/logbookadvanced/index.php:362 #: application/views/oqrs/qsolist.php:117 #: application/views/qslprint/qsolist.php:125 -#: application/views/qso/edit_ajax.php:410 -#: application/views/qso/edit_ajax.php:443 application/views/qso/index.php:570 +#: application/views/qso/edit_ajax.php:437 +#: application/views/qso/edit_ajax.php:470 application/views/qso/index.php:592 #: application/views/search/search_result_ajax.php:247 -#: application/views/view_log/partial/log_ajax.php:206 +#: application/views/view_log/partial/log_ajax.php:208 msgid "Manager" msgstr "" -#: application/views/logbookadvanced/index.php:329 +#: application/views/logbookadvanced/index.php:356 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:339 +#: application/views/logbookadvanced/index.php:366 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:350 +#: application/views/logbookadvanced/index.php:377 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:388 msgid "Clublog sent" msgstr "" -#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:399 msgid "Clublog received" msgstr "" -#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:410 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:394 +#: application/views/logbookadvanced/index.php:421 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:436 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:421 +#: application/views/logbookadvanced/index.php:448 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" -#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:451 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:425 -#: application/views/qso/edit_ajax.php:595 +#: application/views/logbookadvanced/index.php:452 +#: application/views/qso/edit_ajax.php:622 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:453 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:454 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:428 +#: application/views/logbookadvanced/index.php:455 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:429 +#: application/views/logbookadvanced/index.php:456 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:430 +#: application/views/logbookadvanced/index.php:457 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:431 +#: application/views/logbookadvanced/index.php:458 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:432 +#: application/views/logbookadvanced/index.php:459 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:433 +#: application/views/logbookadvanced/index.php:460 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:434 +#: application/views/logbookadvanced/index.php:461 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:435 +#: application/views/logbookadvanced/index.php:462 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:436 +#: application/views/logbookadvanced/index.php:463 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:437 +#: application/views/logbookadvanced/index.php:464 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:465 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:439 +#: application/views/logbookadvanced/index.php:466 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:467 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:445 +#: application/views/logbookadvanced/index.php:472 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:477 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:453 +#: application/views/logbookadvanced/index.php:480 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:456 +#: application/views/logbookadvanced/index.php:483 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:486 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:489 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:465 +#: application/views/logbookadvanced/index.php:492 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:495 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:471 +#: application/views/logbookadvanced/index.php:498 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:474 +#: application/views/logbookadvanced/index.php:501 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:477 +#: application/views/logbookadvanced/index.php:504 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/index.php:507 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:483 +#: application/views/logbookadvanced/index.php:510 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:516 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:517 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:518 #: application/views/mode/index.php:68 msgid "Filters" msgstr "" -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:520 #: application/views/oqrs/showrequests.php:56 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:500 +#: application/views/logbookadvanced/index.php:527 #: application/views/qso/index.php:272 -#: application/views/station_profile/edit.php:65 +#: application/views/station_profile/edit.php:92 msgid "Location" msgstr "" -#: application/views/logbookadvanced/index.php:506 -msgid "Callsign: " -msgstr "" - -#: application/views/logbookadvanced/index.php:512 +#: application/views/logbookadvanced/index.php:539 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:519 +#: application/views/logbookadvanced/index.php:547 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:538 +#: application/views/logbookadvanced/index.php:566 #: application/views/logbookadvanced/useroptions.php:26 #: application/views/oqrs/showrequests.php:31 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:605 #: application/views/logbookadvanced/useroptions.php:78 msgid "QSL Msg" msgstr "" -#: application/views/logbookadvanced/index.php:622 +#: application/views/logbookadvanced/index.php:650 #: application/views/logbookadvanced/useroptions.php:50 msgid "My Refs" msgstr "" @@ -7138,41 +7794,15 @@ msgstr "" msgid "Column" msgstr "" -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/useroptions.php:152 msgctxt "Map Options" msgid "Layer" msgstr "" -#: application/views/logbookadvanced/useroptions.php:149 +#: application/views/logbookadvanced/useroptions.php:153 msgid "Default on" msgstr "" -#: application/views/logbookadvanced/useroptions.php:154 -#: application/views/stationsetup/exportmapoptions.php:23 -msgctxt "Map Options" -msgid "Path lines" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:158 -msgctxt "Map Options" -msgid "Gridsquares" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:162 -msgctxt "Map Options" -msgid "CQ Zones" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:166 -msgctxt "Map Options" -msgid "ITU Zones" -msgstr "" - -#: application/views/logbookadvanced/useroptions.php:170 -msgctxt "Map Options" -msgid "Night Shadow" -msgstr "" - #: application/views/lookup/index.php:8 msgid "US State" msgstr "" @@ -7272,58 +7902,62 @@ msgstr "" msgid "Upload Certificate" msgstr "" -#: application/views/lotw_views/index.php:41 +#: application/views/lotw_views/index.php:37 msgid "QSO Start Date" msgstr "" -#: application/views/lotw_views/index.php:42 +#: application/views/lotw_views/index.php:38 msgid "QSO End Date" msgstr "" -#: application/views/lotw_views/index.php:43 +#: application/views/lotw_views/index.php:39 msgid "Date Created" msgstr "" -#: application/views/lotw_views/index.php:44 +#: application/views/lotw_views/index.php:40 msgid "Date Expires" msgstr "" -#: application/views/lotw_views/index.php:46 -#: application/views/view_log/qso.php:404 +#: application/views/lotw_views/index.php:42 +#: application/views/view_log/qso.php:407 msgid "Last Upload" msgstr "" -#: application/views/lotw_views/index.php:91 +#: application/views/lotw_views/index.php:87 msgid "Expired" msgstr "" -#: application/views/lotw_views/index.php:93 +#: application/views/lotw_views/index.php:89 msgid "Expiring" msgstr "" -#: application/views/lotw_views/index.php:105 +#: application/views/lotw_views/index.php:91 +msgid "Valid" +msgstr "" + +#: application/views/lotw_views/index.php:101 #, php-format msgid "Last success: %s" msgstr "" -#: application/views/lotw_views/index.php:108 +#: application/views/lotw_views/index.php:104 #, php-format msgid "Last fail: %s" msgstr "" -#: application/views/lotw_views/index.php:114 +#: application/views/lotw_views/index.php:110 msgid "Not Synced" msgstr "" -#: application/views/lotw_views/index.php:129 +#: application/views/lotw_views/index.php:125 msgid "You need to upload some LoTW p12 certificates to use this area." msgstr "" -#: application/views/lotw_views/index.php:144 +#: application/views/lotw_views/index.php:140 msgid "Information" msgstr "" -#: application/views/lotw_views/index.php:149 +#: application/views/lotw_views/index.php:145 msgid "Manual Sync" msgstr "" @@ -7535,6 +8169,14 @@ msgstr "" msgid "This enables the button to Wavelog's Github page in the public view" msgstr "" +#: application/views/options/appearance.php:107 +msgid "Public Login Button" +msgstr "" + +#: application/views/options/appearance.php:112 +msgid "This enables the button to login to Wavelog in the public view" +msgstr "" + #: application/views/options/dxcluster.php:38 msgid "Provider of DXClusterCache" msgstr "" @@ -7832,7 +8474,7 @@ msgstr "" #: application/views/oqrs/request.php:60 #: application/views/oqrs/request_grouped.php:64 #: application/views/oqrs/showrequests.php:87 -#: application/views/user/main.php:48 application/views/user/profile.php:24 +#: application/views/user/index.php:48 application/views/user/profile.php:24 msgid "E-mail" msgstr "" @@ -7855,21 +8497,21 @@ msgstr "" #: application/views/search/search_result_ajax.php:127 #: application/views/user/edit.php:478 #: application/views/view_log/partial/log.php:22 -#: application/views/view_log/partial/log_ajax.php:86 -#: application/views/view_log/qso.php:503 -#: application/views/view_log/qso.php:507 -#: application/views/view_log/qso.php:511 -#: application/views/view_log/qso.php:515 -#: application/views/view_log/qso.php:521 -#: application/views/view_log/qso.php:528 -#: application/views/view_log/qso.php:535 -#: application/views/view_log/qso.php:542 -#: application/views/view_log/qso.php:549 -#: application/views/view_log/qso.php:556 -#: application/views/view_log/qso.php:563 -#: application/views/view_log/qso.php:570 -#: application/views/view_log/qso.php:577 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/partial/log_ajax.php:88 +#: application/views/view_log/qso.php:506 +#: application/views/view_log/qso.php:510 +#: application/views/view_log/qso.php:514 +#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:531 +#: application/views/view_log/qso.php:538 +#: application/views/view_log/qso.php:545 +#: application/views/view_log/qso.php:552 +#: application/views/view_log/qso.php:559 +#: application/views/view_log/qso.php:566 +#: application/views/view_log/qso.php:573 +#: application/views/view_log/qso.php:580 +#: application/views/view_log/qso.php:585 msgid "Station" msgstr "" @@ -7877,10 +8519,10 @@ msgstr "" #: application/views/qslprint/qslprint.php:28 #: application/views/qslprint/qsolist.php:14 #: application/views/qslprint/qsolist.php:83 -#: application/views/qso/index.php:576 +#: application/views/qso/index.php:598 #: application/views/search/search_result_ajax.php:205 -#: application/views/view_log/partial/log_ajax.php:168 -#: src/QSLManager/QSO.php:300 +#: application/views/view_log/partial/log_ajax.php:170 +#: src/QSLManager/QSO.php:302 msgid "Via" msgstr "" @@ -8109,7 +8751,7 @@ msgid "Remove" msgstr "" #: application/views/qslprint/qslprint.php:33 -#: application/views/simplefle/index.php:133 +#: application/views/simplefle/index.php:139 msgid "QSO List" msgstr "" @@ -8155,35 +8797,20 @@ msgid "" "queue." msgstr "" -#: application/views/qso/components/winkeysettings.php:7 -#: application/views/qso/components/winkeysettings_results.php:7 -msgid "Winkey Macros" -msgstr "" - -#: application/views/qso/components/winkeysettings.php:12 -#: application/views/qso/components/winkeysettings.php:28 -#: application/views/qso/components/winkeysettings.php:44 -#: application/views/qso/components/winkeysettings.php:60 -#: application/views/qso/components/winkeysettings.php:76 -#: application/views/qso/components/winkeysettings_results.php:12 -#: application/views/qso/components/winkeysettings_results.php:28 -#: application/views/qso/components/winkeysettings_results.php:44 -#: application/views/qso/components/winkeysettings_results.php:60 -#: application/views/qso/components/winkeysettings_results.php:76 -#, php-format -msgid "Function %d - Name" -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:83 -#: application/views/qso/components/winkeysettings_results.php:19 -#: application/views/qso/components/winkeysettings_results.php:35 -#: application/views/qso/components/winkeysettings_results.php:51 -#: application/views/qso/components/winkeysettings_results.php:67 -#: application/views/qso/components/winkeysettings_results.php:83 +#, 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 #, php-format msgid "Function %d - Macro" msgstr "" @@ -8209,7 +8836,8 @@ msgid "RX Band" msgstr "" #: application/views/qso/edit_ajax.php:134 application/views/qso/index.php:346 -#: application/views/view_log/qso.php:542 +#: application/views/reg1test/index.php:114 +#: application/views/view_log/qso.php:545 msgid "Transmit Power (W)" msgstr "" @@ -8221,10 +8849,6 @@ msgstr "" msgid "Used for VUCC MultiGrids" msgstr "" -#: application/views/qso/edit_ajax.php:177 -msgid "QTH" -msgstr "" - #: application/views/qso/edit_ajax.php:258 msgid "Sat Name" msgstr "" @@ -8233,69 +8857,85 @@ msgstr "" msgid "Sat Mode" msgstr "" -#: application/views/qso/edit_ajax.php:356 application/views/qso/index.php:255 -#: application/views/qso/index.php:500 application/views/user/edit.php:599 -#: application/views/view_log/qso.php:332 -#: application/views/view_log/qso.php:582 +#: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:545 +msgid "Antenna Azimuth (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:547 +msgid "Antenna azimuth in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:274 application/views/qso/index.php:551 +msgid "Antenna Elevation (°)" +msgstr "" + +#: application/views/qso/edit_ajax.php:276 application/views/qso/index.php:553 +msgid "Antenna elevation in decimal degrees." +msgstr "" + +#: application/views/qso/edit_ajax.php:383 application/views/qso/index.php:255 +#: application/views/qso/index.php:510 application/views/user/edit.php:599 +#: application/views/view_log/qso.php:335 +#: application/views/view_log/qso.php:585 msgid "Sig Info" msgstr "" -#: application/views/qso/edit_ajax.php:369 +#: application/views/qso/edit_ajax.php:396 msgid "Notes (for internal usage only)" msgstr "" -#: application/views/qso/edit_ajax.php:403 +#: application/views/qso/edit_ajax.php:430 msgid "Sent Method" msgstr "" -#: application/views/qso/edit_ajax.php:406 -#: application/views/qso/edit_ajax.php:439 application/views/qso/index.php:563 -#: application/views/qso/index.php:566 +#: application/views/qso/edit_ajax.php:433 +#: application/views/qso/edit_ajax.php:466 application/views/qso/index.php:585 +#: application/views/qso/index.php:588 msgid "Method" msgstr "" -#: application/views/qso/edit_ajax.php:416 +#: application/views/qso/edit_ajax.php:443 msgid "Sent Via" msgstr "" -#: application/views/qso/edit_ajax.php:430 -#: application/views/qso/edit_ajax.php:471 -#: application/views/qso/edit_ajax.php:510 +#: application/views/qso/edit_ajax.php:457 +#: application/views/qso/edit_ajax.php:498 +#: application/views/qso/edit_ajax.php:537 msgid "Verified (Match)" msgstr "" -#: application/views/qso/edit_ajax.php:436 +#: application/views/qso/edit_ajax.php:463 msgid "Received Method" msgstr "" -#: application/views/qso/edit_ajax.php:477 application/views/qso/index.php:583 +#: application/views/qso/edit_ajax.php:504 application/views/qso/index.php:605 msgid "This note content is exported to QSL services like eqsl.cc." msgstr "" -#: application/views/qso/edit_ajax.php:481 application/views/qso/index.php:586 +#: application/views/qso/edit_ajax.php:508 application/views/qso/index.php:608 msgid "Get the default message for eQSL, for this station." msgstr "" -#: application/views/qso/edit_ajax.php:530 +#: application/views/qso/edit_ajax.php:557 msgid "Change Station Profile" msgstr "" -#: application/views/qso/edit_ajax.php:576 +#: application/views/qso/edit_ajax.php:603 msgid "Exchange (R)" msgstr "" -#: application/views/qso/edit_ajax.php:581 +#: application/views/qso/edit_ajax.php:608 msgid "Exchange (S)" msgstr "" -#: application/views/qso/edit_ajax.php:593 +#: application/views/qso/edit_ajax.php:620 #: application/views/search/search_result_ajax.php:432 #: application/views/view_log/partial/log.php:156 -#: application/views/view_log/partial/log_ajax.php:346 +#: application/views/view_log/partial/log_ajax.php:348 msgid "Delete QSO" msgstr "" -#: application/views/qso/edit_ajax.php:596 +#: application/views/qso/edit_ajax.php:623 msgid "Save changes" msgstr "" @@ -8303,7 +8943,7 @@ msgstr "" msgid "TimeOff is less than TimeOn" msgstr "" -#: application/views/qso/index.php:5 application/views/qso/index.php:694 +#: application/views/qso/index.php:5 application/views/qso/index.php:718 msgid "Previous Contacts" msgstr "" @@ -8343,23 +8983,23 @@ msgstr "" msgid "Search DXCluster for latest Spot" msgstr "" -#: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:149 -#: application/views/station_profile/edit.php:191 -#: application/views/user/edit.php:583 application/views/view_log/qso.php:282 -#: application/views/view_log/qso.php:549 +#: application/views/qso/index.php:196 application/views/qso/index.php:449 +#: application/views/station_profile/create.php:156 +#: application/views/station_profile/edit.php:218 +#: application/views/user/edit.php:583 application/views/view_log/qso.php:285 +#: application/views/view_log/qso.php:552 msgid "IOTA Reference" msgstr "" -#: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:165 -#: application/views/station_profile/edit.php:219 -#: application/views/user/edit.php:587 application/views/view_log/qso.php:289 -#: application/views/view_log/qso.php:556 +#: application/views/qso/index.php:212 application/views/qso/index.php:466 +#: application/views/station_profile/create.php:172 +#: application/views/station_profile/edit.php:246 +#: application/views/user/edit.php:587 application/views/view_log/qso.php:292 +#: application/views/view_log/qso.php:559 msgid "SOTA Reference" msgstr "" -#: application/views/qso/index.php:322 application/views/view_log/qso.php:98 +#: application/views/qso/index.php:322 application/views/view_log/qso.php:100 msgid "Frequency (RX)" msgstr "" @@ -8367,65 +9007,85 @@ msgstr "" msgid "Band (RX)" msgstr "" -#: application/views/qso/index.php:458 +#: application/views/qso/index.php:468 msgid "For example: GM/NS-001." msgstr "" -#: application/views/qso/index.php:471 +#: application/views/qso/index.php:481 msgid "For example: DLFF-0069." msgstr "" -#: application/views/qso/index.php:484 +#: application/views/qso/index.php:494 msgid "For example: PA-0150. Multiple values allowed." msgstr "" -#: application/views/qso/index.php:496 +#: application/views/qso/index.php:506 msgid "For example: GMA" msgstr "" -#: application/views/qso/index.php:502 +#: application/views/qso/index.php:512 msgid "For example: DA/NW-357" msgstr "" -#: application/views/qso/index.php:510 +#: application/views/qso/index.php:520 msgid "For example: Q03" msgstr "" -#: application/views/qso/index.php:519 application/views/view_log/qso.php:207 +#: application/views/qso/index.php:529 application/views/view_log/qso.php:210 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:527 application/views/view_log/qso.php:214 +#: application/views/qso/index.php:537 application/views/view_log/qso.php:217 msgid "Satellite Mode" msgstr "" -#: application/views/qso/index.php:538 +#: application/views/qso/index.php:560 msgid "" "Note content is used within Wavelog only and is not exported to other " "services." msgstr "" -#: application/views/qso/index.php:604 +#: application/views/qso/index.php:626 msgid "Reset to Default" msgstr "" -#: application/views/qso/index.php:645 +#: application/views/qso/index.php:667 msgid "Winkey" msgstr "" -#: application/views/qso/index.php:647 +#: application/views/qso/index.php:669 msgid "Connect" msgstr "" -#: application/views/qso/index.php:677 +#: application/views/qso/index.php:678 +msgid "Stop" +msgstr "" + +#: application/views/qso/index.php:679 +msgid "Tune" +msgstr "" + +#: application/views/qso/index.php:680 +msgid "Stop Tune" +msgstr "" + +#: application/views/qso/index.php:686 +msgid "CW Speed" +msgstr "" + +#: application/views/qso/index.php:691 +msgid "Send" +msgstr "" + +#: application/views/qso/index.php:701 msgid "Suggestions" msgstr "" -#: application/views/qso/index.php:684 +#: application/views/qso/index.php:708 msgid "Profile Picture" msgstr "" -#: application/views/qso/index.php:708 +#: application/views/qso/index.php:732 msgid "Max. 5 previous contacts are shown" msgstr "" @@ -8456,6 +9116,137 @@ msgstr "" msgid "Please wait..." msgstr "" +#: application/views/reg1test/index.php:6 +msgid "Select Band" +msgstr "" + +#: application/views/reg1test/index.php:8 +msgid "" +"Bands below 50Mhz are not valid for the EDI REG1TEST format and will produce " +"invalid files." +msgstr "" + +#: application/views/reg1test/index.php:18 +msgid "Export a contest to a REG1TEST EDI log" +msgstr "" + +#: application/views/reg1test/index.php:48 +msgid "Sent Exchange" +msgstr "" + +#: application/views/reg1test/index.php:50 +msgid "" +"The exchange which was sent during the contest. Can be any type of " +"information, e.g. Province, DOK, County, State, Power, Name. Max. length: 6 " +"characters." +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:66 +msgid "Callsign of responsible operator" +msgstr "" + +#: application/views/reg1test/index.php:72 +msgid "" +"List of all operators. Seperated with a semicolon ';'. The responsible " +"operator is not needed here." +msgstr "" + +#: application/views/reg1test/index.php:75 +msgid "Contest Address 1" +msgstr "" + +#: application/views/reg1test/index.php:77 +msgid "Address of the QTH used during the contest." +msgstr "" + +#: application/views/reg1test/index.php:80 +msgid "Contest Address 2" +msgstr "" + +#: application/views/reg1test/index.php:84 +msgid "Operator Address 1" +msgstr "" + +#: application/views/reg1test/index.php:86 +msgid "Address of the responsible operator." +msgstr "" + +#: application/views/reg1test/index.php:89 +msgid "Operator Address 2" +msgstr "" + +#: application/views/reg1test/index.php:93 +msgid "Operator Address Postalcode" +msgstr "" + +#: application/views/reg1test/index.php:97 +msgid "Operator Address City" +msgstr "" + +#: application/views/reg1test/index.php:101 +msgid "Operator Address Country" +msgstr "" + +#: application/views/reg1test/index.php:105 +msgid "Operator Phone Number" +msgstr "" + +#: application/views/reg1test/index.php:109 +msgid "Transmit Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:111 +msgid "Short description of the used equipment." +msgstr "" + +#: application/views/reg1test/index.php:116 +msgid "TX Power during the contest in Watt." +msgstr "" + +#: application/views/reg1test/index.php:119 +msgid "Receive Equipment Description" +msgstr "" + +#: application/views/reg1test/index.php:121 +msgid "If you used another gear for RX, then describe it here." +msgstr "" + +#: application/views/reg1test/index.php:124 +msgid "Antenna Description" +msgstr "" + +#: application/views/reg1test/index.php:126 +msgid "What kind of antenna was used." +msgstr "" + +#: application/views/reg1test/index.php:129 +msgid "Antenna Height Above Ground (m)" +msgstr "" + +#: application/views/reg1test/index.php:131 +msgid "Height of the antenna above the ground." +msgstr "" + +#: application/views/reg1test/index.php:134 +msgid "Band multiplicator" +msgstr "" + +#: 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 "" + +#: application/views/reg1test/index.php:141 +msgid "Any other remarks." +msgstr "" + #: application/views/satellite/create.php:23 #: application/views/satellite/edit.php:7 msgid "Satellite name" @@ -8545,10 +9336,71 @@ msgstr "" msgid "Satellite passes" msgstr "" -#: application/views/satellite/pass.php:548 +#: application/views/satellite/pass.php:8 +msgid "Min. Satellite Elevation" +msgstr "" + +#: application/views/satellite/pass.php:12 +msgid "Min. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:20 +msgid "Max. Azimuth" +msgstr "" + +#: application/views/satellite/pass.php:32 +msgid "Altitude (meters)" +msgstr "" + +#: application/views/satellite/pass.php:36 application/views/user/edit.php:179 +msgid "Timezone" +msgstr "" + +#: application/views/satellite/pass.php:479 +msgid "Min. time" +msgstr "" + +#: application/views/satellite/pass.php:487 +msgid "Max. time" +msgstr "" + +#: application/views/satellite/pass.php:504 msgid "Load predictions" msgstr "" +#: application/views/satellite/passtable.php:6 +msgid "AOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:7 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "" + +#: application/views/satellite/passtable.php:8 +msgid "AOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:9 +msgid "AOS El" +msgstr "" + +#: application/views/satellite/passtable.php:10 +msgid "Max El" +msgstr "" + +#: application/views/satellite/passtable.php:11 +msgid "LOS Time" +msgstr "" + +#: application/views/satellite/passtable.php:12 +msgid "LOS Az" +msgstr "" + +#: application/views/satellite/passtable.php:13 +msgid "LOS El" +msgstr "" + #: application/views/sattimers/index.php:15 #, php-format msgid "" @@ -8569,10 +9421,6 @@ msgstr "" msgid "Max Elevation" msgstr "" -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "" - #: application/views/search/cqzones.php:5 #: application/views/search/lotw_unconfirmed.php:5 #: application/views/search/main.php:5 @@ -8679,50 +9527,50 @@ msgstr "" #: application/views/search/search_result_ajax.php:409 #: application/views/view_log/partial/log.php:140 -#: application/views/view_log/partial/log_ajax.php:323 +#: application/views/view_log/partial/log_ajax.php:325 msgid "Mark QSL Sent (Bureau)" msgstr "" #: application/views/search/search_result_ajax.php:410 #: application/views/view_log/partial/log.php:141 -#: application/views/view_log/partial/log_ajax.php:324 +#: application/views/view_log/partial/log_ajax.php:326 msgid "Mark QSL Sent (Direct)" msgstr "" #: application/views/search/search_result_ajax.php:417 #: application/views/view_log/partial/log.php:148 -#: application/views/view_log/partial/log_ajax.php:333 -#: application/views/view_log/qso.php:652 +#: application/views/view_log/partial/log_ajax.php:335 +#: application/views/view_log/qso.php:655 msgid "Mark QSL Received (Bureau)" msgstr "" #: application/views/search/search_result_ajax.php:418 #: application/views/view_log/partial/log.php:149 -#: application/views/view_log/partial/log_ajax.php:334 -#: application/views/view_log/qso.php:654 +#: application/views/view_log/partial/log_ajax.php:336 +#: application/views/view_log/qso.php:657 msgid "Mark QSL Received (Direct)" msgstr "" #: application/views/search/search_result_ajax.php:419 #: application/views/view_log/partial/log.php:150 -#: application/views/view_log/partial/log_ajax.php:325 +#: application/views/view_log/partial/log_ajax.php:327 msgid "Mark QSL Card Requested" msgstr "" #: application/views/search/search_result_ajax.php:420 #: application/views/view_log/partial/log.php:151 -#: application/views/view_log/partial/log_ajax.php:326 -#: application/views/view_log/qso.php:666 +#: application/views/view_log/partial/log_ajax.php:328 +#: application/views/view_log/qso.php:669 msgid "Mark QSL Card Not Required" msgstr "" #: application/views/search/search_result_ajax.php:426 -#: application/views/view_log/partial/log_ajax.php:340 +#: application/views/view_log/partial/log_ajax.php:342 msgid "Lookup on QRZ.com" msgstr "" #: application/views/search/search_result_ajax.php:428 -#: application/views/view_log/partial/log_ajax.php:342 +#: application/views/view_log/partial/log_ajax.php:344 msgid "Lookup on HamQTH" msgstr "" @@ -8757,7 +9605,7 @@ msgid "" msgstr "" #: application/views/simplefle/index.php:17 -#: application/views/simplefle/index.php:170 +#: application/views/simplefle/index.php:176 msgid "Syntax Help" msgstr "" @@ -8851,8 +9699,8 @@ msgstr "" #: application/views/simplefle/index.php:107 #, php-format msgid "" -"If you did operate from a new location, first create a new Station Location" +"If you did operate from a new location, first create a new %sStation " +"Location%s" msgstr "" #: application/views/simplefle/index.php:112 @@ -8867,24 +9715,24 @@ msgstr "" msgid "Enter the Data" msgstr "" -#: application/views/simplefle/index.php:148 +#: application/views/simplefle/index.php:154 msgid "Refs" msgstr "" -#: application/views/simplefle/index.php:160 -msgid "" -"The Refs can be either SOTA, IOTA, POTA or WWFF" +#: application/views/simplefle/index.php:166 +#, php-format +msgid "The Refs can be either %sS%sOTA, %sI%sOTA, %sP%sOTA, or %sW%sWFF" msgstr "" -#: application/views/simplefle/index.php:167 +#: application/views/simplefle/index.php:173 msgid "Reload QSO List" msgstr "" -#: application/views/simplefle/index.php:168 +#: application/views/simplefle/index.php:174 msgid "Save in Wavelog" msgstr "" -#: application/views/simplefle/index.php:169 +#: application/views/simplefle/index.php:175 msgid "Clear Logging Session" msgstr "" @@ -8941,122 +9789,121 @@ msgstr "" #: application/views/simplefle/syntax_help.php:28 #, php-format -msgctxt "uses 'this article'" msgid "" -"A full summary of all commands and the necessary syntax can be found in %s " -"of our Wiki." +"A full summary of all commands and the necessary syntax can be found in " +"%sthis article%s of our Wiki." msgstr "" -#: application/views/station_profile/create.php:51 -#: application/views/station_profile/edit.php:40 +#: application/views/station_profile/create.php:58 +#: application/views/station_profile/edit.php:67 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:52 -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:53 -#: application/views/station_profile/edit.php:42 +#: application/views/station_profile/create.php:60 +#: application/views/station_profile/edit.php:69 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:59 -#: application/views/station_profile/edit.php:48 +#: application/views/station_profile/create.php:66 +#: application/views/station_profile/edit.php:75 msgid "Station callsign. For example: 4W7EST/P" msgstr "" -#: application/views/station_profile/create.php:63 -#: application/views/station_profile/edit.php:52 +#: application/views/station_profile/create.php:70 +#: application/views/station_profile/edit.php:79 msgid "Station Power (W)" msgstr "" -#: application/views/station_profile/create.php:65 -#: application/views/station_profile/edit.php:54 +#: application/views/station_profile/create.php:72 +#: application/views/station_profile/edit.php:81 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" -#: application/views/station_profile/create.php:68 -#: application/views/station_profile/edit.php:69 +#: application/views/station_profile/create.php:75 +#: application/views/station_profile/edit.php:96 msgid "Station DXCC" msgstr "" -#: application/views/station_profile/create.php:71 -#: application/views/station_profile/edit.php:72 +#: application/views/station_profile/create.php:78 +#: application/views/station_profile/edit.php:99 msgctxt "DXCC selection" msgid "None" msgstr "" -#: application/views/station_profile/create.php:78 -#: application/views/station_profile/edit.php:85 +#: application/views/station_profile/create.php:85 +#: application/views/station_profile/edit.php:112 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:83 -#: application/views/station_profile/edit.php:91 +#: application/views/station_profile/create.php:90 +#: application/views/station_profile/edit.php:118 msgid "Station City" msgstr "" -#: application/views/station_profile/create.php:85 -#: application/views/station_profile/edit.php:93 +#: application/views/station_profile/create.php:92 +#: application/views/station_profile/edit.php:120 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:94 -#: application/views/station_profile/edit.php:105 +#: application/views/station_profile/create.php:101 +#: application/views/station_profile/edit.php:132 msgid "Station state. Applies to certain countries only." msgstr "" -#: application/views/station_profile/create.php:99 -#: application/views/station_profile/edit.php:110 +#: application/views/station_profile/create.php:106 +#: application/views/station_profile/edit.php:137 msgid "Station County" msgstr "" -#: application/views/station_profile/create.php:101 -#: application/views/station_profile/edit.php:112 +#: application/views/station_profile/create.php:108 +#: application/views/station_profile/edit.php:139 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/edit.php:138 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/edit.php:165 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:138 -#: application/views/station_profile/edit.php:155 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:123 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:165 +#: application/views/station_profile/edit.php:182 +#: application/views/station_profile/edit.php:206 msgid "click here" msgstr "" -#: application/views/station_profile/create.php:130 -#: application/views/station_profile/edit.php:155 +#: application/views/station_profile/create.php:137 +#: application/views/station_profile/edit.php:182 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:135 -#: application/views/station_profile/edit.php:167 -#: application/views/station_profile/edit.php:170 +#: application/views/station_profile/create.php:142 +#: application/views/station_profile/edit.php:194 +#: application/views/station_profile/edit.php:197 msgid "Station Gridsquare" msgstr "" -#: application/views/station_profile/create.php:140 -#: application/views/station_profile/edit.php:175 +#: application/views/station_profile/create.php:147 +#: application/views/station_profile/edit.php:202 msgid "Get Gridsquare" msgstr "" -#: application/views/station_profile/create.php:144 -#: application/views/station_profile/edit.php:179 +#: application/views/station_profile/create.php:151 +#: application/views/station_profile/edit.php:206 #, php-format msgctxt "uses 'click here'" msgid "" @@ -9064,304 +9911,250 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:145 -#: application/views/station_profile/edit.php:180 +#: application/views/station_profile/create.php:152 +#: application/views/station_profile/edit.php:207 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" -#: application/views/station_profile/create.php:160 -#: application/views/station_profile/edit.php:205 +#: application/views/station_profile/create.php:167 +#: application/views/station_profile/edit.php:232 msgid "Station IOTA reference. For example: EU-005" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:161 -#: application/views/station_profile/edit.php:206 +#: application/views/station_profile/create.php:168 +#: application/views/station_profile/edit.php:233 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:167 -#: application/views/station_profile/edit.php:221 +#: application/views/station_profile/create.php:174 +#: application/views/station_profile/edit.php:248 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:173 -#: application/views/station_profile/edit.php:234 +#: application/views/station_profile/create.php:180 +#: application/views/station_profile/edit.php:261 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:179 -#: application/views/station_profile/edit.php:247 +#: application/views/station_profile/create.php:186 +#: application/views/station_profile/edit.php:274 #, php-format msgid "" "Station POTA reference(s). Multiple comma separated values allowed. You can " "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:183 -#: application/views/station_profile/edit.php:260 +#: application/views/station_profile/create.php:190 +#: application/views/station_profile/edit.php:287 msgid "Signature Name" msgstr "" -#: application/views/station_profile/create.php:185 -#: application/views/station_profile/edit.php:262 +#: application/views/station_profile/create.php:192 +#: application/views/station_profile/edit.php:289 msgid "Station Signature (e.g. GMA).." msgstr "" -#: application/views/station_profile/create.php:189 -#: application/views/station_profile/edit.php:266 +#: application/views/station_profile/create.php:196 +#: application/views/station_profile/edit.php:293 msgid "Signature Information" msgstr "" -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/edit.php:268 +#: application/views/station_profile/create.php:198 +#: application/views/station_profile/edit.php:295 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "" -#: application/views/station_profile/create.php:195 -#: application/views/station_profile/edit.php:281 +#: application/views/station_profile/create.php:202 +#: application/views/station_profile/edit.php:308 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:197 -#: application/views/station_profile/edit.php:283 +#: application/views/station_profile/create.php:204 +#: application/views/station_profile/edit.php:310 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "" -#: application/views/station_profile/create.php:201 -#: application/views/station_profile/edit.php:286 +#: application/views/station_profile/create.php:208 +#: application/views/station_profile/edit.php:313 msgid "Default QSLMSG" msgstr "" -#: application/views/station_profile/create.php:204 -#: application/views/station_profile/edit.php:289 +#: application/views/station_profile/create.php:211 +#: application/views/station_profile/edit.php:316 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "" -#: application/views/station_profile/create.php:207 -#: application/views/station_profile/edit.php:328 +#: application/views/station_profile/create.php:214 +#: application/views/station_profile/edit.php:355 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:212 -#: application/views/station_profile/edit.php:333 +#: application/views/station_profile/create.php:219 +#: application/views/station_profile/edit.php:360 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " "Clublog. If this is deactivated on it's own please check if the Call is " "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:215 -#: application/views/station_profile/edit.php:336 +#: application/views/station_profile/create.php:222 +#: application/views/station_profile/edit.php:363 msgid "ClubLog Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:224 -#: application/views/station_profile/edit.php:352 +#: application/views/station_profile/create.php:231 +#: application/views/station_profile/edit.php:379 msgid "HRDLog.net Username" msgstr "" -#: application/views/station_profile/create.php:226 -#: application/views/station_profile/edit.php:354 +#: application/views/station_profile/create.php:233 +#: application/views/station_profile/edit.php:381 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" -#: application/views/station_profile/create.php:229 -#: application/views/station_profile/edit.php:357 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/edit.php:384 msgid "HRDLog.net API Key" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:231 -#: application/views/station_profile/edit.php:359 +#: application/views/station_profile/create.php:238 +#: application/views/station_profile/edit.php:386 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:234 -#: application/views/station_profile/edit.php:362 +#: application/views/station_profile/create.php:241 +#: application/views/station_profile/edit.php:389 msgid "HRDLog.net Logbook Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:243 -#: application/views/station_profile/edit.php:297 +#: application/views/station_profile/create.php:250 +#: application/views/station_profile/edit.php:324 msgid "Subscription Required" msgstr "" -#: application/views/station_profile/create.php:248 +#: application/views/station_profile/create.php:255 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:258 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:254 -#: application/views/station_profile/edit.php:306 +#: application/views/station_profile/create.php:261 +#: application/views/station_profile/edit.php:333 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/edit.php:310 +#: application/views/station_profile/create.php:264 +#: application/views/station_profile/edit.php:337 msgid "QRZ.com Logbook Upload" msgstr "" -#: application/views/station_profile/create.php:260 -#: application/views/station_profile/edit.php:313 +#: application/views/station_profile/create.php:267 +#: application/views/station_profile/edit.php:340 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:268 -#: application/views/station_profile/edit.php:378 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/edit.php:405 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:270 -#: application/views/station_profile/edit.php:380 +#: application/views/station_profile/create.php:277 +#: application/views/station_profile/edit.php:407 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:273 -#: application/views/station_profile/edit.php:383 +#: application/views/station_profile/create.php:280 +#: application/views/station_profile/edit.php:410 msgid "QO-100 Dx Club Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:283 -#: application/views/station_profile/edit.php:401 +#: application/views/station_profile/create.php:290 +#: application/views/station_profile/edit.php:428 msgid "OQRS Enabled" msgstr "" -#: application/views/station_profile/create.php:290 -#: application/views/station_profile/edit.php:408 +#: application/views/station_profile/create.php:297 +#: application/views/station_profile/edit.php:435 msgid "OQRS Email alert" msgstr "" -#: application/views/station_profile/create.php:295 -#: application/views/station_profile/edit.php:413 +#: application/views/station_profile/create.php:302 +#: application/views/station_profile/edit.php:440 msgid "Make sure email is set up under admin and global options." msgstr "" -#: application/views/station_profile/create.php:298 -#: application/views/station_profile/edit.php:416 +#: application/views/station_profile/create.php:305 +#: application/views/station_profile/edit.php:443 msgid "OQRS Text" msgstr "" -#: application/views/station_profile/create.php:300 -#: application/views/station_profile/edit.php:418 +#: application/views/station_profile/create.php:307 +#: application/views/station_profile/edit.php:445 msgid "Some info you want to add regarding QSL'ing." msgstr "" -#: application/views/station_profile/edit.php:122 +#: application/views/station_profile/edit.php:149 msgid "Zones" msgstr "" -#: application/views/station_profile/edit.php:257 +#: application/views/station_profile/edit.php:284 msgid "Signature" msgstr "" -#: application/views/station_profile/index.php:15 -#: application/views/stationsetup/stationsetup.php:95 -msgid "" -"Station Locations define operating locations, such as your QTH, a friends " -"QTH, or a portable station." -msgstr "" - -#: application/views/station_profile/index.php:16 -#: application/views/stationsetup/stationsetup.php:96 -msgid "Similar to logbooks, a station profile keeps a set of QSOs together." -msgstr "" - -#: application/views/station_profile/index.php:17 -#: application/views/stationsetup/stationsetup.php:97 -msgid "" -"Only one station may be active at a time. In the table below this is shown " -"with the -Active Station- badge." -msgstr "" - -#: application/views/station_profile/index.php:19 -#: application/views/stationsetup/stationsetup.php:101 -msgid "Create a Station Location" -msgstr "" - -#: application/views/station_profile/index.php:25 -#: application/views/stationsetup/stationsetup.php:105 -msgid "" -"Attention: You need to set an active station location. Go to Callsign-" -">Station Location to select one." -msgstr "" - -#: application/views/station_profile/index.php:31 -#: application/views/stationsetup/stationsetup.php:111 -msgid "" -"Due to recent changes within Wavelog you need to reassign QSOs to your " -"station profiles." -msgstr "" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Maintenance" -msgstr "" - -#: application/views/station_profile/index.php:33 -#: application/views/stationsetup/stationsetup.php:113 -msgid "Please reassign them at " -msgstr "" - -#: application/views/station_profile/index.php:41 -#: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:122 -msgid "Profile Name" -msgstr "" - #: application/views/stationsetup/create.php:17 msgid "Station Logbook Name" msgstr "" @@ -9409,6 +10202,11 @@ msgstr "" msgid "Link Location" msgstr "" +#: application/views/stationsetup/linkedlocations.php:31 +#: application/views/stationsetup/stationsetup.php:122 +msgid "Profile Name" +msgstr "" + #: application/views/stationsetup/linkedlocations.php:34 msgid "Unlink Station Location" msgstr "" @@ -9433,12 +10231,52 @@ msgstr "" msgid "Station Locations" msgstr "" +#: application/views/stationsetup/stationsetup.php:95 +msgid "" +"Station Locations define operating locations, such as your QTH, a friends " +"QTH, or a portable station." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:96 +msgid "Similar to logbooks, a station profile keeps a set of QSOs together." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:97 +msgid "" +"Only one station may be active at a time. In the table below this is shown " +"with the -Active Station- badge." +msgstr "" + #: application/views/stationsetup/stationsetup.php:98 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." msgstr "" +#: application/views/stationsetup/stationsetup.php:101 +msgid "Create a Station Location" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:105 +msgid "" +"Attention: You need to set an active station location. Go to Callsign-" +">Station Location to select one." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:111 +msgid "" +"Due to recent changes within Wavelog you need to reassign QSOs to your " +"station profiles." +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Maintenance" +msgstr "" + +#: application/views/stationsetup/stationsetup.php:113 +msgid "Please reassign them at " +msgstr "" + #: application/views/stationsetup/stationsetup.php:127 msgid "Linked" msgstr "" @@ -9655,9 +10493,10 @@ msgid "4. Step" msgstr "" #: application/views/themes/index.php:73 +#, php-format msgid "" "Click here on 'Add a Theme' and type in the necessary data. Type in the " -"filenames for the logos without the file extension '.png'" +"filenames for the logos %swithout%s the file extension '.png'" msgstr "" #: application/views/themes/index.php:83 @@ -9720,6 +10559,10 @@ msgstr "" msgid "Update DXCC Data" msgstr "" +#: application/views/update/index.php:30 +msgid "Status:" +msgstr "" + #: application/views/update/index.php:34 msgid "Apply DXCC Data to Logbook" msgstr "" @@ -9733,36 +10576,43 @@ msgid "" "\t\t\t\t\t\t\tand update existing metadata as well, in case it has changed." msgstr "" -#: application/views/update/index.php:40 +#: application/views/update/index.php:45 msgid "Check QSOs missing DXCC data" msgstr "" -#: application/views/update/index.php:42 +#: application/views/update/index.php:54 application/views/update/index.php:95 msgid "Re-check all QSOs in logbook" msgstr "" -#: application/views/update/index.php:45 +#: application/views/update/index.php:59 msgid "Apply Continent Data to Logbook" msgstr "" -#: application/views/update/index.php:47 +#: application/views/update/index.php:61 msgid "" "This function can be used to update QSO continent information for all QSOs " "in Wavelog missing that information." msgstr "" -#: application/views/update/index.php:49 +#: application/views/update/index.php:68 msgid "Check QSOs missing continent data" msgstr "" -#: application/views/update/index.php:59 +#: application/views/update/index.php:80 msgid "Here you can update QSOs with missing distance information." msgstr "" -#: application/views/update/index.php:60 +#: application/views/update/index.php:86 msgid "Update distance data" msgstr "" +#: application/views/update/index.php:89 +msgid "" +"Use the following button to update the distance information for all your " +"QSOs. Depending on the number of QSOs this might take some time to execute. " +"Please be patient." +msgstr "" + #: application/views/user/delete.php:5 msgid "Delete User Account" msgstr "" @@ -9792,13 +10642,13 @@ msgid "General Information" msgstr "" #: application/views/user/edit.php:52 application/views/user/login.php:58 -#: application/views/user/login.php:67 application/views/user/login.php:68 +#: application/views/user/login.php:69 application/views/user/login.php:70 #: application/views/user/profile.php:14 msgid "Username" msgstr "" #: application/views/user/edit.php:64 application/views/user/login.php:59 -#: application/views/user/login.php:71 application/views/user/login.php:72 +#: application/views/user/login.php:73 application/views/user/login.php:74 #: application/views/user/reset_password.php:21 #: application/views/user/reset_password.php:23 #: application/views/user/reset_password.php:30 @@ -9841,10 +10691,6 @@ msgstr "" msgid "Choose Wavelog language." msgstr "" -#: application/views/user/edit.php:179 -msgid "Timezone" -msgstr "" - #: application/views/user/edit.php:187 msgid "Date Format" msgstr "" @@ -10178,6 +11024,122 @@ msgstr "" msgid "You can reset your password here." msgstr "" +#: application/views/user/index.php:2 +msgid "Do you really want to send this user a password-reset link?" +msgstr "" + +#: application/views/user/index.php:6 +msgid "Please Wait ..." +msgstr "" + +#: application/views/user/index.php:9 +msgid "Password-reset e-mail sent to user:" +msgstr "" + +#: application/views/user/index.php:30 +msgid "User List" +msgstr "" + +#: application/views/user/index.php:33 +msgid "Wavelog needs at least one user configured in order to operate." +msgstr "" + +#: application/views/user/index.php:34 +msgid "" +"Users can be assigned roles which give them different permissions, such as " +"adding QSOs to the logbook and accessing Wavelog APIs." +msgstr "" + +#: application/views/user/index.php:35 +msgid "" +"The currently logged-in user is displayed at the upper-right of each page." +msgstr "" + +#: application/views/user/index.php:36 +msgid "" +"With the password reset button, you can send a user an email containing a " +"link to reset their password. To achieve this, ensure that the email " +"settings in the global options are configured correctly." +msgstr "" + +#: application/views/user/index.php:38 +msgid "Create user" +msgstr "" + +#: application/views/user/index.php:39 +msgid "Refresh List" +msgstr "" + +#: application/views/user/index.php:49 +msgid "Type" +msgstr "" + +#: application/views/user/index.php:50 +msgid "Last seen" +msgstr "" + +#: application/views/user/index.php:53 +msgid "Password Reset" +msgstr "" + +#: application/views/user/index.php:55 application/views/user/index.php:150 +msgid "Impersonate" +msgstr "" + +#: application/views/user/index.php:82 +msgid "Never" +msgstr "" + +#: application/views/user/index.php:86 +msgid "Locations" +msgstr "" + +#: application/views/user/index.php:88 +msgid "Logbooks" +msgstr "" + +#: application/views/user/index.php:90 +msgid "Last QSO:" +msgstr "" + +#: application/views/user/index.php:92 +msgid "No QSOs in Log" +msgstr "" + +#: application/views/user/index.php:111 +msgid "Impersonate User" +msgstr "" + +#: application/views/user/index.php:116 +msgid "" +"You are about to impersonate another user. To return to your admin account, " +"you'll need to logout and log back in as admin." +msgstr "" + +#: application/views/user/index.php:117 +msgid "Do you want to impersonate this user?" +msgstr "" + +#: application/views/user/index.php:121 +msgid "Username:" +msgstr "" + +#: application/views/user/index.php:125 +msgid "Name:" +msgstr "" + +#: application/views/user/index.php:129 +msgid "Callsign:" +msgstr "" + +#: application/views/user/index.php:133 +msgid "E-Mail:" +msgstr "" + +#: application/views/user/index.php:137 +msgid "Last Seen:" +msgstr "" + #: application/views/user/login.php:36 msgid "MAINTENANCE MODE" msgstr "" @@ -10192,96 +11154,17 @@ msgstr "" #: application/views/user/login.php:60 #, php-format -msgid "" -"More Information about Wavelog on Github." +msgid "More Information about Wavelog on %sGithub%s." msgstr "" -#: application/views/user/login.php:77 +#: application/views/user/login.php:79 msgid "Forgot your password?" msgstr "" -#: application/views/user/login.php:83 +#: application/views/user/login.php:85 msgid "Keep me logged in" msgstr "" -#: application/views/user/main.php:2 -msgid "Do you really want to send this user a password-reset link?" -msgstr "" - -#: application/views/user/main.php:6 -msgid "Please Wait ..." -msgstr "" - -#: application/views/user/main.php:9 -msgid "Password-reset e-mail sent to user:" -msgstr "" - -#: application/views/user/main.php:30 -msgid "User List" -msgstr "" - -#: application/views/user/main.php:33 -msgid "Wavelog needs at least one user configured in order to operate." -msgstr "" - -#: application/views/user/main.php:34 -msgid "" -"Users can be assigned roles which give them different permissions, such as " -"adding QSOs to the logbook and accessing Wavelog APIs." -msgstr "" - -#: application/views/user/main.php:35 -msgid "" -"The currently logged-in user is displayed at the upper-right of each page." -msgstr "" - -#: application/views/user/main.php:36 -msgid "" -"With the password reset button, you can send a user an email containing a " -"link to reset their password. To achieve this, ensure that the email " -"settings in the global options are configured correctly." -msgstr "" - -#: application/views/user/main.php:38 -msgid "Create user" -msgstr "" - -#: application/views/user/main.php:39 -msgid "Refresh List" -msgstr "" - -#: application/views/user/main.php:49 -msgid "Type" -msgstr "" - -#: application/views/user/main.php:50 -msgid "Last seen" -msgstr "" - -#: application/views/user/main.php:53 -msgid "Password Reset" -msgstr "" - -#: application/views/user/main.php:79 -msgid "Never" -msgstr "" - -#: application/views/user/main.php:83 -msgid "Locations" -msgstr "" - -#: application/views/user/main.php:85 -msgid "Logbooks" -msgstr "" - -#: application/views/user/main.php:87 -msgid "Last QSO:" -msgstr "" - -#: application/views/user/main.php:89 -msgid "No QSOs in Log" -msgstr "" - #: application/views/user/profile.php:19 msgid "Level" msgstr "" @@ -10331,118 +11214,118 @@ msgstr "" msgid "QSL Management" msgstr "" -#: application/views/view_log/qso.php:128 +#: application/views/view_log/qso.php:131 msgid "Total Distance" msgstr "" -#: application/views/view_log/qso.php:221 +#: application/views/view_log/qso.php:224 msgid "Antenna Azimuth" msgstr "" -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:231 msgid "Antenna Elevation" msgstr "" -#: application/views/view_log/qso.php:370 +#: application/views/view_log/qso.php:373 msgid "QSL Card has been sent via the bureau" msgstr "" -#: application/views/view_log/qso.php:372 +#: application/views/view_log/qso.php:375 msgid "QSL Card has been sent via direct" msgstr "" -#: application/views/view_log/qso.php:374 +#: application/views/view_log/qso.php:377 msgid "QSL Card has been sent electronically" msgstr "" -#: application/views/view_log/qso.php:376 +#: application/views/view_log/qso.php:379 msgid "QSL Card has been sent via manager" msgstr "" -#: application/views/view_log/qso.php:378 +#: application/views/view_log/qso.php:381 msgid "QSL Card has been sent" msgstr "" -#: application/views/view_log/qso.php:387 +#: application/views/view_log/qso.php:390 msgid "QSL Card has been received via the bureau" msgstr "" -#: application/views/view_log/qso.php:389 +#: application/views/view_log/qso.php:392 msgid "QSL Card has been received via direct" msgstr "" -#: application/views/view_log/qso.php:391 +#: application/views/view_log/qso.php:394 msgid "QSL Card has been received electronically" msgstr "" -#: application/views/view_log/qso.php:393 +#: application/views/view_log/qso.php:396 msgid "QSL Card has been received via manager" msgstr "" -#: application/views/view_log/qso.php:395 +#: application/views/view_log/qso.php:398 msgid "QSL Card has been received" msgstr "" -#: application/views/view_log/qso.php:404 +#: application/views/view_log/qso.php:407 msgid "This station uses LoTW." msgstr "" -#: application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:414 -#: application/views/view_log/qso.php:419 -#: application/views/view_log/qso.php:424 +#: application/views/view_log/qso.php:412 +#: application/views/view_log/qso.php:417 +#: application/views/view_log/qso.php:422 +#: application/views/view_log/qso.php:427 msgid "This QSO was confirmed on" msgstr "" -#: application/views/view_log/qso.php:435 +#: application/views/view_log/qso.php:438 msgid "More QSOs" msgstr "" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:506 msgid "Details" msgstr "" -#: application/views/view_log/qso.php:630 +#: application/views/view_log/qso.php:633 msgid "Uploaded QSL Card front image" msgstr "" -#: application/views/view_log/qso.php:635 +#: application/views/view_log/qso.php:638 msgid "Upload QSL Card image" msgstr "" -#: application/views/view_log/qso.php:640 +#: application/views/view_log/qso.php:643 msgid "Uploaded QSL Card back image" msgstr "" -#: application/views/view_log/qso.php:656 +#: application/views/view_log/qso.php:659 msgid "Mark QSL Received (Electronic)" msgstr "" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:665 msgid "Mark QSL Card Requested (Bureau)" msgstr "" -#: application/views/view_log/qso.php:664 +#: application/views/view_log/qso.php:667 msgid "Mark QSL Card Requested (Direct)" msgstr "" -#: application/views/view_log/qso.php:679 +#: application/views/view_log/qso.php:682 msgid "eQSL picture" msgstr "" -#: application/views/visitor/layout/footer.php:240 +#: application/views/visitor/layout/footer.php:242 msgid "CSV" msgstr "" -#: application/views/visitor/layout/header.php:75 +#: application/views/visitor/layout/header.php:74 msgid "OQRS" msgstr "" -#: application/views/visitor/layout/header.php:83 +#: application/views/visitor/layout/header.php:82 msgid "Visit Wavelog on Github" msgstr "" -#: application/views/visitor/layout/header.php:97 +#: application/views/visitor/layout/header.php:95 msgid "Please enter a callsign!" msgstr "" diff --git a/install/assets/css/installer.css b/install/assets/css/installer.css index fbdf737e7..bce66ff5e 100644 --- a/install/assets/css/installer.css +++ b/install/assets/css/installer.css @@ -269,4 +269,19 @@ div.alert-danger { --bs-btn-hover-color: inherit !important; --bs-btn-active-bg: #1b1b1b; --bs-btn-active-color: inherit !important; +} + +@media screen and (max-width:991px){ + .multiselect-container button.dropdown-item { + pointer-events:none; + } + .multiselect-container span.form-check input { + pointer-events: all; + } + .multiselect-container span.form-check label { + pointer-events: none; + } + .btn-group .multiselect-container .multiselect-option input[type="radio"] { + display: block !important; + } } \ No newline at end of file diff --git a/install/config/config.php b/install/config/config.php index bde541210..246484332 100644 --- a/install/config/config.php +++ b/install/config/config.php @@ -669,4 +669,30 @@ $config['disable_oqrs'] = false; $config['special_callsign'] = false; // hides the usermenu; takes action only if "special_callsign" is true -$config['sc_hide_usermenu'] = true; \ No newline at end of file +$config['sc_hide_usermenu'] = true; + + +/* +|-------------------------------------------------------------------------- +| Impersonate +|-------------------------------------------------------------------------- +| +| This config switch disables the impersonate feature. This feauture is used to impersonate another user. +| Impersonate is enabled by default. To disable it, set the value to false. +| +*/ + +$config['disable_impersonate'] = false; + + +/* +|-------------------------------------------------------------------------- +| Cronmanager Allow Insecure +|-------------------------------------------------------------------------- +| +| The cronmanager needs http or https with a valid certificate to work. +| If you want to use it with https and a self-signed certificate, you need to set this to true. +| +*/ + +$config['cron_allow_insecure'] = false; \ No newline at end of file diff --git a/install/includes/gettext/gettext_conf.php b/install/includes/gettext/gettext_conf.php index b0b1bf8e4..db7dd8bcd 100644 --- a/install/includes/gettext/gettext_conf.php +++ b/install/includes/gettext/gettext_conf.php @@ -16,116 +16,156 @@ $gt_conf['lang_cookie'] = 'install_lang'; $gt_conf['languages'] = array( - 'bulgarian' => array( - 'name' => 'Български', - 'name_en' => 'Bulgarian', - 'folder' => 'bulgarian', - 'locale' => 'bg-BG', - 'gettext' => 'bg_BG', - 'direction' => 'ltr', - 'code' => 'bg', - 'flag' => 'bg', - ), - 'chinese_simplified' => array( - 'name' => '中文(简体)', - 'name_en' => 'Chinese (Simplified)', - 'folder' => 'chinese_simplified', - 'locale' => 'zh-CN', - 'gettext' => 'zh_CN', - 'direction' => 'ltr', - 'code' => 'zh-Hans', - 'flag' => 'cn', - ), - 'czech' => array( - 'name' => 'Čeština', - 'name_en' => 'Czech', - 'folder' => 'czech', - 'locale' => 'cs-CZ', - 'gettext' => 'cs_CZ', - 'direction' => 'ltr', - 'code' => 'cs', - 'flag' => 'cz', - ), - 'dutch' => array( - 'name' => 'Nederlands', - 'name_en' => 'Dutch', - 'folder' => 'dutch', - 'locale' => 'nl-NL', - 'gettext' => 'nl_NL', - 'direction' => 'ltr', - 'code' => 'nl', - 'flag' => 'nl', - ), - 'english' => array( - 'name' => 'English', - 'name_en' => 'English', - 'folder' => 'english', - 'locale' => 'en-US', - 'gettext' => 'en_US', - 'direction' => 'ltr', - 'code' => 'en', - 'flag' => 'us', - ), - 'finnish' => array( - 'name' => 'Suomi', - 'name_en' => 'Finnish', - 'folder' => 'finnish', - 'locale' => 'fi-FI', - 'gettext' => 'fi_FI', - 'direction' => 'ltr', - 'code' => 'fi', - 'flag' => 'fi', - ), - 'french' => array( - 'name' => 'Français', - 'name_en' => 'French', - 'folder' => 'french', - 'locale' => 'fr-FR', - 'gettext' => 'fr_FR', - 'direction' => 'ltr', - 'code' => 'fr', - 'flag' => 'fr', - ), - 'german' => array( - 'name' => 'Deutsch', - 'name_en' => 'German', - 'folder' => 'german', - 'locale' => 'de-DE', - 'gettext' => 'de_DE', - 'direction' => 'ltr', - 'code' => 'de', - 'flag' => 'de', - ), - 'greek' => array( - 'name' => 'Ελληνικά', - 'name_en' => 'Greek', - 'folder' => 'greek', - 'locale' => 'el-GR', - 'gettext' => 'el_GR', - 'direction' => 'ltr', - 'code' => 'el', - 'flag' => 'gr', - ), - 'italian' => array( - 'name' => 'Italiano', - 'name_en' => 'Italian', - 'folder' => 'italian', - 'locale' => 'it-IT', - 'gettext' => 'it_IT', - 'direction' => 'ltr', - 'code' => 'it', - 'flag' => 'it', - ), - 'polish' => array( - 'name' => 'Polski', - 'name_en' => 'Polish', - 'folder' => 'polish', - 'locale' => 'pl-PL', - 'gettext' => 'pl_PL', - 'direction' => 'ltr', - 'code' => 'pl', - 'flag' => 'pl', - ), + 'albanian' => array( + 'name' => 'Shqip', + 'name_en' => 'Albanian', + 'folder' => 'albanian', + 'locale' => 'sq', + 'gettext' => 'sq', + 'direction' => 'ltr', + 'code' => 'sq', + 'flag' => 'al', + ), + 'bosnian' => array( + 'name' => 'Bosanski', + 'name_en' => 'Bosnian', + 'folder' => 'bosnian', + 'locale' => 'bs', + 'gettext' => 'bs', + 'direction' => 'ltr', + 'code' => 'bs', + 'flag' => 'ba', + ), + 'bulgarian' => array( + 'name' => 'Български', + 'name_en' => 'Bulgarian', + 'folder' => 'bulgarian', + 'locale' => 'bg-BG', + 'gettext' => 'bg_BG', + 'direction' => 'ltr', + 'code' => 'bg', + 'flag' => 'bg', + ), + 'chinese_simplified' => array( + 'name' => '中文(简体)', + 'name_en' => 'Chinese (Simplified)', + 'folder' => 'chinese_simplified', + 'locale' => 'zh-CN', + 'gettext' => 'zh_CN', + 'direction' => 'ltr', + 'code' => 'zh-Hans', + 'flag' => 'cn', + ), + 'croatian' => array( + 'name' => 'Hrvatski', + 'name_en' => 'Croatian', + 'folder' => 'croatian', + 'locale' => 'hr', + 'gettext' => 'hr', + 'direction' => 'ltr', + 'code' => 'hr', + 'flag' => 'hr', + ), + 'czech' => array( + 'name' => 'Čeština', + 'name_en' => 'Czech', + 'folder' => 'czech', + 'locale' => 'cs-CZ', + 'gettext' => 'cs_CZ', + 'direction' => 'ltr', + 'code' => 'cs', + 'flag' => 'cz', + ), + 'dutch' => array( + 'name' => 'Nederlands', + 'name_en' => 'Dutch', + 'folder' => 'dutch', + 'locale' => 'nl-NL', + 'gettext' => 'nl_NL', + 'direction' => 'ltr', + 'code' => 'nl', + 'flag' => 'nl', + ), + 'english' => array( + 'name' => 'English', + 'name_en' => 'English', + 'folder' => 'english', + 'locale' => 'en-US', + 'gettext' => 'en_US', + 'direction' => 'ltr', + 'code' => 'en', + 'flag' => 'us', + ), + 'finnish' => array( + 'name' => 'Suomi', + 'name_en' => 'Finnish', + 'folder' => 'finnish', + 'locale' => 'fi-FI', + 'gettext' => 'fi_FI', + 'direction' => 'ltr', + 'code' => 'fi', + 'flag' => 'fi', + ), + 'french' => array( + 'name' => 'Français', + 'name_en' => 'French', + 'folder' => 'french', + 'locale' => 'fr-FR', + 'gettext' => 'fr_FR', + 'direction' => 'ltr', + 'code' => 'fr', + 'flag' => 'fr', + ), + 'german' => array( + 'name' => 'Deutsch', + 'name_en' => 'German', + 'folder' => 'german', + 'locale' => 'de-DE', + 'gettext' => 'de_DE', + 'direction' => 'ltr', + 'code' => 'de', + 'flag' => 'de', + ), + 'greek' => array( + 'name' => 'Ελληνικά', + 'name_en' => 'Greek', + 'folder' => 'greek', + 'locale' => 'el-GR', + 'gettext' => 'el_GR', + 'direction' => 'ltr', + 'code' => 'el', + 'flag' => 'gr', + ), + 'italian' => array( + 'name' => 'Italiano', + 'name_en' => 'Italian', + 'folder' => 'italian', + 'locale' => 'it-IT', + 'gettext' => 'it_IT', + 'direction' => 'ltr', + 'code' => 'it', + 'flag' => 'it', + ), + 'montenegrin' => array( + 'name' => 'Crnogorski', + 'name_en' => 'Montenegrin', + 'folder' => 'montenegrin', + 'locale' => 'cnr', + 'gettext' => 'cnr', + 'direction' => 'ltr', + 'code' => 'cnr', + 'flag' => 'me', + ), + 'polish' => array( + 'name' => 'Polski', + 'name_en' => 'Polish', + 'folder' => 'polish', + 'locale' => 'pl-PL', + 'gettext' => 'pl_PL', + 'direction' => 'ltr', + 'code' => 'pl', + 'flag' => 'pl', + ), 'portuguese' => array( 'name' => 'Português', 'name_en' => 'Portuguese', @@ -136,44 +176,54 @@ $gt_conf['languages'] = array( 'code' => 'pt', 'flag' => 'pt', ), - 'russian' => array( - 'name' => 'Русский', - 'name_en' => 'Russian', - 'folder' => 'russian', - 'locale' => 'ru-RU', - 'gettext' => 'ru_RU', - 'direction' => 'ltr', - 'code' => 'ru', - 'flag' => 'ru', - ), - 'spanish' => array( - 'name' => 'Español', - 'name_en' => 'Spanish', - 'folder' => 'spanish', - 'locale' => 'es-ES', - 'gettext' => 'es_ES', - 'direction' => 'ltr', - 'code' => 'es', - 'flag' => 'es', - ), - 'swedish' => array( - 'name' => 'Svenska', - 'name_en' => 'Swedish', - 'folder' => 'swedish', - 'locale' => 'sv-SE', - 'gettext' => 'sv_SE', - 'direction' => 'ltr', - 'code' => 'sv', - 'flag' => 'se', - ), - 'turkish' => array( - 'name' => 'Türkçe', - 'name_en' => 'Turkish', - 'folder' => 'turkish', - 'locale' => 'tr-TR', - 'gettext' => 'tr_TR', - 'direction' => 'ltr', - 'code' => 'tr', - 'flag' => 'tr', - ) + 'russian' => array( + 'name' => 'Русский', + 'name_en' => 'Russian', + 'folder' => 'russian', + 'locale' => 'ru-RU', + 'gettext' => 'ru_RU', + 'direction' => 'ltr', + 'code' => 'ru', + 'flag' => 'ru', + ), + 'serbian' => array( + 'name' => 'Srpski', + 'name_en' => 'Serbian', + 'folder' => 'serbian', + 'locale' => 'sr', + 'gettext' => 'sr', + 'direction' => 'ltr', + 'code' => 'sr', + 'flag' => 'rs', + ), + 'spanish' => array( + 'name' => 'Español', + 'name_en' => 'Spanish', + 'folder' => 'spanish', + 'locale' => 'es-ES', + 'gettext' => 'es_ES', + 'direction' => 'ltr', + 'code' => 'es', + 'flag' => 'es', + ), + 'swedish' => array( + 'name' => 'Svenska', + 'name_en' => 'Swedish', + 'folder' => 'swedish', + 'locale' => 'sv-SE', + 'gettext' => 'sv_SE', + 'direction' => 'ltr', + 'code' => 'sv', + 'flag' => 'se', + ), + 'turkish' => array( + 'name' => 'Türkçe', + 'name_en' => 'Turkish', + 'folder' => 'turkish', + 'locale' => 'tr-TR', + 'gettext' => 'tr_TR', + 'direction' => 'ltr', + 'code' => 'tr', + 'flag' => 'tr', + ) ); diff --git a/install/includes/gettext/lang_src/installer.pot b/install/includes/gettext/lang_src/installer.pot index 5572384c9..69e88b449 100644 --- a/install/includes/gettext/lang_src/installer.pot +++ b/install/includes/gettext/lang_src/installer.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-08 14:17+0000\n" +"POT-Creation-Date: 2024-08-12 09:45+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -36,66 +36,86 @@ msgid "not detected" msgstr "" #: install/includes/interface_assets/footer.php:50 -msgid "Bulgarian" +msgid "Albanian" msgstr "" #: install/includes/interface_assets/footer.php:51 -msgid "Chinese (Simplified)" +msgid "Bosnian" msgstr "" #: install/includes/interface_assets/footer.php:52 -msgid "Czech" +msgid "Bulgarian" msgstr "" #: install/includes/interface_assets/footer.php:53 -msgid "Dutch" +msgid "Chinese (Simplified)" msgstr "" #: install/includes/interface_assets/footer.php:54 -msgid "English" +msgid "Croatian" msgstr "" #: install/includes/interface_assets/footer.php:55 -msgid "Finnish" +msgid "Czech" msgstr "" #: install/includes/interface_assets/footer.php:56 -msgid "French" +msgid "Dutch" msgstr "" #: install/includes/interface_assets/footer.php:57 -msgid "German" +msgid "English" msgstr "" #: install/includes/interface_assets/footer.php:58 -msgid "Greek" +msgid "Finnish" msgstr "" #: install/includes/interface_assets/footer.php:59 -msgid "Italian" +msgid "French" msgstr "" #: install/includes/interface_assets/footer.php:60 -msgid "Portuguese" +msgid "German" msgstr "" #: install/includes/interface_assets/footer.php:61 -msgid "Polish" +msgid "Greek" msgstr "" #: install/includes/interface_assets/footer.php:62 -msgid "Russian" +msgid "Italian" msgstr "" #: install/includes/interface_assets/footer.php:63 -msgid "Spanish" +msgid "Montenegrin" msgstr "" #: install/includes/interface_assets/footer.php:64 -msgid "Swedish" +msgid "Polish" msgstr "" #: install/includes/interface_assets/footer.php:65 +msgid "Portuguese" +msgstr "" + +#: install/includes/interface_assets/footer.php:66 +msgid "Russian" +msgstr "" + +#: install/includes/interface_assets/footer.php:67 +msgid "Serbian" +msgstr "" + +#: install/includes/interface_assets/footer.php:68 +msgid "Spanish" +msgstr "" + +#: install/includes/interface_assets/footer.php:69 +msgid "Swedish" +msgstr "" + +#: install/includes/interface_assets/footer.php:70 msgid "Turkish" msgstr "" diff --git a/install/includes/gettext/locale/bg_BG/LC_MESSAGES/installer.po b/install/includes/gettext/locale/bg_BG/LC_MESSAGES/installer.po index ec1dbb6f5..6631ade73 100644 --- a/install/includes/gettext/locale/bg_BG/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/bg_BG/LC_MESSAGES/installer.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-08 14:17+0000\n" +"POT-Creation-Date: 2024-08-12 09:45+0000\n" "PO-Revision-Date: 2024-06-05 15:15+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -37,66 +37,86 @@ msgid "not detected" msgstr "" #: install/includes/interface_assets/footer.php:50 -msgid "Bulgarian" +msgid "Albanian" msgstr "" #: install/includes/interface_assets/footer.php:51 -msgid "Chinese (Simplified)" +msgid "Bosnian" msgstr "" #: install/includes/interface_assets/footer.php:52 -msgid "Czech" +msgid "Bulgarian" msgstr "" #: install/includes/interface_assets/footer.php:53 -msgid "Dutch" +msgid "Chinese (Simplified)" msgstr "" #: install/includes/interface_assets/footer.php:54 -msgid "English" +msgid "Croatian" msgstr "" #: install/includes/interface_assets/footer.php:55 -msgid "Finnish" +msgid "Czech" msgstr "" #: install/includes/interface_assets/footer.php:56 -msgid "French" +msgid "Dutch" msgstr "" #: install/includes/interface_assets/footer.php:57 -msgid "German" +msgid "English" msgstr "" #: install/includes/interface_assets/footer.php:58 -msgid "Greek" +msgid "Finnish" msgstr "" #: install/includes/interface_assets/footer.php:59 -msgid "Italian" +msgid "French" msgstr "" #: install/includes/interface_assets/footer.php:60 -msgid "Portuguese" +msgid "German" msgstr "" #: install/includes/interface_assets/footer.php:61 -msgid "Polish" +msgid "Greek" msgstr "" #: install/includes/interface_assets/footer.php:62 -msgid "Russian" +msgid "Italian" msgstr "" #: install/includes/interface_assets/footer.php:63 -msgid "Spanish" +msgid "Montenegrin" msgstr "" #: install/includes/interface_assets/footer.php:64 -msgid "Swedish" +msgid "Polish" msgstr "" #: install/includes/interface_assets/footer.php:65 +msgid "Portuguese" +msgstr "" + +#: install/includes/interface_assets/footer.php:66 +msgid "Russian" +msgstr "" + +#: install/includes/interface_assets/footer.php:67 +msgid "Serbian" +msgstr "" + +#: install/includes/interface_assets/footer.php:68 +msgid "Spanish" +msgstr "" + +#: install/includes/interface_assets/footer.php:69 +msgid "Swedish" +msgstr "" + +#: install/includes/interface_assets/footer.php:70 msgid "Turkish" msgstr "" diff --git a/install/includes/gettext/locale/bs/LC_MESSAGES/installer.mo b/install/includes/gettext/locale/bs/LC_MESSAGES/installer.mo new file mode 100644 index 000000000..133ce65da Binary files /dev/null and b/install/includes/gettext/locale/bs/LC_MESSAGES/installer.mo differ diff --git a/install/includes/gettext/locale/bs/LC_MESSAGES/installer.po b/install/includes/gettext/locale/bs/LC_MESSAGES/installer.po new file mode 100644 index 000000000..9455e7214 --- /dev/null +++ b/install/includes/gettext/locale/bs/LC_MESSAGES/installer.po @@ -0,0 +1,732 @@ +# WAVELOG PO FILE +# Copyright (c) 2024 Wavelog by DF2ET, DJ7NT, HB9HIL and LA8AJA. +# This file is distributed under the MIT licence. +# +# Fabian Berg <80885850+HB9HIL@users.noreply.github.com>, 2024. +msgid "" +msgstr "" +"Report-Msgid-Bugs-To: translations@wavelog.org\n" +"POT-Creation-Date: 2024-08-12 09:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: install/includes/core/database_class.php:59 +msgid "Connection Error: " +msgstr "" + +#: install/includes/core/database_class.php:63 +msgid "Unable to create database: " +msgstr "" + +#: install/includes/core/database_class.php:68 +msgid "Unable to select database: " +msgstr "" + +#: install/includes/core/database_class.php:74 +msgid "Database is not empty." +msgstr "" + +#: install/includes/install_config/install_lib.php:123 +msgid "not detected" +msgstr "" + +#: install/includes/interface_assets/footer.php:50 +msgid "Albanian" +msgstr "" + +#: install/includes/interface_assets/footer.php:51 +msgid "Bosnian" +msgstr "" + +#: install/includes/interface_assets/footer.php:52 +msgid "Bulgarian" +msgstr "" + +#: install/includes/interface_assets/footer.php:53 +msgid "Chinese (Simplified)" +msgstr "" + +#: install/includes/interface_assets/footer.php:54 +msgid "Croatian" +msgstr "" + +#: install/includes/interface_assets/footer.php:55 +msgid "Czech" +msgstr "" + +#: install/includes/interface_assets/footer.php:56 +msgid "Dutch" +msgstr "" + +#: install/includes/interface_assets/footer.php:57 +msgid "English" +msgstr "" + +#: install/includes/interface_assets/footer.php:58 +msgid "Finnish" +msgstr "" + +#: install/includes/interface_assets/footer.php:59 +msgid "French" +msgstr "" + +#: install/includes/interface_assets/footer.php:60 +msgid "German" +msgstr "" + +#: install/includes/interface_assets/footer.php:61 +msgid "Greek" +msgstr "" + +#: install/includes/interface_assets/footer.php:62 +msgid "Italian" +msgstr "" + +#: install/includes/interface_assets/footer.php:63 +msgid "Montenegrin" +msgstr "" + +#: install/includes/interface_assets/footer.php:64 +msgid "Polish" +msgstr "" + +#: install/includes/interface_assets/footer.php:65 +msgid "Portuguese" +msgstr "" + +#: install/includes/interface_assets/footer.php:66 +msgid "Russian" +msgstr "" + +#: install/includes/interface_assets/footer.php:67 +msgid "Serbian" +msgstr "" + +#: install/includes/interface_assets/footer.php:68 +msgid "Spanish" +msgstr "" + +#: install/includes/interface_assets/footer.php:69 +msgid "Swedish" +msgstr "" + +#: install/includes/interface_assets/footer.php:70 +msgid "Turkish" +msgstr "" + +#: install/includes/interface_assets/header.php:94 +msgid "Install | Wavelog" +msgstr "" + +#: install/index.php:30 +msgid "1. Welcome" +msgstr "" + +#: install/index.php:33 +msgid "2. Pre Checks" +msgstr "" + +#: install/index.php:36 +msgid "3. Configuration" +msgstr "" + +#: install/index.php:39 +msgid "4. Database" +msgstr "" + +#: install/index.php:42 +msgid "5. First User" +msgstr "" + +#: install/index.php:45 +msgid "6. Finish" +msgstr "" + +#: install/index.php:62 +msgid "Welcome to the Wavelog Installer" +msgstr "" + +#: install/index.php:63 +msgid "" +"This installer will guide you through the necessary steps for the " +"installation of Wavelog.
Wavelog is a powerful web-based amateur radio " +"logging software. Follow the steps in each tab to configure and install " +"Wavelog on your server." +msgstr "" + +#: install/index.php:64 +msgid "Discussions" +msgstr "" + +#: install/index.php:64 +#, php-format +msgid "" +"If you encounter any issues or have questions, refer to the documentation " +"(%s) or community forum (%s) on Github for assistance." +msgstr "" + +#: install/index.php:64 +msgid "Wiki" +msgstr "" + +#: install/index.php:65 +msgid "Thank you for installing Wavelog!" +msgstr "" + +#: install/index.php:66 install/index.php:69 install/index.php:1036 +msgid "Language" +msgstr "" + +#: install/index.php:79 +msgid "Select a language" +msgstr "" + +#: install/index.php:91 install/index.php:421 +msgid "Close" +msgstr "" + +#: install/index.php:101 +msgid "PHP Modules" +msgstr "" + +#: install/index.php:108 +msgid "Version" +msgstr "" + +#: install/index.php:109 +#, php-format +msgctxt "PHP Version" +msgid "min. %s (recommended %s+)" +msgstr "" + +#: install/index.php:136 +msgid "Installed" +msgstr "" + +#: install/index.php:136 +msgid "Not Installed" +msgstr "" + +#: install/index.php:144 +msgid "PHP Settings" +msgstr "" + +#: install/index.php:234 +msgid "Folder Write Permissions" +msgstr "" + +#: install/index.php:240 install/index.php:251 install/index.php:262 +#: install/index.php:273 install/index.php:284 +msgid "Success" +msgstr "" + +#: install/index.php:243 install/index.php:254 install/index.php:265 +#: install/index.php:276 install/index.php:287 +msgid "Failed" +msgstr "" + +#: install/index.php:294 +msgid "Web Server" +msgstr "" + +#: install/index.php:297 +msgid "Version:" +msgstr "" + +#: install/index.php:304 +msgid "Important note for nginx users!" +msgstr "" + +#: install/index.php:305 +msgid "" +"Since you are using nginx as web server please make sure that you have made " +"the changes described in the Wiki before continuing." +msgstr "" + +#: install/index.php:314 +msgid "Some Checks have failed!" +msgstr "" + +#: install/index.php:315 +msgid "Check your PHP settings and install missing modules if necessary." +msgstr "" + +#: install/index.php:316 +msgid "" +"After that, you have to restart your webserver and start the installer again." +msgstr "" + +#: install/index.php:317 +#, php-format +msgid "" +"In case of failed 'Folder Write Permissions' check out our Wiki here." +msgstr "" + +#: install/index.php:323 +msgid "You have some warnings!" +msgstr "" + +#: install/index.php:324 +msgid "" +"Some of the settings are not optimal. You can proceed with the installer but " +"be aware that you could run into problems while using Wavelog." +msgstr "" + +#: install/index.php:331 +msgid "All Checks are OK. You can continue." +msgstr "" + +#: install/index.php:345 +msgid "" +"Configure some basic parameters for your wavelog instance. You can change " +"them later in 'application/config/config.php'" +msgstr "" + +#: install/index.php:347 +msgid "Directory" +msgstr "" + +#: install/index.php:347 +msgid "" +"The 'Directory' is basically your subfolder of the webroot In normal " +"conditions the prefilled value is doing it's job. It also can be empty." +msgstr "" + +#: install/index.php:352 +msgid "No slash before or after the directory. Just the name of the folder." +msgstr "" + +#: install/index.php:357 +#, php-format +msgid "" +"This is the complete URL where your Wavelog Instance will be available. If " +"you run this installer locally but want to place Wavelog behind a Reverse " +"Proxy with SSL you should type in the new URL here (e.g. %s instead of %s). " +"Don't forget to include the directory from above." +msgstr "" + +#: install/index.php:357 +msgid "Website URL" +msgstr "" + +#: install/index.php:360 +msgid "" +"This field
\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\t- can't be empty
\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'
\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'" +msgstr "" + +#: install/index.php:367 +msgid "Optional: Global Callbook Lookup" +msgstr "" + +#: install/index.php:367 +msgid "" +"This configuration is optional. The callsign lookup will be available for " +"all users of this installation. You can choose between QRZ.com and HamQTH. " +"While HamQTH also works without username and password, you will need " +"credentials for QRZ.com. To also get the Call Locator in QRZ.com you'll need " +"an XML subscription. HamQTH does not always provide the locator information." +msgstr "" + +#: install/index.php:376 install/index.php:453 install/index.php:905 +msgid "Username" +msgstr "" + +#: install/index.php:379 install/index.php:457 install/index.php:915 +msgid "Password" +msgstr "" + +#: install/index.php:384 +msgid "Callbook Username" +msgstr "" + +#: install/index.php:387 +msgid "Callbook Password" +msgstr "" + +#: install/index.php:389 +#, php-format +msgid "Password can't contain %s or be empty" +msgstr "" + +#: install/index.php:394 install/index.php:399 +msgid "Advanced Settings" +msgstr "" + +#: install/index.php:402 +msgid "These settings should only be set if you know what you're doing." +msgstr "" + +#: install/index.php:405 +msgid "Error Logs" +msgstr "" + +#: install/index.php:406 +msgid "" +"Optional: Enable Error Logging by setting the log threshold bigger then 0. " +"Only enable this if you really need it." +msgstr "" + +#: install/index.php:411 +msgid "0 - No logs" +msgstr "" + +#: install/index.php:412 +msgid "1 - Error messages" +msgstr "" + +#: install/index.php:413 +msgid "2 - Debug messages" +msgstr "" + +#: install/index.php:414 +msgid "3 - Info messages" +msgstr "" + +#: install/index.php:415 +msgid "4 - All messages" +msgstr "" + +#: install/index.php:437 +msgid "" +"To properly install Wavelog you already should have setup a mariadb/mysql " +"database. Provide the parameters here." +msgstr "" + +#: install/index.php:441 +msgid "Hostname or IP" +msgstr "" + +#: install/index.php:441 +msgid "" +"Usually 'localhost'.
Optional with '[host]:[port]'. Default port: 3306." +"
In a docker compose install type 'wavelog-db'." +msgstr "" + +#: install/index.php:447 +msgid "Database Name" +msgstr "" + +#: install/index.php:447 +msgid "Name of the Database" +msgstr "" + +#: install/index.php:453 +msgid "Username of the Database User which has full access to the database." +msgstr "" + +#: install/index.php:457 +msgid "Password of the Database User" +msgstr "" + +#: install/index.php:461 +msgid "Connection Test" +msgstr "" + +#: install/index.php:472 +msgid "" +"Now you can create your first user in Wavelog. Fill out all fields and click " +"continue. Make sure you use a safe password." +msgstr "" + +#: install/index.php:473 +msgid "All fields are required!" +msgstr "" + +#: install/index.php:481 +msgid "First Name" +msgstr "" + +#: install/index.php:485 +msgid "DXCC" +msgstr "" + +#: install/index.php:487 +msgctxt "No DXCC" +msgid "- None -" +msgstr "" + +#: install/index.php:488 install/index.php:494 install/index.php:518 +#: install/index.php:530 install/index.php:533 install/index.php:538 +#: install/index.php:539 install/index.php:548 install/index.php:552 +#: install/index.php:567 install/index.php:580 install/index.php:581 +#: install/index.php:585 install/index.php:606 install/index.php:613 +#: install/index.php:615 install/index.php:616 install/index.php:618 +#: install/index.php:622 install/index.php:623 install/index.php:624 +#: install/index.php:628 install/index.php:629 install/index.php:648 +#: install/index.php:656 install/index.php:662 install/index.php:669 +#: install/index.php:670 install/index.php:676 install/index.php:678 +#: install/index.php:680 install/index.php:698 install/index.php:703 +#: install/index.php:704 install/index.php:718 install/index.php:733 +#: install/index.php:734 install/index.php:738 install/index.php:749 +#: install/index.php:750 install/index.php:755 install/index.php:759 +#: install/index.php:761 install/index.php:762 install/index.php:769 +#: install/index.php:784 install/index.php:786 install/index.php:803 +#: install/index.php:806 install/index.php:811 install/index.php:814 +#: install/index.php:817 install/index.php:827 install/index.php:833 +#: install/index.php:837 install/index.php:843 install/index.php:846 +#: install/index.php:849 install/index.php:854 install/index.php:880 +#: install/index.php:886 install/index.php:888 install/index.php:1700 +msgid "Deleted DXCC" +msgstr "" + +#: install/index.php:895 +msgid "Last Name" +msgstr "" + +#: install/index.php:899 +msgid "Callsign" +msgstr "" + +#: install/index.php:909 +msgid "Gridsquare/Locator" +msgstr "" + +#: install/index.php:919 +msgid "City" +msgstr "" + +#: install/index.php:925 +msgid "Confirm Password" +msgstr "" + +#: install/index.php:929 +msgid "Timezone" +msgstr "" + +#: install/index.php:1032 +msgid "E-Mail Address" +msgstr "" + +#: install/index.php:1054 +msgid "Checklist" +msgstr "" + +#: install/index.php:1059 +msgid "Pre-Checks" +msgstr "" + +#: install/index.php:1068 +msgid "Configuration" +msgstr "" + +#: install/index.php:1077 +msgid "Database" +msgstr "" + +#: install/index.php:1086 +msgid "First User" +msgstr "" + +#: install/index.php:1096 +msgid "Nearly done!" +msgstr "" + +#: install/index.php:1098 +msgid "You prepared all neccessary steps." +msgstr "" + +#: install/index.php:1099 +msgid "We now can install Wavelog. This process can take a few minutes." +msgstr "" + +#: install/index.php:1105 +msgid "Reset" +msgstr "" + +#: install/index.php:1110 +msgid "Installer Reset" +msgstr "" + +#: install/index.php:1113 +msgid "Do you really want to reset all data and start from scratch?" +msgstr "" + +#: install/index.php:1116 +msgid "Yes" +msgstr "" + +#: install/index.php:1117 +msgid "No" +msgstr "" + +#: install/index.php:1127 +msgid "Back" +msgstr "" + +#: install/index.php:1128 +msgid "Continue" +msgstr "" + +#: install/index.php:1206 +msgid "" +"You can't continue. Solve the red marked issues, restart the webserver and " +"reload this page." +msgstr "" + +#: install/index.php:1333 +msgid "Password can't contain ' / \\ < >" +msgstr "" + +#: install/index.php:1500 +msgid "Error: At least Hostname/IP, Database Name and Username are required." +msgstr "" + +#: install/index.php:1510 +msgid "Connecting..." +msgstr "" + +#: install/index.php:1534 +msgid "Connection was successful and your database should be compatible." +msgstr "" + +#: install/index.php:1538 +msgid "" +"Connection was successful but your database seems too old for Wavelog. You " +"can try to continue but you could run into issues." +msgstr "" + +#: install/index.php:1538 +#, php-format +msgid "The min. version for MySQL is %s, for MariaDB it's %s." +msgstr "" + +#: install/index.php:1653 +msgid "Search" +msgstr "" + +#: install/index.php:1686 +msgid "At least one field is empty." +msgstr "" + +#: install/index.php:1702 +msgid "" +"Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " +"Check which DXCC for this particular location is the correct one. If you are " +"sure, ignore this warning." +msgstr "" + +#: install/index.php:1726 +msgid "" +"The locator seems to be not in the correct format. Should look like AA11AA " +"(6-char grid locator)." +msgstr "" + +#: install/index.php:1740 +msgid "" +"The e-mail adress does not look correct. Make sure it's a valid e-mail " +"address" +msgstr "" + +#: install/index.php:1767 +msgid "Password should be at least 8 characters long" +msgstr "" + +#: install/index.php:1776 +msgid "Passwords do not match" +msgstr "" + +#: install/index.php:1823 +msgid "Install Now" +msgstr "" + +#: install/index.php:1827 +msgid "Install not possible. Checklist incomplete." +msgstr "" + +#: install/index.php:1943 +msgid "PHP Module missing" +msgstr "" + +#: install/index.php:1945 +msgid "The following PHP modules are missing:" +msgstr "" + +#: install/index.php:1946 +msgid "Without this module the Wavelog Installer does not work!" +msgstr "" + +#: install/index.php:1947 +msgid "Please install the required modules and restart the webserver." +msgstr "" + +#: install/run.php:10 +msgid "Installation" +msgstr "" + +#: install/run.php:12 +msgid "Please wait..." +msgstr "" + +#: install/run.php:15 +msgid "Copy config.php to application/config/" +msgstr "" + +#: install/run.php:18 +msgid "Copy database.php to application/config/" +msgstr "" + +#: install/run.php:21 +msgid "Creating database tables" +msgstr "" + +#: install/run.php:24 +msgid "Running database migrations" +msgstr "" + +#: install/run.php:27 +msgid "Updating DXCC data" +msgstr "" + +#: install/run.php:35 +msgid "Lock the installer" +msgstr "" + +#: install/run.php:39 +#, php-format +msgid "All install steps went through. Redirect to user login in %s seconds..." +msgstr "" + +#: install/run.php:42 +msgid "Done. Go to the user login ->" +msgstr "" + +#: install/run.php:46 install/run.php:125 +msgid "Show detailled debug log" +msgstr "" + +#: install/run.php:127 +msgid "Hide detailled debug log" +msgstr "" + +#: install/run.php:182 +msgid "Could not create application/config/config.php" +msgstr "" + +#: install/run.php:217 +msgid "Could not create application/config/database.php" +msgstr "" + +#: install/run.php:251 +msgid "Could not create database tables" +msgstr "" + +#: install/run.php:281 +msgid "Could not run database migrations" +msgstr "" + +#: install/run.php:309 +msgid "Could not update DXCC data" +msgstr "" + +#: install/run.php:341 +msgid "Could not create install/.lock file" +msgstr "" diff --git a/install/includes/gettext/locale/cnr/LC_MESSAGES/installer.mo b/install/includes/gettext/locale/cnr/LC_MESSAGES/installer.mo new file mode 100644 index 000000000..3195acdfa Binary files /dev/null and b/install/includes/gettext/locale/cnr/LC_MESSAGES/installer.mo differ diff --git a/install/includes/gettext/locale/cnr/LC_MESSAGES/installer.po b/install/includes/gettext/locale/cnr/LC_MESSAGES/installer.po new file mode 100644 index 000000000..a65e366af --- /dev/null +++ b/install/includes/gettext/locale/cnr/LC_MESSAGES/installer.po @@ -0,0 +1,732 @@ +# WAVELOG PO FILE +# Copyright (c) 2024 Wavelog by DF2ET, DJ7NT, HB9HIL and LA8AJA. +# This file is distributed under the MIT licence. +# +# Fabian Berg <80885850+HB9HIL@users.noreply.github.com>, 2024. +msgid "" +msgstr "" +"Report-Msgid-Bugs-To: translations@wavelog.org\n" +"POT-Creation-Date: 2024-08-12 09:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cnr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: install/includes/core/database_class.php:59 +msgid "Connection Error: " +msgstr "" + +#: install/includes/core/database_class.php:63 +msgid "Unable to create database: " +msgstr "" + +#: install/includes/core/database_class.php:68 +msgid "Unable to select database: " +msgstr "" + +#: install/includes/core/database_class.php:74 +msgid "Database is not empty." +msgstr "" + +#: install/includes/install_config/install_lib.php:123 +msgid "not detected" +msgstr "" + +#: install/includes/interface_assets/footer.php:50 +msgid "Albanian" +msgstr "" + +#: install/includes/interface_assets/footer.php:51 +msgid "Bosnian" +msgstr "" + +#: install/includes/interface_assets/footer.php:52 +msgid "Bulgarian" +msgstr "" + +#: install/includes/interface_assets/footer.php:53 +msgid "Chinese (Simplified)" +msgstr "" + +#: install/includes/interface_assets/footer.php:54 +msgid "Croatian" +msgstr "" + +#: install/includes/interface_assets/footer.php:55 +msgid "Czech" +msgstr "" + +#: install/includes/interface_assets/footer.php:56 +msgid "Dutch" +msgstr "" + +#: install/includes/interface_assets/footer.php:57 +msgid "English" +msgstr "" + +#: install/includes/interface_assets/footer.php:58 +msgid "Finnish" +msgstr "" + +#: install/includes/interface_assets/footer.php:59 +msgid "French" +msgstr "" + +#: install/includes/interface_assets/footer.php:60 +msgid "German" +msgstr "" + +#: install/includes/interface_assets/footer.php:61 +msgid "Greek" +msgstr "" + +#: install/includes/interface_assets/footer.php:62 +msgid "Italian" +msgstr "" + +#: install/includes/interface_assets/footer.php:63 +msgid "Montenegrin" +msgstr "" + +#: install/includes/interface_assets/footer.php:64 +msgid "Polish" +msgstr "" + +#: install/includes/interface_assets/footer.php:65 +msgid "Portuguese" +msgstr "" + +#: install/includes/interface_assets/footer.php:66 +msgid "Russian" +msgstr "" + +#: install/includes/interface_assets/footer.php:67 +msgid "Serbian" +msgstr "" + +#: install/includes/interface_assets/footer.php:68 +msgid "Spanish" +msgstr "" + +#: install/includes/interface_assets/footer.php:69 +msgid "Swedish" +msgstr "" + +#: install/includes/interface_assets/footer.php:70 +msgid "Turkish" +msgstr "" + +#: install/includes/interface_assets/header.php:94 +msgid "Install | Wavelog" +msgstr "" + +#: install/index.php:30 +msgid "1. Welcome" +msgstr "" + +#: install/index.php:33 +msgid "2. Pre Checks" +msgstr "" + +#: install/index.php:36 +msgid "3. Configuration" +msgstr "" + +#: install/index.php:39 +msgid "4. Database" +msgstr "" + +#: install/index.php:42 +msgid "5. First User" +msgstr "" + +#: install/index.php:45 +msgid "6. Finish" +msgstr "" + +#: install/index.php:62 +msgid "Welcome to the Wavelog Installer" +msgstr "" + +#: install/index.php:63 +msgid "" +"This installer will guide you through the necessary steps for the " +"installation of Wavelog.
Wavelog is a powerful web-based amateur radio " +"logging software. Follow the steps in each tab to configure and install " +"Wavelog on your server." +msgstr "" + +#: install/index.php:64 +msgid "Discussions" +msgstr "" + +#: install/index.php:64 +#, php-format +msgid "" +"If you encounter any issues or have questions, refer to the documentation " +"(%s) or community forum (%s) on Github for assistance." +msgstr "" + +#: install/index.php:64 +msgid "Wiki" +msgstr "" + +#: install/index.php:65 +msgid "Thank you for installing Wavelog!" +msgstr "" + +#: install/index.php:66 install/index.php:69 install/index.php:1036 +msgid "Language" +msgstr "" + +#: install/index.php:79 +msgid "Select a language" +msgstr "" + +#: install/index.php:91 install/index.php:421 +msgid "Close" +msgstr "" + +#: install/index.php:101 +msgid "PHP Modules" +msgstr "" + +#: install/index.php:108 +msgid "Version" +msgstr "" + +#: install/index.php:109 +#, php-format +msgctxt "PHP Version" +msgid "min. %s (recommended %s+)" +msgstr "" + +#: install/index.php:136 +msgid "Installed" +msgstr "" + +#: install/index.php:136 +msgid "Not Installed" +msgstr "" + +#: install/index.php:144 +msgid "PHP Settings" +msgstr "" + +#: install/index.php:234 +msgid "Folder Write Permissions" +msgstr "" + +#: install/index.php:240 install/index.php:251 install/index.php:262 +#: install/index.php:273 install/index.php:284 +msgid "Success" +msgstr "" + +#: install/index.php:243 install/index.php:254 install/index.php:265 +#: install/index.php:276 install/index.php:287 +msgid "Failed" +msgstr "" + +#: install/index.php:294 +msgid "Web Server" +msgstr "" + +#: install/index.php:297 +msgid "Version:" +msgstr "" + +#: install/index.php:304 +msgid "Important note for nginx users!" +msgstr "" + +#: install/index.php:305 +msgid "" +"Since you are using nginx as web server please make sure that you have made " +"the changes described in the Wiki before continuing." +msgstr "" + +#: install/index.php:314 +msgid "Some Checks have failed!" +msgstr "" + +#: install/index.php:315 +msgid "Check your PHP settings and install missing modules if necessary." +msgstr "" + +#: install/index.php:316 +msgid "" +"After that, you have to restart your webserver and start the installer again." +msgstr "" + +#: install/index.php:317 +#, php-format +msgid "" +"In case of failed 'Folder Write Permissions' check out our Wiki here." +msgstr "" + +#: install/index.php:323 +msgid "You have some warnings!" +msgstr "" + +#: install/index.php:324 +msgid "" +"Some of the settings are not optimal. You can proceed with the installer but " +"be aware that you could run into problems while using Wavelog." +msgstr "" + +#: install/index.php:331 +msgid "All Checks are OK. You can continue." +msgstr "" + +#: install/index.php:345 +msgid "" +"Configure some basic parameters for your wavelog instance. You can change " +"them later in 'application/config/config.php'" +msgstr "" + +#: install/index.php:347 +msgid "Directory" +msgstr "" + +#: install/index.php:347 +msgid "" +"The 'Directory' is basically your subfolder of the webroot In normal " +"conditions the prefilled value is doing it's job. It also can be empty." +msgstr "" + +#: install/index.php:352 +msgid "No slash before or after the directory. Just the name of the folder." +msgstr "" + +#: install/index.php:357 +#, php-format +msgid "" +"This is the complete URL where your Wavelog Instance will be available. If " +"you run this installer locally but want to place Wavelog behind a Reverse " +"Proxy with SSL you should type in the new URL here (e.g. %s instead of %s). " +"Don't forget to include the directory from above." +msgstr "" + +#: install/index.php:357 +msgid "Website URL" +msgstr "" + +#: install/index.php:360 +msgid "" +"This field
\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\t- can't be empty
\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'
\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'" +msgstr "" + +#: install/index.php:367 +msgid "Optional: Global Callbook Lookup" +msgstr "" + +#: install/index.php:367 +msgid "" +"This configuration is optional. The callsign lookup will be available for " +"all users of this installation. You can choose between QRZ.com and HamQTH. " +"While HamQTH also works without username and password, you will need " +"credentials for QRZ.com. To also get the Call Locator in QRZ.com you'll need " +"an XML subscription. HamQTH does not always provide the locator information." +msgstr "" + +#: install/index.php:376 install/index.php:453 install/index.php:905 +msgid "Username" +msgstr "" + +#: install/index.php:379 install/index.php:457 install/index.php:915 +msgid "Password" +msgstr "" + +#: install/index.php:384 +msgid "Callbook Username" +msgstr "" + +#: install/index.php:387 +msgid "Callbook Password" +msgstr "" + +#: install/index.php:389 +#, php-format +msgid "Password can't contain %s or be empty" +msgstr "" + +#: install/index.php:394 install/index.php:399 +msgid "Advanced Settings" +msgstr "" + +#: install/index.php:402 +msgid "These settings should only be set if you know what you're doing." +msgstr "" + +#: install/index.php:405 +msgid "Error Logs" +msgstr "" + +#: install/index.php:406 +msgid "" +"Optional: Enable Error Logging by setting the log threshold bigger then 0. " +"Only enable this if you really need it." +msgstr "" + +#: install/index.php:411 +msgid "0 - No logs" +msgstr "" + +#: install/index.php:412 +msgid "1 - Error messages" +msgstr "" + +#: install/index.php:413 +msgid "2 - Debug messages" +msgstr "" + +#: install/index.php:414 +msgid "3 - Info messages" +msgstr "" + +#: install/index.php:415 +msgid "4 - All messages" +msgstr "" + +#: install/index.php:437 +msgid "" +"To properly install Wavelog you already should have setup a mariadb/mysql " +"database. Provide the parameters here." +msgstr "" + +#: install/index.php:441 +msgid "Hostname or IP" +msgstr "" + +#: install/index.php:441 +msgid "" +"Usually 'localhost'.
Optional with '[host]:[port]'. Default port: 3306." +"
In a docker compose install type 'wavelog-db'." +msgstr "" + +#: install/index.php:447 +msgid "Database Name" +msgstr "" + +#: install/index.php:447 +msgid "Name of the Database" +msgstr "" + +#: install/index.php:453 +msgid "Username of the Database User which has full access to the database." +msgstr "" + +#: install/index.php:457 +msgid "Password of the Database User" +msgstr "" + +#: install/index.php:461 +msgid "Connection Test" +msgstr "" + +#: install/index.php:472 +msgid "" +"Now you can create your first user in Wavelog. Fill out all fields and click " +"continue. Make sure you use a safe password." +msgstr "" + +#: install/index.php:473 +msgid "All fields are required!" +msgstr "" + +#: install/index.php:481 +msgid "First Name" +msgstr "" + +#: install/index.php:485 +msgid "DXCC" +msgstr "" + +#: install/index.php:487 +msgctxt "No DXCC" +msgid "- None -" +msgstr "" + +#: install/index.php:488 install/index.php:494 install/index.php:518 +#: install/index.php:530 install/index.php:533 install/index.php:538 +#: install/index.php:539 install/index.php:548 install/index.php:552 +#: install/index.php:567 install/index.php:580 install/index.php:581 +#: install/index.php:585 install/index.php:606 install/index.php:613 +#: install/index.php:615 install/index.php:616 install/index.php:618 +#: install/index.php:622 install/index.php:623 install/index.php:624 +#: install/index.php:628 install/index.php:629 install/index.php:648 +#: install/index.php:656 install/index.php:662 install/index.php:669 +#: install/index.php:670 install/index.php:676 install/index.php:678 +#: install/index.php:680 install/index.php:698 install/index.php:703 +#: install/index.php:704 install/index.php:718 install/index.php:733 +#: install/index.php:734 install/index.php:738 install/index.php:749 +#: install/index.php:750 install/index.php:755 install/index.php:759 +#: install/index.php:761 install/index.php:762 install/index.php:769 +#: install/index.php:784 install/index.php:786 install/index.php:803 +#: install/index.php:806 install/index.php:811 install/index.php:814 +#: install/index.php:817 install/index.php:827 install/index.php:833 +#: install/index.php:837 install/index.php:843 install/index.php:846 +#: install/index.php:849 install/index.php:854 install/index.php:880 +#: install/index.php:886 install/index.php:888 install/index.php:1700 +msgid "Deleted DXCC" +msgstr "" + +#: install/index.php:895 +msgid "Last Name" +msgstr "" + +#: install/index.php:899 +msgid "Callsign" +msgstr "" + +#: install/index.php:909 +msgid "Gridsquare/Locator" +msgstr "" + +#: install/index.php:919 +msgid "City" +msgstr "" + +#: install/index.php:925 +msgid "Confirm Password" +msgstr "" + +#: install/index.php:929 +msgid "Timezone" +msgstr "" + +#: install/index.php:1032 +msgid "E-Mail Address" +msgstr "" + +#: install/index.php:1054 +msgid "Checklist" +msgstr "" + +#: install/index.php:1059 +msgid "Pre-Checks" +msgstr "" + +#: install/index.php:1068 +msgid "Configuration" +msgstr "" + +#: install/index.php:1077 +msgid "Database" +msgstr "" + +#: install/index.php:1086 +msgid "First User" +msgstr "" + +#: install/index.php:1096 +msgid "Nearly done!" +msgstr "" + +#: install/index.php:1098 +msgid "You prepared all neccessary steps." +msgstr "" + +#: install/index.php:1099 +msgid "We now can install Wavelog. This process can take a few minutes." +msgstr "" + +#: install/index.php:1105 +msgid "Reset" +msgstr "" + +#: install/index.php:1110 +msgid "Installer Reset" +msgstr "" + +#: install/index.php:1113 +msgid "Do you really want to reset all data and start from scratch?" +msgstr "" + +#: install/index.php:1116 +msgid "Yes" +msgstr "" + +#: install/index.php:1117 +msgid "No" +msgstr "" + +#: install/index.php:1127 +msgid "Back" +msgstr "" + +#: install/index.php:1128 +msgid "Continue" +msgstr "" + +#: install/index.php:1206 +msgid "" +"You can't continue. Solve the red marked issues, restart the webserver and " +"reload this page." +msgstr "" + +#: install/index.php:1333 +msgid "Password can't contain ' / \\ < >" +msgstr "" + +#: install/index.php:1500 +msgid "Error: At least Hostname/IP, Database Name and Username are required." +msgstr "" + +#: install/index.php:1510 +msgid "Connecting..." +msgstr "" + +#: install/index.php:1534 +msgid "Connection was successful and your database should be compatible." +msgstr "" + +#: install/index.php:1538 +msgid "" +"Connection was successful but your database seems too old for Wavelog. You " +"can try to continue but you could run into issues." +msgstr "" + +#: install/index.php:1538 +#, php-format +msgid "The min. version for MySQL is %s, for MariaDB it's %s." +msgstr "" + +#: install/index.php:1653 +msgid "Search" +msgstr "" + +#: install/index.php:1686 +msgid "At least one field is empty." +msgstr "" + +#: install/index.php:1702 +msgid "" +"Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " +"Check which DXCC for this particular location is the correct one. If you are " +"sure, ignore this warning." +msgstr "" + +#: install/index.php:1726 +msgid "" +"The locator seems to be not in the correct format. Should look like AA11AA " +"(6-char grid locator)." +msgstr "" + +#: install/index.php:1740 +msgid "" +"The e-mail adress does not look correct. Make sure it's a valid e-mail " +"address" +msgstr "" + +#: install/index.php:1767 +msgid "Password should be at least 8 characters long" +msgstr "" + +#: install/index.php:1776 +msgid "Passwords do not match" +msgstr "" + +#: install/index.php:1823 +msgid "Install Now" +msgstr "" + +#: install/index.php:1827 +msgid "Install not possible. Checklist incomplete." +msgstr "" + +#: install/index.php:1943 +msgid "PHP Module missing" +msgstr "" + +#: install/index.php:1945 +msgid "The following PHP modules are missing:" +msgstr "" + +#: install/index.php:1946 +msgid "Without this module the Wavelog Installer does not work!" +msgstr "" + +#: install/index.php:1947 +msgid "Please install the required modules and restart the webserver." +msgstr "" + +#: install/run.php:10 +msgid "Installation" +msgstr "" + +#: install/run.php:12 +msgid "Please wait..." +msgstr "" + +#: install/run.php:15 +msgid "Copy config.php to application/config/" +msgstr "" + +#: install/run.php:18 +msgid "Copy database.php to application/config/" +msgstr "" + +#: install/run.php:21 +msgid "Creating database tables" +msgstr "" + +#: install/run.php:24 +msgid "Running database migrations" +msgstr "" + +#: install/run.php:27 +msgid "Updating DXCC data" +msgstr "" + +#: install/run.php:35 +msgid "Lock the installer" +msgstr "" + +#: install/run.php:39 +#, php-format +msgid "All install steps went through. Redirect to user login in %s seconds..." +msgstr "" + +#: install/run.php:42 +msgid "Done. Go to the user login ->" +msgstr "" + +#: install/run.php:46 install/run.php:125 +msgid "Show detailled debug log" +msgstr "" + +#: install/run.php:127 +msgid "Hide detailled debug log" +msgstr "" + +#: install/run.php:182 +msgid "Could not create application/config/config.php" +msgstr "" + +#: install/run.php:217 +msgid "Could not create application/config/database.php" +msgstr "" + +#: install/run.php:251 +msgid "Could not create database tables" +msgstr "" + +#: install/run.php:281 +msgid "Could not run database migrations" +msgstr "" + +#: install/run.php:309 +msgid "Could not update DXCC data" +msgstr "" + +#: install/run.php:341 +msgid "Could not create install/.lock file" +msgstr "" diff --git a/install/includes/gettext/locale/cs_CZ/LC_MESSAGES/installer.mo b/install/includes/gettext/locale/cs_CZ/LC_MESSAGES/installer.mo index 7b77c768b..2dd958ccc 100644 Binary files a/install/includes/gettext/locale/cs_CZ/LC_MESSAGES/installer.mo and b/install/includes/gettext/locale/cs_CZ/LC_MESSAGES/installer.mo differ diff --git a/install/includes/gettext/locale/cs_CZ/LC_MESSAGES/installer.po b/install/includes/gettext/locale/cs_CZ/LC_MESSAGES/installer.po index a47c3e8e9..1a06b4370 100644 --- a/install/includes/gettext/locale/cs_CZ/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/cs_CZ/LC_MESSAGES/installer.po @@ -3,12 +3,13 @@ # This file is distributed under the MIT licence. # # Michal Šiman , 2024. +# Petr OK1PTR , 2024. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-08 14:17+0000\n" -"PO-Revision-Date: 2024-08-06 09:50+0000\n" -"Last-Translator: Michal Šiman \n" +"POT-Creation-Date: 2024-08-12 09:45+0000\n" +"PO-Revision-Date: 2024-08-26 12:58+0000\n" +"Last-Translator: Petr OK1PTR \n" "Language-Team: Czech \n" "Language: cs_CZ\n" @@ -16,7 +17,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.6.2\n" +"X-Generator: Weblate 5.7\n" #: install/includes/core/database_class.php:59 msgid "Connection Error: " @@ -39,66 +40,86 @@ msgid "not detected" msgstr "nedetekováno" #: install/includes/interface_assets/footer.php:50 +msgid "Albanian" +msgstr "Albánština" + +#: install/includes/interface_assets/footer.php:51 +msgid "Bosnian" +msgstr "Bosenština" + +#: install/includes/interface_assets/footer.php:52 msgid "Bulgarian" msgstr "Bulharština" -#: install/includes/interface_assets/footer.php:51 +#: install/includes/interface_assets/footer.php:53 msgid "Chinese (Simplified)" msgstr "Čínština (zjednodušená)" -#: install/includes/interface_assets/footer.php:52 -msgid "Czech" -msgstr "" - -#: install/includes/interface_assets/footer.php:53 -msgid "Dutch" -msgstr "" - #: install/includes/interface_assets/footer.php:54 +msgid "Croatian" +msgstr "Chorvatština" + +#: install/includes/interface_assets/footer.php:55 +msgid "Czech" +msgstr "Čeština" + +#: install/includes/interface_assets/footer.php:56 +msgid "Dutch" +msgstr "Holandština" + +#: install/includes/interface_assets/footer.php:57 msgid "English" msgstr "Angličtina" -#: install/includes/interface_assets/footer.php:55 +#: install/includes/interface_assets/footer.php:58 msgid "Finnish" msgstr "Finština" -#: install/includes/interface_assets/footer.php:56 +#: install/includes/interface_assets/footer.php:59 msgid "French" msgstr "Francouzština" -#: install/includes/interface_assets/footer.php:57 +#: install/includes/interface_assets/footer.php:60 msgid "German" msgstr "Němčina" -#: install/includes/interface_assets/footer.php:58 +#: install/includes/interface_assets/footer.php:61 msgid "Greek" msgstr "Řečtina" -#: install/includes/interface_assets/footer.php:59 +#: install/includes/interface_assets/footer.php:62 msgid "Italian" msgstr "Italština" -#: install/includes/interface_assets/footer.php:60 -msgid "Portuguese" -msgstr "Portugalština" +#: install/includes/interface_assets/footer.php:63 +msgid "Montenegrin" +msgstr "Černohorština" -#: install/includes/interface_assets/footer.php:61 +#: install/includes/interface_assets/footer.php:64 msgid "Polish" msgstr "Polština" -#: install/includes/interface_assets/footer.php:62 +#: install/includes/interface_assets/footer.php:65 +msgid "Portuguese" +msgstr "Portugalština" + +#: install/includes/interface_assets/footer.php:66 msgid "Russian" msgstr "Ruština" -#: install/includes/interface_assets/footer.php:63 +#: install/includes/interface_assets/footer.php:67 +msgid "Serbian" +msgstr "Srbština" + +#: install/includes/interface_assets/footer.php:68 msgid "Spanish" msgstr "Španělština" -#: install/includes/interface_assets/footer.php:64 +#: install/includes/interface_assets/footer.php:69 msgid "Swedish" msgstr "Švédština" -#: install/includes/interface_assets/footer.php:65 +#: install/includes/interface_assets/footer.php:70 msgid "Turkish" msgstr "Turečtina" @@ -141,10 +162,14 @@ msgid "" "logging software. Follow the steps in each tab to configure and install " "Wavelog on your server." msgstr "" +"Tento instalátor vás provede nezbytnými kroky pro instalaci Wavelogu. " +"
Wavelog je výkonný webový radioamatérský logovací software. Postupujte " +"podle kroků v každé záložce, abyste nakonfigurovali a nainstalovali Wavelog " +"na svém serveru." #: install/index.php:64 msgid "Discussions" -msgstr "" +msgstr "Diskuze" #: install/index.php:64 #, php-format @@ -152,6 +177,8 @@ msgid "" "If you encounter any issues or have questions, refer to the documentation " "(%s) or community forum (%s) on Github for assistance." msgstr "" +"V případě problémů nebo dotazů se podívejte na dokumentaci (%s) nebo se " +"obraťte na komunitní fórum (%s) na Githubu." #: install/index.php:64 msgid "Wiki" @@ -185,7 +212,7 @@ msgstr "Verze" #, php-format msgctxt "PHP Version" msgid "min. %s (recommended %s+)" -msgstr "" +msgstr "min. %s (doporučeno %s+)" #: install/index.php:136 msgid "Installed" @@ -201,48 +228,52 @@ msgstr "PHP nastavení" #: install/index.php:234 msgid "Folder Write Permissions" -msgstr "" +msgstr "Oprávnění k zápisu do složky" #: install/index.php:240 install/index.php:251 install/index.php:262 #: install/index.php:273 install/index.php:284 msgid "Success" -msgstr "" +msgstr "Úspěch" #: install/index.php:243 install/index.php:254 install/index.php:265 #: install/index.php:276 install/index.php:287 msgid "Failed" -msgstr "" +msgstr "Selhání" #: install/index.php:294 msgid "Web Server" -msgstr "" +msgstr "Webový server" #: install/index.php:297 msgid "Version:" -msgstr "" +msgstr "Verze:" #: install/index.php:304 msgid "Important note for nginx users!" -msgstr "" +msgstr "Důležité informace pro uživatele nginx!" #: install/index.php:305 msgid "" "Since you are using nginx as web server please make sure that you have made " "the changes described in the Wiki before continuing." msgstr "" +"Protože jako webový server používáte nginx, ujistěte se, že jste provedli " +"změny popsané ve Wiki, než budete pokračovat." #: install/index.php:314 msgid "Some Checks have failed!" -msgstr "" +msgstr "Některé kontroly selhaly!" #: install/index.php:315 msgid "Check your PHP settings and install missing modules if necessary." msgstr "" +"Zkontrolujte nastavení vašeho PHP a v případě potřeby doinstalujte chybějící " +"moduly." #: install/index.php:316 msgid "" "After that, you have to restart your webserver and start the installer again." -msgstr "" +msgstr "Poté musíte restartovat svůj webový server a znovu spustit instalátor." #: install/index.php:317 #, php-format @@ -250,6 +281,8 @@ msgid "" "In case of failed 'Folder Write Permissions' check out our Wiki here." msgstr "" +"V případě chyby 'Oprávnění pro zápis do adresáře' se podívejte na Wiki zde." #: install/index.php:323 msgid "You have some warnings!" @@ -260,20 +293,24 @@ msgid "" "Some of the settings are not optimal. You can proceed with the installer but " "be aware that you could run into problems while using Wavelog." msgstr "" +"Některá nastavení nejsou optimální. Můžete pokračovat v instalaci, ale " +"počítejte s tím, že při používání Wavelogu můžete narazit na problémy." #: install/index.php:331 msgid "All Checks are OK. You can continue." -msgstr "" +msgstr "Všechny kontroly jsou OK. Můžete pokračovat." #: install/index.php:345 msgid "" "Configure some basic parameters for your wavelog instance. You can change " "them later in 'application/config/config.php'" msgstr "" +"Nastavte některé základní parametry vašeho Wavelog. Později je můžete změnit " +"v souboru 'application/config/config.php'" #: install/index.php:347 msgid "Directory" -msgstr "" +msgstr "Adresář" #: install/index.php:347 msgid "" @@ -283,7 +320,7 @@ msgstr "" #: install/index.php:352 msgid "No slash before or after the directory. Just the name of the folder." -msgstr "" +msgstr "Bez lomítka před a za adresářem. Pouze jméno složky." #: install/index.php:357 #, php-format @@ -338,7 +375,7 @@ msgstr "" #: install/index.php:389 #, php-format msgid "Password can't contain %s or be empty" -msgstr "" +msgstr "Heslo nesmí obsahovat %s nebo být prázdné" #: install/index.php:394 install/index.php:399 msgid "Advanced Settings" @@ -519,7 +556,7 @@ msgstr "" #: install/index.php:1099 msgid "We now can install Wavelog. This process can take a few minutes." -msgstr "" +msgstr "Nyní můžeme nainstalovat Wavelog. Proces může trvat několik minut." #: install/index.php:1105 msgid "Reset" @@ -535,19 +572,19 @@ msgstr "" #: install/index.php:1116 msgid "Yes" -msgstr "" +msgstr "Ano" #: install/index.php:1117 msgid "No" -msgstr "" +msgstr "Ne" #: install/index.php:1127 msgid "Back" -msgstr "" +msgstr "Zpět" #: install/index.php:1128 msgid "Continue" -msgstr "" +msgstr "Pokračovat" #: install/index.php:1206 msgid "" @@ -557,7 +594,7 @@ msgstr "" #: install/index.php:1333 msgid "Password can't contain ' / \\ < >" -msgstr "" +msgstr "Heslo nesmí obsahovat '/\\<>" #: install/index.php:1500 msgid "Error: At least Hostname/IP, Database Name and Username are required." @@ -580,15 +617,15 @@ msgstr "" #: install/index.php:1538 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." -msgstr "" +msgstr "Minimální verze MySQL je%s, u MariaDB je to %s." #: install/index.php:1653 msgid "Search" -msgstr "" +msgstr "Hledat" #: install/index.php:1686 msgid "At least one field is empty." -msgstr "" +msgstr "Minimálně jedno pole je prázdné." #: install/index.php:1702 msgid "" @@ -611,15 +648,15 @@ msgstr "" #: install/index.php:1767 msgid "Password should be at least 8 characters long" -msgstr "" +msgstr "Heslo musí obsahovat minimálně 8 znaků" #: install/index.php:1776 msgid "Passwords do not match" -msgstr "" +msgstr "Hesla se neshodují" #: install/index.php:1823 msgid "Install Now" -msgstr "" +msgstr "Instalovat nyní" #: install/index.php:1827 msgid "Install not possible. Checklist incomplete." @@ -627,68 +664,70 @@ msgstr "" #: install/index.php:1943 msgid "PHP Module missing" -msgstr "" +msgstr "PHP modul chybí" #: install/index.php:1945 msgid "The following PHP modules are missing:" -msgstr "" +msgstr "Následující PHP moduly chybí:" #: install/index.php:1946 msgid "Without this module the Wavelog Installer does not work!" -msgstr "" +msgstr "Wavelog instalátor bez toho modulu nefunguje!" #: install/index.php:1947 msgid "Please install the required modules and restart the webserver." -msgstr "" +msgstr "Prosím doinstalujte požadované moduly a restartujte webový server." #: install/run.php:10 msgid "Installation" -msgstr "" +msgstr "Instalace" #: install/run.php:12 msgid "Please wait..." -msgstr "" +msgstr "Prosím čekejte..." #: install/run.php:15 msgid "Copy config.php to application/config/" -msgstr "" +msgstr "Kopírování config.php do application/config/" #: install/run.php:18 msgid "Copy database.php to application/config/" -msgstr "" +msgstr "Kopírování database.php do application/config/" #: install/run.php:21 msgid "Creating database tables" -msgstr "" +msgstr "Vytváření tabulek databáze" #: install/run.php:24 msgid "Running database migrations" -msgstr "" +msgstr "Migrace databáze" #: install/run.php:27 msgid "Updating DXCC data" -msgstr "" +msgstr "Aktualizace DXCC dat" #: install/run.php:35 msgid "Lock the installer" -msgstr "" +msgstr "Zamknutí instalátoru" #: install/run.php:39 #, php-format msgid "All install steps went through. Redirect to user login in %s seconds..." msgstr "" +"Všechny kroky instalace proběhly. Přesměrování na přihlášení uživatele za %s " +"sekund..." #: install/run.php:42 msgid "Done. Go to the user login ->" -msgstr "" +msgstr "Hotovo. Pokračujte přihlášením uživatele ->" #: install/run.php:46 install/run.php:125 msgid "Show detailled debug log" -msgstr "" +msgstr "Zobrazit detailní ladící log" #: install/run.php:127 msgid "Hide detailled debug log" -msgstr "" +msgstr "Skrýt detailní ladící log" #: install/run.php:182 msgid "Could not create application/config/config.php" @@ -700,15 +739,15 @@ msgstr "" #: install/run.php:251 msgid "Could not create database tables" -msgstr "" +msgstr "Nelze vytvořit tabulky v databázi" #: install/run.php:281 msgid "Could not run database migrations" -msgstr "" +msgstr "Nelze spustit migraci databáze" #: install/run.php:309 msgid "Could not update DXCC data" -msgstr "" +msgstr "Nelze aktualizovat DXCC data" #: install/run.php:341 msgid "Could not create install/.lock file" diff --git a/install/includes/gettext/locale/de_DE/LC_MESSAGES/installer.mo b/install/includes/gettext/locale/de_DE/LC_MESSAGES/installer.mo index 9a04ca45c..9d5fe8cd5 100644 Binary files a/install/includes/gettext/locale/de_DE/LC_MESSAGES/installer.mo and b/install/includes/gettext/locale/de_DE/LC_MESSAGES/installer.mo differ diff --git a/install/includes/gettext/locale/de_DE/LC_MESSAGES/installer.po b/install/includes/gettext/locale/de_DE/LC_MESSAGES/installer.po index 580ef7268..39778c836 100644 --- a/install/includes/gettext/locale/de_DE/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/de_DE/LC_MESSAGES/installer.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-08 14:17+0000\n" -"PO-Revision-Date: 2024-08-08 14:34+0000\n" +"POT-Creation-Date: 2024-08-12 09:45+0000\n" +"PO-Revision-Date: 2024-08-12 10:06+0000\n" "Last-Translator: Fabian Berg <80885850+HB9HIL@users.noreply.github.com>\n" "Language-Team: German \n" @@ -42,66 +42,86 @@ msgid "not detected" msgstr "nicht erkannt" #: install/includes/interface_assets/footer.php:50 +msgid "Albanian" +msgstr "Albanisch" + +#: install/includes/interface_assets/footer.php:51 +msgid "Bosnian" +msgstr "Bosnisch" + +#: install/includes/interface_assets/footer.php:52 msgid "Bulgarian" msgstr "Bulgarisch" -#: install/includes/interface_assets/footer.php:51 +#: install/includes/interface_assets/footer.php:53 msgid "Chinese (Simplified)" msgstr "Chinesisch (Vereinfacht)" -#: install/includes/interface_assets/footer.php:52 +#: install/includes/interface_assets/footer.php:54 +msgid "Croatian" +msgstr "Kroatisch" + +#: install/includes/interface_assets/footer.php:55 msgid "Czech" msgstr "Tschechisch" -#: install/includes/interface_assets/footer.php:53 +#: install/includes/interface_assets/footer.php:56 msgid "Dutch" msgstr "Niederländisch" -#: install/includes/interface_assets/footer.php:54 +#: install/includes/interface_assets/footer.php:57 msgid "English" msgstr "Englisch" -#: install/includes/interface_assets/footer.php:55 +#: install/includes/interface_assets/footer.php:58 msgid "Finnish" msgstr "Finnisch" -#: install/includes/interface_assets/footer.php:56 +#: install/includes/interface_assets/footer.php:59 msgid "French" msgstr "Französisch" -#: install/includes/interface_assets/footer.php:57 +#: install/includes/interface_assets/footer.php:60 msgid "German" msgstr "Deutsch" -#: install/includes/interface_assets/footer.php:58 +#: install/includes/interface_assets/footer.php:61 msgid "Greek" msgstr "Griechisch" -#: install/includes/interface_assets/footer.php:59 +#: install/includes/interface_assets/footer.php:62 msgid "Italian" msgstr "Italienisch" -#: install/includes/interface_assets/footer.php:60 -msgid "Portuguese" -msgstr "Portugiesisch" +#: install/includes/interface_assets/footer.php:63 +msgid "Montenegrin" +msgstr "Montenegrinisch" -#: install/includes/interface_assets/footer.php:61 +#: install/includes/interface_assets/footer.php:64 msgid "Polish" msgstr "Polnisch" -#: install/includes/interface_assets/footer.php:62 +#: install/includes/interface_assets/footer.php:65 +msgid "Portuguese" +msgstr "Portugiesisch" + +#: install/includes/interface_assets/footer.php:66 msgid "Russian" msgstr "Russisch" -#: install/includes/interface_assets/footer.php:63 +#: install/includes/interface_assets/footer.php:67 +msgid "Serbian" +msgstr "Serbisch" + +#: install/includes/interface_assets/footer.php:68 msgid "Spanish" msgstr "Spanisch" -#: install/includes/interface_assets/footer.php:64 +#: install/includes/interface_assets/footer.php:69 msgid "Swedish" msgstr "Schwedisch" -#: install/includes/interface_assets/footer.php:65 +#: install/includes/interface_assets/footer.php:70 msgid "Turkish" msgstr "Türkisch" diff --git a/install/includes/gettext/locale/el_GR/LC_MESSAGES/installer.po b/install/includes/gettext/locale/el_GR/LC_MESSAGES/installer.po index c1e14ea64..fd98597eb 100644 --- a/install/includes/gettext/locale/el_GR/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/el_GR/LC_MESSAGES/installer.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-08 14:17+0000\n" +"POT-Creation-Date: 2024-08-12 09:45+0000\n" "PO-Revision-Date: 2024-07-29 12:05+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Greek , 2024. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-08 14:17+0000\n" -"PO-Revision-Date: 2024-06-05 15:15+0200\n" -"Last-Translator: \n" -"Language-Team: \n" +"POT-Creation-Date: 2024-08-12 09:45+0000\n" +"PO-Revision-Date: 2024-08-18 19:11+0000\n" +"Last-Translator: \"Francisco (F4VSE)\" \n" +"Language-Team: Spanish \n" "Language: es_ES\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: Poedit 3.4.4\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.7\n" #: install/includes/core/database_class.php:59 msgid "Connection Error: " -msgstr "" +msgstr "Error de conexión: " #: install/includes/core/database_class.php:63 msgid "Unable to create database: " -msgstr "" +msgstr "No se puede crear la base de datos: " #: install/includes/core/database_class.php:68 msgid "Unable to select database: " -msgstr "" +msgstr "No se puede seleccionar la base de datos: " #: install/includes/core/database_class.php:74 msgid "Database is not empty." -msgstr "" +msgstr "La base de datos no está vacía." #: install/includes/install_config/install_lib.php:123 msgid "not detected" -msgstr "" +msgstr "no detectado" #: install/includes/interface_assets/footer.php:50 -msgid "Bulgarian" -msgstr "" +msgid "Albanian" +msgstr "Albanés" #: install/includes/interface_assets/footer.php:51 -msgid "Chinese (Simplified)" -msgstr "" +msgid "Bosnian" +msgstr "Bosnio" #: install/includes/interface_assets/footer.php:52 -msgid "Czech" -msgstr "" +msgid "Bulgarian" +msgstr "Búlgaro" #: install/includes/interface_assets/footer.php:53 -msgid "Dutch" -msgstr "" +msgid "Chinese (Simplified)" +msgstr "Chino (Simplificado)" #: install/includes/interface_assets/footer.php:54 -msgid "English" -msgstr "" +msgid "Croatian" +msgstr "Croata" #: install/includes/interface_assets/footer.php:55 -msgid "Finnish" -msgstr "" +msgid "Czech" +msgstr "Checo" #: install/includes/interface_assets/footer.php:56 -msgid "French" -msgstr "" +msgid "Dutch" +msgstr "Holandés" #: install/includes/interface_assets/footer.php:57 -msgid "German" -msgstr "" +msgid "English" +msgstr "Inglés" #: install/includes/interface_assets/footer.php:58 -msgid "Greek" -msgstr "" +msgid "Finnish" +msgstr "Finlandés" #: install/includes/interface_assets/footer.php:59 -msgid "Italian" -msgstr "" +msgid "French" +msgstr "Francés" #: install/includes/interface_assets/footer.php:60 -msgid "Portuguese" -msgstr "" +msgid "German" +msgstr "Alemán" #: install/includes/interface_assets/footer.php:61 -msgid "Polish" -msgstr "" +msgid "Greek" +msgstr "Griego" #: install/includes/interface_assets/footer.php:62 -msgid "Russian" -msgstr "" +msgid "Italian" +msgstr "Italiano" #: install/includes/interface_assets/footer.php:63 -msgid "Spanish" -msgstr "" +msgid "Montenegrin" +msgstr "Montenegrino" #: install/includes/interface_assets/footer.php:64 -msgid "Swedish" -msgstr "" +msgid "Polish" +msgstr "Polaco" #: install/includes/interface_assets/footer.php:65 +msgid "Portuguese" +msgstr "Portugués" + +#: install/includes/interface_assets/footer.php:66 +msgid "Russian" +msgstr "Ruso" + +#: install/includes/interface_assets/footer.php:67 +msgid "Serbian" +msgstr "Serbio" + +#: install/includes/interface_assets/footer.php:68 +msgid "Spanish" +msgstr "Español" + +#: install/includes/interface_assets/footer.php:69 +msgid "Swedish" +msgstr "Sueco" + +#: install/includes/interface_assets/footer.php:70 msgid "Turkish" -msgstr "" +msgstr "Turco" #: install/includes/interface_assets/header.php:94 msgid "Install | Wavelog" -msgstr "" +msgstr "Instalar | Wavelog" #: install/index.php:30 msgid "1. Welcome" -msgstr "" +msgstr "1. Bienvenido" #: install/index.php:33 msgid "2. Pre Checks" -msgstr "" +msgstr "2. Comprobaciones previas" #: install/index.php:36 msgid "3. Configuration" -msgstr "" +msgstr "3. Configuración" #: install/index.php:39 msgid "4. Database" -msgstr "" +msgstr "4. Base de datos" #: install/index.php:42 msgid "5. First User" -msgstr "" +msgstr "5. Primer Usuario" #: install/index.php:45 msgid "6. Finish" -msgstr "" +msgstr "6. Terminar" #: install/index.php:62 msgid "Welcome to the Wavelog Installer" -msgstr "" +msgstr "Bienvenido al Instalador de Wavelog" #: install/index.php:63 msgid "" @@ -139,10 +161,14 @@ msgid "" "logging software. Follow the steps in each tab to configure and install " "Wavelog on your server." msgstr "" +"Este instalador te guiará a través de los pasos necesarios para la " +"instalación de Wavelog.
Wavelog es un potente software de registro de " +"radioaficionados basado en la web. Sigue los pasos en cada pestaña para " +"configurar e instalar Wavelog en tu servidor." #: install/index.php:64 msgid "Discussions" -msgstr "" +msgstr "Discusiones" #: install/index.php:64 #, php-format @@ -150,97 +176,105 @@ msgid "" "If you encounter any issues or have questions, refer to the documentation " "(%s) or community forum (%s) on Github for assistance." msgstr "" +"Si encuentras algún problema o tienes preguntas, consulta la documentación " +"(%s) o el foro de la comunidad (%s) en Github para obtener ayuda." #: install/index.php:64 msgid "Wiki" -msgstr "" +msgstr "Wiki" #: install/index.php:65 msgid "Thank you for installing Wavelog!" -msgstr "" +msgstr "¡Gracias por instalar Wavelog!" #: install/index.php:66 install/index.php:69 install/index.php:1036 msgid "Language" -msgstr "" +msgstr "Idioma" #: install/index.php:79 msgid "Select a language" -msgstr "" +msgstr "Selecciona un idioma" #: install/index.php:91 install/index.php:421 msgid "Close" -msgstr "" +msgstr "Cerrar" #: install/index.php:101 msgid "PHP Modules" -msgstr "" +msgstr "Módulos PHP" #: install/index.php:108 msgid "Version" -msgstr "" +msgstr "Versión" #: install/index.php:109 #, php-format msgctxt "PHP Version" msgid "min. %s (recommended %s+)" -msgstr "" +msgstr "min. %s (recomendado %s+)" #: install/index.php:136 msgid "Installed" -msgstr "" +msgstr "Instalado" #: install/index.php:136 msgid "Not Installed" -msgstr "" +msgstr "No instalado" #: install/index.php:144 msgid "PHP Settings" -msgstr "" +msgstr "Configuraciones de PHP" #: install/index.php:234 msgid "Folder Write Permissions" -msgstr "" +msgstr "Permisos de escritura en la carpeta" #: install/index.php:240 install/index.php:251 install/index.php:262 #: install/index.php:273 install/index.php:284 msgid "Success" -msgstr "" +msgstr "Éxito" #: install/index.php:243 install/index.php:254 install/index.php:265 #: install/index.php:276 install/index.php:287 msgid "Failed" -msgstr "" +msgstr "Fallido" #: install/index.php:294 msgid "Web Server" -msgstr "" +msgstr "Servidor web" #: install/index.php:297 msgid "Version:" -msgstr "" +msgstr "Versión:" #: install/index.php:304 msgid "Important note for nginx users!" -msgstr "" +msgstr "¡Nota importante para los usuarios de nginx!" #: install/index.php:305 msgid "" "Since you are using nginx as web server please make sure that you have made " "the changes described in the Wiki before continuing." msgstr "" +"Dado que estás usando nginx como servidor web, asegúrate de haber realizado " +"los cambios descritos en la Wiki antes de continuar." #: install/index.php:314 msgid "Some Checks have failed!" -msgstr "" +msgstr "¡Algunas verificaciones han fallado!" #: install/index.php:315 msgid "Check your PHP settings and install missing modules if necessary." msgstr "" +"Revisa tu configuración de PHP e instala los módulos que falten si es " +"necesario." #: install/index.php:316 msgid "" "After that, you have to restart your webserver and start the installer again." msgstr "" +"Después de eso, tienes que reiniciar tu servidor web y comenzar el " +"instalador de nuevo." #: install/index.php:317 #, php-format @@ -248,40 +282,48 @@ msgid "" "In case of failed 'Folder Write Permissions' check out our Wiki here." msgstr "" +"En caso de fallo en 'Permisos de Escritura de Carpeta', consulta nuestra " +"Wiki aquí." #: install/index.php:323 msgid "You have some warnings!" -msgstr "" +msgstr "¡Tienes algunas advertencias!" #: install/index.php:324 msgid "" "Some of the settings are not optimal. You can proceed with the installer but " "be aware that you could run into problems while using Wavelog." msgstr "" +"Algunas de las configuraciones no son óptimas. Puedes continuar con el " +"instalador, pero ten en cuenta que podrías tener problemas al usar Wavelog." #: install/index.php:331 msgid "All Checks are OK. You can continue." -msgstr "" +msgstr "Todas las comprobaciones están bien. Puedes continuar." #: install/index.php:345 msgid "" "Configure some basic parameters for your wavelog instance. You can change " "them later in 'application/config/config.php'" msgstr "" +"Configura algunos parámetros básicos para tu instancia de wavelog. Puedes " +"cambiarlos más tarde en 'application/config/config.php'" #: install/index.php:347 msgid "Directory" -msgstr "" +msgstr "Directorio" #: install/index.php:347 msgid "" "The 'Directory' is basically your subfolder of the webroot In normal " "conditions the prefilled value is doing it's job. It also can be empty." msgstr "" +"El 'Directorio' es básicamente tu subcarpeta de la raíz web. En condiciones " +"normales, el valor prellenado hace su trabajo. También puede estar vacío." #: install/index.php:352 msgid "No slash before or after the directory. Just the name of the folder." -msgstr "" +msgstr "Sin barra antes o después del directorio. Solo el nombre de la carpeta." #: install/index.php:357 #, php-format @@ -291,10 +333,14 @@ msgid "" "Proxy with SSL you should type in the new URL here (e.g. %s instead of %s). " "Don't forget to include the directory from above." msgstr "" +"Esta es la URL completa donde estará disponible tu instancia de Wavelog. Si " +"ejecutas este instalador localmente pero quieres colocar Wavelog detrás de " +"un Proxy Inverso con SSL, debes escribir la nueva URL aquí (por ejemplo, %s " +"en lugar de %s). No olvides incluir el directorio de arriba." #: install/index.php:357 msgid "Website URL" -msgstr "" +msgstr "URL del sitio web" #: install/index.php:360 msgid "" @@ -303,10 +349,14 @@ msgid "" "\t\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'
\n" "\t\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'" msgstr "" +"Este campo
\n" +"- no puede estar vacío
\n" +"- debe terminar con una barra 'ejemplo/'
\n" +"- debe comenzar con 'http'" #: install/index.php:367 msgid "Optional: Global Callbook Lookup" -msgstr "" +msgstr "Opcional: Búsqueda en el Callbook Global" #: install/index.php:367 msgid "" @@ -316,124 +366,142 @@ msgid "" "credentials for QRZ.com. To also get the Call Locator in QRZ.com you'll need " "an XML subscription. HamQTH does not always provide the locator information." msgstr "" +"Esta configuración es opcional. La búsqueda de indicativos estará disponible " +"para todos los usuarios de esta instalación. Puedes elegir entre QRZ.com y " +"HamQTH. Mientras que HamQTH también funciona sin nombre de usuario y " +"contraseña, necesitarás credenciales para QRZ.com. Para obtener también el " +"Localizador de Indicativos en QRZ.com necesitarás una suscripción XML. " +"HamQTH no siempre proporciona la información del localizador." #: install/index.php:376 install/index.php:453 install/index.php:905 msgid "Username" -msgstr "" +msgstr "Nombre de usuario" #: install/index.php:379 install/index.php:457 install/index.php:915 msgid "Password" -msgstr "" +msgstr "Contraseña" #: install/index.php:384 msgid "Callbook Username" -msgstr "" +msgstr "Nombre de usuario del Callbook" #: install/index.php:387 msgid "Callbook Password" -msgstr "" +msgstr "Contraseña del Callbook" #: install/index.php:389 #, php-format msgid "Password can't contain %s or be empty" -msgstr "" +msgstr "La contraseña no puede contener %s ni estar vacía" #: install/index.php:394 install/index.php:399 msgid "Advanced Settings" -msgstr "" +msgstr "Configuraciones avanzadas" #: install/index.php:402 msgid "These settings should only be set if you know what you're doing." msgstr "" +"Estas configuraciones solo deben establecerse si sabes lo que estás haciendo." #: install/index.php:405 msgid "Error Logs" -msgstr "" +msgstr "Registros de errores" #: install/index.php:406 msgid "" "Optional: Enable Error Logging by setting the log threshold bigger then 0. " "Only enable this if you really need it." msgstr "" +"Opcional: Habilita el registro de errores configurando el umbral de registro " +"mayor que 0. Solo habilítalo si realmente lo necesitas." #: install/index.php:411 msgid "0 - No logs" -msgstr "" +msgstr "0 - Sin registros" #: install/index.php:412 msgid "1 - Error messages" -msgstr "" +msgstr "1 - Mensajes de error" #: install/index.php:413 msgid "2 - Debug messages" -msgstr "" +msgstr "2 - Mensajes de depuración" #: install/index.php:414 msgid "3 - Info messages" -msgstr "" +msgstr "3 - Mensajes informativos" #: install/index.php:415 msgid "4 - All messages" -msgstr "" +msgstr "4 - Todos los mensajes" #: install/index.php:437 msgid "" "To properly install Wavelog you already should have setup a mariadb/mysql " "database. Provide the parameters here." msgstr "" +"Para instalar correctamente Wavelog, ya deberías haber configurado una base " +"de datos mariadb/mysql. Proporciona los parámetros aquí." #: install/index.php:441 msgid "Hostname or IP" -msgstr "" +msgstr "Nombre de host o IP" #: install/index.php:441 msgid "" "Usually 'localhost'.
Optional with '[host]:[port]'. Default port: 3306." "
In a docker compose install type 'wavelog-db'." msgstr "" +"Normalmente 'localhost'.
Opcional con '[host]:[port]'. Puerto " +"predeterminado: 3306.
En una instalación de docker compose, escribe " +"'wavelog-db'." #: install/index.php:447 msgid "Database Name" -msgstr "" +msgstr "Nombre de la base de datos" #: install/index.php:447 msgid "Name of the Database" -msgstr "" +msgstr "Nombre de la base de datos" #: install/index.php:453 msgid "Username of the Database User which has full access to the database." msgstr "" +"Nombre de usuario de la base de datos que tiene acceso completo a la base de " +"datos." #: install/index.php:457 msgid "Password of the Database User" -msgstr "" +msgstr "Contraseña del Usuario de la Base de Datos" #: install/index.php:461 msgid "Connection Test" -msgstr "" +msgstr "Prueba de conexión" #: install/index.php:472 msgid "" "Now you can create your first user in Wavelog. Fill out all fields and click " "continue. Make sure you use a safe password." msgstr "" +"Ahora puedes crear tu primer usuario en Wavelog. Rellena todos los campos y " +"haz clic en continuar. Asegúrate de usar una contraseña segura." #: install/index.php:473 msgid "All fields are required!" -msgstr "" +msgstr "¡Todos los campos son obligatorios!" #: install/index.php:481 msgid "First Name" -msgstr "" +msgstr "Nombre" #: install/index.php:485 msgid "DXCC" -msgstr "" +msgstr "DXCC" #: install/index.php:487 msgctxt "No DXCC" msgid "- None -" -msgstr "" +msgstr "- Ninguno -" #: install/index.php:488 install/index.php:494 install/index.php:518 #: install/index.php:530 install/index.php:533 install/index.php:538 @@ -457,136 +525,142 @@ msgstr "" #: install/index.php:849 install/index.php:854 install/index.php:880 #: install/index.php:886 install/index.php:888 install/index.php:1700 msgid "Deleted DXCC" -msgstr "" +msgstr "DXCC Eliminado" #: install/index.php:895 msgid "Last Name" -msgstr "" +msgstr "Apellidos" #: install/index.php:899 msgid "Callsign" -msgstr "" +msgstr "Indicativo" #: install/index.php:909 msgid "Gridsquare/Locator" -msgstr "" +msgstr "Cuadrícula/Localizador" #: install/index.php:919 msgid "City" -msgstr "" +msgstr "Ciudad" #: install/index.php:925 msgid "Confirm Password" -msgstr "" +msgstr "Confirmar Contraseña" #: install/index.php:929 msgid "Timezone" -msgstr "" +msgstr "Zona horaria" #: install/index.php:1032 msgid "E-Mail Address" -msgstr "" +msgstr "Dirección de correo electrónico" #: install/index.php:1054 msgid "Checklist" -msgstr "" +msgstr "Lista de verificación" #: install/index.php:1059 msgid "Pre-Checks" -msgstr "" +msgstr "Comprobaciones previas" #: install/index.php:1068 msgid "Configuration" -msgstr "" +msgstr "Configuración" #: install/index.php:1077 msgid "Database" -msgstr "" +msgstr "Base de datos" #: install/index.php:1086 msgid "First User" -msgstr "" +msgstr "Primer Usuario" #: install/index.php:1096 msgid "Nearly done!" -msgstr "" +msgstr "¡Ya casi está!" #: install/index.php:1098 msgid "You prepared all neccessary steps." -msgstr "" +msgstr "Has preparado todos los pasos necesarios." #: install/index.php:1099 msgid "We now can install Wavelog. This process can take a few minutes." -msgstr "" +msgstr "Ahora podemos instalar Wavelog. Este proceso puede tardar unos minutos." #: install/index.php:1105 msgid "Reset" -msgstr "" +msgstr "Restablecer" #: install/index.php:1110 msgid "Installer Reset" -msgstr "" +msgstr "Reinicio del instalador" #: install/index.php:1113 msgid "Do you really want to reset all data and start from scratch?" -msgstr "" +msgstr "¿Realmente quieres restablecer todos los datos y empezar desde cero?" #: install/index.php:1116 msgid "Yes" -msgstr "" +msgstr "Sí" #: install/index.php:1117 msgid "No" -msgstr "" +msgstr "No" #: install/index.php:1127 msgid "Back" -msgstr "" +msgstr "Atrás" #: install/index.php:1128 msgid "Continue" -msgstr "" +msgstr "Continuar" #: install/index.php:1206 msgid "" "You can't continue. Solve the red marked issues, restart the webserver and " "reload this page." msgstr "" +"No puedes continuar. Resuelve los problemas marcados en rojo, reinicia el " +"servidor web y recarga esta página." #: install/index.php:1333 msgid "Password can't contain ' / \\ < >" -msgstr "" +msgstr "La contraseña no puede contener ' / \\ < >" #: install/index.php:1500 msgid "Error: At least Hostname/IP, Database Name and Username are required." msgstr "" +"Error: Se requieren al menos el nombre de host/IP, el nombre de la base de " +"datos y el nombre de usuario." #: install/index.php:1510 msgid "Connecting..." -msgstr "" +msgstr "Conectando..." #: install/index.php:1534 msgid "Connection was successful and your database should be compatible." -msgstr "" +msgstr "La conexión fue exitosa y tu base de datos debería ser compatible." #: install/index.php:1538 msgid "" "Connection was successful but your database seems too old for Wavelog. You " "can try to continue but you could run into issues." msgstr "" +"La conexión fue exitosa, pero tu base de datos parece demasiado antigua para " +"Wavelog. Puedes intentar continuar, pero podrías encontrarte con problemas." #: install/index.php:1538 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." -msgstr "" +msgstr "La versión mínima para MySQL es %s, para MariaDB es %s." #: install/index.php:1653 msgid "Search" -msgstr "" +msgstr "Buscar" #: install/index.php:1686 msgid "At least one field is empty." -msgstr "" +msgstr "Al menos un campo está vacío." #: install/index.php:1702 msgid "" @@ -594,120 +668,129 @@ msgid "" "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" +"Deténgase aquí un momento. Su DXCC elegido está obsoleto y ya no es válido. " +"Comprueba cuál es el DXCC correcto para esta localización en particular. Si " +"está seguro, ignore esta advertencia." #: install/index.php:1726 msgid "" "The locator seems to be not in the correct format. Should look like AA11AA " "(6-char grid locator)." msgstr "" +"El localizador parece no estar en el formato correcto. Debería verse como " +"AA11AA (localizador de cuadrícula de 6 caracteres)." #: install/index.php:1740 msgid "" "The e-mail adress does not look correct. Make sure it's a valid e-mail " "address" msgstr "" +"La dirección de correo electrónico no parece correcta. Asegúrate de que sea " +"una dirección de correo electrónico válida" #: install/index.php:1767 msgid "Password should be at least 8 characters long" -msgstr "" +msgstr "La contraseña debe tener al menos 8 caracteres de longitud" #: install/index.php:1776 msgid "Passwords do not match" -msgstr "" +msgstr "Las contraseñas no coinciden" #: install/index.php:1823 msgid "Install Now" -msgstr "" +msgstr "Instalar ahora" #: install/index.php:1827 msgid "Install not possible. Checklist incomplete." -msgstr "" +msgstr "Instalación no posible. Lista de verificación incompleta." #: install/index.php:1943 msgid "PHP Module missing" -msgstr "" +msgstr "Módulo PHP faltante" #: install/index.php:1945 msgid "The following PHP modules are missing:" -msgstr "" +msgstr "Faltan los siguientes módulos de PHP:" #: install/index.php:1946 msgid "Without this module the Wavelog Installer does not work!" -msgstr "" +msgstr "¡Sin este módulo, el instalador de Wavelog no funciona!" #: install/index.php:1947 msgid "Please install the required modules and restart the webserver." -msgstr "" +msgstr "Por favor, instala los módulos necesarios y reinicia el servidor web." #: install/run.php:10 msgid "Installation" -msgstr "" +msgstr "Instalación" #: install/run.php:12 msgid "Please wait..." -msgstr "" +msgstr "Por favor espera..." #: install/run.php:15 msgid "Copy config.php to application/config/" -msgstr "" +msgstr "Copia config.php a application/config/" #: install/run.php:18 msgid "Copy database.php to application/config/" -msgstr "" +msgstr "Copia database.php a application/config/" #: install/run.php:21 msgid "Creating database tables" -msgstr "" +msgstr "Creando tablas de base de datos" #: install/run.php:24 msgid "Running database migrations" -msgstr "" +msgstr "Ejecutando migraciones de base de datos" #: install/run.php:27 msgid "Updating DXCC data" -msgstr "" +msgstr "Actualizando datos de DXCC" #: install/run.php:35 msgid "Lock the installer" -msgstr "" +msgstr "Bloquea el instalador" #: install/run.php:39 #, php-format msgid "All install steps went through. Redirect to user login in %s seconds..." msgstr "" +"Todos los pasos de instalación se completaron. Redirigiendo al inicio de " +"sesión del usuario en %s segundos..." #: install/run.php:42 msgid "Done. Go to the user login ->" -msgstr "" +msgstr "Hecho. Ir al inicio de sesión de usuario ->" #: install/run.php:46 install/run.php:125 msgid "Show detailled debug log" -msgstr "" +msgstr "Mostrar registro detallado de depuración" #: install/run.php:127 msgid "Hide detailled debug log" -msgstr "" +msgstr "Ocultar registro de depuración detallado" #: install/run.php:182 msgid "Could not create application/config/config.php" -msgstr "" +msgstr "No se pudo crear application/config/config.php" #: install/run.php:217 msgid "Could not create application/config/database.php" -msgstr "" +msgstr "No se pudo crear application/config/database.php" #: install/run.php:251 msgid "Could not create database tables" -msgstr "" +msgstr "No se pudieron crear las tablas de la base de datos" #: install/run.php:281 msgid "Could not run database migrations" -msgstr "" +msgstr "No se pudieron ejecutar las migraciones de la base de datos" #: install/run.php:309 msgid "Could not update DXCC data" -msgstr "" +msgstr "No se pudo actualizar los datos de DXCC" #: install/run.php:341 msgid "Could not create install/.lock file" -msgstr "" +msgstr "No se pudo crear el archivo install/.lock" diff --git a/install/includes/gettext/locale/fi_FI/LC_MESSAGES/installer.po b/install/includes/gettext/locale/fi_FI/LC_MESSAGES/installer.po index 0c717d85d..a08d004c9 100644 --- a/install/includes/gettext/locale/fi_FI/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/fi_FI/LC_MESSAGES/installer.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-08 14:17+0000\n" +"POT-Creation-Date: 2024-08-12 09:45+0000\n" "PO-Revision-Date: 2024-06-05 15:15+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -37,66 +37,86 @@ msgid "not detected" msgstr "" #: install/includes/interface_assets/footer.php:50 -msgid "Bulgarian" +msgid "Albanian" msgstr "" #: install/includes/interface_assets/footer.php:51 -msgid "Chinese (Simplified)" +msgid "Bosnian" msgstr "" #: install/includes/interface_assets/footer.php:52 -msgid "Czech" +msgid "Bulgarian" msgstr "" #: install/includes/interface_assets/footer.php:53 -msgid "Dutch" +msgid "Chinese (Simplified)" msgstr "" #: install/includes/interface_assets/footer.php:54 -msgid "English" +msgid "Croatian" msgstr "" #: install/includes/interface_assets/footer.php:55 -msgid "Finnish" +msgid "Czech" msgstr "" #: install/includes/interface_assets/footer.php:56 -msgid "French" +msgid "Dutch" msgstr "" #: install/includes/interface_assets/footer.php:57 -msgid "German" +msgid "English" msgstr "" #: install/includes/interface_assets/footer.php:58 -msgid "Greek" +msgid "Finnish" msgstr "" #: install/includes/interface_assets/footer.php:59 -msgid "Italian" +msgid "French" msgstr "" #: install/includes/interface_assets/footer.php:60 -msgid "Portuguese" +msgid "German" msgstr "" #: install/includes/interface_assets/footer.php:61 -msgid "Polish" +msgid "Greek" msgstr "" #: install/includes/interface_assets/footer.php:62 -msgid "Russian" +msgid "Italian" msgstr "" #: install/includes/interface_assets/footer.php:63 -msgid "Spanish" +msgid "Montenegrin" msgstr "" #: install/includes/interface_assets/footer.php:64 -msgid "Swedish" +msgid "Polish" msgstr "" #: install/includes/interface_assets/footer.php:65 +msgid "Portuguese" +msgstr "" + +#: install/includes/interface_assets/footer.php:66 +msgid "Russian" +msgstr "" + +#: install/includes/interface_assets/footer.php:67 +msgid "Serbian" +msgstr "" + +#: install/includes/interface_assets/footer.php:68 +msgid "Spanish" +msgstr "" + +#: install/includes/interface_assets/footer.php:69 +msgid "Swedish" +msgstr "" + +#: install/includes/interface_assets/footer.php:70 msgid "Turkish" msgstr "" diff --git a/install/includes/gettext/locale/fr_FR/LC_MESSAGES/installer.mo b/install/includes/gettext/locale/fr_FR/LC_MESSAGES/installer.mo index e7b42b77f..077d5e069 100644 Binary files a/install/includes/gettext/locale/fr_FR/LC_MESSAGES/installer.mo and b/install/includes/gettext/locale/fr_FR/LC_MESSAGES/installer.mo differ diff --git a/install/includes/gettext/locale/fr_FR/LC_MESSAGES/installer.po b/install/includes/gettext/locale/fr_FR/LC_MESSAGES/installer.po index e95f97b79..c939911b9 100644 --- a/install/includes/gettext/locale/fr_FR/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/fr_FR/LC_MESSAGES/installer.po @@ -4,12 +4,13 @@ # # Byt3 , 2024. # "Francisco (F4VSE)" , 2024. +# "Francisco (F4VSE)" , 2024. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-08 14:17+0000\n" -"PO-Revision-Date: 2024-07-22 18:23+0000\n" -"Last-Translator: \"Francisco (F4VSE)\" \n" +"POT-Creation-Date: 2024-08-12 09:45+0000\n" +"PO-Revision-Date: 2024-08-18 14:15+0000\n" +"Last-Translator: \"Francisco (F4VSE)\" \n" "Language-Team: French \n" "Language: fr_FR\n" @@ -17,89 +18,109 @@ 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.6.2\n" +"X-Generator: Weblate 5.7\n" #: install/includes/core/database_class.php:59 msgid "Connection Error: " -msgstr "" +msgstr "Erreur de connexion : " #: install/includes/core/database_class.php:63 msgid "Unable to create database: " -msgstr "" +msgstr "Impossible de créer la base de données : " #: install/includes/core/database_class.php:68 msgid "Unable to select database: " -msgstr "" +msgstr "Impossible de sélectionner la base de données : " #: install/includes/core/database_class.php:74 msgid "Database is not empty." -msgstr "" +msgstr "La base de données n'est pas vide." #: install/includes/install_config/install_lib.php:123 msgid "not detected" -msgstr "" +msgstr "non détecté" #: install/includes/interface_assets/footer.php:50 +msgid "Albanian" +msgstr "Albanais" + +#: install/includes/interface_assets/footer.php:51 +msgid "Bosnian" +msgstr "Bosniaque" + +#: install/includes/interface_assets/footer.php:52 msgid "Bulgarian" msgstr "Bulgare" -#: install/includes/interface_assets/footer.php:51 +#: install/includes/interface_assets/footer.php:53 msgid "Chinese (Simplified)" msgstr "Chinois (simplifié)" -#: install/includes/interface_assets/footer.php:52 +#: install/includes/interface_assets/footer.php:54 +msgid "Croatian" +msgstr "Croate" + +#: install/includes/interface_assets/footer.php:55 msgid "Czech" msgstr "Tchèque" -#: install/includes/interface_assets/footer.php:53 +#: install/includes/interface_assets/footer.php:56 msgid "Dutch" msgstr "Néerlandais" -#: install/includes/interface_assets/footer.php:54 +#: install/includes/interface_assets/footer.php:57 msgid "English" msgstr "Anglais" -#: install/includes/interface_assets/footer.php:55 +#: install/includes/interface_assets/footer.php:58 msgid "Finnish" msgstr "Finlandais" -#: install/includes/interface_assets/footer.php:56 +#: install/includes/interface_assets/footer.php:59 msgid "French" msgstr "Français" -#: install/includes/interface_assets/footer.php:57 +#: install/includes/interface_assets/footer.php:60 msgid "German" msgstr "Allemand" -#: install/includes/interface_assets/footer.php:58 +#: install/includes/interface_assets/footer.php:61 msgid "Greek" msgstr "Grec" -#: install/includes/interface_assets/footer.php:59 +#: install/includes/interface_assets/footer.php:62 msgid "Italian" msgstr "Italien" -#: install/includes/interface_assets/footer.php:60 -msgid "Portuguese" -msgstr "" +#: install/includes/interface_assets/footer.php:63 +msgid "Montenegrin" +msgstr "Monténégrin" -#: install/includes/interface_assets/footer.php:61 +#: install/includes/interface_assets/footer.php:64 msgid "Polish" msgstr "Polonais" -#: install/includes/interface_assets/footer.php:62 +#: install/includes/interface_assets/footer.php:65 +msgid "Portuguese" +msgstr "Portugais" + +#: install/includes/interface_assets/footer.php:66 msgid "Russian" msgstr "Russe" -#: install/includes/interface_assets/footer.php:63 +#: install/includes/interface_assets/footer.php:67 +msgid "Serbian" +msgstr "Serbe" + +#: install/includes/interface_assets/footer.php:68 msgid "Spanish" msgstr "Espagnol" -#: install/includes/interface_assets/footer.php:64 +#: install/includes/interface_assets/footer.php:69 msgid "Swedish" msgstr "Suédois" -#: install/includes/interface_assets/footer.php:65 +#: install/includes/interface_assets/footer.php:70 msgid "Turkish" msgstr "Turc" @@ -193,7 +214,7 @@ msgstr "Version" #, php-format msgctxt "PHP Version" msgid "min. %s (recommended %s+)" -msgstr "" +msgstr "min. %s (recommandé %s+)" #: install/index.php:136 msgid "Installed" @@ -209,35 +230,37 @@ msgstr "Paramètres de PHP" #: install/index.php:234 msgid "Folder Write Permissions" -msgstr "" +msgstr "Autorisations d'écriture de dossier" #: install/index.php:240 install/index.php:251 install/index.php:262 #: install/index.php:273 install/index.php:284 msgid "Success" -msgstr "" +msgstr "Succès" #: install/index.php:243 install/index.php:254 install/index.php:265 #: install/index.php:276 install/index.php:287 msgid "Failed" -msgstr "" +msgstr "Échoué" #: install/index.php:294 msgid "Web Server" -msgstr "" +msgstr "Serveur Web" #: install/index.php:297 msgid "Version:" -msgstr "" +msgstr "Version :" #: install/index.php:304 msgid "Important note for nginx users!" -msgstr "" +msgstr "Note importante pour les utilisateurs de nginx !" #: install/index.php:305 msgid "" "Since you are using nginx as web server please make sure that you have made " "the changes described in the Wiki before continuing." msgstr "" +"Puisque vous utilisez nginx comme serveur web, assurez-vous d'avoir effectué " +"les modifications décrites dans la Wiki avant de continuer." #: install/index.php:314 msgid "Some Checks have failed!" @@ -261,6 +284,8 @@ msgid "" "In case of failed 'Folder Write Permissions' check out our Wiki here." msgstr "" +"En cas d'échec de la vérification des 'Permissions d'écriture du dossier', " +"consultez notre Wiki ici." #: install/index.php:323 msgid "You have some warnings!" @@ -303,6 +328,7 @@ msgstr "" #: install/index.php:352 msgid "No slash before or after the directory. Just the name of the folder." msgstr "" +"Pas de barre oblique avant ou après le répertoire. Juste le nom du dossier." #: install/index.php:357 #, php-format @@ -329,6 +355,10 @@ msgid "" "\t\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'
\n" "\t\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'" msgstr "" +"Ce champ
\n" +"- ne peut pas être vide
\n" +"- doit se terminer par une barre oblique 'exemple/'
\n" +"- doit commencer par 'http'" #: install/index.php:367 msgid "Optional: Global Callbook Lookup" @@ -369,45 +399,49 @@ msgstr "Mot de passe du carnet" #: install/index.php:389 #, php-format msgid "Password can't contain %s or be empty" -msgstr "" +msgstr "Le mot de passe ne peut pas contenir %s ou être vide" #: install/index.php:394 install/index.php:399 msgid "Advanced Settings" -msgstr "" +msgstr "Paramètres avancés" #: install/index.php:402 msgid "These settings should only be set if you know what you're doing." msgstr "" +"Ces paramètres ne doivent être définis que si vous savez ce que vous faites." #: install/index.php:405 msgid "Error Logs" -msgstr "" +msgstr "Journaux d'erreurs" #: install/index.php:406 msgid "" "Optional: Enable Error Logging by setting the log threshold bigger then 0. " "Only enable this if you really need it." msgstr "" +"Optionnel : Activer la journalisation des erreurs en définissant le seuil de " +"journalisation supérieur à 0. N'activez cela que si vous en avez vraiment " +"besoin." #: install/index.php:411 msgid "0 - No logs" -msgstr "" +msgstr "0 - Pas de journaux" #: install/index.php:412 msgid "1 - Error messages" -msgstr "" +msgstr "1 - Messages d'erreur" #: install/index.php:413 msgid "2 - Debug messages" -msgstr "" +msgstr "2 - Messages de débogage" #: install/index.php:414 msgid "3 - Info messages" -msgstr "" +msgstr "3 - Messages d'info" #: install/index.php:415 msgid "4 - All messages" -msgstr "" +msgstr "4 - Tous les messages" #: install/index.php:437 msgid "" @@ -426,6 +460,8 @@ msgid "" "Usually 'localhost'.
Optional with '[host]:[port]'. Default port: 3306." "
In a docker compose install type 'wavelog-db'." msgstr "" +"Habituellement 'localhost'.
Optionnel avec '[host]:[port]'. Port par " +"défaut : 3306.
Dans une installation docker compose, tape 'wavelog-db'." #: install/index.php:447 msgid "Database Name" @@ -454,10 +490,13 @@ msgid "" "Now you can create your first user in Wavelog. Fill out all fields and click " "continue. Make sure you use a safe password." msgstr "" +"Vous pouvez maintenant créer votre premier utilisateur dans Wavelog. " +"Remplissez tous les champs et cliquez sur continuer.
Assurez-vous " +"d'utiliser un mot de passe sécurisé." #: install/index.php:473 msgid "All fields are required!" -msgstr "" +msgstr "Tous les champs sont obligatoires !" #: install/index.php:481 msgid "First Name" @@ -530,7 +569,7 @@ msgstr "Liste de verification" #: install/index.php:1059 msgid "Pre-Checks" -msgstr "" +msgstr "Vérifications préalables" #: install/index.php:1068 msgid "Configuration" @@ -560,23 +599,24 @@ msgstr "" #: install/index.php:1105 msgid "Reset" -msgstr "" +msgstr "Réinitialiser" #: install/index.php:1110 msgid "Installer Reset" -msgstr "" +msgstr "Réinitialiser l'installateur" #: install/index.php:1113 msgid "Do you really want to reset all data and start from scratch?" msgstr "" +"Voulez-vous vraiment réinitialiser toutes les données et recommencer à zéro ?" #: install/index.php:1116 msgid "Yes" -msgstr "" +msgstr "Oui" #: install/index.php:1117 msgid "No" -msgstr "" +msgstr "Non" #: install/index.php:1127 msgid "Back" @@ -591,14 +631,18 @@ msgid "" "You can't continue. Solve the red marked issues, restart the webserver and " "reload this page." msgstr "" +"Vous ne pouvez pas continuer. Résolvez les problèmes marqués en rouge, " +"redémarrez le serveur web et rechargez cette page." #: install/index.php:1333 msgid "Password can't contain ' / \\ < >" -msgstr "" +msgstr "Le mot de passe ne peut pas contenir ' / \\ < >" #: install/index.php:1500 msgid "Error: At least Hostname/IP, Database Name and Username are required." msgstr "" +"Erreur : Au moins le nom d'hôte/IP, le nom de la base de données et le nom " +"d'utilisateur sont requis." #: install/index.php:1510 msgid "Connecting..." @@ -607,6 +651,7 @@ msgstr "Connection..." #: install/index.php:1534 msgid "Connection was successful and your database should be compatible." msgstr "" +"La connexion a été réussie et votre base de données devrait être compatible." #: install/index.php:1538 msgid "" @@ -620,15 +665,15 @@ msgstr "" #: install/index.php:1538 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." -msgstr "" +msgstr "La version min. pour MySQL est %s, pour MariaDB c'est %s." #: install/index.php:1653 msgid "Search" -msgstr "" +msgstr "Chercher" #: install/index.php:1686 msgid "At least one field is empty." -msgstr "" +msgstr "Au moins un champ est vide." #: install/index.php:1702 msgid "" @@ -636,18 +681,25 @@ msgid "" "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" +"Arrêtez-vous ici un moment. Votre DXCC choisi est obsolète et n'est plus " +"valide. Vérifiez quel DXCC pour cet emplacement particulier est le bon. Si " +"vous êtes sûr, ignorez cet avertissement." #: install/index.php:1726 msgid "" "The locator seems to be not in the correct format. Should look like AA11AA " "(6-char grid locator)." msgstr "" +"Le locator ne semble pas être au bon format. Il devrait ressembler à AA11AA (" +"locator de grille à 6 caractères)." #: install/index.php:1740 msgid "" "The e-mail adress does not look correct. Make sure it's a valid e-mail " "address" msgstr "" +"L'adresse e-mail ne semble pas correcte. Assurez-vous qu'il s'agit d'une " +"adresse e-mail valide" #: install/index.php:1767 msgid "Password should be at least 8 characters long" @@ -663,96 +715,98 @@ msgstr "Installer maintenant" #: install/index.php:1827 msgid "Install not possible. Checklist incomplete." -msgstr "" +msgstr "Installation impossible. Liste de verification incomplète." #: install/index.php:1943 msgid "PHP Module missing" -msgstr "" +msgstr "Module PHP manquant" #: install/index.php:1945 msgid "The following PHP modules are missing:" -msgstr "" +msgstr "Les modules PHP suivants sont manquants :" #: install/index.php:1946 msgid "Without this module the Wavelog Installer does not work!" -msgstr "" +msgstr "Sans ce module, l'installateur Wavelog ne fonctionne pas !" #: install/index.php:1947 msgid "Please install the required modules and restart the webserver." -msgstr "" +msgstr "Veuillez installer les modules requis et redémarrer le serveur web." #: install/run.php:10 msgid "Installation" -msgstr "" +msgstr "Installation" #: install/run.php:12 msgid "Please wait..." -msgstr "" +msgstr "Veuillez patienter..." #: install/run.php:15 msgid "Copy config.php to application/config/" -msgstr "" +msgstr "Copier config.php dans application/config/" #: install/run.php:18 msgid "Copy database.php to application/config/" -msgstr "" +msgstr "Copier database.php dans application/config/" #: install/run.php:21 msgid "Creating database tables" -msgstr "" +msgstr "Création de tables de base de données" #: install/run.php:24 msgid "Running database migrations" -msgstr "" +msgstr "Exécution des migrations de base de données" #: install/run.php:27 msgid "Updating DXCC data" -msgstr "" +msgstr "Mise à jour des données DXCC" #: install/run.php:35 msgid "Lock the installer" -msgstr "" +msgstr "Verrouille l'installateur" #: install/run.php:39 #, php-format msgid "All install steps went through. Redirect to user login in %s seconds..." msgstr "" +"Toutes les étapes d'installation ont été effectuées. Redirection vers la " +"connexion utilisateur dans %s secondes..." #: install/run.php:42 msgid "Done. Go to the user login ->" -msgstr "" +msgstr "Fait. Allez à la connexion utilisateur ->" #: install/run.php:46 install/run.php:125 msgid "Show detailled debug log" -msgstr "" +msgstr "Afficher le journal de débogage détaillé" #: install/run.php:127 msgid "Hide detailled debug log" -msgstr "" +msgstr "Masquer le journal de débogage détaillé" #: install/run.php:182 msgid "Could not create application/config/config.php" -msgstr "" +msgstr "Impossible de créer application/config/config.php" #: install/run.php:217 msgid "Could not create application/config/database.php" -msgstr "" +msgstr "Impossible de créer application/config/database.php" #: install/run.php:251 msgid "Could not create database tables" -msgstr "" +msgstr "Impossible de créer les tables de la base de données" #: install/run.php:281 msgid "Could not run database migrations" -msgstr "" +msgstr "Impossible d'exécuter les migrations de la base de données" #: install/run.php:309 msgid "Could not update DXCC data" -msgstr "" +msgstr "Impossible de mettre à jour les données DXCC" #: install/run.php:341 msgid "Could not create install/.lock file" -msgstr "" +msgstr "Impossible de créer le fichier install/.lock" #~ msgid "On" #~ msgstr "Allumé" diff --git a/install/includes/gettext/locale/hr/LC_MESSAGES/installer.mo b/install/includes/gettext/locale/hr/LC_MESSAGES/installer.mo new file mode 100644 index 000000000..ef95dca4d Binary files /dev/null and b/install/includes/gettext/locale/hr/LC_MESSAGES/installer.mo differ diff --git a/install/includes/gettext/locale/hr/LC_MESSAGES/installer.po b/install/includes/gettext/locale/hr/LC_MESSAGES/installer.po new file mode 100644 index 000000000..e23d0ad64 --- /dev/null +++ b/install/includes/gettext/locale/hr/LC_MESSAGES/installer.po @@ -0,0 +1,732 @@ +# WAVELOG PO FILE +# Copyright (c) 2024 Wavelog by DF2ET, DJ7NT, HB9HIL and LA8AJA. +# This file is distributed under the MIT licence. +# +# Fabian Berg <80885850+HB9HIL@users.noreply.github.com>, 2024. +msgid "" +msgstr "" +"Report-Msgid-Bugs-To: translations@wavelog.org\n" +"POT-Creation-Date: 2024-08-12 09:45+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: install/includes/core/database_class.php:59 +msgid "Connection Error: " +msgstr "" + +#: install/includes/core/database_class.php:63 +msgid "Unable to create database: " +msgstr "" + +#: install/includes/core/database_class.php:68 +msgid "Unable to select database: " +msgstr "" + +#: install/includes/core/database_class.php:74 +msgid "Database is not empty." +msgstr "" + +#: install/includes/install_config/install_lib.php:123 +msgid "not detected" +msgstr "" + +#: install/includes/interface_assets/footer.php:50 +msgid "Albanian" +msgstr "" + +#: install/includes/interface_assets/footer.php:51 +msgid "Bosnian" +msgstr "" + +#: install/includes/interface_assets/footer.php:52 +msgid "Bulgarian" +msgstr "" + +#: install/includes/interface_assets/footer.php:53 +msgid "Chinese (Simplified)" +msgstr "" + +#: install/includes/interface_assets/footer.php:54 +msgid "Croatian" +msgstr "" + +#: install/includes/interface_assets/footer.php:55 +msgid "Czech" +msgstr "" + +#: install/includes/interface_assets/footer.php:56 +msgid "Dutch" +msgstr "" + +#: install/includes/interface_assets/footer.php:57 +msgid "English" +msgstr "" + +#: install/includes/interface_assets/footer.php:58 +msgid "Finnish" +msgstr "" + +#: install/includes/interface_assets/footer.php:59 +msgid "French" +msgstr "" + +#: install/includes/interface_assets/footer.php:60 +msgid "German" +msgstr "" + +#: install/includes/interface_assets/footer.php:61 +msgid "Greek" +msgstr "" + +#: install/includes/interface_assets/footer.php:62 +msgid "Italian" +msgstr "" + +#: install/includes/interface_assets/footer.php:63 +msgid "Montenegrin" +msgstr "" + +#: install/includes/interface_assets/footer.php:64 +msgid "Polish" +msgstr "" + +#: install/includes/interface_assets/footer.php:65 +msgid "Portuguese" +msgstr "" + +#: install/includes/interface_assets/footer.php:66 +msgid "Russian" +msgstr "" + +#: install/includes/interface_assets/footer.php:67 +msgid "Serbian" +msgstr "" + +#: install/includes/interface_assets/footer.php:68 +msgid "Spanish" +msgstr "" + +#: install/includes/interface_assets/footer.php:69 +msgid "Swedish" +msgstr "" + +#: install/includes/interface_assets/footer.php:70 +msgid "Turkish" +msgstr "" + +#: install/includes/interface_assets/header.php:94 +msgid "Install | Wavelog" +msgstr "" + +#: install/index.php:30 +msgid "1. Welcome" +msgstr "" + +#: install/index.php:33 +msgid "2. Pre Checks" +msgstr "" + +#: install/index.php:36 +msgid "3. Configuration" +msgstr "" + +#: install/index.php:39 +msgid "4. Database" +msgstr "" + +#: install/index.php:42 +msgid "5. First User" +msgstr "" + +#: install/index.php:45 +msgid "6. Finish" +msgstr "" + +#: install/index.php:62 +msgid "Welcome to the Wavelog Installer" +msgstr "" + +#: install/index.php:63 +msgid "" +"This installer will guide you through the necessary steps for the " +"installation of Wavelog.
Wavelog is a powerful web-based amateur radio " +"logging software. Follow the steps in each tab to configure and install " +"Wavelog on your server." +msgstr "" + +#: install/index.php:64 +msgid "Discussions" +msgstr "" + +#: install/index.php:64 +#, php-format +msgid "" +"If you encounter any issues or have questions, refer to the documentation " +"(%s) or community forum (%s) on Github for assistance." +msgstr "" + +#: install/index.php:64 +msgid "Wiki" +msgstr "" + +#: install/index.php:65 +msgid "Thank you for installing Wavelog!" +msgstr "" + +#: install/index.php:66 install/index.php:69 install/index.php:1036 +msgid "Language" +msgstr "" + +#: install/index.php:79 +msgid "Select a language" +msgstr "" + +#: install/index.php:91 install/index.php:421 +msgid "Close" +msgstr "" + +#: install/index.php:101 +msgid "PHP Modules" +msgstr "" + +#: install/index.php:108 +msgid "Version" +msgstr "" + +#: install/index.php:109 +#, php-format +msgctxt "PHP Version" +msgid "min. %s (recommended %s+)" +msgstr "" + +#: install/index.php:136 +msgid "Installed" +msgstr "" + +#: install/index.php:136 +msgid "Not Installed" +msgstr "" + +#: install/index.php:144 +msgid "PHP Settings" +msgstr "" + +#: install/index.php:234 +msgid "Folder Write Permissions" +msgstr "" + +#: install/index.php:240 install/index.php:251 install/index.php:262 +#: install/index.php:273 install/index.php:284 +msgid "Success" +msgstr "" + +#: install/index.php:243 install/index.php:254 install/index.php:265 +#: install/index.php:276 install/index.php:287 +msgid "Failed" +msgstr "" + +#: install/index.php:294 +msgid "Web Server" +msgstr "" + +#: install/index.php:297 +msgid "Version:" +msgstr "" + +#: install/index.php:304 +msgid "Important note for nginx users!" +msgstr "" + +#: install/index.php:305 +msgid "" +"Since you are using nginx as web server please make sure that you have made " +"the changes described in the Wiki before continuing." +msgstr "" + +#: install/index.php:314 +msgid "Some Checks have failed!" +msgstr "" + +#: install/index.php:315 +msgid "Check your PHP settings and install missing modules if necessary." +msgstr "" + +#: install/index.php:316 +msgid "" +"After that, you have to restart your webserver and start the installer again." +msgstr "" + +#: install/index.php:317 +#, php-format +msgid "" +"In case of failed 'Folder Write Permissions' check out our Wiki here." +msgstr "" + +#: install/index.php:323 +msgid "You have some warnings!" +msgstr "" + +#: install/index.php:324 +msgid "" +"Some of the settings are not optimal. You can proceed with the installer but " +"be aware that you could run into problems while using Wavelog." +msgstr "" + +#: install/index.php:331 +msgid "All Checks are OK. You can continue." +msgstr "" + +#: install/index.php:345 +msgid "" +"Configure some basic parameters for your wavelog instance. You can change " +"them later in 'application/config/config.php'" +msgstr "" + +#: install/index.php:347 +msgid "Directory" +msgstr "" + +#: install/index.php:347 +msgid "" +"The 'Directory' is basically your subfolder of the webroot In normal " +"conditions the prefilled value is doing it's job. It also can be empty." +msgstr "" + +#: install/index.php:352 +msgid "No slash before or after the directory. Just the name of the folder." +msgstr "" + +#: install/index.php:357 +#, php-format +msgid "" +"This is the complete URL where your Wavelog Instance will be available. If " +"you run this installer locally but want to place Wavelog behind a Reverse " +"Proxy with SSL you should type in the new URL here (e.g. %s instead of %s). " +"Don't forget to include the directory from above." +msgstr "" + +#: install/index.php:357 +msgid "Website URL" +msgstr "" + +#: install/index.php:360 +msgid "" +"This field
\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\t- can't be empty
\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'
\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'" +msgstr "" + +#: install/index.php:367 +msgid "Optional: Global Callbook Lookup" +msgstr "" + +#: install/index.php:367 +msgid "" +"This configuration is optional. The callsign lookup will be available for " +"all users of this installation. You can choose between QRZ.com and HamQTH. " +"While HamQTH also works without username and password, you will need " +"credentials for QRZ.com. To also get the Call Locator in QRZ.com you'll need " +"an XML subscription. HamQTH does not always provide the locator information." +msgstr "" + +#: install/index.php:376 install/index.php:453 install/index.php:905 +msgid "Username" +msgstr "" + +#: install/index.php:379 install/index.php:457 install/index.php:915 +msgid "Password" +msgstr "" + +#: install/index.php:384 +msgid "Callbook Username" +msgstr "" + +#: install/index.php:387 +msgid "Callbook Password" +msgstr "" + +#: install/index.php:389 +#, php-format +msgid "Password can't contain %s or be empty" +msgstr "" + +#: install/index.php:394 install/index.php:399 +msgid "Advanced Settings" +msgstr "" + +#: install/index.php:402 +msgid "These settings should only be set if you know what you're doing." +msgstr "" + +#: install/index.php:405 +msgid "Error Logs" +msgstr "" + +#: install/index.php:406 +msgid "" +"Optional: Enable Error Logging by setting the log threshold bigger then 0. " +"Only enable this if you really need it." +msgstr "" + +#: install/index.php:411 +msgid "0 - No logs" +msgstr "" + +#: install/index.php:412 +msgid "1 - Error messages" +msgstr "" + +#: install/index.php:413 +msgid "2 - Debug messages" +msgstr "" + +#: install/index.php:414 +msgid "3 - Info messages" +msgstr "" + +#: install/index.php:415 +msgid "4 - All messages" +msgstr "" + +#: install/index.php:437 +msgid "" +"To properly install Wavelog you already should have setup a mariadb/mysql " +"database. Provide the parameters here." +msgstr "" + +#: install/index.php:441 +msgid "Hostname or IP" +msgstr "" + +#: install/index.php:441 +msgid "" +"Usually 'localhost'.
Optional with '[host]:[port]'. Default port: 3306." +"
In a docker compose install type 'wavelog-db'." +msgstr "" + +#: install/index.php:447 +msgid "Database Name" +msgstr "" + +#: install/index.php:447 +msgid "Name of the Database" +msgstr "" + +#: install/index.php:453 +msgid "Username of the Database User which has full access to the database." +msgstr "" + +#: install/index.php:457 +msgid "Password of the Database User" +msgstr "" + +#: install/index.php:461 +msgid "Connection Test" +msgstr "" + +#: install/index.php:472 +msgid "" +"Now you can create your first user in Wavelog. Fill out all fields and click " +"continue. Make sure you use a safe password." +msgstr "" + +#: install/index.php:473 +msgid "All fields are required!" +msgstr "" + +#: install/index.php:481 +msgid "First Name" +msgstr "" + +#: install/index.php:485 +msgid "DXCC" +msgstr "" + +#: install/index.php:487 +msgctxt "No DXCC" +msgid "- None -" +msgstr "" + +#: install/index.php:488 install/index.php:494 install/index.php:518 +#: install/index.php:530 install/index.php:533 install/index.php:538 +#: install/index.php:539 install/index.php:548 install/index.php:552 +#: install/index.php:567 install/index.php:580 install/index.php:581 +#: install/index.php:585 install/index.php:606 install/index.php:613 +#: install/index.php:615 install/index.php:616 install/index.php:618 +#: install/index.php:622 install/index.php:623 install/index.php:624 +#: install/index.php:628 install/index.php:629 install/index.php:648 +#: install/index.php:656 install/index.php:662 install/index.php:669 +#: install/index.php:670 install/index.php:676 install/index.php:678 +#: install/index.php:680 install/index.php:698 install/index.php:703 +#: install/index.php:704 install/index.php:718 install/index.php:733 +#: install/index.php:734 install/index.php:738 install/index.php:749 +#: install/index.php:750 install/index.php:755 install/index.php:759 +#: install/index.php:761 install/index.php:762 install/index.php:769 +#: install/index.php:784 install/index.php:786 install/index.php:803 +#: install/index.php:806 install/index.php:811 install/index.php:814 +#: install/index.php:817 install/index.php:827 install/index.php:833 +#: install/index.php:837 install/index.php:843 install/index.php:846 +#: install/index.php:849 install/index.php:854 install/index.php:880 +#: install/index.php:886 install/index.php:888 install/index.php:1700 +msgid "Deleted DXCC" +msgstr "" + +#: install/index.php:895 +msgid "Last Name" +msgstr "" + +#: install/index.php:899 +msgid "Callsign" +msgstr "" + +#: install/index.php:909 +msgid "Gridsquare/Locator" +msgstr "" + +#: install/index.php:919 +msgid "City" +msgstr "" + +#: install/index.php:925 +msgid "Confirm Password" +msgstr "" + +#: install/index.php:929 +msgid "Timezone" +msgstr "" + +#: install/index.php:1032 +msgid "E-Mail Address" +msgstr "" + +#: install/index.php:1054 +msgid "Checklist" +msgstr "" + +#: install/index.php:1059 +msgid "Pre-Checks" +msgstr "" + +#: install/index.php:1068 +msgid "Configuration" +msgstr "" + +#: install/index.php:1077 +msgid "Database" +msgstr "" + +#: install/index.php:1086 +msgid "First User" +msgstr "" + +#: install/index.php:1096 +msgid "Nearly done!" +msgstr "" + +#: install/index.php:1098 +msgid "You prepared all neccessary steps." +msgstr "" + +#: install/index.php:1099 +msgid "We now can install Wavelog. This process can take a few minutes." +msgstr "" + +#: install/index.php:1105 +msgid "Reset" +msgstr "" + +#: install/index.php:1110 +msgid "Installer Reset" +msgstr "" + +#: install/index.php:1113 +msgid "Do you really want to reset all data and start from scratch?" +msgstr "" + +#: install/index.php:1116 +msgid "Yes" +msgstr "" + +#: install/index.php:1117 +msgid "No" +msgstr "" + +#: install/index.php:1127 +msgid "Back" +msgstr "" + +#: install/index.php:1128 +msgid "Continue" +msgstr "" + +#: install/index.php:1206 +msgid "" +"You can't continue. Solve the red marked issues, restart the webserver and " +"reload this page." +msgstr "" + +#: install/index.php:1333 +msgid "Password can't contain ' / \\ < >" +msgstr "" + +#: install/index.php:1500 +msgid "Error: At least Hostname/IP, Database Name and Username are required." +msgstr "" + +#: install/index.php:1510 +msgid "Connecting..." +msgstr "" + +#: install/index.php:1534 +msgid "Connection was successful and your database should be compatible." +msgstr "" + +#: install/index.php:1538 +msgid "" +"Connection was successful but your database seems too old for Wavelog. You " +"can try to continue but you could run into issues." +msgstr "" + +#: install/index.php:1538 +#, php-format +msgid "The min. version for MySQL is %s, for MariaDB it's %s." +msgstr "" + +#: install/index.php:1653 +msgid "Search" +msgstr "" + +#: install/index.php:1686 +msgid "At least one field is empty." +msgstr "" + +#: install/index.php:1702 +msgid "" +"Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " +"Check which DXCC for this particular location is the correct one. If you are " +"sure, ignore this warning." +msgstr "" + +#: install/index.php:1726 +msgid "" +"The locator seems to be not in the correct format. Should look like AA11AA " +"(6-char grid locator)." +msgstr "" + +#: install/index.php:1740 +msgid "" +"The e-mail adress does not look correct. Make sure it's a valid e-mail " +"address" +msgstr "" + +#: install/index.php:1767 +msgid "Password should be at least 8 characters long" +msgstr "" + +#: install/index.php:1776 +msgid "Passwords do not match" +msgstr "" + +#: install/index.php:1823 +msgid "Install Now" +msgstr "" + +#: install/index.php:1827 +msgid "Install not possible. Checklist incomplete." +msgstr "" + +#: install/index.php:1943 +msgid "PHP Module missing" +msgstr "" + +#: install/index.php:1945 +msgid "The following PHP modules are missing:" +msgstr "" + +#: install/index.php:1946 +msgid "Without this module the Wavelog Installer does not work!" +msgstr "" + +#: install/index.php:1947 +msgid "Please install the required modules and restart the webserver." +msgstr "" + +#: install/run.php:10 +msgid "Installation" +msgstr "" + +#: install/run.php:12 +msgid "Please wait..." +msgstr "" + +#: install/run.php:15 +msgid "Copy config.php to application/config/" +msgstr "" + +#: install/run.php:18 +msgid "Copy database.php to application/config/" +msgstr "" + +#: install/run.php:21 +msgid "Creating database tables" +msgstr "" + +#: install/run.php:24 +msgid "Running database migrations" +msgstr "" + +#: install/run.php:27 +msgid "Updating DXCC data" +msgstr "" + +#: install/run.php:35 +msgid "Lock the installer" +msgstr "" + +#: install/run.php:39 +#, php-format +msgid "All install steps went through. Redirect to user login in %s seconds..." +msgstr "" + +#: install/run.php:42 +msgid "Done. Go to the user login ->" +msgstr "" + +#: install/run.php:46 install/run.php:125 +msgid "Show detailled debug log" +msgstr "" + +#: install/run.php:127 +msgid "Hide detailled debug log" +msgstr "" + +#: install/run.php:182 +msgid "Could not create application/config/config.php" +msgstr "" + +#: install/run.php:217 +msgid "Could not create application/config/database.php" +msgstr "" + +#: install/run.php:251 +msgid "Could not create database tables" +msgstr "" + +#: install/run.php:281 +msgid "Could not run database migrations" +msgstr "" + +#: install/run.php:309 +msgid "Could not update DXCC data" +msgstr "" + +#: install/run.php:341 +msgid "Could not create install/.lock file" +msgstr "" diff --git a/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.mo b/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.mo index 18de14937..34db86ae8 100644 Binary files a/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.mo and b/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.mo differ diff --git a/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.po b/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.po index 1195a0475..d91c4a2b9 100644 --- a/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.po @@ -3,12 +3,13 @@ # This file is distributed under the MIT licence. # # Luca , 2024. +# "Francisco (F4VSE)" , 2024. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-08 14:17+0000\n" -"PO-Revision-Date: 2024-08-09 07:24+0000\n" -"Last-Translator: Luca \n" +"POT-Creation-Date: 2024-08-12 09:45+0000\n" +"PO-Revision-Date: 2024-08-18 19:11+0000\n" +"Last-Translator: \"Francisco (F4VSE)\" \n" "Language-Team: Italian \n" "Language: it_IT\n" @@ -16,123 +17,143 @@ 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.6.2\n" +"X-Generator: Weblate 5.7\n" #: install/includes/core/database_class.php:59 msgid "Connection Error: " -msgstr "" +msgstr "Errore di connessione: " #: install/includes/core/database_class.php:63 msgid "Unable to create database: " -msgstr "" +msgstr "Impossibile creare il database: " #: install/includes/core/database_class.php:68 msgid "Unable to select database: " -msgstr "" +msgstr "Impossibile selezionare il database: " #: install/includes/core/database_class.php:74 msgid "Database is not empty." -msgstr "" +msgstr "Il database non è vuoto." #: install/includes/install_config/install_lib.php:123 msgid "not detected" -msgstr "" +msgstr "non rilevato" #: install/includes/interface_assets/footer.php:50 -msgid "Bulgarian" -msgstr "" +msgid "Albanian" +msgstr "Albanese" #: install/includes/interface_assets/footer.php:51 -msgid "Chinese (Simplified)" -msgstr "" +msgid "Bosnian" +msgstr "Bosniaco" #: install/includes/interface_assets/footer.php:52 -msgid "Czech" -msgstr "" +msgid "Bulgarian" +msgstr "Bulgaro" #: install/includes/interface_assets/footer.php:53 -msgid "Dutch" -msgstr "" +msgid "Chinese (Simplified)" +msgstr "Cinese (semplificato)" #: install/includes/interface_assets/footer.php:54 -msgid "English" -msgstr "" +msgid "Croatian" +msgstr "Croato" #: install/includes/interface_assets/footer.php:55 -msgid "Finnish" -msgstr "" +msgid "Czech" +msgstr "Ceco" #: install/includes/interface_assets/footer.php:56 -msgid "French" -msgstr "" +msgid "Dutch" +msgstr "Olandese" #: install/includes/interface_assets/footer.php:57 -msgid "German" -msgstr "" +msgid "English" +msgstr "Inglese" #: install/includes/interface_assets/footer.php:58 -msgid "Greek" -msgstr "" +msgid "Finnish" +msgstr "Finlandese" #: install/includes/interface_assets/footer.php:59 -msgid "Italian" -msgstr "" +msgid "French" +msgstr "Francese" #: install/includes/interface_assets/footer.php:60 -msgid "Portuguese" -msgstr "" +msgid "German" +msgstr "Tedesco" #: install/includes/interface_assets/footer.php:61 -msgid "Polish" -msgstr "" +msgid "Greek" +msgstr "Greco" #: install/includes/interface_assets/footer.php:62 -msgid "Russian" -msgstr "" +msgid "Italian" +msgstr "Italiano" #: install/includes/interface_assets/footer.php:63 -msgid "Spanish" -msgstr "" +msgid "Montenegrin" +msgstr "Montenegrino" #: install/includes/interface_assets/footer.php:64 -msgid "Swedish" -msgstr "" +msgid "Polish" +msgstr "Polacco" #: install/includes/interface_assets/footer.php:65 +msgid "Portuguese" +msgstr "Portoghese" + +#: install/includes/interface_assets/footer.php:66 +msgid "Russian" +msgstr "Russo" + +#: install/includes/interface_assets/footer.php:67 +msgid "Serbian" +msgstr "Serbo" + +#: install/includes/interface_assets/footer.php:68 +msgid "Spanish" +msgstr "Spagnolo" + +#: install/includes/interface_assets/footer.php:69 +msgid "Swedish" +msgstr "Svedese" + +#: install/includes/interface_assets/footer.php:70 msgid "Turkish" -msgstr "" +msgstr "Turco" #: install/includes/interface_assets/header.php:94 msgid "Install | Wavelog" -msgstr "" +msgstr "Installa | Wavelog" #: install/index.php:30 msgid "1. Welcome" -msgstr "" +msgstr "1. Benvenuto" #: install/index.php:33 msgid "2. Pre Checks" -msgstr "" +msgstr "2. Controlli preliminari" #: install/index.php:36 msgid "3. Configuration" -msgstr "" +msgstr "3. Configurazione" #: install/index.php:39 msgid "4. Database" -msgstr "" +msgstr "4. Database" #: install/index.php:42 msgid "5. First User" -msgstr "" +msgstr "5. Primo Utente" #: install/index.php:45 msgid "6. Finish" -msgstr "" +msgstr "6. Finisci" #: install/index.php:62 msgid "Welcome to the Wavelog Installer" -msgstr "" +msgstr "Benvenuto nell'installatore di Wavelog" #: install/index.php:63 msgid "" @@ -141,10 +162,14 @@ msgid "" "logging software. Follow the steps in each tab to configure and install " "Wavelog on your server." msgstr "" +"Questo programma di installazione ti guiderà attraverso i passaggi necessari " +"per l'installazione di Wavelog.
Wavelog è un potente software di " +"registrazione per radioamatori basato sul web. Segui i passaggi in ciascuna " +"scheda per configurare e installare Wavelog sul tuo server." #: install/index.php:64 msgid "Discussions" -msgstr "" +msgstr "Discussioni" #: install/index.php:64 #, php-format @@ -152,97 +177,104 @@ msgid "" "If you encounter any issues or have questions, refer to the documentation " "(%s) or community forum (%s) on Github for assistance." msgstr "" +"Se riscontri problemi o hai domande, consulta la documentazione (%s) o il " +"forum della community (%s) su Github per assistenza." #: install/index.php:64 msgid "Wiki" -msgstr "" +msgstr "Wiki" #: install/index.php:65 msgid "Thank you for installing Wavelog!" -msgstr "" +msgstr "Grazie per aver installato Wavelog!" #: install/index.php:66 install/index.php:69 install/index.php:1036 msgid "Language" -msgstr "" +msgstr "Lingua" #: install/index.php:79 msgid "Select a language" -msgstr "" +msgstr "Seleziona una lingua" #: install/index.php:91 install/index.php:421 msgid "Close" -msgstr "" +msgstr "Chiudi" #: install/index.php:101 msgid "PHP Modules" -msgstr "" +msgstr "Moduli PHP" #: install/index.php:108 msgid "Version" -msgstr "" +msgstr "Versione" #: install/index.php:109 #, php-format msgctxt "PHP Version" msgid "min. %s (recommended %s+)" -msgstr "" +msgstr "min. %s (consigliato %s+)" #: install/index.php:136 msgid "Installed" -msgstr "" +msgstr "Installato" #: install/index.php:136 msgid "Not Installed" -msgstr "" +msgstr "Non installato" #: install/index.php:144 msgid "PHP Settings" -msgstr "" +msgstr "Impostazioni PHP" #: install/index.php:234 msgid "Folder Write Permissions" -msgstr "" +msgstr "Autorizzazioni di scrittura della cartella" #: install/index.php:240 install/index.php:251 install/index.php:262 #: install/index.php:273 install/index.php:284 msgid "Success" -msgstr "" +msgstr "Successo" #: install/index.php:243 install/index.php:254 install/index.php:265 #: install/index.php:276 install/index.php:287 msgid "Failed" -msgstr "" +msgstr "Fallito" #: install/index.php:294 msgid "Web Server" -msgstr "" +msgstr "Server Web" #: install/index.php:297 msgid "Version:" -msgstr "" +msgstr "Versione:" #: install/index.php:304 msgid "Important note for nginx users!" -msgstr "" +msgstr "Nota importante per gli utenti di nginx!" #: install/index.php:305 msgid "" "Since you are using nginx as web server please make sure that you have made " "the changes described in the Wiki before continuing." msgstr "" +"Dal momento che stai usando nginx come server web, assicurati di aver " +"apportato le modifiche descritte nel Wiki prima di continuare." #: install/index.php:314 msgid "Some Checks have failed!" -msgstr "" +msgstr "Alcuni controlli sono falliti!" #: install/index.php:315 msgid "Check your PHP settings and install missing modules if necessary." msgstr "" +"Controlla le impostazioni di PHP e installa i moduli mancanti se necessario." #: install/index.php:316 msgid "" "After that, you have to restart your webserver and start the installer again." msgstr "" +"Dopo di che, devi riavviare il tuo server web e avviare di nuovo " +"l'installatore." #: install/index.php:317 #, php-format @@ -250,26 +282,33 @@ msgid "" "In case of failed 'Folder Write Permissions' check out our Wiki here." msgstr "" +"In caso di fallimento del controllo 'Permessi di scrittura della cartella', " +"consulta il nostro Wiki qui." #: install/index.php:323 msgid "You have some warnings!" -msgstr "" +msgstr "Hai degli avvertimenti!" #: install/index.php:324 msgid "" "Some of the settings are not optimal. You can proceed with the installer but " "be aware that you could run into problems while using Wavelog." msgstr "" +"Alcune delle impostazioni non sono ottimali. Puoi procedere con " +"l'installazione, ma tieni presente che potresti incontrare problemi durante " +"l'uso di Wavelog." #: install/index.php:331 msgid "All Checks are OK. You can continue." -msgstr "" +msgstr "Tutti i controlli sono OK. Puoi continuare." #: install/index.php:345 msgid "" "Configure some basic parameters for your wavelog instance. You can change " "them later in 'application/config/config.php'" msgstr "" +"Configura alcuni parametri di base per la tua istanza wavelog. Puoi " +"cambiarli successivamente in 'application/config/config.php'" #: install/index.php:347 msgid "Directory" diff --git a/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.mo b/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.mo index dfc360d6c..a1bbf4159 100644 Binary files a/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.mo and b/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.mo differ diff --git a/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.po b/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.po index 9441a74e6..7d6f2b709 100644 --- a/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.po @@ -2,19 +2,21 @@ # Copyright (c) 2024 Wavelog by DF2ET, DJ7NT, HB9HIL and LA8AJA. # This file is distributed under the MIT licence. # +# Casper van Lieburg , 2024. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-08 14:17+0000\n" -"PO-Revision-Date: 2024-06-05 15:15+0200\n" -"Last-Translator: \n" -"Language-Team: \n" +"POT-Creation-Date: 2024-08-12 09:45+0000\n" +"PO-Revision-Date: 2024-08-12 05:44+0000\n" +"Last-Translator: Casper van Lieburg \n" +"Language-Team: Dutch \n" "Language: nl_NL\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: Poedit 3.4.4\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.6.2\n" #: install/includes/core/database_class.php:59 msgid "Connection Error: " @@ -37,66 +39,86 @@ msgid "not detected" msgstr "" #: install/includes/interface_assets/footer.php:50 -msgid "Bulgarian" +msgid "Albanian" msgstr "" #: install/includes/interface_assets/footer.php:51 -msgid "Chinese (Simplified)" +msgid "Bosnian" msgstr "" #: install/includes/interface_assets/footer.php:52 -msgid "Czech" +msgid "Bulgarian" msgstr "" #: install/includes/interface_assets/footer.php:53 -msgid "Dutch" +msgid "Chinese (Simplified)" msgstr "" #: install/includes/interface_assets/footer.php:54 -msgid "English" +msgid "Croatian" msgstr "" #: install/includes/interface_assets/footer.php:55 -msgid "Finnish" +msgid "Czech" msgstr "" #: install/includes/interface_assets/footer.php:56 -msgid "French" +msgid "Dutch" msgstr "" #: install/includes/interface_assets/footer.php:57 -msgid "German" +msgid "English" msgstr "" #: install/includes/interface_assets/footer.php:58 -msgid "Greek" +msgid "Finnish" msgstr "" #: install/includes/interface_assets/footer.php:59 -msgid "Italian" +msgid "French" msgstr "" #: install/includes/interface_assets/footer.php:60 -msgid "Portuguese" +msgid "German" msgstr "" #: install/includes/interface_assets/footer.php:61 -msgid "Polish" +msgid "Greek" msgstr "" #: install/includes/interface_assets/footer.php:62 -msgid "Russian" +msgid "Italian" msgstr "" #: install/includes/interface_assets/footer.php:63 -msgid "Spanish" +msgid "Montenegrin" msgstr "" #: install/includes/interface_assets/footer.php:64 -msgid "Swedish" +msgid "Polish" msgstr "" #: install/includes/interface_assets/footer.php:65 +msgid "Portuguese" +msgstr "" + +#: install/includes/interface_assets/footer.php:66 +msgid "Russian" +msgstr "" + +#: install/includes/interface_assets/footer.php:67 +msgid "Serbian" +msgstr "" + +#: install/includes/interface_assets/footer.php:68 +msgid "Spanish" +msgstr "" + +#: install/includes/interface_assets/footer.php:69 +msgid "Swedish" +msgstr "" + +#: install/includes/interface_assets/footer.php:70 msgid "Turkish" msgstr "" @@ -473,7 +495,7 @@ msgstr "" #: install/index.php:919 msgid "City" -msgstr "" +msgstr "Staf" #: install/index.php:925 msgid "Confirm Password" diff --git a/install/includes/gettext/locale/pl_PL/LC_MESSAGES/installer.po b/install/includes/gettext/locale/pl_PL/LC_MESSAGES/installer.po index a3895f593..80591a1b4 100644 --- a/install/includes/gettext/locale/pl_PL/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/pl_PL/LC_MESSAGES/installer.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-08 14:17+0000\n" +"POT-Creation-Date: 2024-08-12 09:45+0000\n" "PO-Revision-Date: 2024-06-05 15:15+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -37,66 +37,86 @@ msgid "not detected" msgstr "" #: install/includes/interface_assets/footer.php:50 -msgid "Bulgarian" +msgid "Albanian" msgstr "" #: install/includes/interface_assets/footer.php:51 -msgid "Chinese (Simplified)" +msgid "Bosnian" msgstr "" #: install/includes/interface_assets/footer.php:52 -msgid "Czech" +msgid "Bulgarian" msgstr "" #: install/includes/interface_assets/footer.php:53 -msgid "Dutch" +msgid "Chinese (Simplified)" msgstr "" #: install/includes/interface_assets/footer.php:54 -msgid "English" +msgid "Croatian" msgstr "" #: install/includes/interface_assets/footer.php:55 -msgid "Finnish" +msgid "Czech" msgstr "" #: install/includes/interface_assets/footer.php:56 -msgid "French" +msgid "Dutch" msgstr "" #: install/includes/interface_assets/footer.php:57 -msgid "German" +msgid "English" msgstr "" #: install/includes/interface_assets/footer.php:58 -msgid "Greek" +msgid "Finnish" msgstr "" #: install/includes/interface_assets/footer.php:59 -msgid "Italian" +msgid "French" msgstr "" #: install/includes/interface_assets/footer.php:60 -msgid "Portuguese" +msgid "German" msgstr "" #: install/includes/interface_assets/footer.php:61 -msgid "Polish" +msgid "Greek" msgstr "" #: install/includes/interface_assets/footer.php:62 -msgid "Russian" +msgid "Italian" msgstr "" #: install/includes/interface_assets/footer.php:63 -msgid "Spanish" +msgid "Montenegrin" msgstr "" #: install/includes/interface_assets/footer.php:64 -msgid "Swedish" +msgid "Polish" msgstr "" #: install/includes/interface_assets/footer.php:65 +msgid "Portuguese" +msgstr "" + +#: install/includes/interface_assets/footer.php:66 +msgid "Russian" +msgstr "" + +#: install/includes/interface_assets/footer.php:67 +msgid "Serbian" +msgstr "" + +#: install/includes/interface_assets/footer.php:68 +msgid "Spanish" +msgstr "" + +#: install/includes/interface_assets/footer.php:69 +msgid "Swedish" +msgstr "" + +#: install/includes/interface_assets/footer.php:70 msgid "Turkish" msgstr "" diff --git a/install/includes/gettext/locale/pt_PT/LC_MESSAGES/installer.mo b/install/includes/gettext/locale/pt_PT/LC_MESSAGES/installer.mo index 92333c231..261ac1212 100644 Binary files a/install/includes/gettext/locale/pt_PT/LC_MESSAGES/installer.mo and b/install/includes/gettext/locale/pt_PT/LC_MESSAGES/installer.mo differ diff --git a/install/includes/gettext/locale/pt_PT/LC_MESSAGES/installer.po b/install/includes/gettext/locale/pt_PT/LC_MESSAGES/installer.po index ffb0cb4b1..7bed21f5f 100644 --- a/install/includes/gettext/locale/pt_PT/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/pt_PT/LC_MESSAGES/installer.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-08 14:17+0000\n" -"PO-Revision-Date: 2024-08-09 07:24+0000\n" +"POT-Creation-Date: 2024-08-12 09:45+0000\n" +"PO-Revision-Date: 2024-08-12 15:29+0000\n" "Last-Translator: \"Francisco (F4VSE)\" \n" "Language-Team: Portuguese (Portugal) \n" @@ -41,66 +41,86 @@ msgid "not detected" msgstr "não detectado" #: install/includes/interface_assets/footer.php:50 +msgid "Albanian" +msgstr "Albanês" + +#: install/includes/interface_assets/footer.php:51 +msgid "Bosnian" +msgstr "Bósnio" + +#: install/includes/interface_assets/footer.php:52 msgid "Bulgarian" msgstr "Búlgaro" -#: install/includes/interface_assets/footer.php:51 +#: install/includes/interface_assets/footer.php:53 msgid "Chinese (Simplified)" msgstr "Chinês (simplificado)" -#: install/includes/interface_assets/footer.php:52 +#: install/includes/interface_assets/footer.php:54 +msgid "Croatian" +msgstr "Croata" + +#: install/includes/interface_assets/footer.php:55 msgid "Czech" msgstr "Checo" -#: install/includes/interface_assets/footer.php:53 +#: install/includes/interface_assets/footer.php:56 msgid "Dutch" msgstr "Holandês" -#: install/includes/interface_assets/footer.php:54 +#: install/includes/interface_assets/footer.php:57 msgid "English" msgstr "Inglês" -#: install/includes/interface_assets/footer.php:55 +#: install/includes/interface_assets/footer.php:58 msgid "Finnish" msgstr "Finlandês" -#: install/includes/interface_assets/footer.php:56 +#: install/includes/interface_assets/footer.php:59 msgid "French" msgstr "Francês" -#: install/includes/interface_assets/footer.php:57 +#: install/includes/interface_assets/footer.php:60 msgid "German" msgstr "Alemão" -#: install/includes/interface_assets/footer.php:58 +#: install/includes/interface_assets/footer.php:61 msgid "Greek" msgstr "Grego" -#: install/includes/interface_assets/footer.php:59 +#: install/includes/interface_assets/footer.php:62 msgid "Italian" msgstr "Italiano" -#: install/includes/interface_assets/footer.php:60 -msgid "Portuguese" -msgstr "Português" +#: install/includes/interface_assets/footer.php:63 +msgid "Montenegrin" +msgstr "Montenegrino" -#: install/includes/interface_assets/footer.php:61 +#: install/includes/interface_assets/footer.php:64 msgid "Polish" msgstr "Polaco" -#: install/includes/interface_assets/footer.php:62 +#: install/includes/interface_assets/footer.php:65 +msgid "Portuguese" +msgstr "Português" + +#: install/includes/interface_assets/footer.php:66 msgid "Russian" msgstr "Russo" -#: install/includes/interface_assets/footer.php:63 +#: install/includes/interface_assets/footer.php:67 +msgid "Serbian" +msgstr "Sérvio" + +#: install/includes/interface_assets/footer.php:68 msgid "Spanish" msgstr "Espanhol" -#: install/includes/interface_assets/footer.php:64 +#: install/includes/interface_assets/footer.php:69 msgid "Swedish" msgstr "Sueco" -#: install/includes/interface_assets/footer.php:65 +#: install/includes/interface_assets/footer.php:70 msgid "Turkish" msgstr "Turco" diff --git a/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.mo b/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.mo index 8a026f074..9a8af3afc 100644 Binary files a/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.mo and b/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.mo differ diff --git a/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.po b/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.po index ae13a96d5..88bbbbd7d 100644 --- a/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.po @@ -5,12 +5,13 @@ # Michael Skolsky , 2024. # Florian Wolters , 2024. # Fabian Berg , 2024. +# "Francisco (F4VSE)" , 2024. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-08 14:17+0000\n" -"PO-Revision-Date: 2024-07-30 12:21+0000\n" -"Last-Translator: Michael Skolsky \n" +"POT-Creation-Date: 2024-08-12 09:45+0000\n" +"PO-Revision-Date: 2024-08-18 19:11+0000\n" +"Last-Translator: \"Francisco (F4VSE)\" \n" "Language-Team: Russian \n" "Language: ru_RU\n" @@ -18,7 +19,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.6.2\n" +"X-Generator: Weblate 5.7\n" #: install/includes/core/database_class.php:59 msgid "Connection Error: " @@ -41,66 +42,86 @@ msgid "not detected" msgstr "не обнаружено" #: install/includes/interface_assets/footer.php:50 +msgid "Albanian" +msgstr "Албанский" + +#: install/includes/interface_assets/footer.php:51 +msgid "Bosnian" +msgstr "Боснийский" + +#: install/includes/interface_assets/footer.php:52 msgid "Bulgarian" msgstr "Болгарский" -#: install/includes/interface_assets/footer.php:51 +#: install/includes/interface_assets/footer.php:53 msgid "Chinese (Simplified)" msgstr "Китайский (упрощённый)" -#: install/includes/interface_assets/footer.php:52 +#: install/includes/interface_assets/footer.php:54 +msgid "Croatian" +msgstr "Хорватский" + +#: install/includes/interface_assets/footer.php:55 msgid "Czech" msgstr "Чешский" -#: install/includes/interface_assets/footer.php:53 +#: install/includes/interface_assets/footer.php:56 msgid "Dutch" msgstr "Голландский" -#: install/includes/interface_assets/footer.php:54 +#: install/includes/interface_assets/footer.php:57 msgid "English" msgstr "Английский" -#: install/includes/interface_assets/footer.php:55 +#: install/includes/interface_assets/footer.php:58 msgid "Finnish" msgstr "Финский" -#: install/includes/interface_assets/footer.php:56 +#: install/includes/interface_assets/footer.php:59 msgid "French" msgstr "Французский" -#: install/includes/interface_assets/footer.php:57 +#: install/includes/interface_assets/footer.php:60 msgid "German" msgstr "Немецкий" -#: install/includes/interface_assets/footer.php:58 +#: install/includes/interface_assets/footer.php:61 msgid "Greek" msgstr "Греческий" -#: install/includes/interface_assets/footer.php:59 +#: install/includes/interface_assets/footer.php:62 msgid "Italian" msgstr "Итальянский" -#: install/includes/interface_assets/footer.php:60 -msgid "Portuguese" -msgstr "Португальский" +#: install/includes/interface_assets/footer.php:63 +msgid "Montenegrin" +msgstr "Черногорский" -#: install/includes/interface_assets/footer.php:61 +#: install/includes/interface_assets/footer.php:64 msgid "Polish" msgstr "Польский" -#: install/includes/interface_assets/footer.php:62 +#: install/includes/interface_assets/footer.php:65 +msgid "Portuguese" +msgstr "Португальский" + +#: install/includes/interface_assets/footer.php:66 msgid "Russian" msgstr "Русский" -#: install/includes/interface_assets/footer.php:63 +#: install/includes/interface_assets/footer.php:67 +msgid "Serbian" +msgstr "Сербский" + +#: install/includes/interface_assets/footer.php:68 msgid "Spanish" msgstr "Испанский" -#: install/includes/interface_assets/footer.php:64 +#: install/includes/interface_assets/footer.php:69 msgid "Swedish" msgstr "Шведский" -#: install/includes/interface_assets/footer.php:65 +#: install/includes/interface_assets/footer.php:70 msgid "Turkish" msgstr "Турецкий" @@ -638,7 +659,7 @@ msgstr "Минимальная версия для MySQL - %s, для MariaDB - #: install/index.php:1653 msgid "Search" -msgstr "" +msgstr "Поиск" #: install/index.php:1686 msgid "At least one field is empty." @@ -650,6 +671,9 @@ msgid "" "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" +"Остановитесь на мгновение. Выбранный вами DXCC устарел и больше не " +"действителен. Проверьте, какой DXCC для данного конкретного места является " +"правильным. Если вы уверены, проигнорируйте это предупреждение." #: install/index.php:1726 msgid "" diff --git a/install/includes/gettext/locale/sq/LC_MESSAGES/installer.mo b/install/includes/gettext/locale/sq/LC_MESSAGES/installer.mo new file mode 100644 index 000000000..1403ce783 Binary files /dev/null and b/install/includes/gettext/locale/sq/LC_MESSAGES/installer.mo differ diff --git a/install/includes/gettext/locale/sq/LC_MESSAGES/installer.po b/install/includes/gettext/locale/sq/LC_MESSAGES/installer.po new file mode 100644 index 000000000..1f705be0e --- /dev/null +++ b/install/includes/gettext/locale/sq/LC_MESSAGES/installer.po @@ -0,0 +1,736 @@ +# WAVELOG PO FILE +# Copyright (c) 2024 Wavelog by DF2ET, DJ7NT, HB9HIL and LA8AJA. +# This file is distributed under the MIT licence. +# +# Fabian Berg <80885850+HB9HIL@users.noreply.github.com>, 2024. +# Dren Imeraj , 2024. +msgid "" +msgstr "" +"Report-Msgid-Bugs-To: translations@wavelog.org\n" +"POT-Creation-Date: 2024-08-12 09:45+0000\n" +"PO-Revision-Date: 2024-08-12 11:59+0000\n" +"Last-Translator: Dren Imeraj \n" +"Language-Team: Albanian \n" +"Language: sq\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.6.2\n" + +#: install/includes/core/database_class.php:59 +msgid "Connection Error: " +msgstr "Gabim në lidhje: " + +#: install/includes/core/database_class.php:63 +msgid "Unable to create database: " +msgstr "Nuk mund të krijohet baza e të dhënave: " + +#: install/includes/core/database_class.php:68 +msgid "Unable to select database: " +msgstr "Nuk mund të zgjidhet baza e të dhënave: " + +#: install/includes/core/database_class.php:74 +msgid "Database is not empty." +msgstr "Baza e të dhënave nuk është e zbrazët." + +#: install/includes/install_config/install_lib.php:123 +msgid "not detected" +msgstr "nuk zbulohet" + +#: install/includes/interface_assets/footer.php:50 +msgid "Albanian" +msgstr "" + +#: install/includes/interface_assets/footer.php:51 +msgid "Bosnian" +msgstr "" + +#: install/includes/interface_assets/footer.php:52 +msgid "Bulgarian" +msgstr "" + +#: install/includes/interface_assets/footer.php:53 +msgid "Chinese (Simplified)" +msgstr "" + +#: install/includes/interface_assets/footer.php:54 +msgid "Croatian" +msgstr "" + +#: install/includes/interface_assets/footer.php:55 +msgid "Czech" +msgstr "" + +#: install/includes/interface_assets/footer.php:56 +msgid "Dutch" +msgstr "" + +#: install/includes/interface_assets/footer.php:57 +msgid "English" +msgstr "" + +#: install/includes/interface_assets/footer.php:58 +msgid "Finnish" +msgstr "" + +#: install/includes/interface_assets/footer.php:59 +msgid "French" +msgstr "" + +#: install/includes/interface_assets/footer.php:60 +msgid "German" +msgstr "" + +#: install/includes/interface_assets/footer.php:61 +msgid "Greek" +msgstr "" + +#: install/includes/interface_assets/footer.php:62 +msgid "Italian" +msgstr "" + +#: install/includes/interface_assets/footer.php:63 +msgid "Montenegrin" +msgstr "" + +#: install/includes/interface_assets/footer.php:64 +msgid "Polish" +msgstr "" + +#: install/includes/interface_assets/footer.php:65 +msgid "Portuguese" +msgstr "" + +#: install/includes/interface_assets/footer.php:66 +msgid "Russian" +msgstr "" + +#: install/includes/interface_assets/footer.php:67 +msgid "Serbian" +msgstr "" + +#: install/includes/interface_assets/footer.php:68 +msgid "Spanish" +msgstr "" + +#: install/includes/interface_assets/footer.php:69 +msgid "Swedish" +msgstr "" + +#: install/includes/interface_assets/footer.php:70 +msgid "Turkish" +msgstr "" + +#: install/includes/interface_assets/header.php:94 +msgid "Install | Wavelog" +msgstr "Instaloni | Wavelog" + +#: install/index.php:30 +msgid "1. Welcome" +msgstr "1. Mirë se vini" + +#: install/index.php:33 +msgid "2. Pre Checks" +msgstr "2. Kontrollet paraprake" + +#: install/index.php:36 +msgid "3. Configuration" +msgstr "3. Konfigurimi" + +#: install/index.php:39 +msgid "4. Database" +msgstr "4. Baza e të dhënave" + +#: install/index.php:42 +msgid "5. First User" +msgstr "5. Përdoruesi i parë" + +#: install/index.php:45 +msgid "6. Finish" +msgstr "6. Përfundoni" + +#: install/index.php:62 +msgid "Welcome to the Wavelog Installer" +msgstr "Mirë se vini në instaluesin Wavelog" + +#: install/index.php:63 +msgid "" +"This installer will guide you through the necessary steps for the " +"installation of Wavelog.
Wavelog is a powerful web-based amateur radio " +"logging software. Follow the steps in each tab to configure and install " +"Wavelog on your server." +msgstr "" + +#: install/index.php:64 +msgid "Discussions" +msgstr "" + +#: install/index.php:64 +#, php-format +msgid "" +"If you encounter any issues or have questions, refer to the documentation " +"(%s) or community forum (%s) on Github for assistance." +msgstr "" + +#: install/index.php:64 +msgid "Wiki" +msgstr "" + +#: install/index.php:65 +msgid "Thank you for installing Wavelog!" +msgstr "" + +#: install/index.php:66 install/index.php:69 install/index.php:1036 +msgid "Language" +msgstr "" + +#: install/index.php:79 +msgid "Select a language" +msgstr "" + +#: install/index.php:91 install/index.php:421 +msgid "Close" +msgstr "" + +#: install/index.php:101 +msgid "PHP Modules" +msgstr "" + +#: install/index.php:108 +msgid "Version" +msgstr "" + +#: install/index.php:109 +#, php-format +msgctxt "PHP Version" +msgid "min. %s (recommended %s+)" +msgstr "" + +#: install/index.php:136 +msgid "Installed" +msgstr "" + +#: install/index.php:136 +msgid "Not Installed" +msgstr "" + +#: install/index.php:144 +msgid "PHP Settings" +msgstr "" + +#: install/index.php:234 +msgid "Folder Write Permissions" +msgstr "" + +#: install/index.php:240 install/index.php:251 install/index.php:262 +#: install/index.php:273 install/index.php:284 +msgid "Success" +msgstr "" + +#: install/index.php:243 install/index.php:254 install/index.php:265 +#: install/index.php:276 install/index.php:287 +msgid "Failed" +msgstr "" + +#: install/index.php:294 +msgid "Web Server" +msgstr "" + +#: install/index.php:297 +msgid "Version:" +msgstr "" + +#: install/index.php:304 +msgid "Important note for nginx users!" +msgstr "" + +#: install/index.php:305 +msgid "" +"Since you are using nginx as web server please make sure that you have made " +"the changes described in the Wiki before continuing." +msgstr "" + +#: install/index.php:314 +msgid "Some Checks have failed!" +msgstr "" + +#: install/index.php:315 +msgid "Check your PHP settings and install missing modules if necessary." +msgstr "" + +#: install/index.php:316 +msgid "" +"After that, you have to restart your webserver and start the installer again." +msgstr "" + +#: install/index.php:317 +#, php-format +msgid "" +"In case of failed 'Folder Write Permissions' check out our Wiki here." +msgstr "" + +#: install/index.php:323 +msgid "You have some warnings!" +msgstr "" + +#: install/index.php:324 +msgid "" +"Some of the settings are not optimal. You can proceed with the installer but " +"be aware that you could run into problems while using Wavelog." +msgstr "" + +#: install/index.php:331 +msgid "All Checks are OK. You can continue." +msgstr "" + +#: install/index.php:345 +msgid "" +"Configure some basic parameters for your wavelog instance. You can change " +"them later in 'application/config/config.php'" +msgstr "" + +#: install/index.php:347 +msgid "Directory" +msgstr "" + +#: install/index.php:347 +msgid "" +"The 'Directory' is basically your subfolder of the webroot In normal " +"conditions the prefilled value is doing it's job. It also can be empty." +msgstr "" + +#: install/index.php:352 +msgid "No slash before or after the directory. Just the name of the folder." +msgstr "" + +#: install/index.php:357 +#, php-format +msgid "" +"This is the complete URL where your Wavelog Instance will be available. If " +"you run this installer locally but want to place Wavelog behind a Reverse " +"Proxy with SSL you should type in the new URL here (e.g. %s instead of %s). " +"Don't forget to include the directory from above." +msgstr "" + +#: install/index.php:357 +msgid "Website URL" +msgstr "" + +#: install/index.php:360 +msgid "" +"This field
\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\t- can't be empty
\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'
\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'" +msgstr "" + +#: install/index.php:367 +msgid "Optional: Global Callbook Lookup" +msgstr "" + +#: install/index.php:367 +msgid "" +"This configuration is optional. The callsign lookup will be available for " +"all users of this installation. You can choose between QRZ.com and HamQTH. " +"While HamQTH also works without username and password, you will need " +"credentials for QRZ.com. To also get the Call Locator in QRZ.com you'll need " +"an XML subscription. HamQTH does not always provide the locator information." +msgstr "" + +#: install/index.php:376 install/index.php:453 install/index.php:905 +msgid "Username" +msgstr "" + +#: install/index.php:379 install/index.php:457 install/index.php:915 +msgid "Password" +msgstr "" + +#: install/index.php:384 +msgid "Callbook Username" +msgstr "" + +#: install/index.php:387 +msgid "Callbook Password" +msgstr "" + +#: install/index.php:389 +#, php-format +msgid "Password can't contain %s or be empty" +msgstr "" + +#: install/index.php:394 install/index.php:399 +msgid "Advanced Settings" +msgstr "" + +#: install/index.php:402 +msgid "These settings should only be set if you know what you're doing." +msgstr "" + +#: install/index.php:405 +msgid "Error Logs" +msgstr "" + +#: install/index.php:406 +msgid "" +"Optional: Enable Error Logging by setting the log threshold bigger then 0. " +"Only enable this if you really need it." +msgstr "" + +#: install/index.php:411 +msgid "0 - No logs" +msgstr "" + +#: install/index.php:412 +msgid "1 - Error messages" +msgstr "" + +#: install/index.php:413 +msgid "2 - Debug messages" +msgstr "" + +#: install/index.php:414 +msgid "3 - Info messages" +msgstr "" + +#: install/index.php:415 +msgid "4 - All messages" +msgstr "" + +#: install/index.php:437 +msgid "" +"To properly install Wavelog you already should have setup a mariadb/mysql " +"database. Provide the parameters here." +msgstr "" + +#: install/index.php:441 +msgid "Hostname or IP" +msgstr "" + +#: install/index.php:441 +msgid "" +"Usually 'localhost'.
Optional with '[host]:[port]'. Default port: 3306." +"
In a docker compose install type 'wavelog-db'." +msgstr "" + +#: install/index.php:447 +msgid "Database Name" +msgstr "" + +#: install/index.php:447 +msgid "Name of the Database" +msgstr "" + +#: install/index.php:453 +msgid "Username of the Database User which has full access to the database." +msgstr "" + +#: install/index.php:457 +msgid "Password of the Database User" +msgstr "" + +#: install/index.php:461 +msgid "Connection Test" +msgstr "" + +#: install/index.php:472 +msgid "" +"Now you can create your first user in Wavelog. Fill out all fields and click " +"continue. Make sure you use a safe password." +msgstr "" + +#: install/index.php:473 +msgid "All fields are required!" +msgstr "" + +#: install/index.php:481 +msgid "First Name" +msgstr "" + +#: install/index.php:485 +msgid "DXCC" +msgstr "" + +#: install/index.php:487 +msgctxt "No DXCC" +msgid "- None -" +msgstr "" + +#: install/index.php:488 install/index.php:494 install/index.php:518 +#: install/index.php:530 install/index.php:533 install/index.php:538 +#: install/index.php:539 install/index.php:548 install/index.php:552 +#: install/index.php:567 install/index.php:580 install/index.php:581 +#: install/index.php:585 install/index.php:606 install/index.php:613 +#: install/index.php:615 install/index.php:616 install/index.php:618 +#: install/index.php:622 install/index.php:623 install/index.php:624 +#: install/index.php:628 install/index.php:629 install/index.php:648 +#: install/index.php:656 install/index.php:662 install/index.php:669 +#: install/index.php:670 install/index.php:676 install/index.php:678 +#: install/index.php:680 install/index.php:698 install/index.php:703 +#: install/index.php:704 install/index.php:718 install/index.php:733 +#: install/index.php:734 install/index.php:738 install/index.php:749 +#: install/index.php:750 install/index.php:755 install/index.php:759 +#: install/index.php:761 install/index.php:762 install/index.php:769 +#: install/index.php:784 install/index.php:786 install/index.php:803 +#: install/index.php:806 install/index.php:811 install/index.php:814 +#: install/index.php:817 install/index.php:827 install/index.php:833 +#: install/index.php:837 install/index.php:843 install/index.php:846 +#: install/index.php:849 install/index.php:854 install/index.php:880 +#: install/index.php:886 install/index.php:888 install/index.php:1700 +msgid "Deleted DXCC" +msgstr "" + +#: install/index.php:895 +msgid "Last Name" +msgstr "" + +#: install/index.php:899 +msgid "Callsign" +msgstr "" + +#: install/index.php:909 +msgid "Gridsquare/Locator" +msgstr "" + +#: install/index.php:919 +msgid "City" +msgstr "" + +#: install/index.php:925 +msgid "Confirm Password" +msgstr "" + +#: install/index.php:929 +msgid "Timezone" +msgstr "" + +#: install/index.php:1032 +msgid "E-Mail Address" +msgstr "" + +#: install/index.php:1054 +msgid "Checklist" +msgstr "" + +#: install/index.php:1059 +msgid "Pre-Checks" +msgstr "" + +#: install/index.php:1068 +msgid "Configuration" +msgstr "" + +#: install/index.php:1077 +msgid "Database" +msgstr "" + +#: install/index.php:1086 +msgid "First User" +msgstr "" + +#: install/index.php:1096 +msgid "Nearly done!" +msgstr "" + +#: install/index.php:1098 +msgid "You prepared all neccessary steps." +msgstr "" + +#: install/index.php:1099 +msgid "We now can install Wavelog. This process can take a few minutes." +msgstr "" + +#: install/index.php:1105 +msgid "Reset" +msgstr "" + +#: install/index.php:1110 +msgid "Installer Reset" +msgstr "" + +#: install/index.php:1113 +msgid "Do you really want to reset all data and start from scratch?" +msgstr "" + +#: install/index.php:1116 +msgid "Yes" +msgstr "" + +#: install/index.php:1117 +msgid "No" +msgstr "" + +#: install/index.php:1127 +msgid "Back" +msgstr "" + +#: install/index.php:1128 +msgid "Continue" +msgstr "" + +#: install/index.php:1206 +msgid "" +"You can't continue. Solve the red marked issues, restart the webserver and " +"reload this page." +msgstr "" + +#: install/index.php:1333 +msgid "Password can't contain ' / \\ < >" +msgstr "" + +#: install/index.php:1500 +msgid "Error: At least Hostname/IP, Database Name and Username are required." +msgstr "" + +#: install/index.php:1510 +msgid "Connecting..." +msgstr "" + +#: install/index.php:1534 +msgid "Connection was successful and your database should be compatible." +msgstr "" + +#: install/index.php:1538 +msgid "" +"Connection was successful but your database seems too old for Wavelog. You " +"can try to continue but you could run into issues." +msgstr "" + +#: install/index.php:1538 +#, php-format +msgid "The min. version for MySQL is %s, for MariaDB it's %s." +msgstr "" + +#: install/index.php:1653 +msgid "Search" +msgstr "" + +#: install/index.php:1686 +msgid "At least one field is empty." +msgstr "" + +#: install/index.php:1702 +msgid "" +"Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " +"Check which DXCC for this particular location is the correct one. If you are " +"sure, ignore this warning." +msgstr "" + +#: install/index.php:1726 +msgid "" +"The locator seems to be not in the correct format. Should look like AA11AA " +"(6-char grid locator)." +msgstr "" + +#: install/index.php:1740 +msgid "" +"The e-mail adress does not look correct. Make sure it's a valid e-mail " +"address" +msgstr "" + +#: install/index.php:1767 +msgid "Password should be at least 8 characters long" +msgstr "" + +#: install/index.php:1776 +msgid "Passwords do not match" +msgstr "" + +#: install/index.php:1823 +msgid "Install Now" +msgstr "" + +#: install/index.php:1827 +msgid "Install not possible. Checklist incomplete." +msgstr "" + +#: install/index.php:1943 +msgid "PHP Module missing" +msgstr "" + +#: install/index.php:1945 +msgid "The following PHP modules are missing:" +msgstr "" + +#: install/index.php:1946 +msgid "Without this module the Wavelog Installer does not work!" +msgstr "" + +#: install/index.php:1947 +msgid "Please install the required modules and restart the webserver." +msgstr "" + +#: install/run.php:10 +msgid "Installation" +msgstr "" + +#: install/run.php:12 +msgid "Please wait..." +msgstr "" + +#: install/run.php:15 +msgid "Copy config.php to application/config/" +msgstr "" + +#: install/run.php:18 +msgid "Copy database.php to application/config/" +msgstr "" + +#: install/run.php:21 +msgid "Creating database tables" +msgstr "" + +#: install/run.php:24 +msgid "Running database migrations" +msgstr "" + +#: install/run.php:27 +msgid "Updating DXCC data" +msgstr "" + +#: install/run.php:35 +msgid "Lock the installer" +msgstr "" + +#: install/run.php:39 +#, php-format +msgid "All install steps went through. Redirect to user login in %s seconds..." +msgstr "" + +#: install/run.php:42 +msgid "Done. Go to the user login ->" +msgstr "" + +#: install/run.php:46 install/run.php:125 +msgid "Show detailled debug log" +msgstr "" + +#: install/run.php:127 +msgid "Hide detailled debug log" +msgstr "" + +#: install/run.php:182 +msgid "Could not create application/config/config.php" +msgstr "" + +#: install/run.php:217 +msgid "Could not create application/config/database.php" +msgstr "" + +#: install/run.php:251 +msgid "Could not create database tables" +msgstr "" + +#: install/run.php:281 +msgid "Could not run database migrations" +msgstr "" + +#: install/run.php:309 +msgid "Could not update DXCC data" +msgstr "" + +#: install/run.php:341 +msgid "Could not create install/.lock file" +msgstr "" diff --git a/install/includes/gettext/locale/sr/LC_MESSAGES/installer.mo b/install/includes/gettext/locale/sr/LC_MESSAGES/installer.mo new file mode 100644 index 000000000..8b4ed89a6 Binary files /dev/null and b/install/includes/gettext/locale/sr/LC_MESSAGES/installer.mo differ diff --git a/install/includes/gettext/locale/sr/LC_MESSAGES/installer.po b/install/includes/gettext/locale/sr/LC_MESSAGES/installer.po new file mode 100644 index 000000000..848b21433 --- /dev/null +++ b/install/includes/gettext/locale/sr/LC_MESSAGES/installer.po @@ -0,0 +1,796 @@ +# WAVELOG PO FILE +# Copyright (c) 2024 Wavelog by DF2ET, DJ7NT, HB9HIL and LA8AJA. +# This file is distributed under the MIT licence. +# +# Fabian Berg <80885850+HB9HIL@users.noreply.github.com>, 2024. +# Dragan Đorđević <4o4a.dragan@gmail.com>, 2024. +msgid "" +msgstr "" +"Report-Msgid-Bugs-To: translations@wavelog.org\n" +"POT-Creation-Date: 2024-08-12 09:45+0000\n" +"PO-Revision-Date: 2024-08-18 19:11+0000\n" +"Last-Translator: Dragan Đorđević <4o4a.dragan@gmail.com>\n" +"Language-Team: Serbian \n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 5.7\n" + +#: install/includes/core/database_class.php:59 +msgid "Connection Error: " +msgstr "Greška u spajanju: " + +#: install/includes/core/database_class.php:63 +msgid "Unable to create database: " +msgstr "Nemoguće je napraviti bazu podataka: " + +#: install/includes/core/database_class.php:68 +msgid "Unable to select database: " +msgstr "Nemoguće je izabrati bazu podataka: " + +#: install/includes/core/database_class.php:74 +msgid "Database is not empty." +msgstr "Baza podataka nije prazna." + +#: install/includes/install_config/install_lib.php:123 +msgid "not detected" +msgstr "nije otkriveno" + +#: install/includes/interface_assets/footer.php:50 +msgid "Albanian" +msgstr "Albanski" + +#: install/includes/interface_assets/footer.php:51 +msgid "Bosnian" +msgstr "Bosanski" + +#: install/includes/interface_assets/footer.php:52 +msgid "Bulgarian" +msgstr "Bugarski" + +#: install/includes/interface_assets/footer.php:53 +msgid "Chinese (Simplified)" +msgstr "Kineski (Pojednostavljeni)" + +#: install/includes/interface_assets/footer.php:54 +msgid "Croatian" +msgstr "Hrvatski" + +#: install/includes/interface_assets/footer.php:55 +msgid "Czech" +msgstr "Češki" + +#: install/includes/interface_assets/footer.php:56 +msgid "Dutch" +msgstr "Holandski" + +#: install/includes/interface_assets/footer.php:57 +msgid "English" +msgstr "Engleski" + +#: install/includes/interface_assets/footer.php:58 +msgid "Finnish" +msgstr "Finski" + +#: install/includes/interface_assets/footer.php:59 +msgid "French" +msgstr "Francuski" + +#: install/includes/interface_assets/footer.php:60 +msgid "German" +msgstr "Nemački" + +#: install/includes/interface_assets/footer.php:61 +msgid "Greek" +msgstr "Grčki" + +#: install/includes/interface_assets/footer.php:62 +msgid "Italian" +msgstr "Italijanski" + +#: install/includes/interface_assets/footer.php:63 +msgid "Montenegrin" +msgstr "Crnogorski" + +#: install/includes/interface_assets/footer.php:64 +msgid "Polish" +msgstr "Poljski" + +#: install/includes/interface_assets/footer.php:65 +msgid "Portuguese" +msgstr "Portugalski" + +#: install/includes/interface_assets/footer.php:66 +msgid "Russian" +msgstr "Ruski" + +#: install/includes/interface_assets/footer.php:67 +msgid "Serbian" +msgstr "Srpski" + +#: install/includes/interface_assets/footer.php:68 +msgid "Spanish" +msgstr "Španski" + +#: install/includes/interface_assets/footer.php:69 +msgid "Swedish" +msgstr "Švedski" + +#: install/includes/interface_assets/footer.php:70 +msgid "Turkish" +msgstr "Turski" + +#: install/includes/interface_assets/header.php:94 +msgid "Install | Wavelog" +msgstr "Instalacija | WaveLog" + +#: install/index.php:30 +msgid "1. Welcome" +msgstr "1. Dobrodošli" + +#: install/index.php:33 +msgid "2. Pre Checks" +msgstr "2. Prethodna provera" + +#: install/index.php:36 +msgid "3. Configuration" +msgstr "3. Konfiguracija" + +#: install/index.php:39 +msgid "4. Database" +msgstr "4. Baza podataka" + +#: install/index.php:42 +msgid "5. First User" +msgstr "5. Prvi korisnik" + +#: install/index.php:45 +msgid "6. Finish" +msgstr "6. Kraj" + +#: install/index.php:62 +msgid "Welcome to the Wavelog Installer" +msgstr "Dobrodošli u Wavelog instaler" + +#: install/index.php:63 +msgid "" +"This installer will guide you through the necessary steps for the " +"installation of Wavelog.
Wavelog is a powerful web-based amateur radio " +"logging software. Follow the steps in each tab to configure and install " +"Wavelog on your server." +msgstr "" +"Ovaj instaler će vas voditi kroz korake neophodne za instalaciju Waveloga. " +"
Wavelog je moćni loging softver baziran na webu. Pratite korake na " +"svakoj od kartica kako biste konfigurisali i instalirali Wavelog na vašem " +"serveru." + +#: install/index.php:64 +msgid "Discussions" +msgstr "Diskusije" + +#: install/index.php:64 +#, php-format +msgid "" +"If you encounter any issues or have questions, refer to the documentation " +"(%s) or community forum (%s) on Github for assistance." +msgstr "" +"Ako naiđete na bilo kakav problem ili imate pitanja, za dalju pomoć obratite " +"se dokumentaciji (%s) ili forumu zajednice (%s) na Githabu." + +#: install/index.php:64 +msgid "Wiki" +msgstr "Wiki" + +#: install/index.php:65 +msgid "Thank you for installing Wavelog!" +msgstr "Hvala na instalaciji Waveloga!" + +#: install/index.php:66 install/index.php:69 install/index.php:1036 +msgid "Language" +msgstr "Jezik" + +#: install/index.php:79 +msgid "Select a language" +msgstr "Izaberite jezik" + +#: install/index.php:91 install/index.php:421 +msgid "Close" +msgstr "Zatvori" + +#: install/index.php:101 +msgid "PHP Modules" +msgstr "PHP moduli" + +#: install/index.php:108 +msgid "Version" +msgstr "Verzija" + +#: install/index.php:109 +#, php-format +msgctxt "PHP Version" +msgid "min. %s (recommended %s+)" +msgstr "min. %s (preporučeno %s+)" + +#: install/index.php:136 +msgid "Installed" +msgstr "Instalirano" + +#: install/index.php:136 +msgid "Not Installed" +msgstr "Nije instalirano" + +#: install/index.php:144 +msgid "PHP Settings" +msgstr "PHP podešavanja" + +#: install/index.php:234 +msgid "Folder Write Permissions" +msgstr "Dozvole upisivanja u foldere" + +#: install/index.php:240 install/index.php:251 install/index.php:262 +#: install/index.php:273 install/index.php:284 +msgid "Success" +msgstr "Uspešno" + +#: install/index.php:243 install/index.php:254 install/index.php:265 +#: install/index.php:276 install/index.php:287 +msgid "Failed" +msgstr "Neuspešno" + +#: install/index.php:294 +msgid "Web Server" +msgstr "Web server" + +#: install/index.php:297 +msgid "Version:" +msgstr "Verzija:" + +#: install/index.php:304 +msgid "Important note for nginx users!" +msgstr "Važne napomene za nginx korisnike!" + +#: install/index.php:305 +msgid "" +"Since you are using nginx as web server please make sure that you have made " +"the changes described in the Wiki before continuing." +msgstr "" +"Pošto koristine nginx kao web server, molimo vas da se prije nastavka " +"uverite da ste uradili izmene opisane u Wikiju." + +#: install/index.php:314 +msgid "Some Checks have failed!" +msgstr "Neke provere su bile neuspešne!" + +#: install/index.php:315 +msgid "Check your PHP settings and install missing modules if necessary." +msgstr "" +"Proverite vaša PHP podešavanja i instalirajte nedostajuće module ako je to " +"potrebno." + +#: install/index.php:316 +msgid "" +"After that, you have to restart your webserver and start the installer again." +msgstr "Nakon toga, restartujte vaš web server i ponovo pokrenite instaler." + +#: install/index.php:317 +#, php-format +msgid "" +"In case of failed 'Folder Write Permissions' check out our Wiki here." +msgstr "" +"U slučaju greške \"Greška u dozvoli pisanja u folder\" pogledajte ovde našu Wiki." + +#: install/index.php:323 +msgid "You have some warnings!" +msgstr "Imate neka upozorenja!" + +#: install/index.php:324 +msgid "" +"Some of the settings are not optimal. You can proceed with the installer but " +"be aware that you could run into problems while using Wavelog." +msgstr "" +"Neka od podešavanja nisu optimalna. Možete nastaviti sa instalacijom ali " +"imajte na umu da može doći do problema tokom korišćenja Waveloga." + +#: install/index.php:331 +msgid "All Checks are OK. You can continue." +msgstr "Sve provere su u redu. Možete nastaviti." + +#: install/index.php:345 +msgid "" +"Configure some basic parameters for your wavelog instance. You can change " +"them later in 'application/config/config.php'" +msgstr "" +"Konfigurišite neke osnovne paramtere za vašu verziju Waveloga. Možete ih " +"promeniti kasnije u 'application/config/config.php'" + +#: install/index.php:347 +msgid "Directory" +msgstr "Direktorijum" + +#: install/index.php:347 +msgid "" +"The 'Directory' is basically your subfolder of the webroot In normal " +"conditions the prefilled value is doing it's job. It also can be empty." +msgstr "" +"'Direktorijum' je u osnovi subfolder webroota. U normalnim okolnostima " +"unapred popunjena vrednost će završiti posao. Takođe može biti i prazan." + +#: install/index.php:352 +msgid "No slash before or after the directory. Just the name of the folder." +msgstr "Bez kose crte prije ili nakon direktorijuma. Samo naziv foldera." + +#: install/index.php:357 +#, php-format +msgid "" +"This is the complete URL where your Wavelog Instance will be available. If " +"you run this installer locally but want to place Wavelog behind a Reverse " +"Proxy with SSL you should type in the new URL here (e.g. %s instead of %s). " +"Don't forget to include the directory from above." +msgstr "" +"Ovo je potpuni URL na kojem će biti dostupna instanca Waveloga. Ako ste " +"pokrenuli ovaj instaler loakalno, ali želite da postavite Wavelog iza " +"Reverse Proxy-ja sa SSL-om trebalo bi da ovde unesete novi URL (npr. %s " +"umesto %s). Ne zaboravite da uključite i gornji direktorijum." + +#: install/index.php:357 +msgid "Website URL" +msgstr "URL web mesta" + +#: install/index.php:360 +msgid "" +"This field
\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\t- can't be empty
\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'
\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'" +msgstr "" +"Ovo polje
\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\t- ne može biti prazno
\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\t- mora da se završi sa oznakom kroz 'primer/'
\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\t- mora da počne sa 'http'" + +#: install/index.php:367 +msgid "Optional: Global Callbook Lookup" +msgstr "Opcija: Globalna pretraga Callbooka" + +#: install/index.php:367 +msgid "" +"This configuration is optional. The callsign lookup will be available for " +"all users of this installation. You can choose between QRZ.com and HamQTH. " +"While HamQTH also works without username and password, you will need " +"credentials for QRZ.com. To also get the Call Locator in QRZ.com you'll need " +"an XML subscription. HamQTH does not always provide the locator information." +msgstr "" +"Ovo podešavanje je opciono. Pretraga pozivnog znaka će biti dostupna svim " +"korisnicima ove instalacije. Može izabrati između QRZ.com i HamQTH. Dok " +"HamQTH radi i bez unošenja korisničkog imena i lozinke, iste će vam trebati " +"za QRZ.com. Da biste dobili i lokator pozivnog znaka koji je naveden na QRZ." +"com trebaće vam i XML pretplata na QRZ.com servise. HamQTH ne obezbeđuje " +"uvek informaciju o lokatoru." + +#: install/index.php:376 install/index.php:453 install/index.php:905 +msgid "Username" +msgstr "Korisničko ime" + +#: install/index.php:379 install/index.php:457 install/index.php:915 +msgid "Password" +msgstr "Lozinka" + +#: install/index.php:384 +msgid "Callbook Username" +msgstr "Korisničko ime Callbook-a" + +#: install/index.php:387 +msgid "Callbook Password" +msgstr "Lozinka za Callbook" + +#: install/index.php:389 +#, php-format +msgid "Password can't contain %s or be empty" +msgstr "Lozinka ne može da sadrži %s ili da bude prazna" + +#: install/index.php:394 install/index.php:399 +msgid "Advanced Settings" +msgstr "Napredna podešavanja" + +#: install/index.php:402 +msgid "These settings should only be set if you know what you're doing." +msgstr "Ova podešavanja biste trebali izvršiti samo ako znate šta radite." + +#: install/index.php:405 +msgid "Error Logs" +msgstr "Logovi grešaka" + +#: install/index.php:406 +msgid "" +"Optional: Enable Error Logging by setting the log threshold bigger then 0. " +"Only enable this if you really need it." +msgstr "" +"Opciono: Omogućite Logove grešaka podešavanjući marginu veću od 0. Omogućite " +"ovo samo ako vam je zaista potrebno." + +#: install/index.php:411 +msgid "0 - No logs" +msgstr "0 - bez logova" + +#: install/index.php:412 +msgid "1 - Error messages" +msgstr "1 - poruke o greškama" + +#: install/index.php:413 +msgid "2 - Debug messages" +msgstr "2 - poruke za otkrivanje bagova" + +#: install/index.php:414 +msgid "3 - Info messages" +msgstr "3 - informacione poruke" + +#: install/index.php:415 +msgid "4 - All messages" +msgstr "4 - sve poruke" + +#: install/index.php:437 +msgid "" +"To properly install Wavelog you already should have setup a mariadb/mysql " +"database. Provide the parameters here." +msgstr "" +"Za ispravnu instalaciju Waveloga već ste trebali da podesite mariadb/mysql " +"bazu podataka. Ovde unesite potrebne parametre." + +#: install/index.php:441 +msgid "Hostname or IP" +msgstr "Naziv hosta ili IP" + +#: install/index.php:441 +msgid "" +"Usually 'localhost'.
Optional with '[host]:[port]'. Default port: 3306." +"
In a docker compose install type 'wavelog-db'." +msgstr "" +"Obično 'localhost'.
Opciono sa '[host]:[port]'. Podrazumevani port: 3306. " +"
In a docker compose install type 'wavelog-db'." + +#: install/index.php:447 +msgid "Database Name" +msgstr "Naziv baze podataka" + +#: install/index.php:447 +msgid "Name of the Database" +msgstr "Naziv baze podataka" + +#: install/index.php:453 +msgid "Username of the Database User which has full access to the database." +msgstr "" +"Korisničko ime korisnika baze podataka koji će imati pun pristup bazi " +"podataka." + +#: install/index.php:457 +msgid "Password of the Database User" +msgstr "Lozinka korisnika baze podataka" + +#: install/index.php:461 +msgid "Connection Test" +msgstr "Testiraj vezu" + +#: install/index.php:472 +msgid "" +"Now you can create your first user in Wavelog. Fill out all fields and click " +"continue. Make sure you use a safe password." +msgstr "" +"Sada možete kreirati vašeg prvog korisnika Waveloga. Popunite sva polja i " +"kliknite na nastavak. Uverite se da koristite sigurnu lozinku." + +#: install/index.php:473 +msgid "All fields are required!" +msgstr "Sva polja su zahtevana!" + +#: install/index.php:481 +msgid "First Name" +msgstr "Ime" + +#: install/index.php:485 +msgid "DXCC" +msgstr "DXCC" + +#: install/index.php:487 +msgctxt "No DXCC" +msgid "- None -" +msgstr "- ništa -" + +#: install/index.php:488 install/index.php:494 install/index.php:518 +#: install/index.php:530 install/index.php:533 install/index.php:538 +#: install/index.php:539 install/index.php:548 install/index.php:552 +#: install/index.php:567 install/index.php:580 install/index.php:581 +#: install/index.php:585 install/index.php:606 install/index.php:613 +#: install/index.php:615 install/index.php:616 install/index.php:618 +#: install/index.php:622 install/index.php:623 install/index.php:624 +#: install/index.php:628 install/index.php:629 install/index.php:648 +#: install/index.php:656 install/index.php:662 install/index.php:669 +#: install/index.php:670 install/index.php:676 install/index.php:678 +#: install/index.php:680 install/index.php:698 install/index.php:703 +#: install/index.php:704 install/index.php:718 install/index.php:733 +#: install/index.php:734 install/index.php:738 install/index.php:749 +#: install/index.php:750 install/index.php:755 install/index.php:759 +#: install/index.php:761 install/index.php:762 install/index.php:769 +#: install/index.php:784 install/index.php:786 install/index.php:803 +#: install/index.php:806 install/index.php:811 install/index.php:814 +#: install/index.php:817 install/index.php:827 install/index.php:833 +#: install/index.php:837 install/index.php:843 install/index.php:846 +#: install/index.php:849 install/index.php:854 install/index.php:880 +#: install/index.php:886 install/index.php:888 install/index.php:1700 +msgid "Deleted DXCC" +msgstr "Izbrisana DXCC" + +#: install/index.php:895 +msgid "Last Name" +msgstr "Prezime" + +#: install/index.php:899 +msgid "Callsign" +msgstr "Pozivni znak" + +#: install/index.php:909 +msgid "Gridsquare/Locator" +msgstr "Polje/Lokator" + +#: install/index.php:919 +msgid "City" +msgstr "Grad" + +#: install/index.php:925 +msgid "Confirm Password" +msgstr "Potvrdi lozinku" + +#: install/index.php:929 +msgid "Timezone" +msgstr "Vremenska zona" + +#: install/index.php:1032 +msgid "E-Mail Address" +msgstr "E-mail adresa" + +#: install/index.php:1054 +msgid "Checklist" +msgstr "Lista provere" + +#: install/index.php:1059 +msgid "Pre-Checks" +msgstr "Pred-provera" + +#: install/index.php:1068 +msgid "Configuration" +msgstr "Konfiguracija" + +#: install/index.php:1077 +msgid "Database" +msgstr "Baza podataka" + +#: install/index.php:1086 +msgid "First User" +msgstr "Prvi korisnik" + +#: install/index.php:1096 +msgid "Nearly done!" +msgstr "Skoro da je završeno!" + +#: install/index.php:1098 +msgid "You prepared all neccessary steps." +msgstr "Pripremili ste sve potrebne korake." + +#: install/index.php:1099 +msgid "We now can install Wavelog. This process can take a few minutes." +msgstr "" +"Sada možemo instalirati Wavelog. Ovaj proces će potrajati nekoliko minuta." + +#: install/index.php:1105 +msgid "Reset" +msgstr "Reset" + +#: install/index.php:1110 +msgid "Installer Reset" +msgstr "Reset instalacije" + +#: install/index.php:1113 +msgid "Do you really want to reset all data and start from scratch?" +msgstr "Da li zaista želite da resetujete sve podatke i krenete iz početka?" + +#: install/index.php:1116 +msgid "Yes" +msgstr "Da" + +#: install/index.php:1117 +msgid "No" +msgstr "Ne" + +#: install/index.php:1127 +msgid "Back" +msgstr "Nazad" + +#: install/index.php:1128 +msgid "Continue" +msgstr "Nastavi" + +#: install/index.php:1206 +msgid "" +"You can't continue. Solve the red marked issues, restart the webserver and " +"reload this page." +msgstr "" +"Ne možete nastaviti. Rešite probleme označene crvenim, restartujte web " +"server i ponovo učitajte ovu stranicu." + +#: install/index.php:1333 +msgid "Password can't contain ' / \\ < >" +msgstr "Lozinka ne može sadržati znakove ' / \\ < >" + +#: install/index.php:1500 +msgid "Error: At least Hostname/IP, Database Name and Username are required." +msgstr "" +"Greška: Najmanje što vam je potrebno je naziv hosta/IP, naziv baze podataka " +"i korisničko ime." + +#: install/index.php:1510 +msgid "Connecting..." +msgstr "Povezivanje..." + +#: install/index.php:1534 +msgid "Connection was successful and your database should be compatible." +msgstr "" +"Povezivanje je bilo uspešno i trebalo bi da je vaša baza podataka " +"kompatibilna." + +#: install/index.php:1538 +msgid "" +"Connection was successful but your database seems too old for Wavelog. You " +"can try to continue but you could run into issues." +msgstr "" +"Povezivanje je bilo uspešno, ali izgleda da je vaša baza podataka isuviše " +"stara za Wavelog. Možete nastaviti ali biste mogli naići na probleme." + +#: install/index.php:1538 +#, php-format +msgid "The min. version for MySQL is %s, for MariaDB it's %s." +msgstr "Minimalna verzija za MySQL je %s, za MariaDB je %s." + +#: install/index.php:1653 +msgid "Search" +msgstr "Pretraga" + +#: install/index.php:1686 +msgid "At least one field is empty." +msgstr "Najmanje jedno polje je prazno." + +#: install/index.php:1702 +msgid "" +"Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " +"Check which DXCC for this particular location is the correct one. If you are " +"sure, ignore this warning." +msgstr "" +"Zaustavite se ovde na trenutak. DXCC koju ste izabrali je zastarela i više " +"nije validna. Proverite koja DXCC je ispravna za ovu lokaciju. Ako ste " +"sigurni da ste upisali tačne podatke, ignorišite ovo upozrenje." + +#: install/index.php:1726 +msgid "" +"The locator seems to be not in the correct format. Should look like AA11AA " +"(6-char grid locator)." +msgstr "" +"Izgleda da lokator nema ispravan format. Trebalo bi da liči na AA11AA (" +"lokator polja sa 6 karaktera)." + +#: install/index.php:1740 +msgid "" +"The e-mail adress does not look correct. Make sure it's a valid e-mail " +"address" +msgstr "" +"E-mail adresa ne izgleda tačno. Uverite se da je to ispravna e-mail adresa" + +#: install/index.php:1767 +msgid "Password should be at least 8 characters long" +msgstr "Lozinka bi trebalo da je dugačka barem 8 znakova" + +#: install/index.php:1776 +msgid "Passwords do not match" +msgstr "Lozinke se ne poklapaju" + +#: install/index.php:1823 +msgid "Install Now" +msgstr "Instalirajte sada" + +#: install/index.php:1827 +msgid "Install not possible. Checklist incomplete." +msgstr "Instalacija nije moguća. Lista za proveru je nekompletna." + +#: install/index.php:1943 +msgid "PHP Module missing" +msgstr "Nedostaje PHP modul" + +#: install/index.php:1945 +msgid "The following PHP modules are missing:" +msgstr "Sledeći PHP moduli nedostaju:" + +#: install/index.php:1946 +msgid "Without this module the Wavelog Installer does not work!" +msgstr "Bez ovih modula Wavelog instaler ne radi!" + +#: install/index.php:1947 +msgid "Please install the required modules and restart the webserver." +msgstr "Molimo instalirajte zahtevane module i restartujte web server." + +#: install/run.php:10 +msgid "Installation" +msgstr "Instalacija" + +#: install/run.php:12 +msgid "Please wait..." +msgstr "Molimo sačekajte..." + +#: install/run.php:15 +msgid "Copy config.php to application/config/" +msgstr "Kopirajte config.php u application/config/" + +#: install/run.php:18 +msgid "Copy database.php to application/config/" +msgstr "Kopirajte database.php u application/config/" + +#: install/run.php:21 +msgid "Creating database tables" +msgstr "Kreiranje tabela baze podataka" + +#: install/run.php:24 +msgid "Running database migrations" +msgstr "Izvršavam migraciju baze podataka" + +#: install/run.php:27 +msgid "Updating DXCC data" +msgstr "Ažuriram DXCC podatke" + +#: install/run.php:35 +msgid "Lock the installer" +msgstr "Zaključaj instaler" + +#: install/run.php:39 +#, php-format +msgid "All install steps went through. Redirect to user login in %s seconds..." +msgstr "" +"Prošli smo sve korake instalacije. Redirekcija za prijavu korisnika za %s " +"sekundi..." + +#: install/run.php:42 +msgid "Done. Go to the user login ->" +msgstr "Gotovo. Idite na prijavu korisnika ->" + +#: install/run.php:46 install/run.php:125 +msgid "Show detailled debug log" +msgstr "Prikaži detaljni debug log" + +#: install/run.php:127 +msgid "Hide detailled debug log" +msgstr "Sakrij detaljni debug log" + +#: install/run.php:182 +msgid "Could not create application/config/config.php" +msgstr "Ne mogu kreirati application/config/config.php" + +#: install/run.php:217 +msgid "Could not create application/config/database.php" +msgstr "Ne mogu kreirati application/config/database.php" + +#: install/run.php:251 +msgid "Could not create database tables" +msgstr "Ne mogu kreirati tabele baze podataka" + +#: install/run.php:281 +msgid "Could not run database migrations" +msgstr "Ne mogu izvršiti migraciju baze podataka" + +#: install/run.php:309 +msgid "Could not update DXCC data" +msgstr "Ne mogu ažurirati DXCC podatke" + +#: install/run.php:341 +msgid "Could not create install/.lock file" +msgstr "Ne mogu kreirati install/.lock datoteku" diff --git a/install/includes/gettext/locale/sv_SE/LC_MESSAGES/installer.po b/install/includes/gettext/locale/sv_SE/LC_MESSAGES/installer.po index cb064e7df..ebc7059a7 100644 --- a/install/includes/gettext/locale/sv_SE/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/sv_SE/LC_MESSAGES/installer.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-08 14:17+0000\n" +"POT-Creation-Date: 2024-08-12 09:45+0000\n" "PO-Revision-Date: 2024-06-05 15:15+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -37,66 +37,86 @@ msgid "not detected" msgstr "" #: install/includes/interface_assets/footer.php:50 -msgid "Bulgarian" +msgid "Albanian" msgstr "" #: install/includes/interface_assets/footer.php:51 -msgid "Chinese (Simplified)" +msgid "Bosnian" msgstr "" #: install/includes/interface_assets/footer.php:52 -msgid "Czech" +msgid "Bulgarian" msgstr "" #: install/includes/interface_assets/footer.php:53 -msgid "Dutch" +msgid "Chinese (Simplified)" msgstr "" #: install/includes/interface_assets/footer.php:54 -msgid "English" +msgid "Croatian" msgstr "" #: install/includes/interface_assets/footer.php:55 -msgid "Finnish" +msgid "Czech" msgstr "" #: install/includes/interface_assets/footer.php:56 -msgid "French" +msgid "Dutch" msgstr "" #: install/includes/interface_assets/footer.php:57 -msgid "German" +msgid "English" msgstr "" #: install/includes/interface_assets/footer.php:58 -msgid "Greek" +msgid "Finnish" msgstr "" #: install/includes/interface_assets/footer.php:59 -msgid "Italian" +msgid "French" msgstr "" #: install/includes/interface_assets/footer.php:60 -msgid "Portuguese" +msgid "German" msgstr "" #: install/includes/interface_assets/footer.php:61 -msgid "Polish" +msgid "Greek" msgstr "" #: install/includes/interface_assets/footer.php:62 -msgid "Russian" +msgid "Italian" msgstr "" #: install/includes/interface_assets/footer.php:63 -msgid "Spanish" +msgid "Montenegrin" msgstr "" #: install/includes/interface_assets/footer.php:64 -msgid "Swedish" +msgid "Polish" msgstr "" #: install/includes/interface_assets/footer.php:65 +msgid "Portuguese" +msgstr "" + +#: install/includes/interface_assets/footer.php:66 +msgid "Russian" +msgstr "" + +#: install/includes/interface_assets/footer.php:67 +msgid "Serbian" +msgstr "" + +#: install/includes/interface_assets/footer.php:68 +msgid "Spanish" +msgstr "" + +#: install/includes/interface_assets/footer.php:69 +msgid "Swedish" +msgstr "" + +#: install/includes/interface_assets/footer.php:70 msgid "Turkish" msgstr "" diff --git a/install/includes/gettext/locale/tr_TR/LC_MESSAGES/installer.po b/install/includes/gettext/locale/tr_TR/LC_MESSAGES/installer.po index 154c0ff9d..ba1a41276 100644 --- a/install/includes/gettext/locale/tr_TR/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/tr_TR/LC_MESSAGES/installer.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-08 14:17+0000\n" +"POT-Creation-Date: 2024-08-12 09:45+0000\n" "PO-Revision-Date: 2024-07-26 09:13+0000\n" "Last-Translator: Halil AYYILDIZ \n" "Language-Team: Turkish \n" "Language-Team: Chinese (Simplified) \n" @@ -39,66 +39,86 @@ msgid "not detected" msgstr "未选择" #: install/includes/interface_assets/footer.php:50 +msgid "Albanian" +msgstr "阿尔巴尼亚语" + +#: install/includes/interface_assets/footer.php:51 +msgid "Bosnian" +msgstr "波斯尼亚语" + +#: install/includes/interface_assets/footer.php:52 msgid "Bulgarian" msgstr "保加利亚语" -#: install/includes/interface_assets/footer.php:51 +#: install/includes/interface_assets/footer.php:53 msgid "Chinese (Simplified)" msgstr "中文(简体)" -#: install/includes/interface_assets/footer.php:52 +#: install/includes/interface_assets/footer.php:54 +msgid "Croatian" +msgstr "克罗地亚语" + +#: install/includes/interface_assets/footer.php:55 msgid "Czech" msgstr "捷克语" -#: install/includes/interface_assets/footer.php:53 +#: install/includes/interface_assets/footer.php:56 msgid "Dutch" msgstr "荷兰语" -#: install/includes/interface_assets/footer.php:54 +#: install/includes/interface_assets/footer.php:57 msgid "English" msgstr "英语" -#: install/includes/interface_assets/footer.php:55 +#: install/includes/interface_assets/footer.php:58 msgid "Finnish" msgstr "芬兰语" -#: install/includes/interface_assets/footer.php:56 +#: install/includes/interface_assets/footer.php:59 msgid "French" msgstr "法语" -#: install/includes/interface_assets/footer.php:57 +#: install/includes/interface_assets/footer.php:60 msgid "German" msgstr "德语" -#: install/includes/interface_assets/footer.php:58 +#: install/includes/interface_assets/footer.php:61 msgid "Greek" msgstr "希腊语" -#: install/includes/interface_assets/footer.php:59 +#: install/includes/interface_assets/footer.php:62 msgid "Italian" msgstr "意大利语" -#: install/includes/interface_assets/footer.php:60 -msgid "Portuguese" -msgstr "葡萄牙语" +#: install/includes/interface_assets/footer.php:63 +msgid "Montenegrin" +msgstr "黑山语" -#: install/includes/interface_assets/footer.php:61 +#: install/includes/interface_assets/footer.php:64 msgid "Polish" msgstr "波兰语" -#: install/includes/interface_assets/footer.php:62 +#: install/includes/interface_assets/footer.php:65 +msgid "Portuguese" +msgstr "葡萄牙语" + +#: install/includes/interface_assets/footer.php:66 msgid "Russian" msgstr "俄语" -#: install/includes/interface_assets/footer.php:63 +#: install/includes/interface_assets/footer.php:67 +msgid "Serbian" +msgstr "塞尔维亚语" + +#: install/includes/interface_assets/footer.php:68 msgid "Spanish" msgstr "西班牙语" -#: install/includes/interface_assets/footer.php:64 +#: install/includes/interface_assets/footer.php:69 msgid "Swedish" msgstr "瑞典语" -#: install/includes/interface_assets/footer.php:65 +#: install/includes/interface_assets/footer.php:70 msgid "Turkish" msgstr "土耳其语" @@ -608,7 +628,7 @@ msgstr "MySQL 最低版本 %s,或 MariaDB 最低版本 %s。" #: install/index.php:1653 msgid "Search" -msgstr "" +msgstr "搜索" #: install/index.php:1686 msgid "At least one field is empty." @@ -619,7 +639,8 @@ msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." -msgstr "" +msgstr "请稍等,您选择的 DXCC 已经不再有效,请重新查看该地区最新的 " +"DXCC,如果您确定要继续,请忽略这个警告。" #: install/index.php:1726 msgid "" diff --git a/install/includes/interface_assets/footer.php b/install/includes/interface_assets/footer.php index 205f28f6a..4bca02ee7 100644 --- a/install/includes/interface_assets/footer.php +++ b/install/includes/interface_assets/footer.php @@ -47,8 +47,11 @@ */ ?>
+ + + @@ -57,9 +60,11 @@ - + + + diff --git a/predict/composer.json b/predict/composer.json deleted file mode 100644 index f8032d295..000000000 --- a/predict/composer.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "name": "predict/predict", - "type": "library", - "description": "Predict PHP", - "keywords": [ - "sgp", - "sgp4", - "sdp4", - "satellite", - "iss" - ], - "homepage": "https://github.com/shupp/Predict", - "authors": [ - { - "name": "Bill Shupp", - "email": "bill@shupp.org" - } - ] -} diff --git a/predict/generatePackage.php b/predict/generatePackage.php deleted file mode 100644 index 287dd41bf..000000000 --- a/predict/generatePackage.php +++ /dev/null @@ -1,63 +0,0 @@ -setOptions(array( - 'baseinstalldir' => '/', - 'simpleoutput' => true, - 'packagedirectory' => './', - 'filelistgenerator' => 'file', - 'ignore' => array('generatePackage.php', 'xhprof_lib/*'), - 'dir_roles' => array( - 'tests' => 'test', - 'examples' => 'doc' - ), - 'exceptions' => array('README.md' => 'doc'), -)); - -$packagexml->setPackage('Predict'); -$packagexml->setSummary('A partial port of the Gpredict program for satellite tracking'); -$packagexml->setDescription( - 'Predict is a partial PHP port of the Gpredict (http://gpredict.oz9aec.net/) program that ' - . 'allows real-time tracking and orbit prediction of satellites from two line element sets. ' - . 'It supports the SGP4 and SDP4 models for prediction.' -); - -$packagexml->setChannel('shupp.github.com/pirum'); -$packagexml->setAPIVersion('0.2.2'); -$packagexml->setReleaseVersion('0.2.2'); - -$packagexml->setReleaseStability('alpha'); - -$packagexml->setAPIStability('alpha'); - -$packagexml->setNotes(' -* Addec Predict_TLE::createChecksum() -* Updates to examples -'); -$packagexml->setPackageType('php'); -$packagexml->addRelease(); - -$packagexml->detectDependencies(); - -$packagexml->addMaintainer('lead', - 'shupp', - 'Bill Shupp', - 'shupp@php.net'); -$packagexml->setLicense('GPL v2.1', - 'http://www.opensource.org/licenses/gpl-license.php'); - -$packagexml->setPhpDep('5.2.0'); -$packagexml->setPearinstallerDep('1.4.0b1'); -$packagexml->addExtensionDep('required', 'date'); - -$packagexml->generateContents(); -$packagexml->writePackageFile(); - -?> diff --git a/predict/package.xml b/predict/package.xml deleted file mode 100644 index 783eb5477..000000000 --- a/predict/package.xml +++ /dev/null @@ -1,182 +0,0 @@ - - - Predict - shupp.github.com/pirum - A partial port of the Gpredict program for satellite tracking - Predict is a partial PHP port of the Gpredict (http://gpredict.oz9aec.net/) program that allows real-time tracking and orbit prediction of satellites from two line element sets. It supports the SGP4 and SDP4 models for prediction. - - Bill Shupp - shupp - shupp@php.net - yes - - 2014-03-06 - - - 0.2.2 - 0.2.2 - - - alpha - alpha - - GPL v2.1 - -* Addec Predict_TLE::createChecksum() -* Updates to examples - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 5.2.0 - - - 1.4.0b1 - - - date - - - - - - - - 0.1.0 - 0.1.0 - - - alpha - alpha - - 2011-08-22 - GPL v2.1 - -* Initial release - - - - - 0.1.1 - 0.1.1 - - - alpha - alpha - - 2011-09-05 - GPL v2.1 - -* Fixed minimum elevation bug in visible pass detection -* Updated precision of Pogson's Ratio, refactored calculate magnitude to be more readble, as well as added comments - - - - - 0.1.2 - 0.1.2 - - - alpha - alpha - - 2011-09-25 - GPL v2.1 - -* Added Predict_Time::getEpochTimeStamp() - - - - - 0.2.0 - 0.2.0 - - - alpha - alpha - - 2012-05-21 - GPL v2.1 - -* Fixed bug in Predict_Time::unix2daynum() -* Updated example iss.tle file - - - - - 0.2.1 - 0.2.1 - - - alpha - alpha - - 2012-07-04 - GPL v2.1 - -* Corrected role of README.md - - - - - 0.2.2 - 0.2.2 - - - alpha - alpha - - 2014-03-06 - GPL v2.1 - -* Addec Predict_TLE::createChecksum() -* Updates to examples - - - - diff --git a/src/Label/vendor/malios/php-to-ascii-table/src/Builder.php b/src/Label/vendor/malios/php-to-ascii-table/src/Builder.php index 0e11e741f..638af911f 100644 --- a/src/Label/vendor/malios/php-to-ascii-table/src/Builder.php +++ b/src/Label/vendor/malios/php-to-ascii-table/src/Builder.php @@ -77,6 +77,8 @@ class Builder */ private $title; + private $additionalText; + public function __construct() { $this->table = new Table(); @@ -126,6 +128,11 @@ class Builder $this->title = $title; } + public function setAdditionalText(string $additionalText) + { + $this->additionalText = $additionalText; + } + /** * Add multiple rows * @@ -198,11 +205,11 @@ class Builder if ($this->title === null) { $titleString = ''; } else { - $titlePadding = intdiv(max(0, mb_strwidth($borderTop) - mb_strwidth($this->title)), 2); + $titlePadding = max(0, mb_strwidth($borderTop) - mb_strwidth($this->title)); $titleString = str_repeat(' ', $titlePadding) . $this->title . PHP_EOL; } - $tableAsString = $titleString . $borderTop . PHP_EOL . $header . PHP_EOL . $borderMiddle . PHP_EOL . $body . $borderBottom; + $tableAsString = $titleString . $this->additionalText . "\n" . $borderTop . PHP_EOL . $header . PHP_EOL . $borderMiddle . PHP_EOL . $body . $borderBottom; return $tableAsString; } diff --git a/src/QSLManager/QSO.php b/src/QSLManager/QSO.php index 3e524dead..02cae70ad 100644 --- a/src/QSLManager/QSO.php +++ b/src/QSLManager/QSO.php @@ -38,6 +38,7 @@ class QSO private string $state; private string $dxcc; private string $iota; + private string $continent; /** @var string[] */ private string $deVUCCGridsquares; private string $dxGridsquare; @@ -144,10 +145,11 @@ class QSO // Get Default date format from /config/wavelog.php $custom_date_format = $CI->config->item('qso_date_format'); } - $this->qsoDateTime = date($custom_date_format . " H:i", strtotime($data['COL_TIME_ON'])); + $this->qsoDateTime = date($custom_date_format . " H:i", strtotime($data['COL_TIME_ON'] ?? '1970-01-01 00:00:00')); $this->de = $data['station_callsign']; $this->dx = $data['COL_CALL']; + $this->continent = $data['COL_CONT'] ?? ''; $this->mode = $data['COL_MODE'] ?? ''; $this->submode = $data['COL_SUBMODE'] ?? ''; @@ -901,7 +903,8 @@ class QSO 'sota' => $this->getFormattedSotaLink(), 'dok' => $this->getFormattedDok(), 'wwff' => $this->getFormattedWwff(), - 'sig' => $this->getFormattedSig() + 'sig' => $this->getFormattedSig(), + 'continent' => $this->continent ]; } diff --git a/predict/Predict.php b/src/predict/Predict.php similarity index 97% rename from predict/Predict.php rename to src/predict/Predict.php index 9e3fa162e..1c8713984 100644 --- a/predict/Predict.php +++ b/src/predict/Predict.php @@ -35,16 +35,16 @@ along with this program; if not, visit http://www.fsf.org/ */ -require_once realpath(__DIR__ . "/../predict/Predict/Time.php"); -require_once realpath(__DIR__ . "/../predict/Predict/Math.php"); -require_once realpath(__DIR__ . "/../predict/Predict/Pass.php"); -require_once realpath(__DIR__ . "/../predict/Predict/PassDetail.php"); -require_once realpath(__DIR__ . "/../predict/Predict/Vector.php"); -require_once realpath(__DIR__ . "/../predict/Predict/Geodetic.php"); -require_once realpath(__DIR__ . "/../predict/Predict/ObsSet.php"); -require_once realpath(__DIR__ . "/../predict/Predict/Solar.php"); -require_once realpath(__DIR__ . "/../predict/Predict/SGPSDP.php"); -require_once realpath(__DIR__ . "/../predict/Predict/SGPSDP.php"); +require_once "Predict/Time.php"; +require_once "Predict/Math.php"; +require_once "Predict/Pass.php"; +require_once "Predict/PassDetail.php"; +require_once "Predict/Vector.php"; +require_once "Predict/Geodetic.php"; +require_once "Predict/ObsSet.php"; +require_once "Predict/Solar.php"; +require_once "Predict/SGPSDP.php"; +require_once "Predict/SGPSDP.php"; /** * The main Predict class. Contains constants for use by other classes, as well as diff --git a/predict/Predict/DeepArg.php b/src/predict/Predict/DeepArg.php similarity index 100% rename from predict/Predict/DeepArg.php rename to src/predict/Predict/DeepArg.php diff --git a/predict/Predict/DeepStatic.php b/src/predict/Predict/DeepStatic.php similarity index 100% rename from predict/Predict/DeepStatic.php rename to src/predict/Predict/DeepStatic.php diff --git a/predict/Predict/Exception.php b/src/predict/Predict/Exception.php similarity index 100% rename from predict/Predict/Exception.php rename to src/predict/Predict/Exception.php diff --git a/predict/Predict/Geodetic.php b/src/predict/Predict/Geodetic.php similarity index 100% rename from predict/Predict/Geodetic.php rename to src/predict/Predict/Geodetic.php diff --git a/predict/Predict/Math.php b/src/predict/Predict/Math.php similarity index 98% rename from predict/Predict/Math.php rename to src/predict/Predict/Math.php index 37b3a1cbc..e9c534513 100644 --- a/predict/Predict/Math.php +++ b/src/predict/Predict/Math.php @@ -5,7 +5,7 @@ * Ported to PHP by Bill Shupp. Original comments below */ -require_once realpath(__DIR__ . "/../../predict/Predict.php"); +require_once realpath(__DIR__ . "/../Predict.php"); /* * Unit SGP_Math diff --git a/predict/Predict/ObsSet.php b/src/predict/Predict/ObsSet.php similarity index 100% rename from predict/Predict/ObsSet.php rename to src/predict/Predict/ObsSet.php diff --git a/predict/Predict/Pass.php b/src/predict/Predict/Pass.php similarity index 100% rename from predict/Predict/Pass.php rename to src/predict/Predict/Pass.php diff --git a/predict/Predict/PassDetail.php b/src/predict/Predict/PassDetail.php similarity index 93% rename from predict/Predict/PassDetail.php rename to src/predict/Predict/PassDetail.php index 9fbf423a5..57529b47c 100644 --- a/predict/Predict/PassDetail.php +++ b/src/predict/Predict/PassDetail.php @@ -1,6 +1,6 @@ _uri_string($uri); } + /** + * Local URL + * + * Returns local_url [. uri_string] + * + * If local_url is not defined return base_url instead. + * + * @uses CI_Config::_uri_string() + * + * @param string|string[] $uri URI string or an array of segments + * @param string $protocol + * @return string + */ + public function local_url($uri = '', $protocol = NULL) + { + $local_url = $this->slash_item('local_url') ?? $this->slash_item('base_url'); + if (isset($protocol)) + { + // For protocol-relative links + if ($protocol === '') + { + $local_url = substr($local_url, strpos($local_url, '//')); + } + else + { + $local_url = $protocol.substr($local_url, strpos($local_url, '://')); + } + } + + return $local_url.$this->_uri_string($uri); + } + // ------------------------------------------------------------- /** diff --git a/system/helpers/url_helper.php b/system/helpers/url_helper.php index 4c060a203..9857eff5f 100644 --- a/system/helpers/url_helper.php +++ b/system/helpers/url_helper.php @@ -88,6 +88,26 @@ if ( ! function_exists('base_url')) } } +if ( ! function_exists('local_url')) +{ + /** + * Local URL + * + * For cornercases where you have no access to the base_url from + * within e.g. the docker container to the base_url use this url + * for cron jobs. + * + * @param string $uri + * @param string $protocol + * @return string + */ + + function local_url($uri = '', $protocol = NULL) + { + return get_instance()->config->local_url($uri, $protocol); + } +} + // ------------------------------------------------------------------------ if ( ! function_exists('current_url'))
".date($custom_date_format, $timestamp). date(' H:i',strtotime($row->COL_TIME_ON)) . "".date($custom_date_format, $timestamp). date(' H:i',strtotime($row->COL_TIME_ON ?? '1970-01-01 00:00:00')) . "" . str_replace('0','Ø',strtoupper($row->COL_CALL)) . "' . $this->part_QrbCalcLink($row->COL_MY_GRIDSQUARE, $row->COL_VUCC_GRIDS, $row->COL_GRIDSQUARE) . '' . (($row->COL_DISTANCE ?? '' != '') ? $row->COL_DISTANCE . ' km' : '') . ''; if($row->COL_SAT_NAME != null) { $ret.= ''.$row->COL_SAT_NAME.''; if($row->COL_SAT_NAME != null) { $ret.= ''.$row->COL_SAT_NAME.''; if($row->COL_SAT_NAME != null) { $ret.= ''.$row->COL_SAT_NAME.'' . ($row->COL_STATE) . '' . ($row->COL_OPERATOR) . '- / -" . $this->frequency->hz_to_mhz($row->frequency) . "" . $this->frequency->qrg_conversion($row->frequency) . "" . $this->frequency->hz_to_mhz($row->frequency_rx) . " / " . $this->frequency->hz_to_mhz($row->frequency) . "" . $this->frequency->qrg_conversion($row->frequency_rx) . " / " . $this->frequency->qrg_conversion($row->frequency) . "